Rev 1647 | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 1647 | Rev 2107 | ||
|---|---|---|---|
| 1 | /* |
1 | /* |
| 2 | * |
2 | * |
| 3 | * Copyright (C) 2010 Mattias Runge |
3 | * Copyright (C) 2010 Mattias Runge |
| 4 | * |
4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
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 |
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 |
7 | * the Free Software Foundation; either version 2 of the License, or |
| 8 | * (at your option) any later version. |
8 | * (at your option) any later version. |
| 9 | * |
9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
13 | * GNU General Public License for more details. |
| 14 | * |
14 | * |
| 15 | * You should have received a copy of the GNU General Public License along |
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., |
16 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | * |
18 | * |
| 19 | */ |
19 | */ |
| 20 | 20 | ||
| 21 | #include "Plugin.h" |
21 | #include "Plugin.h" |
| 22 | 22 | ||
| 23 | #include "Manager.h" |
23 | #include "Manager.h" |
| 24 | 24 | ||
| 25 | namespace atom { |
25 | namespace atom { |
| 26 | namespace vm { |
26 | namespace vm { |
| 27 | 27 | ||
| 28 | Plugin::Plugin(boost::asio::io_service& io_service) : io_service_(io_service) |
28 | Plugin::Plugin(boost::asio::io_service& io_service) : io_service_(io_service) |
| 29 | { |
29 | { |
| 30 | this->tracker_ = TrackerPointer(new char); |
30 | this->tracker_ = TrackerPointer(new char); |
| 31 | } |
31 | } |
| 32 | 32 | ||
| 33 | Plugin::~Plugin() |
33 | Plugin::~Plugin() |
| 34 | { |
34 | { |
| 35 | this->tracker_.reset(); |
35 | this->tracker_.reset(); |
| 36 | } |
36 | } |
| 37 | 37 | ||
| 38 | std::string Plugin::GetName() |
38 | std::string Plugin::GetName() |
| 39 | { |
39 | { |
| 40 | return this->name_; |
40 | return this->name_; |
| 41 | } |
41 | } |
| 42 | 42 | ||
| 43 | ExportFunctionList& Plugin::GetExportFunctions() |
43 | ExportFunctionList& Plugin::GetExportFunctions() |
| 44 | { |
44 | { |
| 45 | return this->export_functions_; |
45 | return this->export_functions_; |
| 46 | } |
46 | } |
| 47 | 47 | ||
| 48 | void Plugin::InitializeDone() |
48 | void Plugin::InitializeDone() |
| 49 | { |
49 | { |
| 50 | } |
50 | } |
| 51 | 51 | ||
| 52 | void Plugin::CallOutput(unsigned int request_id, std::string output) |
52 | void Plugin::CallOutput(unsigned int request_id, std::string output) |
| - | 53 | { |
|
| - | 54 | } |
|
| - | 55 | ||
| - | 56 | void Plugin::CallResult(unsigned int request_id, std::string output) |
|
| 53 | { |
57 | { |
| 54 | } |
58 | } |
| 55 | 59 | ||
| 56 | bool Plugin::Call(unsigned int request_id, std::string name, ArgumentListPointer arguments) |
60 | bool Plugin::Call(unsigned int request_id, std::string name, ArgumentListPointer arguments) |
| 57 | { |
61 | { |
| 58 | return Manager::Instance()->CallHandler(this->name_, request_id, name, arguments); |
62 | return Manager::Instance()->CallHandler(this->name_, request_id, name, arguments); |
| 59 | } |
63 | } |
| 60 | 64 | ||
| 61 | void Plugin::Execute(unsigned int request_id, std::string code) |
65 | void Plugin::Execute(unsigned int request_id, std::string code) |
| 62 | { |
66 | { |
| 63 | Manager::Instance()->ExecuteHandler(this->name_, request_id, code); |
67 | Manager::Instance()->ExecuteHandler(this->name_, request_id, code); |
| 64 | } |
68 | } |
| 65 | 69 | ||
| 66 | void Plugin::ExportFunction(std::string name, v8::InvocationCallback function) |
70 | void Plugin::ExportFunction(std::string name, v8::InvocationCallback function) |
| 67 | { |
71 | { |
| 68 | this->export_functions_[name] = function; |
72 | this->export_functions_[name] = function; |
| 69 | } |
73 | } |
| 70 | 74 | ||
| 71 | bool Plugin::ImportFunction(std::string name) |
75 | bool Plugin::ImportFunction(std::string name) |
| 72 | { |
76 | { |
| 73 | return Manager::Instance()->ImportFunction(name); |
77 | return Manager::Instance()->ImportFunction(name); |
| 74 | } |
78 | } |
| 75 | 79 | ||
| 76 | }; // namespace vm |
80 | }; // namespace vm |
| 77 | }; // namespace atom |
81 | }; // namespace atom |
| 78 | 82 | ||