Mercurial > audlegacy-plugins
annotate src/bluetooth/bluetooth.c @ 2858:528d19a2ea3d
fixed .asoundrc bug - writeing multiple pcm bluetooth device
| author | Paula Stanciu <paula.stanciu@gmail.com> |
|---|---|
| date | Sat, 02 Aug 2008 22:40:41 +0300 |
| parents | 59727b85a091 |
| children | dc22e3d2e56e |
| 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 | |
|
2855
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
19 #include <glib/gstdio.h> |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
20 #include <errno.h> |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
21 #include <string.h> |
| 2644 | 22 #include "bluetooth.h" |
|
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
23 #include "marshal.h" |
|
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
24 #include "gui.h" |
| 2728 | 25 #include "scan_gui.h" |
|
2838
22a2ffe86750
added passkey agent and basic pairing functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2756
diff
changeset
|
26 #include "agent.h" |
| 2644 | 27 #define DEBUG 1 |
| 28 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
|
29 GList * current_device = NULL; |
| 2728 | 30 gint config = 0; |
| 31 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
|
32 GStaticMutex mutex = G_STATIC_MUTEX_INIT; |
|
2855
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
33 static gchar *current_address=NULL; |
|
2845
d0cbf303869b
removed interface freeze while pairing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2842
diff
changeset
|
34 static GThread *connect_th; |
| 2644 | 35 void bluetooth_init ( void ); |
| 36 void bluetooth_cleanup ( void ); | |
| 37 void bt_cfg(void); | |
| 38 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
|
39 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
|
40 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
|
41 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
|
42 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
|
43 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
|
44 void discover_devices(void); |
| 2728 | 45 void disconnect_dbus_signals(void); |
| 2857 | 46 static void show_restart_dialog(void); |
|
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
47 |
| 2644 | 48 GeneralPlugin bluetooth_gp = |
| 49 { | |
|
2649
d891ba4be5a5
fixed crash when prefs window was closed while scanning
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2648
diff
changeset
|
50 .description = "Bluetooth audio support", |
| 2644 | 51 .init = bluetooth_init, |
| 52 .about = bt_about, | |
| 53 .configure = bt_cfg, | |
| 54 .cleanup = bluetooth_cleanup | |
| 55 }; | |
| 56 GeneralPlugin *bluetooth_gplist[] = { &bluetooth_gp, NULL }; | |
| 57 DECLARE_PLUGIN(bluetooth_gp, NULL, NULL, NULL, NULL, NULL, bluetooth_gplist, NULL, NULL) | |
| 2728 | 58 |
| 2644 | 59 void bluetooth_init ( void ) |
| 60 { | |
|
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
61 audio_devices = NULL; |
|
2838
22a2ffe86750
added passkey agent and basic pairing functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2756
diff
changeset
|
62 bus = NULL; |
|
22a2ffe86750
added passkey agent and basic pairing functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2756
diff
changeset
|
63 obj = NULL; |
|
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
64 discover_devices(); |
| 2644 | 65 } |
| 66 | |
| 67 void bluetooth_cleanup ( void ) | |
| 68 { | |
|
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
69 printf("bluetooth: exit\n"); |
|
2855
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
70 if (config ==1 ) |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
71 { |
|
2756
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
72 close_window(); |
|
2732
1a27c497e526
indentation and some small bug fixing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2728
diff
changeset
|
73 config =0; |
|
2649
d891ba4be5a5
fixed crash when prefs window was closed while scanning
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2648
diff
changeset
|
74 } |
|
2732
1a27c497e526
indentation and some small bug fixing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2728
diff
changeset
|
75 if(discover_finish == 2) { |
|
1a27c497e526
indentation and some small bug fixing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2728
diff
changeset
|
76 dbus_g_connection_flush (bus); |
| 2734 | 77 dbus_g_connection_unref(bus); |
|
2732
1a27c497e526
indentation and some small bug fixing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2728
diff
changeset
|
78 disconnect_dbus_signals(); |
| 2644 | 79 |
|
2732
1a27c497e526
indentation and some small bug fixing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2728
diff
changeset
|
80 } |
| 2734 | 81 } |
|
2732
1a27c497e526
indentation and some small bug fixing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2728
diff
changeset
|
82 |
| 2734 | 83 void bt_about( void ) |
| 84 { | |
| 85 printf("about call\n"); | |
| 86 } | |
| 2728 | 87 |
| 2734 | 88 void bt_cfg(void) |
| 89 { | |
| 90 printf("bt_cfg\n"); | |
| 91 config =1; | |
| 92 if(discover_finish == 2){ | |
| 93 if (devices_no == 0){ | |
| 94 printf("no devs!\n"); | |
|
2847
671cdfc2d62d
Basic pairing interface
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2846
diff
changeset
|
95 show_scan(0); |
| 2734 | 96 show_no_devices(); |
| 97 }else | |
| 98 results_ui(); | |
| 2728 | 99 } |
|
2847
671cdfc2d62d
Basic pairing interface
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2846
diff
changeset
|
100 else show_scan(0); |
| 2734 | 101 printf("end of bt_cfg\n"); |
| 102 } | |
| 2728 | 103 |
| 2734 | 104 void disconnect_dbus_signals() |
| 105 { | |
| 106 dbus_g_proxy_disconnect_signal(obj, "RemoteDeviceFound", G_CALLBACK(remote_device_found), bus); | |
| 107 dbus_g_proxy_disconnect_signal(obj, "DiscoveryStarted", G_CALLBACK(discovery_started), bus); | |
| 108 dbus_g_proxy_disconnect_signal(obj, "DiscoveryCompleted", G_CALLBACK(discovery_completed), bus); | |
| 109 dbus_g_proxy_disconnect_signal(obj, "RemoteNameUpdated", G_CALLBACK(remote_name_updated), NULL); | |
| 2644 | 110 |
| 2734 | 111 } |
| 2644 | 112 |
|
2855
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
113 void clean_devices_list() |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
114 { |
|
2756
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
115 g_list_free(audio_devices); |
|
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
116 dbus_g_connection_flush (bus); |
|
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
117 dbus_g_connection_unref(bus); |
|
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
118 audio_devices = NULL; |
|
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
119 //g_list_free(current_device); |
|
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
120 } |
| 2644 | 121 |
| 2734 | 122 void refresh_call(void) |
| 123 { | |
| 124 printf("refresh function called\n"); | |
| 125 disconnect_dbus_signals(); | |
|
2756
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
126 clean_devices_list(); |
| 2734 | 127 if(discover_finish == 0 ||discover_finish== 2){ |
| 128 discover_finish = 0; | |
|
2756
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
129 |
| 2734 | 130 discover_devices(); |
|
2756
d3d71539d675
rescan functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2734
diff
changeset
|
131 close_window(); |
|
2847
671cdfc2d62d
Basic pairing interface
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2846
diff
changeset
|
132 show_scan(0); |
| 2728 | 133 } |
| 2734 | 134 else |
| 135 printf("Scanning please wait!\n"); | |
| 136 } | |
| 2644 | 137 |
|
2845
d0cbf303869b
removed interface freeze while pairing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2842
diff
changeset
|
138 gpointer connect_call_th(void) |
| 2734 | 139 { |
| 2841 | 140 |
| 141 //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
|
142 |
|
2845
d0cbf303869b
removed interface freeze while pairing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2842
diff
changeset
|
143 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 | 144 run_agents(); |
|
2855
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
145 dbus_g_proxy_call(obj,"CreateBonding",NULL,G_TYPE_STRING,current_address,G_TYPE_INVALID,G_TYPE_INVALID); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
146 |
|
2845
d0cbf303869b
removed interface freeze while pairing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2842
diff
changeset
|
147 } |
|
d0cbf303869b
removed interface freeze while pairing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2842
diff
changeset
|
148 void connect_call(void) |
|
d0cbf303869b
removed interface freeze while pairing
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2842
diff
changeset
|
149 { |
|
2855
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
150 current_address = g_strdup(((DeviceData*)(selected_dev->data))->address); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
151 connect_th = g_thread_create((GThreadFunc)connect_call_th,NULL,TRUE,NULL) ; |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
152 close_call(); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
153 close_window(); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
154 show_scan(1); |
| 2734 | 155 } |
|
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
156 |
|
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
157 |
| 2854 | 158 void play_call() |
| 159 { | |
| 160 | |
|
2855
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
161 FILE *file; |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
162 FILE *temp_file; |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
163 gint prev=0; |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
164 char line[128]; |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
165 gchar *home; |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
166 gchar *device_line; |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
167 gchar *file_name=""; |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
168 gchar *temp_file_name; |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
169 int ret = EOF+1; |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
170 home = g_get_home_dir(); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
171 file_name = g_strconcat(home,"/.asoundrc",NULL); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
172 temp_file_name = g_strconcat(home,"/temp_bt",NULL); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
173 file = fopen(file_name,"r"); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
174 temp_file = fopen(temp_file_name,"w"); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
175 /* hardcoded address TO REMOVE after testing */ |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
176 // current_address = "00:0D:3C:B1:1C:7A"; |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
177 device_line = g_strdup_printf("device %s\n",current_address); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
178 if ( file != NULL ) |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
179 { |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
180 while ( fgets ( line, sizeof line, file ) != NULL ) |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
181 { |
|
2858
528d19a2ea3d
fixed .asoundrc bug - writeing multiple pcm bluetooth device
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2857
diff
changeset
|
182 if(!(strcmp(line,"pcm.audacious_bt{\n"))){ |
|
2855
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
183 fputs(line,temp_file); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
184 fgets ( line, sizeof line, file ); /* type bluetooth */ |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
185 fputs(line,temp_file); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
186 fgets ( line, sizeof line, file ); /* device MAC */ |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
187 fputs(device_line,temp_file); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
188 prev = 1; |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
189 } else |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
190 fputs(line,temp_file); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
191 } |
| 2854 | 192 |
|
2855
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
193 fclose (file); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
194 } |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
195 if(!prev){ |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
196 fputs("pcm.audacious_bt{\n",temp_file); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
197 fputs("type bluetooth\n",temp_file); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
198 fputs(device_line,temp_file); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
199 fputs("}\n",temp_file); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
200 prev = 0; |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
201 } |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
202 |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
203 fclose(temp_file); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
204 int err = rename(temp_file_name,file_name); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
205 printf("rename error : %d",err); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
206 perror("zz"); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
207 g_free(device_line); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
208 g_free(file_name); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
209 g_free(temp_file_name); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
210 mcs_handle_t *cfgfile = aud_cfg_db_open(); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
211 aud_cfg_db_set_string(cfgfile,"ALSA","pcm_device", "audacious_bt"); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
212 aud_cfg_db_close(cfgfile); |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
213 |
|
162766a69f12
bluetooth audio support - working after restarting the player
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2854
diff
changeset
|
214 printf("play callback\n"); |
| 2857 | 215 close_window(); |
| 216 show_restart_dialog(); | |
| 2854 | 217 |
| 218 | |
| 219 } | |
| 2857 | 220 static void show_restart_dialog() |
| 221 { | |
| 222 static GtkWidget *window = NULL; | |
| 223 GtkWidget *dialog; | |
| 224 dialog = gtk_message_dialog_new (GTK_WINDOW (window), | |
| 225 GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, | |
| 226 GTK_MESSAGE_INFO, | |
| 227 GTK_BUTTONS_OK, | |
| 228 "Please restart the player to apply the bluetooth audio settings!"); | |
| 229 gtk_dialog_run (GTK_DIALOG (dialog)); | |
| 230 gtk_widget_destroy (dialog); | |
| 231 } | |
| 2854 | 232 |
| 2734 | 233 static void remote_device_found(DBusGProxy *object, char *address, const unsigned int class, const int rssi, gpointer user_data) |
| 234 { | |
| 235 int found_in_list=FALSE; | |
| 236 g_static_mutex_lock(&mutex); | |
| 237 current_device = audio_devices; | |
| 238 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
|
239 { |
|
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
240 while(current_device != NULL) |
|
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
241 { |
|
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
242 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
|
243 { |
| 2734 | 244 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
|
245 break; |
|
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
246 } |
|
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
247 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
|
248 } |
| 2734 | 249 if(!found_in_list) |
| 250 { | |
| 251 DeviceData *dev= g_new0(DeviceData, 1); | |
| 252 dev->class = class; | |
| 253 dev->address = g_strdup(address); | |
| 254 dev->name = NULL; | |
| 255 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
|
256 } |
|
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
257 } |
| 2734 | 258 g_static_mutex_unlock(&mutex); |
| 259 } | |
| 260 | |
| 261 static void discovery_started(DBusGProxy *object, gpointer user_data) | |
| 262 { | |
| 263 g_print("Signal: DiscoveryStarted()\n"); | |
| 264 discover_finish = 1; | |
| 265 } | |
| 266 | |
| 267 static void remote_name_updated(DBusGProxy *object, const char *address, char *name, gpointer user_data) | |
| 268 { | |
| 269 g_static_mutex_lock(&mutex); | |
| 270 current_device=audio_devices; | |
| 271 while(current_device != NULL) | |
| 272 { | |
| 273 if(g_str_equal(address,((DeviceData*)(current_device->data))->address)) | |
| 274 { | |
| 275 ((DeviceData*)(current_device->data))->name=g_strdup(name); | |
| 276 break; | |
| 277 } | |
| 278 current_device=g_list_next(current_device); | |
| 279 } | |
| 280 g_static_mutex_unlock(&mutex); | |
| 281 } | |
| 282 | |
| 283 static void print_results() | |
| 284 { | |
| 285 int i=0; | |
| 286 g_print("Final Scan results:\n"); | |
| 287 devices_no = g_list_length(audio_devices); | |
| 288 g_print("Number of audio devices: %d \n",devices_no); | |
| 289 if(devices_no==0 ) { | |
| 290 if(config ==1) show_no_devices(); | |
| 291 } else { | |
| 292 current_device=audio_devices; | |
| 293 while(current_device != NULL) | |
| 294 { | |
| 295 g_print("Device %d: Name: %s, Class: 0x%x, Address: %s\n",++i, | |
| 296 ((DeviceData*)(current_device->data))-> name, | |
| 297 ((DeviceData*)(current_device->data))-> class, | |
| 298 ((DeviceData*)(current_device->data))-> address); | |
| 299 current_device=g_list_next(current_device); | |
| 300 } | |
| 301 destroy_scan_window(); | |
| 302 if(config==1) { | |
| 303 destroy_scan_window(); | |
| 304 results_ui(); | |
| 305 } | |
| 306 // refresh_tree(); | |
| 307 } | |
| 308 } | |
|
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
309 |
|
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
310 |
|
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
311 |
| 2734 | 312 static void discovery_completed(DBusGProxy *object, gpointer user_data) |
| 313 { | |
| 314 g_print("Signal: DiscoveryCompleted()\n"); | |
| 315 discover_finish =2; | |
| 316 print_results(); | |
| 317 } | |
|
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
318 |
|
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
319 |
| 2728 | 320 |
| 2734 | 321 void discover_devices(void) |
| 322 { | |
| 323 GError *error = NULL; | |
| 324 // g_type_init(); | |
| 325 g_log_set_always_fatal (G_LOG_LEVEL_WARNING); | |
| 326 bus = dbus_g_bus_get(DBUS_BUS_SYSTEM, &error); | |
| 327 if (error != NULL) | |
| 328 { | |
| 329 g_printerr("Connecting to system bus failed: %s\n", error->message); | |
| 330 g_error_free(error); | |
| 331 } | |
| 332 obj = dbus_g_proxy_new_for_name(bus, "org.bluez", "/org/bluez/hci0", "org.bluez.Adapter"); | |
| 333 printf("bluetooth plugin - start discovery \n"); | |
| 334 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
|
335 |
| 2734 | 336 dbus_g_proxy_add_signal(obj, "RemoteDeviceFound", G_TYPE_STRING, G_TYPE_UINT, G_TYPE_INT, G_TYPE_INVALID); |
| 337 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
|
338 |
| 2734 | 339 dbus_g_proxy_add_signal(obj, "DiscoveryStarted", G_TYPE_INVALID); |
| 340 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
|
341 |
| 2734 | 342 dbus_g_proxy_add_signal(obj, "DiscoveryCompleted", G_TYPE_INVALID); |
| 343 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
|
344 |
| 2734 | 345 dbus_g_object_register_marshaller(marshal_VOID__STRING_STRING, G_TYPE_NONE, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_INVALID); |
| 2728 | 346 |
| 2734 | 347 dbus_g_proxy_add_signal(obj, "RemoteNameUpdated", G_TYPE_STRING, G_TYPE_STRING, G_TYPE_INVALID); |
| 348 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
|
349 |
| 2734 | 350 dbus_g_proxy_call(obj, "DiscoverDevices", &error, G_TYPE_INVALID, G_TYPE_INVALID); |
| 351 if (error != NULL) | |
| 352 { | |
| 353 g_printerr("Failed to discover devices: %s\n", error->message); | |
| 354 g_error_free(error); | |
| 355 } | |
| 2728 | 356 |
| 2734 | 357 } |
