summaryrefslogtreecommitdiff
path: root/plugins/bluemonkey/bluemonkey.h
blob: 96b7297de813c1893e879c96fab0303a0b0b9279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
    Copyright (C) 2012  Intel Corporation

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*/


#ifndef BluemonkeySink_H
#define BluemonkeySink_H

#include "abstractsink.h"
#include <QObject>
#include <QVariant>
#include <QJsonDocument>
#include "uuidhelper.h"

#include "authenticate.h"

class IrcCommunication;
class QScriptEngine;

class Property: public QObject, public AbstractSink
{
	Q_OBJECT
	Q_PROPERTY(QString type READ type)
	Q_PROPERTY(QVariant value READ value WRITE setValue)

public:
	Property(VehicleProperty::Property, AbstractRoutingEngine* re, QObject *parent = 0);

	QString type();
	void setType(QString t);

	virtual PropertyList subscriptions() { PropertyList list; list.push_back(type().toStdString()); return list; }
	virtual void supportedChanged(PropertyList ){	}

	virtual void propertyChanged(VehicleProperty::Property property, AbstractPropertyType* value, std::string uuid);

	virtual std::string uuid() { return amb::createUuid(); }

	QVariant value();
	void setValue(QVariant v);

Q_SIGNALS:

	void changed(QVariant val);

private:
	AbstractPropertyType* mValue;

};

class BluemonkeySink : public QObject, public AbstractSink
{
Q_OBJECT
public:
	BluemonkeySink(AbstractRoutingEngine* e, map<string, string> config);
	virtual PropertyList subscriptions();
	virtual void supportedChanged(PropertyList supportedProperties);
	virtual void propertyChanged(VehicleProperty::Property property, AbstractPropertyType* value, std::string uuid);
	virtual std::string uuid();

public Q_SLOTS:

	QObject* subscribeTo(QString str);

	bool authenticate(QString pass);

	void loadConfig(QString str);

Q_SIGNALS:


private:
	IrcCommunication* irc;
	QScriptEngine* engine;
	Authenticate* auth;
};

class BluemonkeySinkManager: public AbstractSinkManager
{
public:
	BluemonkeySinkManager(AbstractRoutingEngine* engine, map<string, string> config)
	:AbstractSinkManager(engine, config)
	{
		new BluemonkeySink(routingEngine, config);
	}
};

#endif // BluemonkeySink_H