]> git.sesse.net Git - vlc/blob - src/playlist/services_discovery.c
Remove useless parameter
[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 <vlc_services_discovery.h>
32 #include "playlist_internal.h"
33 #include "../libvlc.h"
34
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  * Gets the list of available services discovery plugins.
45  */
46 char **vlc_sd_GetNames( char ***pppsz_longnames )
47 {
48     return module_GetModulesNamesForCapability( "services_discovery",
49                                                 pppsz_longnames );
50 }
51
52 /***********************************************************************
53  * Create
54  ***********************************************************************/
55 services_discovery_t *vlc_sd_Create( vlc_object_t *p_super )
56 {
57     services_discovery_t *p_sd;
58
59     p_sd = vlc_custom_create( p_super, sizeof( *p_sd ), VLC_OBJECT_GENERIC,
60                               "services discovery" );
61     if( !p_sd )
62         return NULL;
63
64     vlc_event_manager_init( &p_sd->event_manager, p_sd, (vlc_object_t *)p_sd );
65     vlc_event_manager_register_event_type( &p_sd->event_manager,
66             vlc_ServicesDiscoveryItemAdded );
67     vlc_event_manager_register_event_type( &p_sd->event_manager,
68             vlc_ServicesDiscoveryItemRemoved );
69     vlc_event_manager_register_event_type( &p_sd->event_manager,
70             vlc_ServicesDiscoveryStarted );
71     vlc_event_manager_register_event_type( &p_sd->event_manager,
72             vlc_ServicesDiscoveryEnded );
73
74     vlc_object_attach( p_sd, p_super );
75
76     return p_sd;
77 }
78
79 /***********************************************************************
80  * Stop
81  ***********************************************************************/
82 bool vlc_sd_Start ( services_discovery_t * p_sd, const char *module )
83 {
84     assert(!p_sd->p_module);
85
86     p_sd->p_module = module_need( p_sd, "services_discovery", module, true );
87
88     if( p_sd->p_module == NULL )
89     {
90         msg_Err( p_sd, "no suitable services discovery module" );
91         return false;
92     }
93         
94     vlc_event_t event = {
95         .type = vlc_ServicesDiscoveryStarted
96     };
97     vlc_event_send( &p_sd->event_manager, &event );
98     return true;
99 }
100                           
101 /***********************************************************************
102  * Stop
103  ***********************************************************************/
104 void vlc_sd_Stop ( services_discovery_t * p_sd )
105 {
106     vlc_event_t event = {
107         .type = vlc_ServicesDiscoveryEnded
108     };
109     
110     vlc_event_send( &p_sd->event_manager, &event );
111
112     module_unneed( p_sd, p_sd->p_module );
113     p_sd->p_module = NULL;
114 }
115
116 /***********************************************************************
117  * GetLocalizedName
118  ***********************************************************************/
119 char *
120 services_discovery_GetLocalizedName ( services_discovery_t * p_sd )
121 {
122     return strdup( module_get_name( p_sd->p_module, true ) );
123 }
124
125 /***********************************************************************
126  * EventManager
127  ***********************************************************************/
128 vlc_event_manager_t *
129 services_discovery_EventManager ( services_discovery_t * p_sd )
130 {
131     return &p_sd->event_manager;
132 }
133
134 /***********************************************************************
135  * AddItem
136  ***********************************************************************/
137 void
138 services_discovery_AddItem ( services_discovery_t * p_sd, input_item_t * p_item,
139                              const char * psz_category )
140 {
141     vlc_event_t event;
142     event.type = vlc_ServicesDiscoveryItemAdded;
143     event.u.services_discovery_item_added.p_new_item = p_item;
144     event.u.services_discovery_item_added.psz_category = psz_category;
145
146     vlc_event_send( &p_sd->event_manager, &event );
147 }
148
149 /***********************************************************************
150  * RemoveItem
151  ***********************************************************************/
152 void
153 services_discovery_RemoveItem ( services_discovery_t * p_sd, input_item_t * p_item )
154 {
155     vlc_event_t event;
156     event.type = vlc_ServicesDiscoveryItemRemoved;
157     event.u.services_discovery_item_removed.p_item = p_item;
158
159     vlc_event_send( &p_sd->event_manager, &event );
160 }
161
162 /*
163  * Playlist - Services discovery bridge
164  */
165
166  /* A new item has been added to a certain sd */
167 static void playlist_sd_item_added( const vlc_event_t * p_event, void * user_data )
168 {
169     input_item_t * p_input = p_event->u.services_discovery_item_added.p_new_item;
170     const char * psz_cat = p_event->u.services_discovery_item_added.psz_category;
171     playlist_item_t *p_new_item, * p_parent = user_data;
172     playlist_t * p_playlist = p_parent->p_playlist;
173
174     msg_Dbg( p_playlist, "Adding %s in %s",
175                 p_input->psz_name ? p_input->psz_name : "(null)",
176                 psz_cat ? psz_cat : "(null)" );
177
178     PL_LOCK;
179     /* If p_parent is in root category (this is clearly a hack) and we have a cat */
180     if( !EMPTY_STR(psz_cat) &&
181         p_parent->p_parent == p_playlist->p_root_category )
182     {
183         /* */
184         playlist_item_t * p_cat;
185         p_cat = playlist_ChildSearchName( p_parent, psz_cat );
186         if( !p_cat )
187         {
188             p_cat = playlist_NodeCreate( p_playlist, psz_cat,
189                                          p_parent, 0, NULL );
190             p_cat->i_flags &= ~PLAYLIST_SKIP_FLAG;
191         }
192         p_parent = p_cat;
193     }
194
195     p_new_item = playlist_NodeAddInput( p_playlist, p_input, p_parent,
196                                         PLAYLIST_APPEND, PLAYLIST_END, pl_Locked );
197     if( p_new_item )
198     {
199         p_new_item->i_flags &= ~PLAYLIST_SKIP_FLAG;
200         p_new_item->i_flags &= ~PLAYLIST_SAVE_FLAG;
201     }
202     PL_UNLOCK;
203 }
204
205  /* A new item has been removed from a certain sd */
206 static void playlist_sd_item_removed( const vlc_event_t * p_event, void * user_data )
207 {
208     input_item_t * p_input = p_event->u.services_discovery_item_removed.p_item;
209     playlist_item_t * p_parent = user_data;
210     playlist_item_t * p_pl_item;
211
212     /* First make sure that if item is a node it will be deleted.
213      * XXX: Why don't we have a function to ensure that in the playlist code ? */
214     vlc_object_lock( p_parent->p_playlist );
215     p_pl_item = playlist_ItemFindFromInputAndRoot( p_parent->p_playlist,
216             p_input->i_id, p_parent, false );
217
218     if( p_pl_item && p_pl_item->i_children > -1 )
219     {
220         playlist_NodeDelete( p_parent->p_playlist, p_pl_item, true, false );
221         vlc_object_unlock( p_parent->p_playlist );
222         return;
223     }
224
225     /* Delete the non-node item normally */
226     playlist_DeleteFromInputInParent( p_parent->p_playlist, p_input->i_id,
227                                       p_parent, pl_Locked );
228
229     vlc_object_unlock( p_parent->p_playlist );
230 }
231
232 int playlist_ServicesDiscoveryAdd( playlist_t *p_playlist, const char *psz_module )
233 {
234     /* Perform the addition */
235     msg_Dbg( p_playlist, "adding services_discovery %s...", psz_module );
236
237     services_discovery_t *p_sd = vlc_sd_Create( VLC_OBJECT(p_playlist) );
238     if( !p_sd )
239         return VLC_ENOMEM;
240
241     module_t *m = module_find( psz_module );
242     if( !m )
243     {
244         msg_Err( p_playlist, "No such module: %s", psz_module );
245         vlc_sd_Destroy( p_sd );
246         return VLC_EGENERIC;
247     }
248
249     /* Free in playlist_ServicesDiscoveryRemove */
250     struct playlist_services_discovery_support_t * p_sds;
251     p_sds = malloc( sizeof(struct playlist_services_discovery_support_t) );
252     if( !p_sds )
253     {
254         vlc_sd_Destroy( p_sd );
255         module_release( m );
256         return VLC_ENOMEM;
257     }
258
259     playlist_item_t * p_cat;
260     playlist_item_t * p_one;
261
262     PL_LOCK;
263     playlist_NodesPairCreate( p_playlist, module_get_name( m, true ),
264                               &p_cat, &p_one, false );
265     PL_UNLOCK;
266     module_release( m );
267
268     vlc_event_attach( services_discovery_EventManager( p_sd ),
269                       vlc_ServicesDiscoveryItemAdded,
270                       playlist_sd_item_added, p_one );
271         
272     vlc_event_attach( services_discovery_EventManager( p_sd ),
273                       vlc_ServicesDiscoveryItemAdded,
274                       playlist_sd_item_added, p_cat );
275
276     vlc_event_attach( services_discovery_EventManager( p_sd ),
277                       vlc_ServicesDiscoveryItemRemoved,
278                       playlist_sd_item_removed, p_one );
279
280     vlc_event_attach( services_discovery_EventManager( p_sd ),
281                       vlc_ServicesDiscoveryItemRemoved,
282                       playlist_sd_item_removed, p_cat );
283
284     if( !vlc_sd_Start( p_sd, psz_module ) )
285     {
286         vlc_sd_Destroy( p_sd );
287         free( p_sds );
288         return VLC_EGENERIC;
289     }
290
291     /* We want tree-view for service directory */
292     p_one->p_input->b_prefers_tree = true;
293     p_sds->p_sd = p_sd;
294     p_sds->p_one = p_one;
295     p_sds->p_cat = p_cat;
296
297     PL_LOCK;
298     TAB_APPEND( pl_priv(p_playlist)->i_sds, pl_priv(p_playlist)->pp_sds, p_sds );
299     PL_UNLOCK;
300
301     return VLC_SUCCESS;
302 }
303
304 int playlist_ServicesDiscoveryRemove( playlist_t * p_playlist,
305                                       const char *psz_module )
306 {
307     struct playlist_services_discovery_support_t * p_sds = NULL;
308     int i;
309
310     PL_LOCK;
311     for( i = 0 ; i< pl_priv(p_playlist)->i_sds ; i ++ )
312     {
313         if( !strcmp( psz_module, module_get_object( pl_priv(p_playlist)->pp_sds[i]->p_sd->p_module ) ) )
314         {
315             p_sds = pl_priv(p_playlist)->pp_sds[i];
316             REMOVE_ELEM( pl_priv(p_playlist)->pp_sds, pl_priv(p_playlist)->i_sds, i );
317             break;
318         }
319     }
320     PL_UNLOCK;
321
322     if( !p_sds )
323     {
324         msg_Warn( p_playlist, "module %s is not loaded", psz_module );
325         return VLC_EGENERIC;
326     }
327
328     services_discovery_t *p_sd = p_sds->p_sd;
329     assert( p_sd );
330
331     vlc_sd_Stop( p_sd );
332
333     vlc_event_detach( services_discovery_EventManager( p_sd ),
334                         vlc_ServicesDiscoveryItemAdded,
335                         playlist_sd_item_added,
336                         p_sds->p_one );
337
338     vlc_event_detach( services_discovery_EventManager( p_sd ),
339                         vlc_ServicesDiscoveryItemAdded,
340                         playlist_sd_item_added,
341                         p_sds->p_cat );
342
343     vlc_event_detach( services_discovery_EventManager( p_sd ),
344                         vlc_ServicesDiscoveryItemRemoved,
345                         playlist_sd_item_removed,
346                         p_sds->p_one );
347
348     vlc_event_detach( services_discovery_EventManager( p_sd ),
349                         vlc_ServicesDiscoveryItemRemoved,
350                         playlist_sd_item_removed,
351                         p_sds->p_cat );
352
353     /* Remove the sd playlist node if it exists */
354     PL_LOCK;
355     if( p_sds->p_cat != p_playlist->p_root_category &&
356         p_sds->p_one != p_playlist->p_root_onelevel )
357     {
358         playlist_NodeDelete( p_playlist, p_sds->p_cat, true, false );
359         playlist_NodeDelete( p_playlist, p_sds->p_one, true, false );
360     }
361     PL_UNLOCK;
362
363     vlc_sd_Destroy( p_sd );
364     free( p_sds );
365
366     return VLC_SUCCESS;
367 }
368
369 bool playlist_IsServicesDiscoveryLoaded( playlist_t * p_playlist,
370                                               const char *psz_module )
371 {
372     int i;
373     PL_LOCK;
374
375     for( i = 0 ; i< pl_priv(p_playlist)->i_sds ; i ++ )
376     {
377         if( !strcmp( psz_module, module_get_object( pl_priv(p_playlist)->pp_sds[i]->p_sd->p_module ) ) )
378         {
379             PL_UNLOCK;
380             return true;
381         }
382     }
383     PL_UNLOCK;
384     return false;
385 }
386
387 void playlist_ServicesDiscoveryKillAll( playlist_t *p_playlist )
388 {
389     while( pl_priv(p_playlist)->i_sds > 0 )
390         playlist_ServicesDiscoveryRemove( p_playlist,
391                                           module_get_object( pl_priv(p_playlist)->pp_sds[0]->p_sd->p_module ) );
392 }