Rev 1604 | Rev 1625 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | SVN | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1601 | runge | 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 "Plugin.h" |
||
| 22 | |||
| 23 | #include "Manager.h" |
||
| 24 | |||
| 25 | namespace atom { |
||
| 26 | namespace vm { |
||
| 27 | |||
| 28 | Plugin::Plugin() |
||
| 29 | { |
||
| 1604 | runge | 30 | this->tracker_ = TrackerPointer(new char); |
| 1601 | runge | 31 | } |
| 32 | |||
| 33 | Plugin::~Plugin() |
||
| 34 | { |
||
| 1604 | runge | 35 | this->tracker_.reset(); |
| 1601 | runge | 36 | } |
| 37 | |||
| 38 | std::string Plugin::GetName() |
||
| 39 | { |
||
| 40 | return this->name_; |
||
| 41 | } |
||
| 42 | |||
| 43 | ExportFunctionList& Plugin::GetExportFunctions() |
||
| 44 | { |
||
| 45 | return this->export_functions_; |
||
| 46 | } |
||
| 47 | |||
| 1608 | runge | 48 | void Plugin::InitializeDone() |
| 1601 | runge | 49 | { |
| 1608 | runge | 50 | |
| 1601 | runge | 51 | } |
| 52 | |||
| 1608 | runge | 53 | void Plugin::ExecutionResult(std::string response, unsigned int request_id) |
| 1601 | runge | 54 | { |
| 1608 | runge | 55 | |
| 56 | } |
||
| 1601 | runge | 57 | |
| 1608 | runge | 58 | void Plugin::Call(unsigned int request_id, std::string name, ArgumentListPointer arguments) |
| 59 | { |
||
| 60 | Manager::Instance()->Call(this->name_, request_id, name, arguments); |
||
| 1601 | runge | 61 | } |
| 62 | |||
| 1608 | runge | 63 | void Plugin::Execute(unsigned int request_id, std::string code) |
| 1601 | runge | 64 | { |
| 1608 | runge | 65 | Manager::Instance()->Execute(this->name_, request_id, code); |
| 1601 | runge | 66 | } |
| 67 | |||
| 68 | void Plugin::ExportFunction(std::string name, v8::InvocationCallback function) |
||
| 69 | { |
||
| 70 | this->export_functions_[name] = function; |
||
| 71 | } |
||
| 72 | |||
| 1608 | runge | 73 | bool Plugin::ImportFunction(std::string name) |
| 1601 | runge | 74 | { |
| 1608 | runge | 75 | return Manager::Instance()->ImportFunction(name); |
| 1601 | runge | 76 | } |
| 77 | |||
| 78 | }; // namespace vm |
||
| 79 | }; // namespace atom |