2 Copyright (C) 2012 Intel Corporation
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.
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.
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
19 #include "dbusinterfacemanager.h"
26 #include "accelerationproperty.h"
27 #include "properties.h"
29 #define ConstructProperty(property) \
30 new property(iface->re, connection);
35 on_bus_acquired (GDBusConnection *connection, const gchar *name, gpointer user_data)
37 DBusInterfaceManager* iface = static_cast<DBusInterfaceManager*>(user_data);
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);
49 on_name_acquired (GDBusConnection *connection, const gchar *name, gpointer user_data)
54 on_name_lost (GDBusConnection *connection, const gchar *name, gpointer user_data)
60 DBusInterfaceManager::DBusInterfaceManager(AbstractRoutingEngine* engine)
65 ownerId = g_bus_own_name(G_BUS_TYPE_SESSION,
67 G_BUS_NAME_OWNER_FLAGS_NONE,
74 ///TODO: instantiate other interfaces here!
77 DBusInterfaceManager::~DBusInterfaceManager()
79 g_bus_unown_name(ownerId);