]> git.sesse.net Git - vlc/blob - modules/services_discovery/hal.c
f8779366dc819bc16fe950731ca9e5b6ba689951
[vlc] / modules / services_discovery / hal.c
1 /*****************************************************************************
2  * hal.c :  HAL interface module
3  *****************************************************************************
4  * Copyright (C) 2004 the VideoLAN team
5  * Copyright © 2006-2007 Rafaël Carré
6  * $Id$
7  *
8  * Authors: Clément Stenac <zorglub@videolan.org>
9  *          Rafaël Carré <funman at videolanorg>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #include <vlc/vlc.h>
27 #include <vlc_playlist.h>
28
29 #include <vlc_network.h>
30
31 #include <errno.h>                                                 /* ENOMEM */
32
33 #ifdef HAVE_UNISTD_H
34 #    include <unistd.h>
35 #endif
36 #ifdef HAVE_SYS_TIME_H
37 #    include <sys/time.h>
38 #endif
39
40 #include <hal/libhal.h>
41
42 #define MAX_LINE_LENGTH 256
43
44 /*****************************************************************************
45  * Local prototypes
46  *****************************************************************************/
47 #ifdef HAVE_HAL_1
48 /* store relation between item id and udi for ejection */
49 struct udi_input_id_t
50 {
51     char            *psz_udi;
52     input_item_t    *p_item;
53 };
54 #endif
55
56 struct services_discovery_sys_t
57 {
58     LibHalContext           *p_ctx;
59 #ifdef HAVE_HAL_1
60     DBusConnection          *p_connection;
61     int                     i_devices_number;
62     struct udi_input_id_t   **pp_devices;
63 #endif
64 };
65 static void Run    ( services_discovery_t *p_intf );
66
67 static int  Open ( vlc_object_t * );
68 static void Close( vlc_object_t * );
69
70 #ifdef HAVE_HAL_1
71 /* HAL callbacks */
72 void DeviceAdded( LibHalContext *p_ctx, const char *psz_udi );
73 void DeviceRemoved( LibHalContext *p_ctx, const char *psz_udi );
74 /* to retrieve p_sd in HAL callbacks */
75 services_discovery_t        *p_sd_global;
76 #endif
77
78 /*****************************************************************************
79  * Module descriptor
80  *****************************************************************************/
81 vlc_module_begin();
82     set_description( _("HAL devices detection") );
83     set_category( CAT_PLAYLIST );
84     set_subcategory( SUBCAT_PLAYLIST_SD );
85
86     set_capability( "services_discovery", 0 );
87     set_callbacks( Open, Close );
88
89 vlc_module_end();
90
91
92 /*****************************************************************************
93  * Open: initialize and create stuff
94  *****************************************************************************/
95 static int Open( vlc_object_t *p_this )
96 {
97     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
98     services_discovery_sys_t *p_sys  = malloc(
99                                     sizeof( services_discovery_sys_t ) );
100
101 #ifdef HAVE_HAL_1
102     DBusError           dbus_error;
103     DBusConnection      *p_connection;
104
105     p_sd_global = p_sd;
106     p_sys->i_devices_number = 0;
107     p_sys->pp_devices = NULL;
108 #endif
109
110     p_sd->pf_run = Run;
111     p_sd->p_sys  = p_sys;
112
113 #ifdef HAVE_HAL_1
114     dbus_error_init( &dbus_error );
115
116     p_sys->p_ctx = libhal_ctx_new();
117     if( !p_sys->p_ctx )
118     {
119         msg_Err( p_sd, "unable to create HAL context") ;
120         free( p_sys );
121         return VLC_EGENERIC;
122     }
123     p_connection = dbus_bus_get( DBUS_BUS_SYSTEM, &dbus_error );
124     if( dbus_error_is_set( &dbus_error ) )
125     {
126         msg_Err( p_sd, "unable to connect to DBUS: %s", dbus_error.message );
127         dbus_error_free( &dbus_error );
128         free( p_sys );
129         return VLC_EGENERIC;
130     }
131     libhal_ctx_set_dbus_connection( p_sys->p_ctx, p_connection );
132     p_sys->p_connection = p_connection;
133     if( !libhal_ctx_init( p_sys->p_ctx, &dbus_error ) )
134 #else
135     if( !(p_sys->p_ctx = hal_initialize( NULL, FALSE ) ) )
136 #endif
137     {
138 #ifdef HAVE_HAL_1
139         msg_Err( p_sd, "hal not available : %s", dbus_error.message );
140         dbus_error_free( &dbus_error );
141 #else
142         msg_Err( p_sd, "hal not available" );
143 #endif
144         free( p_sys );
145         return VLC_EGENERIC;
146     }
147
148 #ifdef HAVE_HAL_1
149         if( !libhal_ctx_set_device_added( p_sys->p_ctx, DeviceAdded ) ||
150                 !libhal_ctx_set_device_removed( p_sys->p_ctx, DeviceRemoved ) )
151         {
152             msg_Err( p_sd, "unable to add callback" );
153             dbus_error_free( &dbus_error );
154             free( p_sys );
155             return VLC_EGENERIC;
156         }
157 #endif
158
159     services_discovery_SetLocalizedName( p_sd, _("Devices") );
160
161     return VLC_SUCCESS;
162 }
163
164 /*****************************************************************************
165  * Close:
166  *****************************************************************************/
167 static void Close( vlc_object_t *p_this )
168 {
169     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
170     services_discovery_sys_t *p_sys  = p_sd->p_sys;
171 #ifdef HAVE_HAL_1
172     dbus_connection_unref( p_sys->p_connection );
173     struct udi_input_id_t *p_udi_entry;
174
175     while( p_sys->i_devices_number > 0 )
176     {
177         p_udi_entry = p_sys->pp_devices[0];
178         if( p_udi_entry->psz_udi ) free( p_udi_entry->psz_udi );
179         TAB_REMOVE( p_sys->i_devices_number, p_sys->pp_devices,
180                 p_sys->pp_devices[0] );
181         if( p_udi_entry ) free( p_udi_entry );
182     }
183     p_sys->pp_devices = NULL;
184 #endif
185     free( p_sys );
186 }
187
188 static void AddItem( services_discovery_t *p_sd, input_item_t * p_input
189 #ifdef HAVE_HAL_1
190                 ,char* psz_device
191 #endif
192                     )
193 {
194     services_discovery_sys_t *p_sys  = p_sd->p_sys;
195     services_discovery_AddItem( p_sd, p_input, NULL /* no category */ );
196
197 #ifdef HAVE_HAL_1
198     struct udi_input_id_t *p_udi_entry;
199     p_udi_entry = malloc( sizeof( struct udi_input_id_t ) );
200     if( !p_udi_entry )
201     {
202         return;
203     }
204     p_udi_entry->p_item = p_input;
205     p_udi_entry->psz_udi = strdup( psz_device );
206     TAB_APPEND( p_sys->i_devices_number, p_sys->pp_devices, p_udi_entry );
207 #endif
208 }
209
210 static void AddDvd( services_discovery_t *p_sd, char *psz_device )
211 {
212     char *psz_name;
213     char *psz_uri;
214     char *psz_blockdevice;
215     input_item_t        *p_input;
216 #ifdef HAVE_HAL_1
217     psz_name = libhal_device_get_property_string( p_sd->p_sys->p_ctx,
218                                         psz_device, "volume.label", NULL );
219     psz_blockdevice = libhal_device_get_property_string( p_sd->p_sys->p_ctx,
220                                         psz_device, "block.device", NULL );
221 #else
222     psz_name = hal_device_get_property_string( p_sd->p_sys->p_ctx,
223                                                psz_device, "volume.label" );
224     psz_blockdevice = hal_device_get_property_string( p_sd->p_sys->p_ctx,
225                                                  psz_device, "block.device" );
226 #endif
227     if( asprintf( &psz_uri, "dvd://%s", psz_blockdevice ) == -1 )
228         return;
229     /* Create the playlist item here */
230     p_input = input_ItemNew( p_sd, psz_uri, psz_name );
231     free( psz_uri );
232     if( !p_input )
233     {
234         return;
235     }
236 #ifdef HAVE_HAL_1
237     AddItem( p_sd, p_input, psz_device );
238 #else
239     AddItem( p_sd, p_input );
240 #endif
241 }
242
243 #ifdef HAVE_HAL_1
244 static void DelItem( services_discovery_t *p_sd, char* psz_udi )
245 {
246     services_discovery_sys_t    *p_sys  = p_sd->p_sys;
247
248     int i;
249     for( i = 0; i < p_sys->i_devices_number; i++ )
250     { /*  looks for a matching udi */
251         if( strcmp( psz_udi, p_sys->pp_devices[i]->psz_udi ) == 0 )
252         { /* delete the corresponding item */    
253             services_discovery_RemoveItem( p_sd, p_sys->pp_devices[i]->p_item );
254             if( p_sys->pp_devices[i]->psz_udi )
255                 free( p_sys->pp_devices[i]->psz_udi );
256             TAB_REMOVE( p_sys->i_devices_number, p_sys->pp_devices,
257                     p_sys->pp_devices[i] );
258         }
259     }
260 }
261 #endif
262
263 static void AddCdda( services_discovery_t *p_sd, char *psz_device )
264 {
265     char *psz_uri;
266     char *psz_blockdevice;
267     input_item_t     *p_input;
268 #ifdef HAVE_HAL_1
269     psz_blockdevice = libhal_device_get_property_string( p_sd->p_sys->p_ctx,
270                                             psz_device, "block.device", NULL );
271 #else
272     psz_blockdevice = hal_device_get_property_string( p_sd->p_sys->p_ctx,
273                                                  psz_device, "block.device" );
274 #endif
275     if( asprintf( &psz_uri, "cdda://%s", psz_blockdevice ) == -1 )
276         return;
277     /* Create the item here */
278     p_input = input_ItemNew( p_sd, psz_uri, "Audio CD" );
279     free( psz_uri );
280     if( !p_input )
281         return;
282 #ifdef HAVE_HAL_1
283     AddItem( p_sd, p_input, psz_device );
284 #else
285     AddItem( p_sd, p_input );
286 #endif
287 }
288
289 static void ParseDevice( services_discovery_t *p_sd, char *psz_device )
290 {
291     char *psz_disc_type;
292     services_discovery_sys_t    *p_sys  = p_sd->p_sys;
293 #ifdef HAVE_HAL_1
294     if( libhal_device_property_exists( p_sys->p_ctx, psz_device,
295                                        "volume.disc.type", NULL ) )
296     {
297         psz_disc_type = libhal_device_get_property_string( p_sys->p_ctx,
298                                                         psz_device,
299                                                         "volume.disc.type",
300                                                         NULL );
301 #else
302     if( hal_device_property_exists( p_sys->p_ctx, psz_device,
303                                     "volume.disc.type" ) )
304     {
305         psz_disc_type = hal_device_get_property_string( p_sys->p_ctx,
306                                                         psz_device,
307                                                         "volume.disc.type" );
308 #endif
309         if( !strncmp( psz_disc_type, "dvd_r", 5 ) )
310         {
311 #ifdef HAVE_HAL_1
312             /* hal 0.2.9.7 (HAVE_HAL) has not is_videodvd
313              * but hal 0.5.0 (HAVE_HAL_1) has */
314             if (libhal_device_get_property_bool( p_sys->p_ctx, psz_device,
315                                          "volume.disc.is_videodvd", NULL ) )
316 #endif
317             AddDvd( p_sd, psz_device );
318         }
319         else if( !strncmp( psz_disc_type, "cd_r", 4 ) )
320         {
321 #ifdef HAVE_HAL_1
322             if( libhal_device_get_property_bool( p_sys->p_ctx, psz_device,
323                                          "volume.disc.has_audio" , NULL ) )
324 #else
325             if( hal_device_get_property_bool( p_sys->p_ctx, psz_device,
326                                          "volume.disc.has_audio" ) )
327 #endif
328             {
329                 AddCdda( p_sd, psz_device );
330             }
331         }
332     }
333 }
334
335 /*****************************************************************************
336  * Run: main HAL thread
337  *****************************************************************************/
338 static void Run( services_discovery_t *p_sd )
339 {
340     int i, i_devices;
341     char **devices;
342     services_discovery_sys_t    *p_sys  = p_sd->p_sys;
343
344     /* parse existing devices first */
345 #ifdef HAVE_HAL_1
346     if( ( devices = libhal_get_all_devices( p_sys->p_ctx, &i_devices, NULL ) ) )
347 #else
348     if( ( devices = hal_get_all_devices( p_sys->p_ctx, &i_devices ) ) )
349 #endif
350     {
351         for( i = 0; i < i_devices; i++ )
352         {
353             ParseDevice( p_sd, devices[ i ] );
354 #ifdef HAVE_HAL_1
355             libhal_free_string( devices[ i ] );
356 #else
357             hal_free_string( devices[ i ] );
358 #endif
359
360         }
361     }
362 #ifdef HAVE_HAL_1
363     while( !p_sd->b_die )
364     {
365     /* look for events on the bus, blocking 1 second */
366     dbus_connection_read_write_dispatch( p_sys->p_connection, 1000 );
367     /* HAL 0.5.8.1 can use libhal_ctx_get_dbus_connection(p_sys->p_ctx) */
368     }
369 #endif
370
371 }
372
373 #ifdef HAVE_HAL_1
374 void DeviceAdded( LibHalContext *p_ctx, const char *psz_udi )
375 {
376         ParseDevice( p_sd_global, (char*) psz_udi );
377 }
378 void DeviceRemoved( LibHalContext *p_ctx, const char *psz_udi )
379 {
380         DelItem( p_sd_global, (char*) psz_udi );
381 }
382 #endif
383