only export dbus properties that are supported
[profile/ivi/automotive-message-broker.git] / plugins / dbus / dbusinterfacemanager.cpp
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 #include "dbusinterfacemanager.h"
20
21
22 #include <gio/gio.h>
23 #include <string>
24
25 ///properties:
26 #include "accelerationproperty.h"
27 #include "properties.h"
28
29 #define ConstructProperty(property) \
30         new property(iface->re, connection);
31
32 using namespace std;
33
34 static void
35 on_bus_acquired (GDBusConnection *connection, const gchar *name, gpointer user_data)
36 {
37         DBusInterfaceManager* iface = static_cast<DBusInterfaceManager*>(user_data);
38
39         AbstractDBusInterface* acceleration = new AccelerationProperty(iface->re, connection);
40         AbstractDBusInterface* vehicleSpeed = new VehicleSpeedProperty(iface->re, connection);
41         AbstractDBusInterface* tirePressure = new TirePressureProperty(iface->re, connection);
42         ConstructProperty(VehiclePowerModeProperty);
43         ConstructProperty(TripMeterProperty);
44         ConstructProperty(TransmissionProperty);
45 }
46
47 static void
48 on_name_acquired (GDBusConnection *connection, const gchar *name, gpointer user_data)
49 {
50 }
51
52 static void
53 on_name_lost (GDBusConnection *connection, const gchar *name, gpointer user_data)
54 {
55 }
56
57
58
59 DBusInterfaceManager::DBusInterfaceManager(AbstractRoutingEngine* engine)
60         :re(engine)
61 {
62         g_type_init();
63
64         ownerId = g_bus_own_name(G_BUS_TYPE_SYSTEM,
65                                         DBusServiceName,
66                                         G_BUS_NAME_OWNER_FLAGS_NONE,
67                                         on_bus_acquired,
68                                         on_name_acquired,
69                                         on_name_lost,
70                                         this,
71                                         NULL);
72
73 }
74
75 DBusInterfaceManager::~DBusInterfaceManager()
76 {
77         g_bus_unown_name(ownerId);
78 }
79
80