Subversion Repositories HomeAutomation

Rev

Rev 2066 | Rev 2087 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. /*
  2.  *
  3.  *  Copyright (C) 2010  Mattias Runge
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License along
  16.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  17.  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  18.  *
  19.  */
  20.  
  21. #include "Network.h"
  22.  
  23. #include <vector>
  24.  
  25. #include <boost/algorithm/string.hpp>
  26. #include <boost/lexical_cast.hpp>
  27.  
  28. #include "net/Manager.h"
  29.  
  30. #include "broker/Manager.h"
  31.  
  32. #include "Protocol.h"
  33. #include "Message.h"
  34.  
  35. #include "common/Bitset.h"
  36. #include "common/common.h"
  37. #include "common/log.h"
  38.  
  39. namespace atom {
  40. namespace can {
  41.  
  42. enum
  43. {
  44.     PACKET_START = 253,
  45.     PACKET_END   = 250,
  46.     PACKET_PING  = 251
  47. };
  48.  
  49. static const std::string log_module_ = "can::network";
  50.  
  51. Network::Network(std::string address): broker::Subscriber(false), LOG("can::Network")
  52. {
  53.     this->address_ = address;
  54.     this->client_id_ = 0;
  55.  
  56.     // Examples of address
  57.     // udp:192.168.1.250:1100
  58.     // serial:/dev/ttyUSB0:38400
  59.  
  60.     common::StringList parts;
  61.     boost::algorithm::split(parts, address, boost::is_any_of(":"), boost::algorithm::token_compress_off);
  62.  
  63.     if (parts.size() < 3)
  64.     {
  65.         LOG.Error("Malformed address string: " + address);
  66.         return;
  67.     }
  68.  
  69.     boost::algorithm::to_lower(parts[0]);
  70.  
  71.     if (parts[0] == "udp")
  72.     {
  73.         this->protocol_ = net::TRANSPORT_PROTOCOL_UDP;
  74.     }
  75.     else if (parts[0] == "serial")
  76.     {
  77.         this->protocol_ = net::TRANSPORT_PROTOCOL_SERIAL;
  78.     }
  79.     else
  80.     {
  81.         LOG.Error("Unknown protocol, only support udp and serial, got " + parts[0]);
  82.         return;
  83.     }
  84.  
  85.     this->address_ = parts[1];
  86.     this->port_or_baud_ = boost::lexical_cast<unsigned int>(parts[2]);
  87.  
  88.     try
  89.     {
  90.         this->client_id_ = net::Manager::Instance()->Connect(this->protocol_, this->address_, this->port_or_baud_);
  91.         LOG.Info("Connected to " + address);
  92.  
  93.         LOG.Info("Sending ping...");
  94.  
  95.         common::Byteset buffer(1);
  96.         buffer[0] = PACKET_PING;
  97.  
  98.         net::Manager::Instance()->SendTo(this->client_id_, buffer);
  99.     }
  100.     catch (std::runtime_error& e)
  101.     {
  102.         LOG.Error(e.what());
  103.     }
  104. }
  105.  
  106. Network::~Network()
  107. {
  108.     net::Manager::Instance()->Disconnect(this->client_id_);
  109. }
  110.  
  111. void Network::SlotOnTimeout(timer::TimerId timer_id)
  112. {
  113.     if (timer_id == this->timer_id_)
  114.     {
  115.         this->io_service_.post(boost::bind(&Network::SlotOnTimeoutHandler, this, timer_id));
  116.     }
  117. }
  118.  
  119. void Network::SlotOnMessageHandler(broker::Message::Pointer message)
  120. {
  121.     if (message->GetType() == broker::Message::CAN_MESSAGE)
  122.     {
  123.         Message* payload = static_cast<Message*>(message->GetPayload().get());
  124.         common::Byteset data(17);
  125.  
  126.         data[0] = PACKET_START;
  127.  
  128.         unsigned int class_id = Protocol::Instance()->ResolveClassId(payload->GetClassName());
  129.         data[4] = class_id << 1;
  130.  
  131.         if (payload->GetClassName() == "nmt")
  132.         {
  133.             unsigned int command_id = Protocol::Instance()->ResolveNMTCommandId(payload->GetCommandName());
  134.             data[3] = command_id;
  135.         }
  136.         else
  137.         {
  138.             unsigned int direction_flag = Protocol::Instance()->ResolveDirectionFlag(payload->GetDirectionName());
  139.             data[4] |= (direction_flag & 0x01);
  140.  
  141.             unsigned int module_id = Protocol::Instance()->ResolveModuleId(payload->GetModuleName());
  142.             data[3] = module_id;
  143.  
  144.             data[2] = payload->GetId();
  145.  
  146.             unsigned int command_id = Protocol::Instance()->ResolveCommandId(payload->GetCommandName(), payload->GetModuleName());
  147.             data[1] = command_id;
  148.         }
  149.  
  150.         unsigned int highest_bit = 0;
  151.         common::Bitset databits(64);
  152.  
  153.         xml::Node::NodeList variable_nodes;
  154.         unsigned int start_bit;
  155.         unsigned int bit_length;
  156.         std::string type;
  157.         std::string value;
  158.  
  159.         if (payload->GetClassName() == "nmt")
  160.         {
  161.             variable_nodes = Protocol::Instance()->GetNMTCommandVariables(payload->GetCommandName());
  162.         }
  163.         else
  164.         {
  165.             variable_nodes = Protocol::Instance()->GetCommandVariables(payload->GetCommandName(), payload->GetModuleName());
  166.         }
  167.  
  168.         for (unsigned int n = 0; n < variable_nodes.size(); n++)
  169.         {
  170.             value = payload->GetVariable(variable_nodes[n].GetAttributeValue("name"));
  171.             //LOG.Debug(variable_nodes[n].GetAttributeValue("name") + "=" + value);
  172.             if (value == "")
  173.             {
  174.                 continue;
  175.             }
  176.  
  177.             start_bit = boost::lexical_cast<unsigned int>(variable_nodes[n].GetAttributeValue("start_bit"));
  178.             bit_length = boost::lexical_cast<unsigned int>(variable_nodes[n].GetAttributeValue("bit_length"));
  179.             type = variable_nodes[n].GetAttributeValue("type");
  180.  
  181.             if (type == "int")
  182.             {
  183.                 Protocol::Instance()->EncodeInt(databits, start_bit, bit_length, value);
  184.             }
  185.             else if (type == "float")
  186.             {
  187.                 Protocol::Instance()->EncodeFloat(databits, start_bit, bit_length, value);
  188.             }
  189.             else if (type == "ascii")
  190.             {
  191.                 Protocol::Instance()->EncodeAscii(databits, start_bit, bit_length, value);
  192.                 bit_length = value.length() * 8;
  193.             }
  194.             else if (type == "hexstring")
  195.             {
  196.                 Protocol::Instance()->EncodeHexstring(databits, start_bit, bit_length, value);
  197.                 bit_length = value.length() * 4;
  198.             }
  199.             else if (type == "enum")
  200.             {
  201.                 value = variable_nodes[n].SelectChild("name", value).GetAttributeValue("id");
  202.                 Protocol::Instance()->EncodeUint(databits, start_bit, bit_length, value);
  203.             }
  204.             else// if (type == "uint")
  205.             {
  206.                 Protocol::Instance()->EncodeUint(databits, start_bit, bit_length, value);
  207.             }
  208.  
  209.             if (highest_bit < start_bit + bit_length)
  210.             {
  211.                 highest_bit = start_bit + bit_length;
  212.             }
  213.         }
  214.  
  215.         //LOG.Debug(databits.ToDebugString());
  216.  
  217.         unsigned int length = std::min((int)ceil((float)highest_bit / 8.0f), 8);
  218.  
  219.         data[5] = 1;
  220.         data[6] = 0;
  221.  
  222.         data[7] = length;
  223.  
  224.         for (unsigned int n = 0; n < 8; n++)
  225.         {
  226.             data[8 + n] = databits.GetBytes()[n];
  227.         }
  228.  
  229.         data[16] = PACKET_END;
  230.  
  231.         //LOG.Debug("Bytes: " + data.ToDebugString());
  232.         net::Manager::Instance()->SendTo(this->client_id_, data);
  233.     }
  234.     else if (message->GetType() == broker::Message::CAN_RAW_MESSAGE)
  235.     {
  236.         std::string* payload_str;
  237.     payload_str = static_cast<std::string*>(message->GetPayload().get());
  238.     std::string line = *payload_str;
  239.  
  240.         if (line.length() < 17)
  241.         {
  242.           log::Error(log_module_, "Packet was to short: \"%s\".", line.data());
  243.           return;
  244.         }
  245.  
  246.  
  247.         common::Byteset data(17);
  248.         //LOG.Info("Got "+ line + "end");
  249.  
  250.         data[0] = PACKET_START;
  251.         std::string value = line.substr(4,2);
  252.     //LOG.Info("<"+ value + ">");
  253.     data[4] = common::FromHex(value);
  254.     //LOG.Info("id1: " + value + " data: ");//+ data[1]);
  255.  
  256.     value = line.substr(6,2);
  257.     //LOG.Info("<"+ value + ">");
  258.  
  259.     data[3] = common::FromHex(value);
  260.     //LOG.Info("id2: " + value + " data: ");//+ data[2]);
  261.  
  262.     value = line.substr(8,2);
  263.     data[2] = common::FromHex(value);
  264.     //LOG.Info("id3: " + value + " data: ");//+ data[3]);
  265.  
  266.     value = line.substr(10,2);
  267.     data[1] = common::FromHex(value);
  268.     //LOG.Info("id4: " + value + " data: ");//+ data[4]);
  269.  
  270.     value = line.substr(13,1);
  271.     data[5] = common::FromHex(value);
  272.     //LOG.Info("1: " + value + " data: ");//+ data[5]);
  273.  
  274.     value = line.substr(15,1);
  275.     data[6] = common::FromHex(value);
  276.     //LOG.Info("1: " + value + " data: ");//+ data[6]);
  277.  
  278.         unsigned char length = 0;
  279.         unsigned char index = 0;
  280.         while (length < 8 && index + 16 < (unsigned char)line.length())
  281.         {
  282.             value = line.substr(index+17,2);
  283.         data[8+length] = common::FromHex(value);
  284.         //LOG.Info("data: " + value + " data: ");//+ data[6]);
  285.         index += 3;
  286.         length++;
  287.         }
  288.  
  289.         data[7] = length;
  290.         data[16] = PACKET_END;
  291.  
  292.  
  293.         //LOG.Info("Bytes: " + data.ToDebugString());
  294.         net::Manager::Instance()->SendTo(this->client_id_, data);
  295.     }
  296. }
  297.  
  298. void Network::SlotOnNewDataHandler(net::SocketId client_id, common::Byteset data)
  299. {
  300.   if (client_id != this->client_id_)
  301.   {
  302.     return;
  303.   }
  304.  
  305.   static bool have_start = false;
  306.  
  307.   for (unsigned int n = 0; n < data.size(); n++)
  308.   {
  309.     log::Extreme(log_module_, "data[%u] = %u, have_start = %s, this->buffer_.size() = %u", n, (unsigned int)data[n], have_start ? "true" : "false", this->buffer_.size());
  310.  
  311.     if (have_start)
  312.     {
  313.       if (data[n] == PACKET_END && this->buffer_.size() >= 15)
  314.       {
  315.         log::Extreme(log_module_, "PACKET_END");
  316.  
  317.         while (this->buffer_.size() < 15)
  318.         {
  319.           this->buffer_.push_back(0);
  320.         }
  321.  
  322.         for (unsigned int k = 0; k < this->buffer_.size(); k++)
  323.         {
  324.           log::Extreme(log_module_, "this->buffer_[%u]=%u", k, (unsigned int)this->buffer_[k]);
  325.         }
  326.  
  327.         this->ProcessBuffer();
  328.  
  329.         have_start = false;
  330.       }
  331.       else
  332.       {
  333.         this->buffer_.push_back(data[n]);
  334.       }
  335.     }
  336.     else if (data[n] == PACKET_START)
  337.     {
  338.       log::Extreme(log_module_, "PACKET_START");
  339.  
  340.       common::Byteset empty_vector;
  341.       this->buffer_.swap(empty_vector);
  342.  
  343.       have_start = true;
  344.     }
  345.     else if (data[n] == PACKET_PING)
  346.     {
  347.       log::Info(log_module_, "Got Pong!");
  348.     }
  349.   }
  350. }
  351.  
  352. void Network::SlotOnNewClientHandler(net::SocketId id, net::SocketId server_id)
  353. {
  354.  
  355. }
  356.  
  357. void Network::SlotOnNewStateHandler(net::SocketId client_id, net::ClientState client_state)
  358. {
  359.     if (client_id != this->client_id_)
  360.     {
  361.         return;
  362.     }
  363.  
  364.     if (client_state == net::CLIENT_STATE_DISCONNECTED)
  365.     {
  366.         LOG.Warning("Got disconnected, setting reconnect timer...");
  367.  
  368.         this->timer_id_ = timer::Manager::Instance()->SetTimer(10000, true);
  369.         this->client_id_ = 0;
  370.     }
  371.     else
  372.     {
  373.         LOG.Debug("Got state: " + boost::lexical_cast<std::string>((int)client_state));
  374.     }
  375. }
  376.  
  377. void Network::SlotOnTimeoutHandler(timer::TimerId timer_id)
  378. {
  379.     try
  380.     {
  381.         this->client_id_ = net::Manager::Instance()->Connect(this->protocol_, this->address_, this->port_or_baud_);
  382.         LOG.Info("Connected again.");
  383.  
  384.         timer::Manager::Instance()->Cancel(timer_id);
  385.         this->timer_id_ = 0;
  386.     }
  387.     catch (std::runtime_error& e)
  388.     {
  389.         LOG.Error(e.what());
  390.         LOG.Warning("Will try again soon...");
  391.     }
  392. }
  393.  
  394. void Network::ProcessBuffer()
  395. {
  396.   LOG_DEBUG_ENTER;
  397.  
  398.     try
  399.     {
  400.         std::string class_name = "";
  401.         std::string direction_name = "";
  402.         std::string module_name = "";
  403.         unsigned int id = 0;
  404.         std::string command_name = "";
  405.  
  406.     std::string PKTstring = "PKT " +
  407.                 atom::common::ToHex8bit((unsigned int)this->buffer_[3]) +
  408.                 atom::common::ToHex8bit((unsigned int)this->buffer_[2]) +
  409.                 atom::common::ToHex8bit((unsigned int)this->buffer_[1]) +
  410.                 atom::common::ToHex8bit((unsigned int)this->buffer_[0]) +
  411.                 " " +
  412.                 atom::common::ToHex4bit((unsigned int)this->buffer_[4]) +
  413.                 " " +
  414.                 atom::common::ToHex4bit((unsigned int)this->buffer_[5]);
  415.  
  416.     for (unsigned int index = 7; index < 7 + (unsigned int)this->buffer_[6]; index++)
  417.     {
  418.         PKTstring += " " + atom::common::ToHex8bit((unsigned int)this->buffer_[index]) ;
  419.     }
  420.  
  421.     PKTstring += "\n";
  422.  
  423.     LOG.Extreme(PKTstring);
  424.  
  425.   for (unsigned int n = 0; n < this->buffer_.size(); n++)
  426.   {
  427.      log::Extreme(log_module_, "this->buffer_[%u]=%u", n, (unsigned int)this->buffer_[n]);
  428.   }
  429.  
  430.     std::string* payload_str = new std::string(PKTstring);
  431.     broker::Manager::Instance()->Post(broker::Message::Pointer(new broker::Message(broker::Message::CAN_RAW_MESSAGE, broker::Message::PayloadPointer(payload_str), this)));
  432.  
  433.  
  434.         unsigned int class_id = (this->buffer_[3] >> 1) & 0x0F;
  435.         LOG.Extreme("class_id=" + boost::lexical_cast<std::string>(class_id));
  436.         class_name = Protocol::Instance()->LookupClassName(class_id);
  437.  
  438.         if (class_name == "nmt")
  439.         {
  440.             unsigned int command_id = this->buffer_[2];
  441.             LOG.Extreme("command_id=" + boost::lexical_cast<std::string>(command_id));
  442.             command_name = Protocol::Instance()->LookupNMTCommandName(command_id);
  443.         }
  444.         else
  445.         {
  446.             unsigned int direction_flag = this->buffer_[3] & 0x01;
  447.             LOG.Extreme("direction_flag=" + boost::lexical_cast<std::string>(direction_flag));
  448.             direction_name = Protocol::Instance()->LookupDirectionFlag(direction_flag);
  449.  
  450.             unsigned int module_id = this->buffer_[2];
  451.             LOG.Extreme("module_id=" + boost::lexical_cast<std::string>(module_id));
  452.             module_name = Protocol::Instance()->LookupModuleName(module_id);
  453.             LOG.Extreme("module_name=" + module_name);
  454.             id = this->buffer_[1];
  455.  
  456.             unsigned int command_id = this->buffer_[0];
  457.             LOG.Extreme("command_id=" + boost::lexical_cast<std::string>(command_id));
  458.             command_name = Protocol::Instance()->LookupCommandName(command_id, module_name);
  459.             LOG.Extreme("command_name=" + command_name);
  460.         }
  461.  
  462.         Message* payload = new Message(class_name, direction_name, module_name, id, command_name);
  463.  
  464.         unsigned int length = this->buffer_[6];
  465.  
  466.         common::Byteset data_set;
  467.         data_set.reserve(length);
  468.  
  469.         for (unsigned int n = 0; n < length; n++)
  470.         {
  471.             data_set.push_back(this->buffer_[n + 7]);
  472.         }
  473.  
  474.         for (unsigned int n = 0; n < data_set.size(); n++)
  475.         {
  476.            log::Extreme(log_module_, "data_set[%u]=%u", n, (unsigned int)data_set[n]);
  477.         }
  478.  
  479.         common::Bitset databits(data_set);
  480.         xml::Node::NodeList variable_nodes;
  481.         unsigned int start_bit;
  482.         int bit_length;
  483.         std::string type;
  484.         std::string value;
  485.         std::string name;
  486.  
  487.         if (class_name == "nmt")
  488.         {
  489.             variable_nodes = Protocol::Instance()->GetNMTCommandVariables(command_name);
  490.         }
  491.         else
  492.         {
  493.             variable_nodes = Protocol::Instance()->GetCommandVariables(command_name, module_name);
  494.         }
  495.  
  496.         for (unsigned int n = 0; n < variable_nodes.size(); n++)
  497.         {
  498.             name = variable_nodes[n].GetAttributeValue("name");
  499.             start_bit = boost::lexical_cast<unsigned int>(variable_nodes[n].GetAttributeValue("start_bit"));
  500.             bit_length = boost::lexical_cast<unsigned int>(variable_nodes[n].GetAttributeValue("bit_length"));
  501.  
  502.             if (databits.GetCount() < start_bit + bit_length)
  503.             {
  504.                 bit_length = databits.GetCount() - start_bit;
  505.  
  506.                 if (bit_length <= 0)
  507.                 {
  508.                     LOG.Warning("Can not read variable " + name + " for command " + command_name + ", message is to short, is there a match between the module and the protocol XML file?");
  509.                     LOG.Debug("start_bit=" + boost::lexical_cast<std::string>(start_bit) + ", bit_length=" + boost::lexical_cast<std::string>(bit_length) + ", databits.GetCount()=" + boost::lexical_cast<std::string>(databits.GetCount()));
  510.                     continue;
  511.                 }
  512.             }
  513.  
  514.             type = variable_nodes[n].GetAttributeValue("type");
  515.             LOG.Extreme("type: type=" + type);
  516.  
  517.             if (type == "int")
  518.             {
  519.                 value = Protocol::Instance()->DecodeInt(databits, start_bit, bit_length);
  520.             }
  521.             else if (type == "float")
  522.             {
  523.                 value = Protocol::Instance()->DecodeFloat(databits, start_bit, bit_length);
  524.             }
  525.             else if (type == "ascii")
  526.             {
  527.                 value = Protocol::Instance()->DecodeAscii(databits, start_bit, bit_length);
  528.             }
  529.             else if (type == "hexstring")
  530.             {
  531.                 value = Protocol::Instance()->DecodeHexstring(databits, start_bit, bit_length);
  532.             }
  533.             else if (type == "enum")
  534.             {
  535.                 LOG.Extreme("Enum: command name=" + command_name);
  536.                 value = Protocol::Instance()->DecodeUint(databits, start_bit, bit_length);
  537.                 LOG.Extreme("Enum: value=" + boost::lexical_cast<std::string>(value));
  538.                 LOG.Extreme("start_bit=" + boost::lexical_cast<std::string>(start_bit) + ", bit_length=" + boost::lexical_cast<std::string>(bit_length));
  539.  
  540.                 value = variable_nodes[n].SelectChild("id", value).GetAttributeValue("name");
  541.             }
  542.             else// if (type == "uint")
  543.             {
  544.                 value = Protocol::Instance()->DecodeUint(databits, start_bit, bit_length);
  545.             }
  546.  
  547.             LOG.Extreme("value=\"" + value + "\"");
  548.  
  549.             payload->SetVariable(name, value);
  550.         }
  551.  
  552.         broker::Manager::Instance()->Post(broker::Message::Pointer(new broker::Message(broker::Message::CAN_MESSAGE, broker::Message::PayloadPointer(payload), this)));
  553.     }
  554.     catch (std::runtime_error& e)
  555.     {
  556.         LOG.Error("Malformed message received, " + std::string(e.what()));
  557.         LOG.Debug("Bytes: " + std::string(this->buffer_.begin(), this->buffer_.end()));
  558.     }
  559.  
  560.     common::Byteset empty_vector;
  561.     this->buffer_.swap(empty_vector);
  562.  
  563.  
  564.     LOG_DEBUG_EXIT;
  565. }
  566.  
  567. }; // namespace can
  568. }; // namespace atom
  569.