dbus plugin updates
[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 #include <gio/gio.h>
21 #include <string>
22
23 using namespace std;
24
25 static void
26 on_bus_acquired (GDBusConnection *connection, const gchar *name, gpointer user_data)
27 {
28         //AbstractDBusInterface::iface()->registerObject(connection);
29 }
30
31 static void
32 on_name_acquired (GDBusConnection *connection, const gchar *name, gpointer user_data)
33 {
34 }
35
36 static void
37 on_name_lost (GDBusConnection *connection, const gchar *name, gpointer user_data)
38 {
39 }
40
41
42
43 DBusInterfaceManager::DBusInterfaceManager()
44 {
45         g_type_init();
46
47         ownerId = g_bus_own_name(G_BUS_TYPE_SESSION,
48                                         DBusServiceName,
49                                         G_BUS_NAME_OWNER_FLAGS_NONE,
50                                         on_bus_acquired,
51                                         on_name_acquired,
52                                         on_name_lost,
53                                         this,
54                                         NULL);
55
56         ///TODO: instantiate other interfaces here!
57 }
58
59 DBusInterfaceManager::~DBusInterfaceManager()
60 {
61         g_bus_unown_name(ownerId);
62 }
63
64