]> git.sesse.net Git - vlc/blob - src/playlist/item.c
Fix previous commit.
[vlc] / src / playlist / item.c
1 /*****************************************************************************
2  * item.c : Playlist item creation/deletion/add/removal functions
3  *****************************************************************************
4  * Copyright (C) 1999-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *          ClĂ©ment Stenac <zorglub@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include <vlc_common.h>
29 #include <assert.h>
30 #include <vlc_playlist.h>
31 #include "playlist_internal.h"
32
33 static void AddItem( playlist_t *p_playlist, playlist_item_t *p_item,
34                      playlist_item_t *p_node, int i_mode, int i_pos );
35 static void GoAndPreparse( playlist_t *p_playlist, int i_mode,
36                            playlist_item_t *, playlist_item_t * );
37 static void ChangeToNode( playlist_t *p_playlist, playlist_item_t *p_item );
38 static int DeleteInner( playlist_t * p_playlist, playlist_item_t *p_item,
39                         bool b_stop );
40
41 /*****************************************************************************
42  * An input item has gained a subitem (Event Callback)
43  *****************************************************************************/
44 static void input_item_subitem_added( const vlc_event_t * p_event,
45                                       void * user_data )
46 {
47     playlist_item_t *p_parent_playlist_item = user_data;
48     playlist_t * p_playlist = p_parent_playlist_item->p_playlist;
49     input_item_t * p_parent, * p_child;
50     playlist_item_t * p_child_in_category;
51     playlist_item_t * p_item_in_category;
52     bool b_play;
53
54     p_parent = p_event->p_obj;
55     p_child = p_event->u.input_item_subitem_added.p_new_child;
56
57     PL_LOCK;
58     b_play = var_CreateGetBool( p_playlist, "playlist-autostart" );
59
60     /* This part is really hakish, but this playlist system isn't simple */
61     /* First check if we haven't already added the item as we are
62      * listening using the onelevel and the category representent
63      * (Because of the playlist design) */
64     p_child_in_category = playlist_ItemFindFromInputAndRoot(
65                             p_playlist, p_child->i_id,
66                             p_playlist->p_root_category,
67                             false /* Only non-node */ );
68
69     if( !p_child_in_category )
70     {
71         /* Then, transform to a node if needed */
72         p_item_in_category = playlist_ItemFindFromInputAndRoot(
73                                 p_playlist, p_parent->i_id,
74                                 p_playlist->p_root_category,
75                                 false /* Only non-node */ );
76         if( !p_item_in_category )
77         {
78             /* Item may have been removed */
79             PL_UNLOCK;
80             return;
81         }
82
83         b_play = b_play &&
84             p_item_in_category == get_current_status_item( p_playlist );
85
86         /* If this item is already a node don't transform it */
87         if( p_item_in_category->i_children == -1 )
88         {
89             p_item_in_category = playlist_ItemToNode( p_playlist,
90                     p_item_in_category, pl_Locked );
91             p_item_in_category->p_input->i_type = ITEM_TYPE_PLAYLIST;
92         }
93
94         int i_ret = playlist_BothAddInput( p_playlist, p_child,
95                 p_item_in_category,
96                 PLAYLIST_APPEND | PLAYLIST_SPREPARSE , PLAYLIST_END,
97                 NULL, NULL, pl_Locked );
98
99         if( i_ret == VLC_SUCCESS && b_play )
100         {
101             playlist_Control( p_playlist, PLAYLIST_VIEWPLAY,
102                           pl_Locked, p_item_in_category, NULL );
103         }
104     }
105
106     PL_UNLOCK;
107
108 }
109
110 /*****************************************************************************
111  * An input item's meta or duration has changed (Event Callback)
112  *****************************************************************************/
113 static void input_item_changed( const vlc_event_t * p_event,
114                                 void * user_data )
115 {
116     (void)p_event;
117     playlist_item_t * p_item = user_data;
118     var_SetInteger( p_item->p_playlist, "item-change", p_item->i_id );
119 }
120
121 /*****************************************************************************
122  * Listen to vlc_InputItemAddSubItem event
123  *****************************************************************************/
124 static void install_input_item_observer( playlist_item_t * p_item )
125 {
126     vlc_event_manager_t * p_em = &p_item->p_input->event_manager;
127     vlc_event_attach( p_em, vlc_InputItemSubItemAdded,
128                       input_item_subitem_added, p_item );
129     vlc_event_attach( p_em, vlc_InputItemDurationChanged,
130                       input_item_changed, p_item );
131     vlc_event_attach( p_em, vlc_InputItemMetaChanged,
132                       input_item_changed, p_item );
133     vlc_event_attach( p_em, vlc_InputItemNameChanged,
134                       input_item_changed, p_item );
135     vlc_event_attach( p_em, vlc_InputItemInfoChanged,
136                       input_item_changed, p_item );
137     vlc_event_attach( p_em, vlc_InputItemErrorWhenReadingChanged,
138                       input_item_changed, p_item );
139 }
140
141 static void uninstall_input_item_observer( playlist_item_t * p_item )
142 {
143     vlc_event_manager_t * p_em = &p_item->p_input->event_manager;
144     vlc_event_detach( p_em, vlc_InputItemSubItemAdded,
145                       input_item_subitem_added, p_item );
146     vlc_event_detach( p_em, vlc_InputItemMetaChanged,
147                       input_item_changed, p_item );
148     vlc_event_detach( p_em, vlc_InputItemDurationChanged,
149                       input_item_changed, p_item );
150     vlc_event_detach( p_em, vlc_InputItemNameChanged,
151                       input_item_changed, p_item );
152     vlc_event_detach( p_em, vlc_InputItemInfoChanged,
153                       input_item_changed, p_item );
154     vlc_event_detach( p_em, vlc_InputItemErrorWhenReadingChanged,
155                       input_item_changed, p_item );
156 }
157
158 /*****************************************************************************
159  * Playlist item creation
160  *****************************************************************************/
161 playlist_item_t *playlist_ItemNewFromInput( playlist_t *p_playlist,
162                                               input_item_t *p_input )
163 {
164     DECMALLOC_NULL( p_item, playlist_item_t );
165
166     assert( p_input );
167
168     p_item->p_input = p_input;
169     vlc_gc_incref( p_item->p_input );
170
171     p_item->i_id = ++p_playlist->i_last_playlist_id;
172
173     p_item->p_parent = NULL;
174     p_item->i_children = -1;
175     p_item->pp_children = NULL;
176     p_item->i_flags = 0;
177     p_item->p_playlist = p_playlist;
178
179     install_input_item_observer( p_item );
180
181     return p_item;
182 }
183
184 playlist_item_t * playlist_ItemNewWithType( playlist_t *p_playlist,
185                                             const char *psz_uri,
186                                             const char *psz_name,
187                                             int i_options,
188                                             const char *const *ppsz_options,
189                                             int i_duration, int i_type )
190 {
191     input_item_t *p_input;
192     if( psz_uri == NULL ) return NULL;
193     p_input = input_item_NewWithType( VLC_OBJECT(p_playlist), psz_uri,
194                                      psz_name, i_options, ppsz_options,
195                                      i_duration, i_type );
196     return playlist_ItemNewFromInput( p_playlist, p_input );
197 }
198
199 /***************************************************************************
200  * Playlist item destruction
201  ***************************************************************************/
202
203 /**
204  * Release an item
205  *
206  * \param p_item item to delete
207  * \return VLC_SUCCESS
208 */
209 int playlist_ItemRelease( playlist_item_t *p_item )
210 {
211     /* For the assert */
212     playlist_t *p_playlist = p_item->p_playlist;
213     PL_ASSERT_LOCKED;
214
215     /* Surprise, we can't actually do more because we
216      * don't do refcounting, or eauivalent.
217      * Because item are not only accessed by their id
218      * using playlist_item outside the PL_LOCK isn't safe.
219      * Most of the modules does that.
220      *
221      * Who wants to add proper memory management? */
222     uninstall_input_item_observer( p_item );
223     ARRAY_APPEND( p_item->p_playlist->items_to_delete, p_item);
224     return VLC_SUCCESS;
225 }
226
227 /**
228  * Delete input item
229  *
230  * Remove an input item when it appears from a root playlist item
231  * \param p_playlist playlist object
232  * \param i_input_id id of the input to delete
233  * \param p_root root playlist item
234  * \param b_do_stop must stop or not the playlist
235  * \return VLC_SUCCESS or VLC_EGENERIC
236 */
237 static int DeleteFromInput( playlist_t *p_playlist, int i_input_id,
238                             playlist_item_t *p_root, bool b_do_stop )
239 {
240     int i;
241     PL_ASSERT_LOCKED;
242     for( i = 0 ; i< p_root->i_children ; i++ )
243     {
244         if( p_root->pp_children[i]->i_children == -1 &&
245             p_root->pp_children[i]->p_input->i_id == i_input_id )
246         {
247             DeleteInner( p_playlist, p_root->pp_children[i], b_do_stop );
248             return VLC_SUCCESS;
249         }
250         else if( p_root->pp_children[i]->i_children >= 0 )
251         {
252             int i_ret = DeleteFromInput( p_playlist, i_input_id,
253                                          p_root->pp_children[i], b_do_stop );
254             if( i_ret == VLC_SUCCESS ) return VLC_SUCCESS;
255         }
256     }
257     return VLC_EGENERIC;
258 }
259
260 /**
261  * Delete input item
262  *
263  * Remove an input item when it appears from a root playlist item
264  * \param p_playlist playlist object
265  * \param i_input_id id of the input to delete
266  * \param p_root root playlist item
267  * \param b_locked TRUE if the playlist is locked
268  * \return VLC_SUCCESS or VLC_EGENERIC
269  */
270 int playlist_DeleteFromInputInParent( playlist_t *p_playlist, int i_input_id,
271                                       playlist_item_t *p_root, bool b_locked )
272 {
273     int i_ret;
274     PL_LOCK_IF( !b_locked );
275     i_ret = DeleteFromInput( p_playlist, i_input_id,
276                              p_root, true );
277     PL_UNLOCK_IF( !b_locked );
278     return i_ret;
279 }
280
281 /**
282  * Delete from input
283  *
284  * Remove an input item from ONELEVEL and CATEGORY
285  * \param p_playlist playlist object
286  * \param i_input_id id of the input to delete
287  * \param b_locked TRUE if the playlist is locked
288  * \return VLC_SUCCESS or VLC_ENOITEM
289  */
290 int playlist_DeleteFromInput( playlist_t *p_playlist, int i_input_id,
291                               bool b_locked )
292 {
293     int i_ret1, i_ret2;
294     PL_LOCK_IF( !b_locked );
295     i_ret1 = DeleteFromInput( p_playlist, i_input_id,
296                              p_playlist->p_root_category, true );
297     i_ret2 = DeleteFromInput( p_playlist, i_input_id,
298                      p_playlist->p_root_onelevel, true );
299     PL_UNLOCK_IF( !b_locked );
300     return ( i_ret1 == VLC_SUCCESS || i_ret2 == VLC_SUCCESS ) ?
301                             VLC_SUCCESS : VLC_ENOITEM;
302 }
303
304 /**
305  * Clear the playlist
306  *
307  * \param p_playlist playlist object
308  * \param b_locked TRUE if the playlist is locked
309  * \return nothing
310  */
311 void playlist_Clear( playlist_t * p_playlist, bool b_locked )
312 {
313     PL_LOCK_IF( !b_locked );
314     playlist_NodeEmpty( p_playlist, p_playlist->p_local_category, true );
315     playlist_NodeEmpty( p_playlist, p_playlist->p_local_onelevel, true );
316     PL_UNLOCK_IF( !b_locked );
317 }
318
319 /**
320  * Delete playlist item
321  *
322  * Remove a playlist item from the playlist, given its id
323  * This function is to be used only by the playlist
324  * \param p_playlist playlist object
325  * \param i_id id of the item do delete
326  * \return VLC_SUCCESS or an error
327  */
328 int playlist_DeleteFromItemId( playlist_t *p_playlist, int i_id )
329 {
330     PL_ASSERT_LOCKED;
331     playlist_item_t *p_item = playlist_ItemGetById( p_playlist, i_id,
332                                                     pl_Locked );
333     if( !p_item ) return VLC_EGENERIC;
334     return DeleteInner( p_playlist, p_item, true );
335 }
336
337 /***************************************************************************
338  * Playlist item addition
339  ***************************************************************************/
340 /**
341  * Playlist add
342  *
343  * Add an item to the playlist or the media library
344  * \param p_playlist the playlist to add into
345  * \param psz_uri the mrl to add to the playlist
346  * \param psz_name a text giving a name or description of this item
347  * \param i_mode the mode used when adding
348  * \param i_pos the position in the playlist where to add. If this is
349  *        PLAYLIST_END the item will be added at the end of the playlist
350  *        regardless of its size
351  * \param b_playlist TRUE for playlist, FALSE for media library
352  * \param b_locked TRUE if the playlist is locked
353  * \return The id of the playlist item
354  */
355 int playlist_Add( playlist_t *p_playlist, const char *psz_uri,
356                   const char *psz_name, int i_mode, int i_pos,
357                   bool b_playlist, bool b_locked )
358 {
359     return playlist_AddExt( p_playlist, psz_uri, psz_name,
360                             i_mode, i_pos, -1, NULL, 0, b_playlist, b_locked );
361 }
362
363 /**
364  * Add a MRL into the playlist or the media library, duration and options given
365  *
366  * \param p_playlist the playlist to add into
367  * \param psz_uri the mrl to add to the playlist
368  * \param psz_name a text giving a name or description of this item
369  * \param i_mode the mode used when adding
370  * \param i_pos the position in the playlist where to add. If this is
371  *        PLAYLIST_END the item will be added at the end of the playlist
372  *        regardless of its size
373  * \param i_duration length of the item in milliseconds.
374  * \param ppsz_options an array of options
375  * \param i_options the number of options
376  * \param b_playlist TRUE for playlist, FALSE for media library
377  * \param b_locked TRUE if the playlist is locked
378  * \return The id of the playlist item
379 */
380 int playlist_AddExt( playlist_t *p_playlist, const char * psz_uri,
381                      const char *psz_name, int i_mode, int i_pos,
382                      mtime_t i_duration, const char *const *ppsz_options,
383                      int i_options, bool b_playlist, bool b_locked )
384 {
385     int i_ret;
386     input_item_t *p_input = input_item_NewExt( p_playlist, psz_uri, psz_name,
387                                               i_options, ppsz_options,
388                                               i_duration );
389
390     i_ret = playlist_AddInput( p_playlist, p_input, i_mode, i_pos, b_playlist,
391                                b_locked );
392     int i_id = (i_ret == VLC_SUCCESS) ? p_input->i_id : -1;
393
394     vlc_gc_decref( p_input );
395
396     return i_id;
397 }
398
399 /**
400  * Add an input item to the playlist node
401  *
402  * \param p_playlist the playlist to add into
403  * \param p_input the input item to add
404  * \param i_mode the mode used when adding
405  * \param i_pos the position in the playlist where to add. If this is
406  *        PLAYLIST_END the item will be added at the end of the playlist
407  *        regardless of its size
408  * \param b_playlist TRUE for playlist, FALSE for media library
409  * \param b_locked TRUE if the playlist is locked
410  * \return VLC_SUCCESS or VLC_ENOMEM or VLC_EGENERIC
411 */
412 int playlist_AddInput( playlist_t* p_playlist, input_item_t *p_input,
413                        int i_mode, int i_pos, bool b_playlist,
414                        bool b_locked )
415 {
416     playlist_item_t *p_item_cat, *p_item_one;
417     if( p_playlist->b_die ) return VLC_EGENERIC;
418     if( !p_playlist->b_doing_ml )
419         PL_DEBUG( "adding item `%s' ( %s )", p_input->psz_name,
420                                              p_input->psz_uri );
421
422     PL_LOCK_IF( !b_locked );
423
424     /* Add to ONELEVEL */
425     p_item_one = playlist_ItemNewFromInput( p_playlist, p_input );
426     if( p_item_one == NULL ) return VLC_ENOMEM;
427     AddItem( p_playlist, p_item_one,
428              b_playlist ? p_playlist->p_local_onelevel :
429                           p_playlist->p_ml_onelevel , i_mode, i_pos );
430
431     /* Add to CATEGORY */
432     p_item_cat = playlist_ItemNewFromInput( p_playlist, p_input );
433     if( p_item_cat == NULL ) return VLC_ENOMEM;
434     AddItem( p_playlist, p_item_cat,
435              b_playlist ? p_playlist->p_local_category :
436                           p_playlist->p_ml_category , i_mode, i_pos );
437
438     GoAndPreparse( p_playlist, i_mode, p_item_cat, p_item_one );
439
440     PL_UNLOCK_IF( !b_locked );
441     return VLC_SUCCESS;
442 }
443
444 /**
445  * Add input
446  *
447  * Add an input item to p_direct_parent in the category tree, and to the
448  * matching top category in onelevel
449  * \param p_playlist the playlist to add into
450  * \param p_input the input item to add
451  * \param p_direct_parent the parent item to add into
452  * \param i_mode the mode used when adding
453  * \param i_pos the position in the playlist where to add. If this is
454  *        PLAYLIST_END the item will be added at the end of the playlist
455  *        regardless of its size
456  * \param i_cat id of the items category
457  * \param i_one id of the item onelevel category
458  * \param b_locked TRUE if the playlist is locked
459  * \return VLC_SUCCESS if success, VLC_EGENERIC if fail, VLC_ENOMEM if OOM
460  */
461 int playlist_BothAddInput( playlist_t *p_playlist,
462                            input_item_t *p_input,
463                            playlist_item_t *p_direct_parent,
464                            int i_mode, int i_pos,
465                            int *i_cat, int *i_one, bool b_locked )
466 {
467     playlist_item_t *p_item_cat, *p_item_one, *p_up;
468     int i_top;
469     assert( p_input );
470
471     if( !vlc_object_alive( p_playlist ) )
472         return VLC_EGENERIC;
473
474     PL_LOCK_IF( !b_locked );
475
476     /* Add to category */
477     p_item_cat = playlist_ItemNewFromInput( p_playlist, p_input );
478     if( p_item_cat == NULL ) return VLC_ENOMEM;
479     AddItem( p_playlist, p_item_cat, p_direct_parent, i_mode, i_pos );
480
481     /* Add to onelevel */
482     /** \todo make a faster case for ml import */
483     p_item_one = playlist_ItemNewFromInput( p_playlist, p_input );
484     if( p_item_one == NULL ) return VLC_ENOMEM;
485
486     p_up = p_direct_parent;
487     while( p_up->p_parent != p_playlist->p_root_category )
488     {
489         p_up = p_up->p_parent;
490     }
491     for( i_top = 0 ; i_top < p_playlist->p_root_onelevel->i_children; i_top++ )
492     {
493         if( p_playlist->p_root_onelevel->pp_children[i_top]->p_input->i_id ==
494                              p_up->p_input->i_id )
495         {
496             AddItem( p_playlist, p_item_one,
497                      p_playlist->p_root_onelevel->pp_children[i_top],
498                      i_mode, i_pos );
499             break;
500         }
501     }
502     GoAndPreparse( p_playlist, i_mode, p_item_cat, p_item_one );
503
504     if( i_cat ) *i_cat = p_item_cat->i_id;
505     if( i_one ) *i_one = p_item_one->i_id;
506
507     PL_UNLOCK_IF( !b_locked );
508     return VLC_SUCCESS;
509 }
510
511 /**
512  * Add an input item to a given node
513  *
514  * \param p_playlist the playlist to add into
515  * \param p_input the input item to add
516  * \param p_parent the parent item to add into
517  * \param i_mode the mode used when addin
518  * \param i_pos the position in the playlist where to add. If this is
519  *        PLAYLIST_END the item will be added at the end of the playlist
520  *        regardless of its size
521  * \param b_locked TRUE if the playlist is locked
522  * \return the new playlist item
523  */
524 playlist_item_t * playlist_NodeAddInput( playlist_t *p_playlist,
525                                          input_item_t *p_input,
526                                          playlist_item_t *p_parent,
527                                          int i_mode, int i_pos,
528                                          bool b_locked )
529 {
530     playlist_item_t *p_item;
531     assert( p_input );
532     assert( p_parent && p_parent->i_children != -1 );
533
534     if( p_playlist->b_die )
535         return NULL;
536     PL_LOCK_IF( !b_locked );
537
538     p_item = playlist_ItemNewFromInput( p_playlist, p_input );
539     if( p_item == NULL ) return NULL;
540     AddItem( p_playlist, p_item, p_parent, i_mode, i_pos );
541
542     PL_UNLOCK_IF( !b_locked );
543
544     return p_item;
545 }
546
547 /*****************************************************************************
548  * Playlist item misc operations
549  *****************************************************************************/
550
551 /**
552  * Item to node
553  *
554  * Transform an item to a node. Return the node in the category tree, or NULL
555  * if not found there
556  * This function must be entered without the playlist lock
557  * \param p_playlist the playlist object
558  * \param p_item the item to transform
559  * \param b_locked TRUE if the playlist is locked
560  * \return the item transform in a node
561  */
562 playlist_item_t *playlist_ItemToNode( playlist_t *p_playlist,
563                                       playlist_item_t *p_item,
564                                       bool b_locked )
565 {
566
567     playlist_item_t *p_item_in_category;
568     /* What we do
569      * Find the input in CATEGORY.
570      *  - If we find it
571      *    - change it to node
572      *    - we'll return it at the end
573      *    - If we are a direct child of onelevel root, change to node, else
574      *      delete the input from ONELEVEL
575      *  - If we don't find it, just change to node (we are probably in VLM)
576      *    and return NULL
577      *
578      * If we were in ONELEVEL, we thus retrieve the node in CATEGORY (will be
579      * useful for later BothAddInput )
580      */
581
582     PL_LOCK_IF( !b_locked );
583
584     /* Fast track the media library, no time to loose */
585     if( p_item == p_playlist->p_ml_category ) {
586         PL_UNLOCK_IF( !b_locked );
587         return p_item;
588     }
589
590     /** \todo First look if we don't already have it */
591     p_item_in_category = playlist_ItemFindFromInputAndRoot(
592                                             p_playlist, p_item->p_input->i_id,
593                                             p_playlist->p_root_category,
594                                             true );
595
596     if( p_item_in_category )
597     {
598         playlist_item_t *p_item_in_one = playlist_ItemFindFromInputAndRoot(
599                                             p_playlist, p_item->p_input->i_id,
600                                             p_playlist->p_root_onelevel,
601                                             true );
602         assert( p_item_in_one );
603
604         /* We already have it, and there is nothing more to do */
605         ChangeToNode( p_playlist, p_item_in_category );
606
607         /* Item in one is a root, change it to node */
608         if( p_item_in_one->p_parent == p_playlist->p_root_onelevel )
609             ChangeToNode( p_playlist, p_item_in_one );
610         else
611         {
612             DeleteFromInput( p_playlist, p_item_in_one->p_input->i_id,
613                              p_playlist->p_root_onelevel, false );
614         }
615         p_playlist->b_reset_currently_playing = true;
616         vlc_object_signal_unlocked( p_playlist );
617         var_SetInteger( p_playlist, "item-change", p_item_in_category->
618                                                         p_input->i_id );
619         PL_UNLOCK_IF( !b_locked );
620         return p_item_in_category;
621     }
622     else
623     {
624         ChangeToNode( p_playlist, p_item );
625         PL_UNLOCK_IF( !b_locked );
626         return p_item;
627     }
628 }
629
630 /**
631  * Find an item within a root, given its input id.
632  *
633  * \param p_playlist the playlist object
634  * \param i_input_id id of the input
635  * \param p_root root playlist item
636  * \param b_items_only TRUE if we want the item himself
637  * \return the first found item, or NULL if not found
638  */
639 playlist_item_t *playlist_ItemFindFromInputAndRoot( playlist_t *p_playlist,
640                                                     int i_input_id,
641                                                     playlist_item_t *p_root,
642                                                     bool b_items_only )
643 {
644     int i;
645     for( i = 0 ; i< p_root->i_children ; i++ )
646     {
647         if( ( b_items_only ? p_root->pp_children[i]->i_children == -1 : 1 ) &&
648             p_root->pp_children[i]->p_input->i_id == i_input_id )
649         {
650             return p_root->pp_children[i];
651         }
652         else if( p_root->pp_children[i]->i_children >= 0 )
653         {
654             playlist_item_t *p_search =
655                  playlist_ItemFindFromInputAndRoot( p_playlist, i_input_id,
656                                                     p_root->pp_children[i],
657                                                     b_items_only );
658             if( p_search ) return p_search;
659         }
660     }
661     return NULL;
662 }
663
664
665 static int TreeMove( playlist_t *p_playlist, playlist_item_t *p_item,
666                      playlist_item_t *p_node, int i_newpos )
667 {
668     int j;
669     playlist_item_t *p_detach = p_item->p_parent;
670     (void)p_playlist;
671
672     if( p_node->i_children == -1 ) return VLC_EGENERIC;
673
674     for( j = 0; j < p_detach->i_children; j++ )
675     {
676          if( p_detach->pp_children[j] == p_item ) break;
677     }
678     REMOVE_ELEM( p_detach->pp_children, p_detach->i_children, j );
679
680     /* Attach to new parent */
681     INSERT_ELEM( p_node->pp_children, p_node->i_children, i_newpos, p_item );
682     p_item->p_parent = p_node;
683
684     return VLC_SUCCESS;
685 }
686
687 /**
688  * Moves an item
689  *
690  * This function must be entered with the playlist lock
691  *
692  * \param p_playlist the playlist
693  * \param p_item the item to move
694  * \param p_node the new parent of the item
695  * \param i_newpos the new position under this new parent
696  * \return VLC_SUCCESS or an error
697  */
698 int playlist_TreeMove( playlist_t * p_playlist, playlist_item_t *p_item,
699                        playlist_item_t *p_node, int i_newpos )
700 {
701     int i_ret;
702     PL_ASSERT_LOCKED;
703
704     /* Drop on a top level node. Move in the two trees */
705     if( p_node->p_parent == p_playlist->p_root_category ||
706         p_node->p_parent == p_playlist->p_root_onelevel )
707     {
708         /* Fixme: avoid useless lookups but we need some clean helpers */
709         {
710             /* Fixme: if we try to move a node on a top-level node, it will
711              * fail because the node doesn't exist in onelevel and we will
712              * do some shit in onelevel. We should recursively move all items
713              * within the node */
714             playlist_item_t *p_node_onelevel;
715             playlist_item_t *p_item_onelevel;
716             p_node_onelevel = playlist_ItemFindFromInputAndRoot( p_playlist,
717                                                 p_node->p_input->i_id,
718                                                 p_playlist->p_root_onelevel,
719                                                 false );
720             p_item_onelevel = playlist_ItemFindFromInputAndRoot( p_playlist,
721                                                 p_item->p_input->i_id,
722                                                 p_playlist->p_root_onelevel,
723                                                 false );
724             if( p_node_onelevel && p_item_onelevel )
725                 TreeMove( p_playlist, p_item_onelevel, p_node_onelevel, 0 );
726         }
727         {
728             playlist_item_t *p_node_category;
729             playlist_item_t *p_item_category;
730             p_node_category = playlist_ItemFindFromInputAndRoot( p_playlist,
731                                                 p_node->p_input->i_id,
732                                                 p_playlist->p_root_category,
733                                                 false );
734             p_item_category = playlist_ItemFindFromInputAndRoot( p_playlist,
735                                                 p_item->p_input->i_id,
736                                                 p_playlist->p_root_category,
737                                                 false );
738             if( p_node_category && p_item_category )
739                 TreeMove( p_playlist, p_item_category, p_node_category, 0 );
740         }
741         i_ret = VLC_SUCCESS;
742     }
743     else
744         i_ret = TreeMove( p_playlist, p_item, p_node, i_newpos );
745     p_playlist->b_reset_currently_playing = true;
746     vlc_object_signal_unlocked( p_playlist );
747     return i_ret;
748 }
749
750 /**
751  * Send a notification that an item has been added to a node
752  *
753  * \param p_playlist the playlist object
754  * \param i_item_id id of the item added
755  * \param i_node_id id of the node in wich the item was added
756  * \param b_signal TRUE if the function must send a signal
757  * \return nothing
758  */
759 void playlist_SendAddNotify( playlist_t *p_playlist, int i_item_id,
760                              int i_node_id, bool b_signal )
761 {
762     vlc_value_t val;
763     PL_ASSERT_LOCKED;
764
765     playlist_add_t *p_add = (playlist_add_t *)malloc( sizeof( playlist_add_t) );
766     if( !p_add )
767         return;
768
769     p_add->i_item = i_item_id;
770     p_add->i_node = i_node_id;
771     val.p_address = p_add;
772     p_playlist->b_reset_currently_playing = true;
773     if( b_signal )
774         vlc_object_signal_unlocked( p_playlist );
775
776     var_Set( p_playlist, "item-append", val );
777     free( p_add );
778 }
779
780 /*****************************************************************************
781  * Playlist item accessors
782  *****************************************************************************/
783
784 /**
785  * Set the name of a playlist item
786  *
787  * \param p_item the item
788  * \param psz_name the name
789  * \return VLC_SUCCESS or VLC_EGENERIC
790  */
791 int playlist_ItemSetName( playlist_item_t *p_item, const char *psz_name )
792 {
793     if( psz_name && p_item )
794     {
795         input_item_SetName( p_item->p_input, psz_name );
796         return VLC_SUCCESS;
797     }
798     return VLC_EGENERIC;
799 }
800
801 /***************************************************************************
802  * The following functions are local
803  ***************************************************************************/
804
805 /* Enqueue an item for preparsing, and play it, if needed */
806 static void GoAndPreparse( playlist_t *p_playlist, int i_mode,
807                            playlist_item_t *p_item_cat,
808                            playlist_item_t *p_item_one )
809 {
810     PL_ASSERT_LOCKED;
811     if( (i_mode & PLAYLIST_GO ) )
812     {
813         playlist_item_t *p_parent = p_item_one;
814         playlist_item_t *p_toplay = NULL;
815         while( p_parent )
816         {
817             if( p_parent == p_playlist->p_root_category )
818             {
819                 p_toplay = p_item_cat; break;
820             }
821             else if( p_parent == p_playlist->p_root_onelevel )
822             {
823                 p_toplay = p_item_one; break;
824             }
825             p_parent = p_parent->p_parent;
826         }
827         assert( p_toplay );
828         p_playlist->request.b_request = true;
829         p_playlist->request.i_skip = 0;
830         p_playlist->request.p_item = p_toplay;
831         if( p_playlist->p_input )
832             input_StopThread( p_playlist->p_input );
833         p_playlist->request.i_status = PLAYLIST_RUNNING;
834         vlc_object_signal_unlocked( p_playlist );
835     }
836     /* Preparse if PREPARSE or SPREPARSE & not enough meta */
837     char *psz_artist = input_item_GetArtist( p_item_cat->p_input );
838     char *psz_album = input_item_GetAlbum( p_item_cat->p_input );
839     if( p_playlist->b_auto_preparse &&
840           (i_mode & PLAYLIST_PREPARSE ||
841           ( i_mode & PLAYLIST_SPREPARSE &&
842             ( EMPTY_STR( psz_artist ) || ( EMPTY_STR( psz_album ) ) )
843           ) ) )
844         playlist_PreparseEnqueue( p_playlist, p_item_cat->p_input );
845     /* If we already have it, signal it */
846     else if( !EMPTY_STR( psz_artist ) && !EMPTY_STR( psz_album ) )
847         input_item_SetPreparsed( p_item_cat->p_input, true );
848     free( psz_artist );
849     free( psz_album );
850 }
851
852 /* Add the playlist item to the requested node and fire a notification */
853 static void AddItem( playlist_t *p_playlist, playlist_item_t *p_item,
854                      playlist_item_t *p_node, int i_mode, int i_pos )
855 {
856     PL_ASSERT_LOCKED;
857     ARRAY_APPEND(p_playlist->items, p_item);
858     ARRAY_APPEND(p_playlist->all_items, p_item);
859
860     if( i_pos == PLAYLIST_END )
861         playlist_NodeAppend( p_playlist, p_item, p_node );
862     else
863         playlist_NodeInsert( p_playlist, p_item, p_node, i_pos );
864
865     if( !p_playlist->b_doing_ml )
866         playlist_SendAddNotify( p_playlist, p_item->i_id, p_node->i_id,
867                                  !( i_mode & PLAYLIST_NO_REBUILD ) );
868 }
869
870 /* Actually convert an item to a node */
871 static void ChangeToNode( playlist_t *p_playlist, playlist_item_t *p_item )
872 {
873     int i;
874     if( p_item->i_children == -1 )
875         p_item->i_children = 0;
876
877     /* Remove it from the array of available items */
878     ARRAY_BSEARCH( p_playlist->items,->i_id, int, p_item->i_id, i );
879     if( i != -1 )
880         ARRAY_REMOVE( p_playlist->items, i );
881 }
882
883 /* Do the actual removal */
884 static int DeleteInner( playlist_t * p_playlist, playlist_item_t *p_item,
885                         bool b_stop )
886 {
887     int i;
888     int i_id = p_item->i_id;
889     PL_ASSERT_LOCKED;
890
891     if( p_item->i_children > -1 )
892     {
893         return playlist_NodeDelete( p_playlist, p_item, true, false );
894     }
895     p_playlist->b_reset_currently_playing = true;
896     var_SetInteger( p_playlist, "item-deleted", i_id );
897
898     /* Remove the item from the bank */
899     ARRAY_BSEARCH( p_playlist->all_items,->i_id, int, i_id, i );
900     if( i != -1 )
901         ARRAY_REMOVE( p_playlist->all_items, i );
902
903     ARRAY_BSEARCH( p_playlist->items,->i_id, int, i_id, i );
904     if( i != -1 )
905         ARRAY_REMOVE( p_playlist->items, i );
906
907     /* Check if it is the current item */
908     if( get_current_status_item( p_playlist ) == p_item )
909     {
910         /* Hack we don't call playlist_Control for lock reasons */
911         if( b_stop )
912         {
913             p_playlist->request.i_status = PLAYLIST_STOPPED;
914             p_playlist->request.b_request = true;
915             p_playlist->request.p_item = NULL;
916             msg_Info( p_playlist, "stopping playback" );
917             vlc_object_signal_unlocked( VLC_OBJECT(p_playlist) );
918         }
919     }
920
921     PL_DEBUG( "deleting item `%s'", p_item->p_input->psz_name );
922
923     /* Remove the item from its parent */
924     playlist_NodeRemoveItem( p_playlist, p_item, p_item->p_parent );
925
926     playlist_ItemRelease( p_item );
927
928     return VLC_SUCCESS;
929 }