Subversion Repositories HomeAutomation

Rev

Rev 1647 | 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
#ifndef VM_PLUGIN_MODULE_H
22
#define VM_PLUGIN_MODULE_H
23
 
24
#include <boost/shared_ptr.hpp>
25
 
26
#include "vm/Plugin.h"
27
#include "logging/Logger.h"
28
#include "timer/Subscriber.h"
29
#include "can/Message.h"
1642 runge 30
#include "common/common.h"
1602 runge 31
 
32
namespace atom {
33
namespace vm {
34
namespace plugin {
35
 
36
class Module : public Plugin
37
{
38
public:
39
    typedef boost::shared_ptr<Module> Pointer;
40
 
1625 runge 41
    Module(boost::asio::io_service& io_service);
1602 runge 42
    virtual ~Module();
43
 
44
    void InitializeDone();
1647 runge 45
    void CallOutput(unsigned int request_id, std::string output);
1602 runge 46
 
47
private:
48
    static logging::Logger LOG;
49
 
50
    void SlotOnModuleChange(std::string full_id, bool available);
1642 runge 51
    void SlotOnModuleMessage(std::string full_id, std::string command, common::StringMap variables);
1602 runge 52
 
1625 runge 53
    void SlotOnModuleChangeHandler(std::string full_id, bool available);
1642 runge 54
    void SlotOnModuleMessageHandler(std::string full_id, std::string command, common::StringMap variables);
1625 runge 55
 
1602 runge 56
    static Value Export_SendModuleMessage(const v8::Arguments& args);
1644 runge 57
    static Value Export_GetAvailableModules(const v8::Arguments& args);
1602 runge 58
};
59
 
60
}; // namespace plugin
61
}; // namespace vm
62
}; // namespace atom
63
 
64
#endif // VM_PLUGIN_MODULE_H