Mercurial > audlegacy-plugins
annotate src/bluetooth/bluetooth.c @ 2847:671cdfc2d62d
Basic pairing interface
author | Paula Stanciu <paula.stanciu@gmail.com> |
---|---|
date | Mon, 28 Jul 2008 21:48:39 +0300 |
parents | 3d7f01edb388 |
children | 43557eb3180f |
rev | line source |
---|---|
2839 | 1 /* |
2 * Audacious Bluetooth headset suport plugin | |
3 * | |
4 * Copyright (c) 2008 Paula Stanciu paula.stanciu@gmail.com | |
5 * | |
6 * This program is free software; you can redistribute it and/or modify | |
7 * it under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; under version 3 of the License. | |
9 * | |
10 * This program is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 * GNU General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU General Public License | |
16 * along with this program. If not, see <http://www.gnu.org/licenses>. | |
17 */ | |
18 | |
2644 | 19 #include "bluetooth.h" |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
20 #include "marshal.h" |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
21 #include "gui.h" |
2728 | 22 #include "scan_gui.h" |
2838
22a2ffe86750
added passkey agent and basic pairing functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2756
diff
changeset
|
23 #include "agent.h" |
2644 | 24 #define DEBUG 1 |
25 static gboolean plugin_active = FALSE,exiting=FALSE; | |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
26 GList * current_device = NULL; |
2728 | 27 gint config = 0; |
28 gint devices_no = 0; | |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
29 GStaticMutex mutex = G_STATIC_MUTEX_INIT; |
2845
d0cbf303869b
removed interface freeze while pairing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2842
diff
changeset
|
30 static GThread *connect_th; |
2644 | 31 void bluetooth_init ( void ); |
32 void bluetooth_cleanup ( void ); | |
33 void bt_cfg(void); | |
34 void bt_about(void); | |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
35 static void remote_device_found(DBusGProxy *object, char *address, const unsigned int class, const int rssi, gpointer user_data); |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
36 static void discovery_started(DBusGProxy *object, gpointer user_data); |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
37 static void remote_name_updated(DBusGProxy *object, const char *address, char *name, gpointer user_data); |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
38 static void print_results(void); |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
39 static void discovery_completed(DBusGProxy *object, gpointer user_data); |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
40 void discover_devices(void); |
2728 | 41 void disconnect_dbus_signals(void); |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
42 |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
43 |
2644 | 44 GeneralPlugin bluetooth_gp = |
45 { | |
2649
d891ba4be5a5
fixed crash when prefs window was closed while scanning
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2648
diff
changeset
|
46 .description = "Bluetooth audio support", |
2644 | 47 .init = bluetooth_init, |
48 .about = bt_about, | |
49 .configure = bt_cfg, | |
50 .cleanup = bluetooth_cleanup | |
51 }; | |
52 GeneralPlugin *bluetooth_gplist[] = { &bluetooth_gp, NULL }; | |
53 DECLARE_PLUGIN(bluetooth_gp, NULL, NULL, NULL, NULL, NULL, bluetooth_gplist, NULL, NULL) | |
2728 | 54 |
2644 | 55 void bluetooth_init ( void ) |
56 { | |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
57 audio_devices = NULL; |
2838
22a2ffe86750
added passkey agent and basic pairing functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2756
diff
changeset
|
58 bus = NULL; |
22a2ffe86750
added passkey agent and basic pairing functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2756
diff
changeset
|
59 obj = NULL; |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
60 discover_devices(); |
2644 | 61 } |
62 | |
63 void bluetooth_cleanup ( void ) | |
64 { | |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
65 printf("bluetooth: exit\n"); |
2732
1a27c497e526
indentation and some small bug fixing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2728
diff
changeset
|
66 if (config ==1 ){ |
2756
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
67 close_window(); |
2732
1a27c497e526
indentation and some small bug fixing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2728
diff
changeset
|
68 config =0; |
2649
d891ba4be5a5
fixed crash when prefs window was closed while scanning
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2648
diff
changeset
|
69 } |
2732
1a27c497e526
indentation and some small bug fixing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2728
diff
changeset
|
70 if(discover_finish == 2) { |
1a27c497e526
indentation and some small bug fixing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2728
diff
changeset
|
71 dbus_g_connection_flush (bus); |
2734 | 72 dbus_g_connection_unref(bus); |
2732
1a27c497e526
indentation and some small bug fixing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2728
diff
changeset
|
73 disconnect_dbus_signals(); |
2644 | 74 |
2732
1a27c497e526
indentation and some small bug fixing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2728
diff
changeset
|
75 } |
2734 | 76 } |
2732
1a27c497e526
indentation and some small bug fixing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2728
diff
changeset
|
77 |
2734 | 78 void bt_about( void ) |
79 { | |
80 printf("about call\n"); | |
81 } | |
2728 | 82 |
2734 | 83 void bt_cfg(void) |
84 { | |
85 printf("bt_cfg\n"); | |
86 config =1; | |
87 if(discover_finish == 2){ | |
88 if (devices_no == 0){ | |
89 printf("no devs!\n"); | |
2847
671cdfc2d62d
Basic pairing interface
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2846
diff
changeset
|
90 show_scan(0); |
2734 | 91 show_no_devices(); |
92 }else | |
93 results_ui(); | |
2728 | 94 } |
2847
671cdfc2d62d
Basic pairing interface
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2846
diff
changeset
|
95 else show_scan(0); |
2734 | 96 printf("end of bt_cfg\n"); |
97 } | |
2728 | 98 |
2734 | 99 void disconnect_dbus_signals() |
100 { | |
101 dbus_g_proxy_disconnect_signal(obj, "RemoteDeviceFound", G_CALLBACK(remote_device_found), bus); | |
102 dbus_g_proxy_disconnect_signal(obj, "DiscoveryStarted", G_CALLBACK(discovery_started), bus); | |
103 dbus_g_proxy_disconnect_signal(obj, "DiscoveryCompleted", G_CALLBACK(discovery_completed), bus); | |
104 dbus_g_proxy_disconnect_signal(obj, "RemoteNameUpdated", G_CALLBACK(remote_name_updated), NULL); | |
2644 | 105 |
2734 | 106 } |
2644 | 107 |
2756
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
108 void clean_devices_list(){ |
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
109 g_list_free(audio_devices); |
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
110 dbus_g_connection_flush (bus); |
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
111 dbus_g_connection_unref(bus); |
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
112 audio_devices = NULL; |
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
113 //g_list_free(current_device); |
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
114 } |
2644 | 115 |
2734 | 116 void refresh_call(void) |
117 { | |
118 printf("refresh function called\n"); | |
119 disconnect_dbus_signals(); | |
2756
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
120 clean_devices_list(); |
2734 | 121 if(discover_finish == 0 ||discover_finish== 2){ |
122 discover_finish = 0; | |
2756
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
123 |
2734 | 124 discover_devices(); |
2756
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
125 close_window(); |
2847
671cdfc2d62d
Basic pairing interface
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2846
diff
changeset
|
126 show_scan(0); |
2728 | 127 } |
2734 | 128 else |
129 printf("Scanning please wait!\n"); | |
130 } | |
2644 | 131 |
2845
d0cbf303869b
removed interface freeze while pairing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2842
diff
changeset
|
132 gpointer connect_call_th(void) |
2734 | 133 { |
2841 | 134 |
135 //I will have to enable the audio service if necessary | |
2838
22a2ffe86750
added passkey agent and basic pairing functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2756
diff
changeset
|
136 |
2845
d0cbf303869b
removed interface freeze while pairing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2842
diff
changeset
|
137 dbus_g_object_register_marshaller(marshal_VOID__STRING_UINT_INT, G_TYPE_NONE, G_TYPE_STRING, G_TYPE_UINT, G_TYPE_INT, G_TYPE_INVALID); |
2841 | 138 run_agents(); |
2845
d0cbf303869b
removed interface freeze while pairing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2842
diff
changeset
|
139 dbus_g_proxy_call(obj,"CreateBonding",NULL,G_TYPE_STRING,((DeviceData*)(selected_dev->data))->address,G_TYPE_INVALID,G_TYPE_INVALID); |
d0cbf303869b
removed interface freeze while pairing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2842
diff
changeset
|
140 |
d0cbf303869b
removed interface freeze while pairing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2842
diff
changeset
|
141 } |
d0cbf303869b
removed interface freeze while pairing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2842
diff
changeset
|
142 void connect_call(void) |
d0cbf303869b
removed interface freeze while pairing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2842
diff
changeset
|
143 { |
2847
671cdfc2d62d
Basic pairing interface
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2846
diff
changeset
|
144 connect_th = g_thread_create((GThreadFunc)connect_call_th,NULL,TRUE,NULL) ; |
671cdfc2d62d
Basic pairing interface
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2846
diff
changeset
|
145 close_call(); |
671cdfc2d62d
Basic pairing interface
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2846
diff
changeset
|
146 close_window(); |
671cdfc2d62d
Basic pairing interface
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2846
diff
changeset
|
147 show_scan(1); |
2734 | 148 } |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
149 |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
150 |
2734 | 151 static void remote_device_found(DBusGProxy *object, char *address, const unsigned int class, const int rssi, gpointer user_data) |
152 { | |
153 int found_in_list=FALSE; | |
154 g_static_mutex_lock(&mutex); | |
155 current_device = audio_devices; | |
156 if((class & 0x200404)==0x200404) | |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
157 { |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
158 while(current_device != NULL) |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
159 { |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
160 if(g_str_equal(address,((DeviceData*)(current_device->data))->address)) |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
161 { |
2734 | 162 found_in_list = TRUE; |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
163 break; |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
164 } |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
165 current_device=g_list_next(current_device); |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
166 } |
2734 | 167 if(!found_in_list) |
168 { | |
169 DeviceData *dev= g_new0(DeviceData, 1); | |
170 dev->class = class; | |
171 dev->address = g_strdup(address); | |
172 dev->name = NULL; | |
173 audio_devices=g_list_prepend(audio_devices, dev); | |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
174 } |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
175 } |
2734 | 176 g_static_mutex_unlock(&mutex); |
177 } | |
178 | |
179 static void discovery_started(DBusGProxy *object, gpointer user_data) | |
180 { | |
181 g_print("Signal: DiscoveryStarted()\n"); | |
182 discover_finish = 1; | |
183 } | |
184 | |
185 static void remote_name_updated(DBusGProxy *object, const char *address, char *name, gpointer user_data) | |
186 { | |
187 g_static_mutex_lock(&mutex); | |
188 current_device=audio_devices; | |
189 while(current_device != NULL) | |
190 { | |
191 if(g_str_equal(address,((DeviceData*)(current_device->data))->address)) | |
192 { | |
193 ((DeviceData*)(current_device->data))->name=g_strdup(name); | |
194 break; | |
195 } | |
196 current_device=g_list_next(current_device); | |
197 } | |
198 g_static_mutex_unlock(&mutex); | |
199 } | |
200 | |
201 static void print_results() | |
202 { | |
203 int i=0; | |
204 g_print("Final Scan results:\n"); | |
205 devices_no = g_list_length(audio_devices); | |
206 g_print("Number of audio devices: %d \n",devices_no); | |
207 if(devices_no==0 ) { | |
208 if(config ==1) show_no_devices(); | |
209 } else { | |
210 current_device=audio_devices; | |
211 while(current_device != NULL) | |
212 { | |
213 g_print("Device %d: Name: %s, Class: 0x%x, Address: %s\n",++i, | |
214 ((DeviceData*)(current_device->data))-> name, | |
215 ((DeviceData*)(current_device->data))-> class, | |
216 ((DeviceData*)(current_device->data))-> address); | |
217 current_device=g_list_next(current_device); | |
218 } | |
219 destroy_scan_window(); | |
220 if(config==1) { | |
221 destroy_scan_window(); | |
222 results_ui(); | |
223 } | |
224 // refresh_tree(); | |
225 } | |
226 } | |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
227 |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
228 |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
229 |
2734 | 230 static void discovery_completed(DBusGProxy *object, gpointer user_data) |
231 { | |
232 g_print("Signal: DiscoveryCompleted()\n"); | |
233 discover_finish =2; | |
234 print_results(); | |
235 } | |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
236 |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
237 |
2728 | 238 |
2734 | 239 void discover_devices(void) |
240 { | |
241 GError *error = NULL; | |
242 // g_type_init(); | |
243 g_log_set_always_fatal (G_LOG_LEVEL_WARNING); | |
244 bus = dbus_g_bus_get(DBUS_BUS_SYSTEM, &error); | |
245 if (error != NULL) | |
246 { | |
247 g_printerr("Connecting to system bus failed: %s\n", error->message); | |
248 g_error_free(error); | |
249 } | |
250 obj = dbus_g_proxy_new_for_name(bus, "org.bluez", "/org/bluez/hci0", "org.bluez.Adapter"); | |
251 printf("bluetooth plugin - start discovery \n"); | |
252 dbus_g_object_register_marshaller(marshal_VOID__STRING_UINT_INT, G_TYPE_NONE, G_TYPE_STRING, G_TYPE_UINT, G_TYPE_INT, G_TYPE_INVALID); | |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
253 |
2734 | 254 dbus_g_proxy_add_signal(obj, "RemoteDeviceFound", G_TYPE_STRING, G_TYPE_UINT, G_TYPE_INT, G_TYPE_INVALID); |
255 dbus_g_proxy_connect_signal(obj, "RemoteDeviceFound", G_CALLBACK(remote_device_found), bus, NULL); | |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
256 |
2734 | 257 dbus_g_proxy_add_signal(obj, "DiscoveryStarted", G_TYPE_INVALID); |
258 dbus_g_proxy_connect_signal(obj, "DiscoveryStarted", G_CALLBACK(discovery_started), bus, NULL); | |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
259 |
2734 | 260 dbus_g_proxy_add_signal(obj, "DiscoveryCompleted", G_TYPE_INVALID); |
261 dbus_g_proxy_connect_signal(obj, "DiscoveryCompleted", G_CALLBACK(discovery_completed), bus, NULL); | |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
262 |
2734 | 263 dbus_g_object_register_marshaller(marshal_VOID__STRING_STRING, G_TYPE_NONE, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_INVALID); |
2728 | 264 |
2734 | 265 dbus_g_proxy_add_signal(obj, "RemoteNameUpdated", G_TYPE_STRING, G_TYPE_STRING, G_TYPE_INVALID); |
266 dbus_g_proxy_connect_signal(obj, "RemoteNameUpdated", G_CALLBACK(remote_name_updated), NULL, NULL); | |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
267 |
2734 | 268 dbus_g_proxy_call(obj, "DiscoverDevices", &error, G_TYPE_INVALID, G_TYPE_INVALID); |
269 if (error != NULL) | |
270 { | |
271 g_printerr("Failed to discover devices: %s\n", error->message); | |
272 g_error_free(error); | |
273 } | |
2728 | 274 |
2734 | 275 } |