]> git.sesse.net Git - vlc/blob - src/playlist/services_discovery.c
Makes services_discovery option strictly load the given module (i.e. not use a fallba...
[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 #include <vlc/vlc.h>
24 #include "vlc_playlist.h"
25 #include "vlc_events.h"
26 #include "playlist_internal.h"
27
28 static void RunSD( services_discovery_t *p_sd );
29
30 /*
31  * Services discovery
32  * Basically you just listen to Service discovery event through the
33  * sd's event manager.
34  * That's how the playlist get's Service Discovery information
35  */
36
37 /***********************************************************************
38  * GetServicesNames
39  ***********************************************************************/
40 char ** services_discovery_GetServicesNames( vlc_object_t * p_super )
41 {
42     return module_GetModulesNamesForCapability( p_super, "services_discovery" );
43 }
44
45 /***********************************************************************
46  * Create
47  ***********************************************************************/
48 services_discovery_t *
49 services_discovery_Create ( vlc_object_t * p_super, const char * psz_module_name )
50 {
51     services_discovery_t *p_sd = vlc_object_create( p_super, VLC_OBJECT_SD );
52     if( !p_sd )
53         return NULL;
54
55     p_sd->pf_run = NULL;
56     p_sd->psz_localized_name = NULL;
57
58     vlc_event_manager_init( &p_sd->event_manager, p_sd, (vlc_object_t *)p_sd );
59     vlc_event_manager_register_event_type( &p_sd->event_manager,
60             vlc_ServicesDiscoveryItemAdded );
61     vlc_event_manager_register_event_type( &p_sd->event_manager,
62             vlc_ServicesDiscoveryItemRemoved );
63
64     p_sd->p_module = module_Need( p_sd, "services_discovery", psz_module_name, VLC_TRUE );
65
66     if( p_sd->p_module == NULL )
67     {
68         msg_Err( p_super, "no suitable services discovery module" );
69         vlc_object_destroy( p_sd );
70         return NULL;
71     }
72     p_sd->psz_module = strdup( psz_module_name );
73     p_sd->b_die = VLC_FALSE; /* FIXME */
74
75     vlc_object_attach( p_sd, p_super );
76     return p_sd;
77 }
78
79 /***********************************************************************
80  * Destroy
81  ***********************************************************************/
82 void services_discovery_Destroy ( services_discovery_t * p_sd )
83 {
84     vlc_event_manager_fini( &p_sd->event_manager );
85
86     free( p_sd->psz_module );
87     free( p_sd->psz_localized_name );
88
89     vlc_object_detach( p_sd );
90     vlc_object_destroy( p_sd );
91 }
92
93 /***********************************************************************
94  * Start
95  ***********************************************************************/
96 int services_discovery_Start ( services_discovery_t * p_sd )
97 {
98     if ((p_sd->pf_run != NULL)
99         && vlc_thread_create( p_sd, "services_discovery", RunSD,
100                               VLC_THREAD_PRIORITY_LOW, VLC_FALSE))
101     {
102         msg_Err( p_sd, "cannot create services discovery thread" );
103         vlc_object_destroy( p_sd );
104         return VLC_EGENERIC;
105     }
106     return VLC_SUCCESS;
107 }
108
109 /***********************************************************************
110  * Stop
111  ***********************************************************************/
112 void services_discovery_Stop ( services_discovery_t * p_sd )
113 {
114     vlc_object_kill( p_sd );
115     if( p_sd->pf_run ) vlc_thread_join( p_sd );
116
117     module_Unneed( p_sd, p_sd->p_module );
118 }
119
120 /***********************************************************************
121  * GetLocalizedName
122  ***********************************************************************/
123 char *
124 services_discovery_GetLocalizedName ( services_discovery_t * p_sd )
125 {
126     return p_sd->psz_localized_name ? strdup( p_sd->psz_localized_name ) : NULL;
127 }
128
129 /***********************************************************************
130  * SetLocalizedName
131  ***********************************************************************/
132 void
133 services_discovery_SetLocalizedName ( services_discovery_t * p_sd, const char *psz )
134 {
135     if(p_sd->psz_localized_name) free( p_sd->psz_localized_name );
136     p_sd->psz_localized_name = strdup(psz);
137 }
138
139 /***********************************************************************
140  * EventManager
141  ***********************************************************************/
142 vlc_event_manager_t *
143 services_discovery_EventManager ( services_discovery_t * p_sd )
144 {
145     return &p_sd->event_manager;
146 }
147
148 /***********************************************************************
149  * AddItem
150  ***********************************************************************/
151 void
152 services_discovery_AddItem ( services_discovery_t * p_sd, input_item_t * p_item,
153                              const char * psz_category )
154 {
155     vlc_event_t event;
156     event.type = vlc_ServicesDiscoveryItemAdded;
157     event.u.services_discovery_item_added.p_new_item = p_item;
158     event.u.services_discovery_item_added.psz_category = psz_category;
159
160     vlc_event_send( &p_sd->event_manager, &event );
161 }
162
163 /***********************************************************************
164  * RemoveItem
165  ***********************************************************************/
166 void
167 services_discovery_RemoveItem ( services_discovery_t * p_sd, input_item_t * p_item )
168 {
169     vlc_event_t event;
170     event.type = vlc_ServicesDiscoveryItemRemoved;
171     event.u.services_discovery_item_removed.p_item = p_item;
172
173     vlc_event_send( &p_sd->event_manager, &event );
174 }
175
176 /***********************************************************************
177  * RunSD (Private)
178  ***********************************************************************/
179 static void RunSD( services_discovery_t *p_sd )
180 {
181     p_sd->pf_run( p_sd );
182     return;
183 }
184
185 /*
186  * Playlist - Services discovery bridge
187  */
188
189  /* A new item has been added to a certain sd */
190 static void playlist_sd_item_added( const vlc_event_t * p_event, void * user_data )
191 {
192     input_item_t * p_input = p_event->u.services_discovery_item_added.p_new_item;
193     const char * psz_cat = p_event->u.services_discovery_item_added.psz_category;
194     playlist_item_t *p_new_item, * p_parent = user_data;
195
196     msg_Dbg( p_parent->p_playlist, "Adding %s in %s",
197                 p_input->psz_name ? p_input->psz_name : "(null)",
198                 psz_cat ? psz_cat : "(null)" );
199
200     /* If p_parent is in root category (this is clearly a hack) and we have a cat */
201     if( !EMPTY_STR(psz_cat) &&
202         p_parent->p_parent == p_parent->p_playlist->p_root_category )
203     {
204         /* */
205         playlist_item_t * p_cat;
206         p_cat = playlist_ChildSearchName( p_parent, psz_cat );
207         if( !p_cat )
208         {
209             p_cat = playlist_NodeCreate( p_parent->p_playlist, psz_cat,
210                                          p_parent, 0 );
211             p_cat->i_flags &= ~PLAYLIST_SKIP_FLAG;
212         }
213         p_parent = p_cat;
214     }
215
216     p_new_item = playlist_NodeAddInput( p_parent->p_playlist, p_input, p_parent,
217                                         PLAYLIST_APPEND, PLAYLIST_END, VLC_FALSE );
218     p_new_item->i_flags &= ~PLAYLIST_SKIP_FLAG;
219     p_new_item->i_flags &= ~PLAYLIST_SAVE_FLAG;
220 }
221
222  /* A new item has been removed from a certain sd */
223 static void playlist_sd_item_removed( const vlc_event_t * p_event, void * user_data )
224 {
225     input_item_t * p_input = p_event->u.services_discovery_item_removed.p_item;
226     playlist_item_t * p_parent = user_data;
227
228     playlist_DeleteInputInParent( p_parent->p_playlist, p_input->i_id,
229                                   p_parent, VLC_FALSE );
230 }
231
232 int playlist_ServicesDiscoveryAdd( playlist_t *p_playlist,  const char *psz_modules )
233 {
234     const char *psz_parser = psz_modules ?: "";
235     int retval = VLC_SUCCESS;
236
237     for (;;)
238     {
239         struct playlist_archived_services_discovery_t * p_asd;
240         playlist_item_t * p_cat;
241         playlist_item_t * p_one;
242
243         while( *psz_parser == ' ' || *psz_parser == ':' || *psz_parser == ',' )
244             psz_parser++;
245
246         if( *psz_parser == '\0' )
247             break;
248
249         const char *psz_next = strchr( psz_parser, ':' );
250         if( psz_next == NULL )
251             psz_next = psz_parser + strlen( psz_parser );
252
253         char psz_plugin[psz_next - psz_parser + 1];
254         memcpy (psz_plugin, psz_parser, sizeof (psz_plugin) - 1);
255         psz_plugin[sizeof (psz_plugin) - 1] = '\0';
256         psz_parser = psz_next;
257
258         /* Perform the addition */
259         msg_Dbg( p_playlist, "Add services_discovery %s", psz_plugin );
260         services_discovery_t *p_sd;
261
262         p_sd = services_discovery_Create( (vlc_object_t*)p_playlist, psz_plugin );
263         if( !p_sd )
264             continue;
265
266         char * psz = services_discovery_GetLocalizedName( p_sd );
267         if( psz )
268         {
269             playlist_NodesPairCreate( p_playlist, psz,
270                     &p_cat, &p_one, VLC_FALSE );
271             free( psz );
272         }
273         else
274         {
275             /* No name, just add at the top of the playlist */
276             PL_LOCK;
277             p_cat = p_playlist->p_root_category;
278             p_one = p_playlist->p_root_onelevel;
279             PL_UNLOCK;
280         }
281
282         vlc_event_attach( services_discovery_EventManager( p_sd ),
283                           vlc_ServicesDiscoveryItemAdded,
284                           playlist_sd_item_added,
285                           p_one );
286
287         vlc_event_attach( services_discovery_EventManager( p_sd ),
288                           vlc_ServicesDiscoveryItemAdded,
289                           playlist_sd_item_added,
290                           p_cat );
291
292         vlc_event_attach( services_discovery_EventManager( p_sd ),
293                           vlc_ServicesDiscoveryItemRemoved,
294                           playlist_sd_item_removed,
295                           p_one );
296
297         vlc_event_attach( services_discovery_EventManager( p_sd ),
298                           vlc_ServicesDiscoveryItemRemoved,
299                           playlist_sd_item_removed,
300                           p_cat );
301
302         services_discovery_Start( p_sd );
303
304         /* Free in playlist_ServicesDiscoveryRemove */
305         p_asd = malloc( sizeof(struct playlist_archived_services_discovery_t) );
306         p_asd->p_sd = p_sd;
307         p_asd->p_one = p_one;
308         p_asd->p_cat = p_cat;
309
310         PL_LOCK;
311         TAB_APPEND( p_playlist->p_internal->i_asds, p_playlist->p_internal->pp_asds, p_asd );
312         PL_UNLOCK;
313     }
314
315     return retval;
316 }
317
318 int playlist_ServicesDiscoveryRemove( playlist_t * p_playlist,
319                                        const char *psz_module )
320 {
321     int i;
322     struct playlist_archived_services_discovery_t *p_asd = NULL;
323
324     PL_LOCK;
325     for( i = 0 ; i< p_playlist->p_internal->i_asds ; i ++ )
326     {
327         if( !strcmp( psz_module, p_playlist->p_internal->pp_asds[i]->p_sd->psz_module ) )
328         {
329             p_asd = p_playlist->p_internal->pp_asds[i];
330             REMOVE_ELEM( p_playlist->p_internal->pp_asds, p_playlist->p_internal->i_asds, i );
331             break;
332         }
333     }
334     PL_UNLOCK;
335
336     if( p_asd && p_asd->p_sd )
337     {
338         services_discovery_Stop( p_asd->p_sd );
339
340         vlc_event_detach( services_discovery_EventManager( p_asd->p_sd ),
341                           vlc_ServicesDiscoveryItemAdded,
342                           playlist_sd_item_added,
343                           p_asd->p_one );
344
345         vlc_event_detach( services_discovery_EventManager( p_asd->p_sd ),
346                           vlc_ServicesDiscoveryItemAdded,
347                           playlist_sd_item_added,
348                           p_asd->p_cat );
349
350         vlc_event_detach( services_discovery_EventManager( p_asd->p_sd ),
351                           vlc_ServicesDiscoveryItemRemoved,
352                           playlist_sd_item_removed,
353                           p_asd->p_one );
354
355         vlc_event_detach( services_discovery_EventManager( p_asd->p_sd ),
356                           vlc_ServicesDiscoveryItemRemoved,
357                           playlist_sd_item_removed,
358                           p_asd->p_cat );
359
360         /* Remove the sd playlist node if it exists */
361         PL_LOCK;
362         if( p_asd->p_cat != p_playlist->p_root_category &&
363             p_asd->p_one != p_playlist->p_root_onelevel )
364         {
365             playlist_NodeDelete( p_playlist, p_asd->p_cat, VLC_TRUE, VLC_FALSE );
366             playlist_NodeDelete( p_playlist, p_asd->p_one, VLC_TRUE, VLC_FALSE );
367         }
368         PL_UNLOCK;
369
370         services_discovery_Destroy( p_asd->p_sd );
371
372         free( p_asd );
373     }
374     else
375     {
376         msg_Warn( p_playlist, "module %s is not loaded", psz_module );
377         return VLC_EGENERIC;
378     }
379     return VLC_SUCCESS;
380 }
381
382 vlc_bool_t playlist_IsServicesDiscoveryLoaded( playlist_t * p_playlist,
383                                               const char *psz_module )
384 {
385     int i;
386     PL_LOCK;
387
388     for( i = 0 ; i< p_playlist->p_internal->i_asds ; i ++ )
389     {
390         if( !strcmp( psz_module, p_playlist->p_internal->pp_asds[i]->p_sd->psz_module ) )
391         {
392             PL_UNLOCK;
393             return VLC_TRUE;
394         }
395     }
396     PL_UNLOCK;
397     return VLC_FALSE;
398 }
399