Subversion Repositories HomeAutomation

Rev

Rev 1740 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | SVN | RSS feed

Rev Author Line No. Line
1602 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 "Module.h"
22
 
23
#include <boost/lexical_cast.hpp>
24
 
1642 runge 25
#include "control/Manager.h"
1619 runge 26
#include "vm/Manager.h"
1602 runge 27
 
28
namespace atom {
29
namespace vm {
30
namespace plugin {
31
 
32
logging::Logger Module::LOG("vm::plugin::module");
33
 
1625 runge 34
Module::Module(boost::asio::io_service& io_service) : Plugin(io_service)
1602 runge 35
{
36
    this->name_ = "module";
37
 
1644 runge 38
    this->ExportFunction("ModuleExport_SendMessage",         Module::Export_SendModuleMessage);
39
    this->ExportFunction("ModuleExport_GetAvailableModules", Module::Export_GetAvailableModules);
1602 runge 40
}
41
 
42
Module::~Module()
43
{
44
    this->tracker_.reset();
45
}
46
 
47
void Module::InitializeDone()
48
{
49
    Plugin::InitializeDone();
50
 
1608 runge 51
    this->ImportFunction("Module_OnChange");
52
    this->ImportFunction("Module_OnMessage");
53
 
1657 runge 54
    control::Manager::Instance()->ConnectSlotModule(control::Manager::SignalOnModuleChange::slot_type(&Module::SlotOnModuleChange, this, _1, _2).track(this->tracker_));
55
    control::Manager::Instance()->ConnectSlotModule(control::Manager::SignalOnModuleMessage::slot_type(&Module::SlotOnModuleMessage, this, _1, _2, _3).track(this->tracker_));
1602 runge 56
}
57
 
1647 runge 58
void Module::CallOutput(unsigned int request_id, std::string output)
59
{
60
    LOG.Info(output);
61
}
62
 
1602 runge 63
void Module::SlotOnModuleChange(std::string full_id, bool available)
64
{
1625 runge 65
    this->io_service_.post(boost::bind(&Module::SlotOnModuleChangeHandler, this, full_id, available));
66
}
67
 
1642 runge 68
void Module::SlotOnModuleMessage(std::string full_id, std::string command, common::StringMap variables)
1625 runge 69
{
70
    this->io_service_.post(boost::bind(&Module::SlotOnModuleMessageHandler, this, full_id, command, variables));
71
}
72
 
73
void Module::SlotOnModuleChangeHandler(std::string full_id, bool available)
74
{
1740 runge 75
    v8::Locker lock;
1625 runge 76
    v8::Context::Scope context_scope(vm::Manager::Instance()->GetContext());
1741 runge 77
    v8::HandleScope handle_scope;
1625 runge 78
 
1642 runge 79
    //LOG.Debug(std::string(__FUNCTION__) + " called!");
1625 runge 80
 
1602 runge 81
    ArgumentListPointer arguments = ArgumentListPointer(new ArgumentList);
82
    arguments->push_back(v8::String::New(full_id.data()));
83
    arguments->push_back(v8::Boolean::New(available));
84
 
1608 runge 85
    this->Call(0, "Module_OnChange", arguments);
1602 runge 86
}
87
 
1642 runge 88
void Module::SlotOnModuleMessageHandler(std::string full_id, std::string command, common::StringMap variables)
1602 runge 89
{
1740 runge 90
    v8::Locker lock;
1619 runge 91
    v8::Context::Scope context_scope(vm::Manager::Instance()->GetContext());
1741 runge 92
    v8::HandleScope handle_scope;
1619 runge 93
 
1642 runge 94
    //LOG.Debug(std::string(__FUNCTION__) + " called!");
1609 runge 95
 
1602 runge 96
    ArgumentListPointer arguments = ArgumentListPointer(new ArgumentList);
97
 
98
    arguments->push_back(v8::String::New(full_id.data()));
99
    arguments->push_back(v8::String::New(command.data()));
100
 
1619 runge 101
    v8::Local<v8::Array> vars = v8::Array::New(variables.size());
102
 
1642 runge 103
    for (common::StringMap::iterator it = variables.begin(); it != variables.end(); it++)
1602 runge 104
    {
1619 runge 105
        vars->Set(v8::String::New(it->first.data()), v8::String::New(it->second.data()));
1602 runge 106
    }
107
 
1619 runge 108
    arguments->push_back(vars);
109
 
1608 runge 110
    this->Call(0, "Module_OnMessage", arguments);
1602 runge 111
}
112
 
1604 runge 113
Value Module::Export_SendModuleMessage(const v8::Arguments& args)
1602 runge 114
{
1740 runge 115
    v8::Locker lock;
1625 runge 116
    v8::Context::Scope context_scope(vm::Manager::Instance()->GetContext());
1741 runge 117
    v8::HandleScope handle_scope;
1604 runge 118
 
1642 runge 119
    //LOG.Debug(std::string(__FUNCTION__) + " called!");
1625 runge 120
 
1604 runge 121
    if (args.Length() < 3)
122
    {
1647 runge 123
        LOG.Error(std::string(__FUNCTION__) + ": To few arguments.");
1741 runge 124
        return handle_scope.Close(v8::Boolean::New(false));
1604 runge 125
    }
126
 
1642 runge 127
    common::StringMap variables;
1602 runge 128
 
129
    v8::String::AsciiValue full_id(args[0]);
130
    v8::String::AsciiValue command(args[1]);
131
    unsigned int length = args[2]->Uint32Value();
132
 
133
    for (unsigned int n = 3; n < length * 2 + 3; n += 2)
134
    {
135
        v8::String::AsciiValue name(args[n]);
136
        v8::String::AsciiValue value(args[n + 1]);
137
 
1607 runge 138
        //LOG.Debug(std::string(*name) + "====" + std::string(*value));
139
 
1602 runge 140
        variables[std::string(*name)] = std::string(*value);
141
    }
142
 
1642 runge 143
    control::Manager::Instance()->SendMessage(std::string(*full_id), std::string(*command), variables);
1604 runge 144
 
1741 runge 145
    return handle_scope.Close(v8::Boolean::New(true));
1602 runge 146
}
1604 runge 147
 
1644 runge 148
Value Module::Export_GetAvailableModules(const v8::Arguments& args)
1604 runge 149
{
1740 runge 150
    v8::Locker lock;
1625 runge 151
    v8::Context::Scope context_scope(vm::Manager::Instance()->GetContext());
1741 runge 152
    v8::HandleScope handle_scope;
1625 runge 153
 
1642 runge 154
    //LOG.Debug(std::string(__FUNCTION__) + " called!");
1602 runge 155
 
1644 runge 156
    common::StringList available_modules = control::Manager::Instance()->GetAvailableModules();
1604 runge 157
 
1644 runge 158
    v8::Local<v8::Array> result = v8::Array::New(available_modules.size());
159
 
160
    for (unsigned int n = 0; n < available_modules.size(); n++)
161
    {
162
        result->Set(n, v8::String::New(available_modules[n].data()));
163
    }
164
 
1741 runge 165
    return handle_scope.Close(result);
1604 runge 166
}
1642 runge 167
 
1602 runge 168
}; // namespace plugin
169
}; // namespace vm
170
}; // namespace atom