Subversion Repositories HomeAutomation

Rev

Rev 1604 | Go to most recent revision | Details | 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"
30
#include "type/common.h"
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
 
41
    Module();
42
    virtual ~Module();
43
 
44
    void InitializeDone();
45
 
46
private:
47
    typedef boost::shared_ptr<char> TrackerPointer;
48
 
49
    static logging::Logger LOG;
50
 
51
    TrackerPointer tracker_;
52
 
53
    void SlotOnModuleChange(std::string full_id, bool available);
54
    void SlotOnModuleMessage(std::string full_id, std::string command, type::StringMap variables);
55
 
56
    static Value Export_SendModuleMessage(const v8::Arguments& args);
57
 
58
 
59
};
60
 
61
}; // namespace plugin
62
}; // namespace vm
63
}; // namespace atom
64
 
65
#endif // VM_PLUGIN_MODULE_H