summaryrefslogtreecommitdiff
path: root/plugins/dbus/varianttype.cpp
blob: acde5e37654f04e522a2a0408ffd106077669553 (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
#include "varianttype.h"
#include "abstractroutingengine.h"
#include "debugout.h"

VariantType::VariantType(AbstractRoutingEngine* re, std::string signature, std::string propertyName,  Access access, AbstractDBusInterface *interface)
	:AbstractProperty(propertyName, signature, access, interface),routingEngine(re)
{
	//set default value:
	setValue(VehicleProperty::getPropertyTypeForPropertyNameValue(propertyName));

	AsyncPropertyRequest request;
	request.property = mPropertyName;

	using namespace std::placeholders;
	request.completed = std::bind(&VariantType::asyncReply, this, _1);

	re->getPropertyAsync(request);

}

GVariant *VariantType::toGVariant()
{
	if(!value())
	{
		AbstractPropertyType* v = VehicleProperty::getPropertyTypeForPropertyNameValue(mPropertyName);

		setValue(v);

		delete v;
	}

	auto v = value();

	return v->toVariant();
}

void VariantType::fromGVariant(GVariant *val)
{
	AbstractPropertyType* v = VehicleProperty::getPropertyTypeForPropertyNameValue(mPropertyName);
	v->fromVariant( val );

	AsyncSetPropertyRequest request;
	request.property = mPropertyName;
	request.value = v;
	request.completed = [](AsyncPropertyReply* reply)
	{
		/// TODO: throw dbus exception
		if(!reply->success)
		{
			DebugOut(0)<<"Success fail";
		}
		delete reply;
	};

	routingEngine->setProperty(request);
}

void VariantType::asyncReply(AsyncPropertyReply * reply)
{
	setValue(reply->value);

	delete reply;
}