* try /etc/hostname for the local device name as initial guess
[modest] / src / maemo / modest-maemo-utils.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #ifndef DBUS_API_SUBJECT_TO_CHANGE
31 #define DBUS_API_SUBJECT_TO_CHANGE
32 #endif /*DBUS_API_SUBJECT_TO_CHANGE*/
33
34 #include <dbus/dbus.h>
35 #include <dbus/dbus-glib-lowlevel.h>
36 #include <glib.h>
37 #include <modest-runtime.h>
38
39 #include "modest-maemo-utils.h"
40
41 /*
42  * For getting and tracking the Bluetooth name
43  */
44 #define BTNAME_SERVICE                  "org.bluez"
45 #define BTNAME_REQUEST_IF               "org.bluez.Adapter"
46 #define BTNAME_SIGNAL_IF                "org.bluez.Adapter"
47 #define BTNAME_REQUEST_PATH             "/org/bluez/hci0"
48 #define BTNAME_SIGNAL_PATH              "/org/bluez/hci0"
49
50 #define BTNAME_REQ_GET                  "GetName"
51 #define BTNAME_SIG_CHANGED              "NameChanged"
52
53 #define BTNAME_MATCH_RULE "type='signal',interface='" BTNAME_SIGNAL_IF \
54                           "',member='" BTNAME_SIG_CHANGED "'"
55
56
57 GtkWidget*
58 modest_maemo_utils_menubar_to_menu (GtkUIManager *ui_manager)
59 {
60         GtkWidget *main_menu;
61         GtkWidget *menubar;
62         GList *iter;
63
64         g_return_val_if_fail (ui_manager, NULL);
65         
66         /* Create new main menu */
67         main_menu = gtk_menu_new();
68
69         /* Get the menubar from the UI manager */
70         menubar = gtk_ui_manager_get_widget (ui_manager, "/MenuBar");
71
72         iter = gtk_container_get_children (GTK_CONTAINER (menubar));
73         while (iter) {
74                 GtkWidget *menu;
75
76                 menu = GTK_WIDGET (iter->data);
77                 gtk_widget_reparent(menu, main_menu);
78
79                 iter = g_list_next (iter);
80         }
81         return main_menu;
82 }
83
84
85 static void
86 update_device_name_from_msg (DBusMessage *message)
87 {
88         DBusError error;
89         DBusMessageIter iter;
90
91         dbus_error_init (&error);
92
93         if (dbus_set_error_from_message (&error, message)) {
94                 g_printerr ("modest: failed to get bluetooth name: %s\n", error.message);
95                 dbus_error_free (&error);
96         } else {
97                 const gchar *device_name;
98                 if (!dbus_message_iter_init (message, &iter)) {
99                         g_printerr ("modest: message did not have argument\n");
100                         return;
101                 }
102                 dbus_message_iter_get_basic (&iter, &device_name);
103                 g_warning ("update device name: %s", device_name);
104                 modest_conf_set_string (modest_runtime_get_conf(),
105                                         MODEST_CONF_DEVICE_NAME, device_name,
106                                         NULL);
107         }
108 }
109
110
111 static void
112 on_device_name_received (DBusPendingCall *call, void *user_data)
113 {
114         DBusMessage *message;
115         
116         g_return_if_fail (dbus_pending_call_get_completed (call));
117         
118         message = dbus_pending_call_steal_reply (call);
119         if (!message) {
120                 g_printerr ("modest: no reply on device name query\n");
121                 return;
122         }
123
124         update_device_name_from_msg (message);
125         dbus_message_unref (message);
126 }
127
128
129 static DBusHandlerResult
130 handle_dbus_signal (DBusConnection *conn, DBusMessage *msg, gpointer data)
131 {
132         if (dbus_message_is_signal(msg, BTNAME_SIGNAL_IF, BTNAME_SIG_CHANGED))
133                 update_device_name_from_msg (msg);
134
135         return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
136 }
137
138
139 static void
140 get_device_name_from_dbus ()
141 {
142         static DBusConnection *conn = NULL;
143         DBusMessage *request;
144         DBusError error;
145         DBusPendingCall *call = NULL;
146         
147         dbus_error_init (&error);
148         if (!conn) {
149                 conn = dbus_bus_get (DBUS_BUS_SYSTEM, &error);
150                 if (!conn) {
151                         g_printerr ("modest: cannot get on the dbus: %s: %s\n",
152                                     error.name, error.message);
153                         dbus_error_free (&error);
154                         return;
155                 }
156         }
157         
158         request = dbus_message_new_method_call (BTNAME_SERVICE, BTNAME_REQUEST_PATH,
159                                                 BTNAME_REQUEST_IF, BTNAME_REQ_GET);
160         if (!request) {
161                 /* should we free the connection? */
162                 g_printerr ("modest: dbus_message_new_method_call failed\n");
163                 return;
164         }
165         dbus_message_set_auto_start (request, TRUE);
166         if (dbus_connection_send_with_reply (conn, request, &call, -1)) {
167                 dbus_pending_call_set_notify (call, on_device_name_received,
168                                               NULL, NULL);
169                 dbus_pending_call_unref (call);
170         }
171         dbus_message_unref (request);
172         
173         dbus_connection_setup_with_g_main (conn, NULL);
174         dbus_bus_add_match (conn, BTNAME_MATCH_RULE, &error);
175         if (dbus_error_is_set(&error)) {
176                 g_printerr ("modest: dbus_bus_add_match failed: %s\n", error.message);
177                 dbus_error_free (&error);
178         }
179
180         if (!dbus_connection_add_filter(conn, handle_dbus_signal, NULL, NULL))
181                 g_printerr ("modest: dbus_connection_add_filter failed\n");
182 }
183
184
185 void
186 modest_maemo_utils_get_device_name (void)
187 {
188         get_device_name_from_dbus ();
189 }
190
191
192