summaryrefslogtreecommitdiff
path: root/lib/abstractroutingengine.cpp
blob: ce153d00dcdfbb2bc970366f3fe78e0db60a01c7 (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
/*
    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
*/


#include "abstractroutingengine.h"



AbstractRoutingEngine::~AbstractRoutingEngine()
{
}

AsyncPropertyReply::AsyncPropertyReply(const AsyncPropertyRequest &request)
	:AsyncPropertyRequest(request), value(NULL), success(false), timeoutSource(nullptr)
{
	setTimeout();
}

AsyncPropertyReply::AsyncPropertyReply(const AsyncSetPropertyRequest &request)
	:AsyncPropertyRequest(request), value(request.value), success(false), timeoutSource(nullptr)
{
	setTimeout();
	value->zone = request.zoneFilter;
}

void AsyncPropertyReply::setTimeout()
{
	auto timeoutfunc = [](gpointer userData) {
		AsyncPropertyReply* thisReply = static_cast<AsyncPropertyReply*>(userData);
		if(thisReply->success == false)
		{
			thisReply->error = Timeout;
			thisReply->completed(thisReply);
		}
		return 0;
	};

	if(timeout)
	{
		timeoutSource = g_timeout_source_new(timeout);
		g_source_set_callback(timeoutSource,(GSourceFunc) timeoutfunc, this, nullptr);
		g_source_attach(timeoutSource, nullptr);
	}
}