Subversion Repositories HomeAutomation

Rev

Blame | Last modification | View Log | SVN | RSS feed

  1. /*
  2.  *
  3.  *  Copyright (C) 2012  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. #ifndef VM_PLUGIN_MBB_H
  22. #define VM_PLUGIN_MBB_H
  23.  
  24. #include <boost/shared_ptr.hpp>
  25.  
  26. #include "net/Subscriber.h"
  27. #include "net/types.h"
  28. #include "common/Byteset.h"
  29.  
  30. #include "vm/Plugin.h"
  31.  
  32. namespace atom {
  33. namespace vm {
  34. namespace plugin {
  35.  
  36. class Mbb : public Plugin
  37. {
  38. public:
  39.     typedef boost::shared_ptr<Mbb> Pointer;
  40.    
  41.     Mbb(boost::asio::io_service& io_service, unsigned int port);
  42.     virtual ~Mbb();
  43.    
  44.     void InitializeDone();
  45.     void CallOutput(unsigned int request_id, std::string output);
  46.    
  47. private:
  48.     net::ServerId server_id_;
  49.     static net::ClientId current_client_id_;
  50.    
  51.     void SlotOnNewState(net::ClientId client_id, net::ServerId server_id, net::ClientState client_state);
  52.     void SlotOnNewData(net::ClientId client_id, net::ServerId server_id, common::Byteset data);
  53.    
  54.     void SlotOnNewStateHandler(net::ClientId client_id, net::ServerId server_id, net::ClientState client_state);
  55.     void SlotOnNewDataHandler(net::ClientId client_id, net::ServerId server_id, common::Byteset data);
  56.    
  57.     static Value Export_SendData(const v8::Arguments& args);
  58. };
  59.  
  60. }; // namespace plugin
  61. }; // namespace vm
  62. }; // namespace atom
  63.  
  64. #endif // VM_PLUGIN_MBB_H
  65.