Details | Last modification | View Log | SVN | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1947 | runge | 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 | |||
| 1959 | runge | 21 | #ifndef VM_PLUGIN_SERVER_H |
| 22 | #define VM_PLUGIN_SERVER_H |
||
| 1947 | runge | 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 | |||
| 1959 | runge | 36 | class Server : public Plugin |
| 1947 | runge | 37 | { |
| 38 | public: |
||
| 1959 | runge | 39 | typedef boost::shared_ptr<Server> Pointer; |
| 1947 | runge | 40 | |
| 1959 | runge | 41 | Server(boost::asio::io_service& io_service); |
| 42 | virtual ~Server(); |
||
| 1947 | runge | 43 | |
| 44 | void InitializeDone(); |
||
| 45 | void CallOutput(unsigned int request_id, std::string output); |
||
| 46 | |||
| 47 | private: |
||
| 1959 | runge | 48 | void SlotOnNewState(net::ClientId client_id, net::SocketId server_id, net::ClientState client_state); |
| 49 | void SlotOnNewData(net::ClientId client_id, net::SocketId server_id, common::Byteset data); |
||
| 1947 | runge | 50 | |
| 1959 | runge | 51 | void SlotOnNewStateHandler(net::ClientId client_id, net::SocketId server_id, net::ClientState client_state); |
| 52 | void SlotOnNewDataHandler(net::ClientId client_id, net::SocketId server_id, common::Byteset data); |
||
| 1947 | runge | 53 | |
| 54 | static Value Export_SendData(const v8::Arguments& args); |
||
| 55 | }; |
||
| 56 | |||
| 57 | }; // namespace plugin |
||
| 58 | }; // namespace vm |
||
| 59 | }; // namespace atom |
||
| 60 | |||
| 1959 | runge | 61 | #endif // VM_PLUGIN_SERVER_H |