sinks auto-register with the routing engine
[profile/ivi/automotive-message-broker.git] / lib / abstractroutingengine.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 ABSTRACTROUTINGENGINE_H
21 #define ABSTRACTROUTINGENGINE_H
22
23 #include <boost/any.hpp>
24 #include <functional>
25 #include "vehicleproperty.h"
26
27 class AbstractSink;
28 class AbstractSource;
29 class AsyncPropertyReply;
30
31
32 typedef std::function<void (AsyncPropertyReply*)> CompletedSignal;
33
34 class AsyncPropertyRequest
35 {
36 public:
37         VehicleProperty::Property property;
38         CompletedSignal completed;
39 };
40
41 class AsyncPropertyReply: public AsyncPropertyRequest
42 {
43 public:
44         AsyncPropertyReply(AsyncPropertyRequest request)
45         {
46                 this->property = request.property;
47                 this->completed = request.completed;
48         }
49
50         boost::any value;
51 };
52
53 class AbstractRoutingEngine
54 {
55 public:
56         virtual void setSupported(PropertyList supported, AbstractSource* source) = 0;
57         virtual void updateSupported(PropertyList added, PropertyList removed) = 0;
58         virtual void updateProperty(VehicleProperty::Property property, boost::any value) = 0;
59         
60         /// sinks:
61         virtual void registerSink(AbstractSink* self) = 0;
62         virtual void  unregisterSink(AbstractSink* self) = 0;
63         virtual AsyncPropertyReply *getPropertyAsync(AsyncPropertyRequest request) = 0;
64         virtual void setProperty(VehicleProperty::Property, boost::any) = 0;
65         virtual void subscribeToProperty(VehicleProperty::Property, AbstractSink* self) = 0;
66         virtual void unsubscribeToProperty(VehicleProperty::Property, AbstractSink* self) = 0;
67         virtual PropertyList supported() = 0;
68 };
69
70 #endif // ABSTRACTROUTINGENGINE_H