44dcf55f73c947b7e1a7abbbad652a321fddc124
[connman] / src / profile.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2009  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 <glib.h>
27 #include <gdbus.h>
28
29 #include "connman.h"
30
31 void __connman_profile_list(DBusMessageIter *iter)
32 {
33         const char *path = "/profile/default";
34
35         DBG("");
36
37         dbus_message_iter_append_basic(iter, DBUS_TYPE_OBJECT_PATH, &path);
38 }
39
40 static DBusMessage *get_properties(DBusConnection *conn,
41                                         DBusMessage *msg, void *data)
42 {
43         const char *name = "Default";
44         DBusMessage *reply;
45         DBusMessageIter array, dict;
46
47         DBG("conn %p", conn);
48
49         reply = dbus_message_new_method_return(msg);
50         if (reply == NULL)
51                 return NULL;
52
53         dbus_message_iter_init_append(reply, &array);
54
55         dbus_message_iter_open_container(&array, DBUS_TYPE_ARRAY,
56                         DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
57                         DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING
58                         DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &dict);
59
60         connman_dbus_dict_append_variant(&dict, "Name",
61                                                 DBUS_TYPE_STRING, &name);
62
63         dbus_message_iter_close_container(&array, &dict);
64
65         return reply;
66 }
67
68 static GDBusMethodTable profile_methods[] = {
69         { "GetProperties", "", "a{sv}", get_properties },
70         { },
71 };
72
73 static DBusConnection *connection = NULL;
74
75 int __connman_profile_init(DBusConnection *conn)
76 {
77         DBG("conn %p", conn);
78
79         connection = dbus_connection_ref(conn);
80         if (connection == NULL)
81                 return -1;
82
83         g_dbus_register_interface(connection, "/profile/default",
84                                                 CONNMAN_PROFILE_INTERFACE,
85                                                 profile_methods,
86                                                 NULL, NULL, NULL, NULL);
87
88         return 0;
89 }
90
91 void __connman_profile_cleanup(void)
92 {
93         DBG("conn %p", connection);
94
95         g_dbus_unregister_interface(connection, "/profile/default",
96                                                 CONNMAN_PROFILE_INTERFACE);
97
98         if (connection == NULL)
99                 return;
100
101         dbus_connection_unref(connection);
102 }