Subversion Repositories HomeAutomation

Rev

Rev 1916 | 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 "CanDaemon.h"
  22.  
  23. #include <boost/lexical_cast.hpp>
  24. #include <boost/algorithm/string/trim.hpp>
  25.  
  26. #include "net/Manager.h"
  27.  
  28. #include "Message.h"
  29.  
  30. namespace atom {
  31. namespace can {
  32.    
  33. CanDaemon::CanDaemon(unsigned int port): broker::Subscriber(port), LOG("can::CanDaemon")
  34. {
  35.     try
  36.     {
  37.         this->server_id_ = net::Manager::Instance()->StartServer(net::PROTOCOL_TCP, port);
  38.         LOG.Info("Started TCP server on port " + boost::lexical_cast<std::string>(port) + ".");
  39.         LOG.Debug("Server id is " + boost::lexical_cast<std::string>(this->server_id_) + ".");
  40.     }
  41.     catch (std::runtime_error& e)
  42.     {
  43.         LOG.Error(e.what());
  44.     }
  45. }
  46.  
  47. CanDaemon::~CanDaemon()
  48. {
  49.     net::Manager::Instance()->StopServer(this->server_id_);
  50.     this->server_id_ = 0;
  51. }
  52.  
  53.  
  54. void CanDaemon::SlotOnMessageHandler(broker::Message::Pointer message)
  55. {
  56.     if (message->GetType() == broker::Message::CAN_RAW_MESSAGE)
  57.     {
  58.       std::string* payload_str;
  59.       payload_str = static_cast<std::string*>(message->GetPayload().get());
  60.       std::string line = *payload_str;
  61.      //std::string line2 = line.substr(0, 15)+"\n"; //line += *payload_str;
  62.       //line
  63.         net::Manager::Instance()->SendToAll(this->server_id_, common::Byteset(line));
  64.     }
  65. }
  66.  
  67.  
  68. void CanDaemon::SlotOnNewDataHandler(net::ClientId client_id, net::ServerId server_id, common::Byteset data)
  69. {
  70.     if (server_id != this->server_id_)
  71.     {
  72.         return;
  73.     }
  74.    
  75.     std::string str = data.ToCharString();
  76.    
  77.     boost::algorithm::trim_right_if(str, boost::is_any_of("\r\n"));
  78.    
  79.     LOG.Debug("Received: \"" + str + "\" from client " + boost::lexical_cast<std::string>(client_id) + " on server " + boost::lexical_cast<std::string>(server_id));
  80.    
  81.     if (str == "q" || str == "quit")
  82.     {
  83.         LOG.Info("Client " + boost::lexical_cast<std::string>(client_id) + " has requested to be disconnected.");
  84.         net::Manager::Instance()->Disconnect(client_id);
  85.     }
  86. }
  87.  
  88. void CanDaemon::SlotOnNewStateHandler(net::ClientId client_id, net::ServerId server_id, net::ClientState client_state)
  89. {
  90.     if (server_id != this->server_id_)
  91.     {
  92.         return;
  93.     }
  94.    
  95.     if (client_state == net::CLIENT_STATE_DISCONNECTED)
  96.     {
  97.         LOG.Info("Client " + boost::lexical_cast<std::string>(client_id) + " has disconnected.");
  98.     }
  99.     else if (client_state == net::CLIENT_STATE_CONNECTED)
  100.     {
  101.         LOG.Info("Client " + boost::lexical_cast<std::string>(client_id) + " has connected.");
  102.         net::Manager::Instance()->SendTo(client_id, common::Byteset("Welcome to Atom canDaemon emulator\n"));
  103.     }
  104.     else
  105.     {
  106.         LOG.Debug("Got state: " + boost::lexical_cast<std::string>((int)client_state));
  107.     }
  108. }
  109.    
  110. }; // namespace can
  111. }; // namespace atom
  112.