initial zone support for bluemonkey
[profile/ivi/automotive-message-broker.git] / plugins / bluemonkey / bluemonkey.h
1 /*
2         Copyright (C) 2012  Intel Corporation
3
4         This library is free software; you can redistribute it and/or
5         modify it under the terms of the GNU Lesser General Public
6         License as published by the Free Software Foundation; either
7         version 2.1 of the License, or (at your option) any later version.
8
9         This library is distributed in the hope that it will be useful,
10         but WITHOUT ANY WARRANTY; without even the implied warranty of
11         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12         Lesser General Public License for more details.
13
14         You should have received a copy of the GNU Lesser General Public
15         License along with this library; if not, write to the Free Software
16         Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
17 */
18
19
20 #ifndef BluemonkeySink_H
21 #define BluemonkeySink_H
22
23 #include "abstractsource.h"
24 #include "ambpluginimpl.h"
25
26 #include <map>
27
28 #include <QObject>
29 #include <QVariant>
30 #include <QJsonDocument>
31 #include <QDateTime>
32 #include <QJSValue>
33 #include "uuidhelper.h"
34
35 #include "authenticate.h"
36
37 class QJSEngine;
38
39 class ModuleInterface
40 {
41 public:
42         virtual std::map<std::string, QObject*> objects(std::map<string, string> config) = 0;
43 };
44
45 Q_DECLARE_INTERFACE(ModuleInterface, "org.automotive.bluemonkey.moduleinterface")
46
47 class Property: public QObject, public AbstractSink
48 {
49         Q_OBJECT
50         Q_PROPERTY(QString type READ type)
51         Q_PROPERTY(QVariant value READ value WRITE setValue)
52         Q_PROPERTY(int zone READ zone)
53
54 public:
55         Property(VehicleProperty::Property, QString srcFilter, AbstractRoutingEngine* re, Zone::Type zone = Zone::None, QObject *parent = 0);
56
57         QString type();
58         void setType(QString t);
59
60         virtual PropertyList subscriptions() { return PropertyList(); }
61         virtual void supportedChanged(const PropertyList &)
62         {
63                 DebugOut()<<"Bluemonkey Property Supported Changed"<<endl;
64         }
65
66         virtual void propertyChanged(AbstractPropertyType* value);
67
68         virtual const std::string uuid() { return mUuid; }
69
70         QVariant value();
71         void setValue(QVariant v);
72
73         void getHistory(QDateTime begin, QDateTime end, QJSValue cbFunction);
74
75         Zone::Type zone() { return mZone; }
76
77 Q_SIGNALS:
78
79         void changed(QVariant val);
80
81 private:
82         AbstractPropertyType* mValue;
83         const std::string mUuid;
84         Zone::Type mZone;
85
86 };
87
88 class BluemonkeySink : public QObject, public AmbPluginImpl
89 {
90 Q_OBJECT
91 public:
92         BluemonkeySink(AbstractRoutingEngine* e, map<string, string> config,  AbstractSource& parent);
93         virtual PropertyList subscriptions();
94         virtual void supportedChanged(const PropertyList & supportedProperties);
95         virtual void propertyChanged(AbstractPropertyType* value);
96         virtual const std::string uuid() const;
97
98         QJSEngine* engine;
99
100         virtual int supportedOperations();
101
102 private: //source privates
103
104         PropertyList mSupported;
105         std::list<AbstractPropertyType*> propertyValueCache;
106
107
108 public Q_SLOTS:
109
110         QObject* subscribeTo(QString str);
111         QObject* subscribeToSource(QString str, QString srcFilter);
112         QObject* subscribeToZone(QString str, int zone);
113
114         QStringList sourcesForProperty(QString property);
115         QVariant zonesForProperty(QString property, QString src);
116
117         QStringList supportedProperties();
118
119         bool authenticate(QString pass);
120
121         void loadConfig(QString str);
122
123         bool loadModule(QString path);
124
125         void reloadEngine();
126
127         void writeProgram(QString program);
128
129         void log(QString str);
130
131         QObject* createTimer();
132
133         void getHistory(QStringList properties, QDateTime begin, QDateTime end, QJSValue cbFunction);
134
135         void setSilentMode(bool m)
136         {
137                 mSilentMode = m;
138         }
139
140         void createCustomProperty(QString name, QJSValue defaultValue, Zone::Type zone);
141
142 private:
143         QStringList configsToLoad;
144
145         Authenticate* auth;
146         bool mSilentMode;
147 };
148
149
150 #endif // BluemonkeySink_H