]> git.sesse.net Git - vlc/blob - src/playlist/services_discovery.c
Fix threaded function declaration.
[vlc] / src / playlist / services_discovery.c
1 /*****************************************************************************
2  * services_discovery.c : Manage playlist services_discovery modules
3  *****************************************************************************
4  * Copyright (C) 1999-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
26 #include <assert.h>
27
28 #include <vlc_common.h>
29 #include "vlc_playlist.h"
30 #include "vlc_events.h"
31 #include "playlist_internal.h"
32 #include "../libvlc.h"
33
34 static void* RunSD( vlc_object_t *p_this );
35
36 /*
37  * Services discovery
38  * Basically you just listen to Service discovery event through the
39  * sd's event manager.
40  * That's how the playlist get's Service Discovery information
41  */
42
43 /***********************************************************************
44  * GetServicesNames
45  ***********************************************************************/
46 char ** __services_discovery_GetServicesNames( vlc_object_t * p_super,
47                                                char ***pppsz_longnames )
48 {
49     return module_GetModulesNamesForCapability( p_super, "services_discovery",
50                                                 pppsz_longnames );
51 }
52
53 /***********************************************************************
54  * Create
55  ***********************************************************************/
56 services_discovery_t *
57 services_discovery_Create ( vlc_object_t * p_super, const char * psz_module_name )
58 {
59     services_discovery_t *p_sd;
60     p_sd = vlc_custom_create( p_super, sizeof( *p_sd ), VLC_OBJECT_GENERIC,
61                               "services discovery" );
62     if( !p_sd )
63         return NULL;
64
65     p_sd->pf_run = NULL;
66     p_sd->psz_localized_name = NULL;
67
68     vlc_event_manager_init( &p_sd->event_manager, p_sd, (vlc_object_t *)p_sd );
69     vlc_event_manager_register_event_type( &p_sd->event_manager,
70             vlc_ServicesDiscoveryItemAdded );
71     vlc_event_manager_register_event_type( &p_sd->event_manager,
72             vlc_ServicesDiscoveryItemRemoved );
73     vlc_event_manager_register_event_type( &p_sd->event_manager,
74             vlc_ServicesDiscoveryStarted );
75     vlc_event_manager_register_event_type( &p_sd->event_manager,
76             vlc_ServicesDiscoveryEnded );
77
78     p_sd->p_module = module_Need( p_sd, "services_discovery", psz_module_name, true );
79
80     if( p_sd->p_module == NULL )
81     {
82         msg_Err( p_super, "no suitable services discovery module" );
83         vlc_object_release( p_sd );
84         return NULL;
85     }
86     p_sd->psz_module = strdup( psz_module_name );
87     p_sd->b_die = false; /* FIXME */
88
89     vlc_object_attach( p_sd, p_super );
90     return p_sd;
91 }
92
93 /***********************************************************************
94  * Destroy
95  ***********************************************************************/
96 void services_discovery_Destroy ( services_discovery_t * p_sd )
97 {
98     vlc_event_manager_fini( &p_sd->event_manager );
99
100     free( p_sd->psz_module );
101     free( p_sd->psz_localized_name );
102
103     vlc_object_detach( p_sd );
104     vlc_object_release( p_sd );
105 }
106
107 /***********************************************************************
108  * Start
109  ***********************************************************************/
110 int services_discovery_Start ( services_discovery_t * p_sd )
111 {
112     if ((p_sd->pf_run != NULL)
113         && vlc_thread_create( p_sd, "services_discovery", RunSD,
114                               VLC_THREAD_PRIORITY_LOW, false))
115     {
116         msg_Err( p_sd, "cannot create services discovery thread" );
117         vlc_object_release( p_sd );
118         return VLC_EGENERIC;
119     }
120     return VLC_SUCCESS;
121 }
122
123 /***********************************************************************
124  * Stop
125  ***********************************************************************/
126 static void ObjectKillChildrens( vlc_object_t *p_obj )
127 {
128     vlc_list_t *p_list;
129     int i;
130     vlc_object_kill( p_obj );
131
132     p_list = vlc_list_children( p_obj );
133     for( i = 0; i < p_list->i_count; i++ )
134         ObjectKillChildrens( p_list->p_values[i].p_object );
135     vlc_list_release( p_list );
136 }
137
138 void services_discovery_Stop ( services_discovery_t * p_sd )
139 {
140     ObjectKillChildrens( VLC_OBJECT(p_sd) );
141     if( p_sd->pf_run ) vlc_thread_join( p_sd );
142
143     module_Unneed( p_sd, p_sd->p_module );
144 }
145
146 /***********************************************************************
147  * GetLocalizedName
148  ***********************************************************************/
149 char *
150 services_discovery_GetLocalizedName ( services_discovery_t * p_sd )
151 {
152     return p_sd->psz_localized_name ? strdup( p_sd->psz_localized_name ) : NULL;
153 }
154
155 /***********************************************************************
156  * SetLocalizedName
157  ***********************************************************************/
158 void
159 services_discovery_SetLocalizedName ( services_discovery_t * p_sd, const char *psz )
160 {
161     free( p_sd->psz_localized_name );
162     p_sd->psz_localized_name = strdup(psz);
163 }
164
165 /***********************************************************************
166  * EventManager
167  ***********************************************************************/
168 vlc_event_manager_t *
169 services_discovery_EventManager ( services_discovery_t * p_sd )
170 {
171     return &p_sd->event_manager;
172 }
173
174 /***********************************************************************
175  * AddItem
176  ***********************************************************************/
177 void
178 services_discovery_AddItem ( services_discovery_t * p_sd, input_item_t * p_item,
179                              const char * psz_category )
180 {
181     vlc_event_t event;
182     event.type = vlc_ServicesDiscoveryItemAdded;
183     event.u.services_discovery_item_added.p_new_item = p_item;
184     event.u.services_discovery_item_added.psz_category = psz_category;
185
186     vlc_event_send( &p_sd->event_manager, &event );
187 }
188
189 /***********************************************************************
190  * RemoveItem
191  ***********************************************************************/
192 void
193 services_discovery_RemoveItem ( services_discovery_t * p_sd, input_item_t * p_item )
194 {
195     vlc_event_t event;
196     event.type = vlc_ServicesDiscoveryItemRemoved;
197     event.u.services_discovery_item_removed.p_item = p_item;
198
199     vlc_event_send( &p_sd->event_manager, &event );
200 }
201
202 /***********************************************************************
203  * RunSD (Private)
204  ***********************************************************************/
205 static void* RunSD( vlc_object_t *p_this )
206 {
207     services_discovery_t *p_sd = (services_discovery_t *)p_this;
208     vlc_event_t event;
209
210     event.type = vlc_ServicesDiscoveryStarted;
211     vlc_event_send( &p_sd->event_manager, &event );
212
213     p_sd->pf_run( p_sd );
214
215     event.type = vlc_ServicesDiscoveryEnded;
216     vlc_event_send( &p_sd->event_manager, &event );
217     return NULL;
218 }
219
220 /*
221  * Playlist - Services discovery bridge
222  */
223
224  /* A new item has been added to a certain sd */
225 static void playlist_sd_item_added( const vlc_event_t * p_event, void * user_data )
226 {
227     input_item_t * p_input = p_event->u.services_discovery_item_added.p_new_item;
228     const char * psz_cat = p_event->u.services_discovery_item_added.psz_category;
229     playlist_item_t *p_new_item, * p_parent = user_data;
230     playlist_t * p_playlist = p_parent->p_playlist;
231
232     msg_Dbg( p_playlist, "Adding %s in %s",
233                 p_input->psz_name ? p_input->psz_name : "(null)",
234                 psz_cat ? psz_cat : "(null)" );
235
236     PL_LOCK;
237     /* If p_parent is in root category (this is clearly a hack) and we have a cat */
238     if( !EMPTY_STR(psz_cat) &&
239         p_parent->p_parent == p_playlist->p_root_category )
240     {
241         /* */
242         playlist_item_t * p_cat;
243         p_cat = playlist_ChildSearchName( p_parent, psz_cat );
244         if( !p_cat )
245         {
246             p_cat = playlist_NodeCreate( p_playlist, psz_cat,
247                                          p_parent, 0, NULL );
248             p_cat->i_flags &= ~PLAYLIST_SKIP_FLAG;
249         }
250         p_parent = p_cat;
251     }
252
253     p_new_item = playlist_NodeAddInput( p_playlist, p_input, p_parent,
254                                         PLAYLIST_APPEND, PLAYLIST_END, pl_Locked );
255     if( p_new_item )
256     {
257         p_new_item->i_flags &= ~PLAYLIST_SKIP_FLAG;
258         p_new_item->i_flags &= ~PLAYLIST_SAVE_FLAG;
259     }
260     PL_UNLOCK;
261 }
262
263  /* A new item has been removed from a certain sd */
264 static void playlist_sd_item_removed( const vlc_event_t * p_event, void * user_data )
265 {
266     input_item_t * p_input = p_event->u.services_discovery_item_removed.p_item;
267     playlist_item_t * p_parent = user_data;
268     playlist_item_t * p_pl_item;
269
270     /* First make sure that if item is a node it will be deleted.
271      * XXX: Why don't we have a function to ensure that in the playlist code ? */
272     vlc_object_lock( p_parent->p_playlist );
273     p_pl_item = playlist_ItemFindFromInputAndRoot( p_parent->p_playlist,
274             p_input->i_id, p_parent, false );
275
276     if( p_pl_item && p_pl_item->i_children > -1 )
277     {
278         playlist_NodeDelete( p_parent->p_playlist, p_pl_item, true, false );
279         vlc_object_unlock( p_parent->p_playlist );
280         return;
281     }
282
283     /* Delete the non-node item normally */
284     playlist_DeleteFromInputInParent( p_parent->p_playlist, p_input->i_id,
285                                       p_parent, pl_Locked );
286
287     vlc_object_unlock( p_parent->p_playlist );
288 }
289
290 int playlist_ServicesDiscoveryAdd( playlist_t *p_playlist,  const char *psz_modules )
291 {
292     const char *psz_parser = psz_modules ?: "";
293     int retval = VLC_SUCCESS;
294
295     for (;;)
296     {
297         struct playlist_services_discovery_support_t * p_sds;
298         playlist_item_t * p_cat;
299         playlist_item_t * p_one;
300
301         while( *psz_parser == ' ' || *psz_parser == ':' || *psz_parser == ',' )
302             psz_parser++;
303
304         if( *psz_parser == '\0' )
305             break;
306
307         const char *psz_next = strchr( psz_parser, ':' );
308         if( psz_next == NULL )
309             psz_next = psz_parser + strlen( psz_parser );
310
311         char psz_plugin[psz_next - psz_parser + 1];
312         memcpy (psz_plugin, psz_parser, sizeof (psz_plugin) - 1);
313         psz_plugin[sizeof (psz_plugin) - 1] = '\0';
314         psz_parser = psz_next;
315
316         /* Perform the addition */
317         msg_Dbg( p_playlist, "Add services_discovery %s", psz_plugin );
318         services_discovery_t *p_sd;
319
320         p_sd = services_discovery_Create( (vlc_object_t*)p_playlist, psz_plugin );
321         if( !p_sd )
322             continue;
323
324         char * psz = services_discovery_GetLocalizedName( p_sd );
325         assert( psz );
326         PL_LOCK;
327         playlist_NodesPairCreate( p_playlist, psz,
328                 &p_cat, &p_one, false );
329         PL_UNLOCK;
330         free( psz );
331
332         vlc_event_attach( services_discovery_EventManager( p_sd ),
333                           vlc_ServicesDiscoveryItemAdded,
334                           playlist_sd_item_added,
335                           p_one );
336
337         vlc_event_attach( services_discovery_EventManager( p_sd ),
338                           vlc_ServicesDiscoveryItemAdded,
339                           playlist_sd_item_added,
340                           p_cat );
341
342         vlc_event_attach( services_discovery_EventManager( p_sd ),
343                           vlc_ServicesDiscoveryItemRemoved,
344                           playlist_sd_item_removed,
345                           p_one );
346
347         vlc_event_attach( services_discovery_EventManager( p_sd ),
348                           vlc_ServicesDiscoveryItemRemoved,
349                           playlist_sd_item_removed,
350                           p_cat );
351
352         services_discovery_Start( p_sd );
353
354         /* Free in playlist_ServicesDiscoveryRemove */
355         p_sds = malloc( sizeof(struct playlist_services_discovery_support_t) );
356         if( !p_sds )
357             return VLC_ENOMEM;
358         p_sds->p_sd = p_sd;
359         p_sds->p_one = p_one;
360         p_sds->p_cat = p_cat;
361
362         PL_LOCK;
363         TAB_APPEND( p_playlist->i_sds, p_playlist->pp_sds, p_sds );
364         PL_UNLOCK;
365     }
366
367     return retval;
368 }
369
370 int playlist_ServicesDiscoveryRemove( playlist_t * p_playlist,
371                                        const char *psz_module )
372 {
373     struct playlist_services_discovery_support_t * p_sds = NULL;
374     int i;
375
376     PL_LOCK;
377     for( i = 0 ; i< p_playlist->i_sds ; i ++ )
378     {
379         if( !strcmp( psz_module, p_playlist->pp_sds[i]->p_sd->psz_module ) )
380         {
381             p_sds = p_playlist->pp_sds[i];
382             REMOVE_ELEM( p_playlist->pp_sds, p_playlist->i_sds, i );
383             break;
384         }
385     }
386     PL_UNLOCK;
387
388     if( !p_sds || !p_sds->p_sd )
389     {
390         msg_Warn( p_playlist, "module %s is not loaded", psz_module );
391         return VLC_EGENERIC;
392     }
393
394     services_discovery_Stop( p_sds->p_sd );
395
396     vlc_event_detach( services_discovery_EventManager( p_sds->p_sd ),
397                         vlc_ServicesDiscoveryItemAdded,
398                         playlist_sd_item_added,
399                         p_sds->p_one );
400
401     vlc_event_detach( services_discovery_EventManager( p_sds->p_sd ),
402                         vlc_ServicesDiscoveryItemAdded,
403                         playlist_sd_item_added,
404                         p_sds->p_cat );
405
406     vlc_event_detach( services_discovery_EventManager( p_sds->p_sd ),
407                         vlc_ServicesDiscoveryItemRemoved,
408                         playlist_sd_item_removed,
409                         p_sds->p_one );
410
411     vlc_event_detach( services_discovery_EventManager( p_sds->p_sd ),
412                         vlc_ServicesDiscoveryItemRemoved,
413                         playlist_sd_item_removed,
414                         p_sds->p_cat );
415
416     /* Remove the sd playlist node if it exists */
417     PL_LOCK;
418     if( p_sds->p_cat != p_playlist->p_root_category &&
419         p_sds->p_one != p_playlist->p_root_onelevel )
420     {
421         playlist_NodeDelete( p_playlist, p_sds->p_cat, true, false );
422         playlist_NodeDelete( p_playlist, p_sds->p_one, true, false );
423     }
424     PL_UNLOCK;
425
426     services_discovery_Destroy( p_sds->p_sd );
427     free( p_sds );
428
429     return VLC_SUCCESS;
430 }
431
432 bool playlist_IsServicesDiscoveryLoaded( playlist_t * p_playlist,
433                                               const char *psz_module )
434 {
435     int i;
436     PL_LOCK;
437
438     for( i = 0 ; i< p_playlist->i_sds ; i ++ )
439     {
440         if( !strcmp( psz_module, p_playlist->pp_sds[i]->p_sd->psz_module ) )
441         {
442             PL_UNLOCK;
443             return true;
444         }
445     }
446     PL_UNLOCK;
447     return false;
448 }
449
450 void playlist_ServicesDiscoveryKillAll( playlist_t *p_playlist )
451 {
452     while( p_playlist->i_sds > 0 )
453         playlist_ServicesDiscoveryRemove( p_playlist,
454                                      p_playlist->pp_sds[0]->p_sd->psz_module );
455 }
456