]> git.sesse.net Git - vlc/blob - src/control/media_list.c
d553536fedb57a241514a30c61283b22c70e6a22
[vlc] / src / control / media_list.c
1 /*****************************************************************************
2  * media_list.c: libvlc new API media list functions
3  *****************************************************************************
4  * Copyright (C) 2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Pierre d'Herbemont <pdherbemont # 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
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include <assert.h>
29
30 #include <vlc/libvlc.h>
31 #include <vlc/libvlc_media.h>
32 #include <vlc/libvlc_media_list.h>
33 #include <vlc/libvlc_events.h>
34
35 #include <vlc_common.h>
36 #include <vlc_input.h>
37
38 #include "libvlc_internal.h"
39 #include "media_internal.h" // libvlc_media_new_from_input_item()
40 #include "media_list_internal.h"
41
42 typedef enum EventPlaceInTime {
43     EventWillHappen,
44     EventDidHappen
45 } EventPlaceInTime;
46
47 //#define DEBUG_MEDIA_LIST
48
49 #ifdef DEBUG_MEDIA_LIST
50 # define trace( fmt, ... ) printf( "%s(): " fmt, __FUNCTION__, ##__VA_ARGS__ )
51 #else
52 # define trace( ... )
53 #endif
54
55 /*
56  * Private functions
57  */
58
59
60
61 /**************************************************************************
62  *       notify_item_addition (private)
63  *
64  * Do the appropriate action when an item is deleted.
65  **************************************************************************/
66 static void
67 notify_item_addition( libvlc_media_list_t * p_mlist,
68                       libvlc_media_t * p_md,
69                       int index,
70                       EventPlaceInTime event_status )
71 {
72     libvlc_event_t event;
73
74     /* Construct the event */
75     if( event_status == EventDidHappen )
76     {
77         trace("item was added at index %d\n", index);
78         event.type = libvlc_MediaListItemAdded;
79         event.u.media_list_item_added.item = p_md;
80         event.u.media_list_item_added.index = index;
81     }
82     else /* if( event_status == EventWillHappen ) */
83     {
84         event.type = libvlc_MediaListWillAddItem;
85         event.u.media_list_will_add_item.item = p_md;
86         event.u.media_list_will_add_item.index = index;
87     }
88
89     /* Send the event */
90     libvlc_event_send( p_mlist->p_event_manager, &event );
91 }
92
93 /**************************************************************************
94  *       notify_item_deletion (private)
95  *
96  * Do the appropriate action when an item is added.
97  **************************************************************************/
98 static void
99 notify_item_deletion( libvlc_media_list_t * p_mlist,
100                       libvlc_media_t * p_md,
101                       int index,
102                       EventPlaceInTime event_status )
103 {
104     libvlc_event_t event;
105
106     /* Construct the event */
107     if( event_status == EventDidHappen )
108     {
109         trace("item at index %d was deleted\n", index);
110         event.type = libvlc_MediaListItemDeleted;
111         event.u.media_list_item_deleted.item = p_md;
112         event.u.media_list_item_deleted.index = index;
113     }
114     else /* if( event_status == EventWillHappen ) */
115     {
116         event.type = libvlc_MediaListWillDeleteItem;
117         event.u.media_list_will_delete_item.item = p_md;
118         event.u.media_list_will_delete_item.index = index;
119     }
120
121     /* Send the event */
122     libvlc_event_send( p_mlist->p_event_manager, &event );
123 }
124
125 /**************************************************************************
126  *       static mlist_is_writable (private)
127  *
128  * Raise exception and return 0 when the media_list instance is read-only,
129  * or else return 1.
130  **************************************************************************/
131 static inline
132 int mlist_is_writable( libvlc_media_list_t *p_mlist, libvlc_exception_t *p_e )
133 {
134     if( !p_mlist||p_mlist->b_read_only )
135     {
136         /* We are read-only from user side */
137         libvlc_exception_raise( p_e );
138         libvlc_printerr( "Attempt to write a read-only media list" );
139         return 0;
140     }
141     return 1;
142 }
143
144 /*
145  * Public libvlc functions
146  */
147
148 /**************************************************************************
149  *       libvlc_media_list_new (Public)
150  *
151  * Init an object.
152  **************************************************************************/
153 libvlc_media_list_t *
154 libvlc_media_list_new( libvlc_instance_t * p_inst,
155                        libvlc_exception_t * p_e )
156 {
157     libvlc_media_list_t * p_mlist;
158
159     p_mlist = malloc(sizeof(libvlc_media_list_t));
160     if( !p_mlist )
161         return NULL;
162
163     p_mlist->p_libvlc_instance = p_inst;
164     p_mlist->p_event_manager = libvlc_event_manager_new( p_mlist, p_inst, p_e );
165
166     /* Code for that one should be handled in flat_media_list.c */
167     p_mlist->p_flat_mlist = NULL;
168     p_mlist->b_read_only = false;
169
170     libvlc_event_manager_register_event_type( p_mlist->p_event_manager,
171             libvlc_MediaListItemAdded, p_e );
172     libvlc_event_manager_register_event_type( p_mlist->p_event_manager,
173             libvlc_MediaListWillAddItem, p_e );
174     libvlc_event_manager_register_event_type( p_mlist->p_event_manager,
175             libvlc_MediaListItemDeleted, p_e );
176     libvlc_event_manager_register_event_type( p_mlist->p_event_manager,
177             libvlc_MediaListWillDeleteItem, p_e );
178
179     if( libvlc_exception_raised( p_e ) )
180     {
181         libvlc_event_manager_release( p_mlist->p_event_manager );
182         free( p_mlist );
183         return NULL;
184     }
185
186     vlc_mutex_init( &p_mlist->object_lock );
187     vlc_mutex_init( &p_mlist->refcount_lock ); // FIXME: spinlock?
188
189     vlc_array_init( &p_mlist->items );
190     p_mlist->i_refcount = 1;
191     p_mlist->p_md = NULL;
192
193     return p_mlist;
194 }
195
196 /**************************************************************************
197  *       libvlc_media_list_release (Public)
198  *
199  * Release an object.
200  **************************************************************************/
201 void libvlc_media_list_release( libvlc_media_list_t * p_mlist )
202 {
203     libvlc_media_t * p_md;
204     int i;
205
206     vlc_mutex_lock( &p_mlist->refcount_lock );
207     p_mlist->i_refcount--;
208     if( p_mlist->i_refcount > 0 )
209     {
210         vlc_mutex_unlock( &p_mlist->refcount_lock );
211         return;
212     }
213     vlc_mutex_unlock( &p_mlist->refcount_lock );
214
215     /* Refcount null, time to free */
216
217     libvlc_event_manager_release( p_mlist->p_event_manager );
218
219     libvlc_media_release( p_mlist->p_md );
220
221     for ( i = 0; i < vlc_array_count( &p_mlist->items ); i++ )
222     {
223         p_md = vlc_array_item_at_index( &p_mlist->items, i );
224         libvlc_media_release( p_md );
225     }
226
227     vlc_mutex_destroy( &p_mlist->object_lock );
228     vlc_array_clear( &p_mlist->items );
229
230     free( p_mlist );
231 }
232
233 /**************************************************************************
234  *       libvlc_media_list_retain (Public)
235  *
236  * Increase an object refcount.
237  **************************************************************************/
238 void libvlc_media_list_retain( libvlc_media_list_t * p_mlist )
239 {
240     vlc_mutex_lock( &p_mlist->refcount_lock );
241     p_mlist->i_refcount++;
242     vlc_mutex_unlock( &p_mlist->refcount_lock );
243 }
244
245
246 /**************************************************************************
247  *       add_file_content (Public)
248  **************************************************************************/
249 void
250 libvlc_media_list_add_file_content( libvlc_media_list_t * p_mlist,
251                                     const char * psz_uri,
252                                     libvlc_exception_t * p_e )
253 {
254     input_item_t * p_input_item;
255     libvlc_media_t * p_md;
256
257     p_input_item = input_item_NewExt(
258                            p_mlist->p_libvlc_instance->p_libvlc_int, psz_uri,
259                                          _("Media Library"), 0, NULL, 0, -1 );
260
261     if( !p_input_item )
262     {
263         libvlc_exception_raise( p_e );
264         libvlc_printerr( "Not enough memory" );
265         return;
266     }
267
268     p_md = libvlc_media_new_from_input_item(
269             p_mlist->p_libvlc_instance,
270             p_input_item, p_e );
271
272     if( !p_md )
273     {
274         vlc_gc_decref( p_input_item );
275         return;
276     }
277
278     libvlc_media_list_add_media( p_mlist, p_md, p_e );
279     if( libvlc_exception_raised( p_e ) )
280         return;
281
282     input_Read( p_mlist->p_libvlc_instance->p_libvlc_int, p_input_item );
283
284     return;
285 }
286
287 /**************************************************************************
288  *       set_media (Public)
289  **************************************************************************/
290 void libvlc_media_list_set_media( libvlc_media_list_t * p_mlist,
291                                   libvlc_media_t * p_md )
292
293 {
294     vlc_mutex_lock( &p_mlist->object_lock );
295     libvlc_media_release( p_mlist->p_md );
296     libvlc_media_retain( p_md );
297     p_mlist->p_md = p_md;
298     vlc_mutex_unlock( &p_mlist->object_lock );
299 }
300
301 /**************************************************************************
302  *       media (Public)
303  *
304  * If this media_list comes is a media's subitems,
305  * This holds the corresponding media.
306  * This md is also seen as the information holder for the media_list.
307  * Indeed a media_list can have meta information through this
308  * media.
309  **************************************************************************/
310 libvlc_media_t *
311 libvlc_media_list_media( libvlc_media_list_t * p_mlist )
312 {
313     libvlc_media_t *p_md;
314
315     vlc_mutex_lock( &p_mlist->object_lock );
316     p_md = p_mlist->p_md;
317     if( p_md )
318         libvlc_media_retain( p_md );
319     vlc_mutex_unlock( &p_mlist->object_lock );
320
321     return p_md;
322 }
323
324 /**************************************************************************
325  *       libvlc_media_list_count (Public)
326  *
327  * Lock should be held when entering.
328  **************************************************************************/
329 int libvlc_media_list_count( libvlc_media_list_t * p_mlist )
330 {
331     return vlc_array_count( &p_mlist->items );
332 }
333
334 /**************************************************************************
335  *       libvlc_media_list_add_media (Public)
336  *
337  * Lock should be held when entering.
338  **************************************************************************/
339 void libvlc_media_list_add_media(
340                                    libvlc_media_list_t * p_mlist,
341                                    libvlc_media_t * p_md,
342                                    libvlc_exception_t * p_e )
343 {
344     if( mlist_is_writable(p_mlist,p_e) )
345         _libvlc_media_list_add_media( p_mlist, p_md );
346 }
347
348 /* LibVLC internal version */
349 void _libvlc_media_list_add_media( libvlc_media_list_t * p_mlist,
350                                    libvlc_media_t * p_md )
351 {
352     libvlc_media_retain( p_md );
353
354     notify_item_addition( p_mlist, p_md, vlc_array_count( &p_mlist->items ),
355                           EventWillHappen );
356     vlc_array_append( &p_mlist->items, p_md );
357     notify_item_addition( p_mlist, p_md, vlc_array_count( &p_mlist->items )-1,
358                           EventDidHappen );
359 }
360
361 /**************************************************************************
362  *       libvlc_media_list_insert_media (Public)
363  *
364  * Lock should be hold when entering.
365  **************************************************************************/
366 void libvlc_media_list_insert_media(
367                                    libvlc_media_list_t * p_mlist,
368                                    libvlc_media_t * p_md,
369                                    int index,
370                                    libvlc_exception_t * p_e )
371 {
372     if( mlist_is_writable(p_mlist,p_e) )
373         _libvlc_media_list_insert_media( p_mlist, p_md, index );
374 }
375
376 /* LibVLC internal version */
377 void _libvlc_media_list_insert_media(
378                                    libvlc_media_list_t * p_mlist,
379                                    libvlc_media_t * p_md,
380                                    int index )
381 {
382     libvlc_media_retain( p_md );
383
384     notify_item_addition( p_mlist, p_md, index, EventWillHappen );
385     vlc_array_insert( &p_mlist->items, p_md, index );
386     notify_item_addition( p_mlist, p_md, index, EventDidHappen );
387 }
388
389 /**************************************************************************
390  *       libvlc_media_list_remove_index (Public)
391  *
392  * Lock should be held when entering.
393  **************************************************************************/
394 void libvlc_media_list_remove_index( libvlc_media_list_t * p_mlist,
395                                      int index,
396                                      libvlc_exception_t * p_e )
397 {
398     if( mlist_is_writable(p_mlist,p_e) )
399         _libvlc_media_list_remove_index( p_mlist, index, p_e );
400 }
401
402 /* LibVLC internal version */
403 void _libvlc_media_list_remove_index( libvlc_media_list_t * p_mlist,
404                                      int index,
405                                      libvlc_exception_t * p_e )
406 {
407     libvlc_media_t * p_md;
408
409     if( index < 0 || index >= vlc_array_count( &p_mlist->items ))
410     {
411         libvlc_exception_raise( p_e );
412         libvlc_printerr( "Index out of bounds" );
413         return;
414     }
415
416     p_md = vlc_array_item_at_index( &p_mlist->items, index );
417
418     notify_item_deletion( p_mlist, p_md, index, EventWillHappen );
419     vlc_array_remove( &p_mlist->items, index );
420     notify_item_deletion( p_mlist, p_md, index, EventDidHappen );
421
422     libvlc_media_release( p_md );
423 }
424
425 /**************************************************************************
426  *       libvlc_media_list_item_at_index (Public)
427  *
428  * Lock should be held when entering.
429  **************************************************************************/
430 libvlc_media_t *
431 libvlc_media_list_item_at_index( libvlc_media_list_t * p_mlist,
432                                  int index,
433                                  libvlc_exception_t * p_e )
434 {
435     libvlc_media_t * p_md;
436
437     if( index < 0 || index >= vlc_array_count( &p_mlist->items ))
438     {
439         libvlc_exception_raise( p_e );
440         libvlc_printerr( "Index out of bounds" );
441         return NULL;
442     }
443
444     p_md = vlc_array_item_at_index( &p_mlist->items, index );
445     libvlc_media_retain( p_md );
446     return p_md;
447 }
448
449 /**************************************************************************
450  *       libvlc_media_list_index_of_item (Public)
451  *
452  * Lock should be held when entering.
453  * Warning: this function returns the first matching item.
454  **************************************************************************/
455 int libvlc_media_list_index_of_item( libvlc_media_list_t * p_mlist,
456                                      libvlc_media_t * p_searched_md )
457 {
458     libvlc_media_t * p_md;
459     int i;
460     for ( i = 0; i < vlc_array_count( &p_mlist->items ); i++ )
461     {
462         p_md = vlc_array_item_at_index( &p_mlist->items, i );
463         if( p_searched_md == p_md )
464             return i;
465     }
466     return -1;
467 }
468
469 /**************************************************************************
470  *       libvlc_media_list_is_readonly (Public)
471  *
472  * This indicates if this media list is read-only from a user point of view
473  **************************************************************************/
474 int libvlc_media_list_is_readonly( libvlc_media_list_t * p_mlist )
475 {
476     return p_mlist->b_read_only;
477 }
478
479 /**************************************************************************
480  *       libvlc_media_list_lock (Public)
481  *
482  * The lock must be held in access operations. It is never used in the
483  * Public method.
484  **************************************************************************/
485 void libvlc_media_list_lock( libvlc_media_list_t * p_mlist )
486 {
487     vlc_mutex_lock( &p_mlist->object_lock );
488 }
489
490
491 /**************************************************************************
492  *       libvlc_media_list_unlock (Public)
493  *
494  * The lock must be held in access operations
495  **************************************************************************/
496 void libvlc_media_list_unlock( libvlc_media_list_t * p_mlist )
497 {
498     vlc_mutex_unlock( &p_mlist->object_lock );
499 }
500
501
502 /**************************************************************************
503  *       libvlc_media_list_p_event_manager (Public)
504  *
505  * The p_event_manager is immutable, so you don't have to hold the lock
506  **************************************************************************/
507 libvlc_event_manager_t *
508 libvlc_media_list_event_manager( libvlc_media_list_t * p_mlist )
509 {
510     return p_mlist->p_event_manager;
511 }