1afecc886e1b02c1f2160019f6c3b631c5c554a0
[connman] / src / manager.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <gdbus.h>
27
28 #include "connman.h"
29
30 static DBusMessage *list_interfaces(DBusConnection *conn,
31                                         DBusMessage *msg, void *data)
32 {
33         DBusMessage *reply;
34         DBusMessageIter array, iter;
35
36         DBG("conn %p", conn);
37
38         reply = dbus_message_new_method_return(msg);
39         if (reply == NULL)
40                 return NULL;
41
42         dbus_message_iter_init_append(reply, &array);
43
44         dbus_message_iter_open_container(&array, DBUS_TYPE_ARRAY,
45                                 DBUS_TYPE_OBJECT_PATH_AS_STRING, &iter);
46
47         __connman_iface_list(&iter);
48
49         dbus_message_iter_close_container(&array, &iter);
50
51         return reply;
52 }
53
54 static GDBusMethodTable manager_methods[] = {
55         { "ListInterfaces", "", "ao", list_interfaces },
56         { },
57 };
58
59 static GDBusSignalTable manager_signals[] = {
60         { "InterfaceAdded",   "o" },
61         { "InterfaceRemoved", "o" },
62         { },
63 };
64
65 static DBusConnection *connection = NULL;
66
67 int __connman_manager_init(DBusConnection *conn)
68 {
69         DBG("conn %p", conn);
70
71         connection = dbus_connection_ref(conn);
72         if (connection == NULL)
73                 return -1;
74
75         g_dbus_register_object(connection, CONNMAN_MANAGER_PATH, NULL, NULL);
76
77         g_dbus_register_interface(connection, CONNMAN_MANAGER_PATH,
78                                                 CONNMAN_MANAGER_INTERFACE,
79                                                 manager_methods,
80                                                 manager_signals, NULL);
81
82         return 0;
83 }
84
85 void __connman_manager_cleanup(void)
86 {
87         DBG("conn %p", connection);
88
89         g_dbus_unregister_interface(connection, CONNMAN_MANAGER_PATH,
90                                                 CONNMAN_MANAGER_INTERFACE);
91
92         g_dbus_unregister_object(connection, CONNMAN_MANAGER_PATH);
93
94         dbus_connection_unref(connection);
95 }