1 /*****************************************************************************
2 * item.c : Playlist item creation/deletion/add/removal functions
3 *****************************************************************************
4 * Copyright (C) 1999-2007 the VideoLAN team
7 * Authors: Samuel Hocevar <sam@zoy.org>
8 * Clément Stenac <zorglub@videolan.org>
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.
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.
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 *****************************************************************************/
28 #include <vlc_common.h>
30 #include <vlc_playlist.h>
31 #include "playlist_internal.h"
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,
37 static void ChangeToNode( playlist_t *p_playlist, playlist_item_t *p_item );
39 static playlist_item_t *ItemToNode( playlist_t *, playlist_item_t *, bool );
41 static int RecursiveAddIntoParent (
42 playlist_t *p_playlist, playlist_item_t *p_parent,
43 input_item_node_t *p_node, int i_pos, bool b_flat,
44 playlist_item_t **pp_first_leaf );
46 /*****************************************************************************
47 * An input item has gained subitems (Event Callback)
48 *****************************************************************************/
50 static void input_item_add_subitem_tree ( const vlc_event_t * p_event,
53 input_item_t *p_input = p_event->p_obj;
54 playlist_t *p_playlist = (( playlist_item_t* ) user_data)->p_playlist;
55 input_item_node_t *p_new_root = p_event->u.input_item_subitem_tree_added.p_root;
59 playlist_item_t *p_item =
60 playlist_ItemGetByInput( p_playlist, p_input );
62 assert( p_item != NULL );
63 playlist_item_t *p_parent = p_item->p_parent;
64 assert( p_parent != NULL );
66 bool b_play = var_CreateGetBool( p_playlist, "playlist-autostart" ) &&
67 get_current_status_item( p_playlist ) == p_item;
68 bool b_stop = b_play && p_item->i_flags & PLAYLIST_SUBITEM_STOP_FLAG;
69 p_item->i_flags &= ~PLAYLIST_SUBITEM_STOP_FLAG;
72 for( int i = 0; i < p_parent->i_children; i++ )
74 if( p_parent->pp_children[i] == p_item )
82 playlist_item_t *p_up = p_item;
83 while( p_up->p_parent )
85 if( p_up->p_parent == p_playlist->p_playing ||
86 p_up->p_parent == p_playlist->p_media_library )
88 if( !pl_priv(p_playlist)->b_tree ) b_flat = true;
91 p_up = p_up->p_parent;
95 playlist_DeleteItem( p_playlist, p_item, true );
96 p_item = playlist_InsertInputItemTree( p_playlist, p_parent,
97 p_new_root, pos, true );
100 p_item = playlist_InsertInputItemTree( p_playlist, p_item,
101 p_new_root, 0, false );
103 if( !b_flat ) var_SetAddress( p_playlist, "leaf-to-parent", p_input );
105 if( b_stop && !b_flat )
108 playlist_Stop( p_playlist );
113 playlist_Control( p_playlist, PLAYLIST_VIEWPLAY,
114 pl_Locked, get_current_status_node( p_playlist ), p_item );
119 /*****************************************************************************
120 * An input item's meta or duration has changed (Event Callback)
121 *****************************************************************************/
122 static void input_item_changed( const vlc_event_t * p_event,
125 playlist_item_t *p_item = user_data;
126 VLC_UNUSED( p_event );
127 var_SetAddress( p_item->p_playlist, "item-change", p_item->p_input );
130 /*****************************************************************************
131 * Listen to vlc_InputItemAddSubItem event
132 *****************************************************************************/
133 static void install_input_item_observer( playlist_item_t * p_item )
135 vlc_event_manager_t * p_em = &p_item->p_input->event_manager;
136 vlc_event_attach( p_em, vlc_InputItemSubItemTreeAdded,
137 input_item_add_subitem_tree, p_item );
138 vlc_event_attach( p_em, vlc_InputItemDurationChanged,
139 input_item_changed, p_item );
140 vlc_event_attach( p_em, vlc_InputItemMetaChanged,
141 input_item_changed, p_item );
142 vlc_event_attach( p_em, vlc_InputItemNameChanged,
143 input_item_changed, p_item );
144 vlc_event_attach( p_em, vlc_InputItemInfoChanged,
145 input_item_changed, p_item );
146 vlc_event_attach( p_em, vlc_InputItemErrorWhenReadingChanged,
147 input_item_changed, p_item );
150 static void uninstall_input_item_observer( playlist_item_t * p_item )
152 vlc_event_manager_t * p_em = &p_item->p_input->event_manager;
153 vlc_event_detach( p_em, vlc_InputItemSubItemTreeAdded,
154 input_item_add_subitem_tree, p_item );
155 vlc_event_detach( p_em, vlc_InputItemMetaChanged,
156 input_item_changed, p_item );
157 vlc_event_detach( p_em, vlc_InputItemDurationChanged,
158 input_item_changed, p_item );
159 vlc_event_detach( p_em, vlc_InputItemNameChanged,
160 input_item_changed, p_item );
161 vlc_event_detach( p_em, vlc_InputItemInfoChanged,
162 input_item_changed, p_item );
163 vlc_event_detach( p_em, vlc_InputItemErrorWhenReadingChanged,
164 input_item_changed, p_item );
167 /*****************************************************************************
168 * Playlist item creation
169 *****************************************************************************/
170 playlist_item_t *playlist_ItemNewFromInput( playlist_t *p_playlist,
171 input_item_t *p_input )
173 playlist_item_t* p_item = malloc( sizeof( playlist_item_t ) );
179 p_item->p_input = p_input;
180 vlc_gc_incref( p_item->p_input );
182 p_item->i_id = ++pl_priv(p_playlist)->i_last_playlist_id;
184 p_item->p_parent = NULL;
185 p_item->i_children = -1;
186 p_item->pp_children = NULL;
188 p_item->p_playlist = p_playlist;
190 install_input_item_observer( p_item );
195 /***************************************************************************
196 * Playlist item destruction
197 ***************************************************************************/
202 * \param p_item item to delete
203 * \return VLC_SUCCESS
205 int playlist_ItemRelease( playlist_item_t *p_item )
208 playlist_t *p_playlist = p_item->p_playlist;
211 /* Surprise, we can't actually do more because we
212 * don't do refcounting, or eauivalent.
213 * Because item are not only accessed by their id
214 * using playlist_item outside the PL_LOCK isn't safe.
215 * Most of the modules does that.
217 * Who wants to add proper memory management? */
218 uninstall_input_item_observer( p_item );
219 ARRAY_APPEND( pl_priv(p_playlist)->items_to_delete, p_item);
226 * Remove an input item when it appears from a root playlist item
227 * \param p_playlist playlist object
228 * \param p_input the input to delete
229 * \param p_root root playlist item
230 * \param b_do_stop must stop or not the playlist
231 * \return VLC_SUCCESS or VLC_EGENERIC
233 static int DeleteFromInput( playlist_t *p_playlist, input_item_t *p_input,
234 playlist_item_t *p_root, bool b_do_stop )
237 playlist_item_t *p_item = playlist_ItemFindFromInputAndRoot(
238 p_playlist, p_input, p_root, false );
239 if( !p_item ) return VLC_EGENERIC;
240 return playlist_DeleteItem( p_playlist, p_item, b_do_stop );
246 * Remove an input item when it appears from a root playlist item
247 * \param p_playlist playlist object
248 * \param p_input the input to delete
249 * \param p_root root playlist item
250 * \param b_locked TRUE if the playlist is locked
251 * \return VLC_SUCCESS or VLC_EGENERIC
253 int playlist_DeleteFromInputInParent( playlist_t *p_playlist,
254 input_item_t *p_item,
255 playlist_item_t *p_root, bool b_locked )
258 PL_LOCK_IF( !b_locked );
259 i_ret = DeleteFromInput( p_playlist, p_item, p_root, true );
260 PL_UNLOCK_IF( !b_locked );
267 * Search anywhere in playlist for an an input item and delete it
268 * \param p_playlist playlist object
269 * \param p_input the input to delete
270 * \param b_locked TRUE if the playlist is locked
271 * \return VLC_SUCCESS or VLC_ENOITEM
273 int playlist_DeleteFromInput( playlist_t *p_playlist, input_item_t *p_input,
277 PL_LOCK_IF( !b_locked );
278 i_ret = DeleteFromInput( p_playlist, p_input,
279 p_playlist->p_root, true );
280 PL_UNLOCK_IF( !b_locked );
281 return ( i_ret == VLC_SUCCESS ? VLC_SUCCESS : VLC_ENOITEM );
287 * \param p_playlist playlist object
288 * \param b_locked TRUE if the playlist is locked
291 void playlist_Clear( playlist_t * p_playlist, bool b_locked )
293 PL_LOCK_IF( !b_locked );
294 playlist_NodeEmpty( p_playlist, p_playlist->p_playing, true );
295 PL_UNLOCK_IF( !b_locked );
299 * Delete playlist item
301 * Remove a playlist item from the playlist, given its id
302 * This function is to be used only by the playlist
303 * \param p_playlist playlist object
304 * \param i_id id of the item do delete
305 * \return VLC_SUCCESS or an error
307 int playlist_DeleteFromItemId( playlist_t *p_playlist, int i_id )
310 playlist_item_t *p_item = playlist_ItemGetById( p_playlist, i_id );
311 if( !p_item ) return VLC_EGENERIC;
312 return playlist_DeleteItem( p_playlist, p_item, true );
315 /***************************************************************************
316 * Playlist item addition
317 ***************************************************************************/
321 * Add an item to the playlist or the media library
322 * \param p_playlist the playlist to add into
323 * \param psz_uri the mrl to add to the playlist
324 * \param psz_name a text giving a name or description of this item
325 * \param i_mode the mode used when adding
326 * \param i_pos the position in the playlist where to add. If this is
327 * PLAYLIST_END the item will be added at the end of the playlist
328 * regardless of its size
329 * \param b_playlist TRUE for playlist, FALSE for media library
330 * \param b_locked TRUE if the playlist is locked
331 * \return VLC_SUCCESS or a VLC error code
333 int playlist_Add( playlist_t *p_playlist, const char *psz_uri,
334 const char *psz_name, int i_mode, int i_pos,
335 bool b_playlist, bool b_locked )
337 return playlist_AddExt( p_playlist, psz_uri, psz_name,
338 i_mode, i_pos, -1, 0, NULL, 0, b_playlist, b_locked );
342 * Add a MRL into the playlist or the media library, duration and options given
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 i_duration length of the item in milliseconds.
352 * \param i_options the number of options
353 * \param ppsz_options an array of options
354 * \param i_option_flags options flags
355 * \param b_playlist TRUE for playlist, FALSE for media library
356 * \param b_locked TRUE if the playlist is locked
357 * \return VLC_SUCCESS or a VLC error code
359 int playlist_AddExt( playlist_t *p_playlist, const char * psz_uri,
360 const char *psz_name, int i_mode, int i_pos,
362 int i_options, const char *const *ppsz_options,
363 unsigned i_option_flags,
364 bool b_playlist, bool b_locked )
367 input_item_t *p_input;
369 p_input = input_item_NewExt( p_playlist, psz_uri, psz_name,
370 i_options, ppsz_options, i_option_flags,
372 if( p_input == NULL )
374 i_ret = playlist_AddInput( p_playlist, p_input, i_mode, i_pos, b_playlist,
376 vlc_gc_decref( p_input );
381 * Add an input item to the playlist node
383 * \param p_playlist the playlist to add into
384 * \param p_input the input item to add
385 * \param i_mode the mode used when adding
386 * \param i_pos the position in the playlist where to add. If this is
387 * PLAYLIST_END the item will be added at the end of the playlist
388 * regardless of its size
389 * \param b_playlist TRUE for playlist, FALSE for media library
390 * \param b_locked TRUE if the playlist is locked
391 * \return VLC_SUCCESS or VLC_ENOMEM or VLC_EGENERIC
393 int playlist_AddInput( playlist_t* p_playlist, input_item_t *p_input,
394 int i_mode, int i_pos, bool b_playlist,
397 playlist_item_t *p_item;
398 if( p_playlist->b_die ) return VLC_EGENERIC;
399 if( !pl_priv(p_playlist)->b_doing_ml )
400 PL_DEBUG( "adding item `%s' ( %s )", p_input->psz_name,
403 PL_LOCK_IF( !b_locked );
405 p_item = playlist_ItemNewFromInput( p_playlist, p_input );
406 if( p_item == NULL ) return VLC_ENOMEM;
407 AddItem( p_playlist, p_item,
408 b_playlist ? p_playlist->p_playing :
409 p_playlist->p_media_library , i_mode, i_pos );
411 GoAndPreparse( p_playlist, i_mode, p_item );
413 PL_UNLOCK_IF( !b_locked );
418 * Add an input item to a given node
420 * \param p_playlist the playlist to add into
421 * \param p_input the input item to add
422 * \param p_parent the parent item to add into
423 * \param i_mode the mode used when addin
424 * \param i_pos the position in the playlist where to add. If this is
425 * PLAYLIST_END the item will be added at the end of the playlist
426 * regardless of its size
427 * \param b_locked TRUE if the playlist is locked
428 * \return the new playlist item
430 playlist_item_t * playlist_NodeAddInput( playlist_t *p_playlist,
431 input_item_t *p_input,
432 playlist_item_t *p_parent,
433 int i_mode, int i_pos,
436 playlist_item_t *p_item;
438 assert( p_parent && p_parent->i_children != -1 );
440 if( p_playlist->b_die )
442 PL_LOCK_IF( !b_locked );
444 p_item = playlist_ItemNewFromInput( p_playlist, p_input );
445 if( p_item == NULL ) return NULL;
446 AddItem( p_playlist, p_item, p_parent, i_mode, i_pos );
448 GoAndPreparse( p_playlist, i_mode, p_item );
450 PL_UNLOCK_IF( !b_locked );
456 * Insert a tree of input items into a given playlist node
458 * \param p_playlist the playlist to insert into
459 * \param p_parent the receiving playlist node (can be an item)
460 * \param p_node the root of input item tree,
461 only it's contents will be inserted
462 * \param i_pos the position in the playlist where to insert. If this is
463 * PLAYLIST_END the items will be added at the end of the playlist
464 * regardless of its size
465 * \param b_flat TRUE if the new tree contents should be flattened into a list
466 * \return the first new leaf inserted (in playing order)
468 playlist_item_t *playlist_InsertInputItemTree (
469 playlist_t *p_playlist, playlist_item_t *p_parent,
470 input_item_node_t *p_node, int i_pos, bool b_flat )
472 playlist_item_t *p_first_leaf = NULL;
473 RecursiveAddIntoParent ( p_playlist, p_parent, p_node, i_pos, b_flat, &p_first_leaf );
477 /*****************************************************************************
478 * Playlist item misc operations
479 *****************************************************************************/
484 * Transform an item to a node. Return the node in the category tree, or NULL
486 * This function must be entered without the playlist lock
487 * \param p_playlist the playlist object
488 * \param p_item the item to transform
489 * \param b_locked TRUE if the playlist is locked
490 * \return the item transform in a node
492 static playlist_item_t *ItemToNode( playlist_t *p_playlist,
493 playlist_item_t *p_item,
496 PL_LOCK_IF( !b_locked );
498 assert( p_item->p_parent );
501 playlist_item_t *p_up = p_item;
502 while( p_up->p_parent )
504 if( p_up->p_parent == p_playlist->p_playing ||
505 p_up->p_parent == p_playlist->p_media_library )
507 if( !pl_priv(p_playlist)->b_tree ) b_flat = true;
510 p_up = p_up->p_parent;
515 ChangeToNode( p_playlist, p_item );
516 if( p_up == p_playlist->p_root )
517 var_SetAddress( p_playlist, "item-change", p_item->p_input );
518 PL_UNLOCK_IF( !b_locked );
523 playlist_item_t *p_status_item = get_current_status_item( p_playlist );
524 playlist_item_t *p_status_node = get_current_status_node( p_playlist );
525 if( p_item == p_status_item )
527 /* We're deleting the current playlist item. Update
528 * the playlist object to point at the previous item
529 * so the playlist won't be restarted */
530 playlist_item_t *p_prev_status_item = NULL;
532 while( i < p_status_node->i_children &&
533 p_status_node->pp_children[i] != p_status_item )
535 p_prev_status_item = p_status_node->pp_children[i];
538 if( i == p_status_node->i_children )
539 p_prev_status_item = NULL;
540 if( p_prev_status_item )
541 set_current_status_item( p_playlist, p_prev_status_item );
544 DeleteFromInput( p_playlist, p_item->p_input,
545 p_playlist->p_root, false );
547 pl_priv(p_playlist)->b_reset_currently_playing = true;
548 vlc_cond_signal( &pl_priv(p_playlist)->signal );
550 PL_UNLOCK_IF( !b_locked );
551 return p_item->p_parent;
556 * Find an item within a root, given its input id.
558 * \param p_playlist the playlist object
559 * \param p_item the input item
560 * \param p_root root playlist item
561 * \param b_items_only TRUE if we want the item himself
562 * \return the first found item, or NULL if not found
564 playlist_item_t *playlist_ItemFindFromInputAndRoot( playlist_t *p_playlist,
565 input_item_t *p_item,
566 playlist_item_t *p_root,
570 for( i = 0 ; i< p_root->i_children ; i++ )
572 if( ( b_items_only ? p_root->pp_children[i]->i_children == -1 : 1 ) &&
573 p_root->pp_children[i]->p_input == p_item )
575 return p_root->pp_children[i];
577 else if( p_root->pp_children[i]->i_children >= 0 )
579 playlist_item_t *p_search =
580 playlist_ItemFindFromInputAndRoot( p_playlist, p_item,
581 p_root->pp_children[i],
583 if( p_search ) return p_search;
590 static int ItemIndex ( playlist_item_t *p_item )
592 for( int i = 0; i < p_item->p_parent->i_children; i++ )
593 if( p_item->p_parent->pp_children[i] == p_item ) return i;
600 * This function must be entered with the playlist lock
602 * \param p_playlist the playlist
603 * \param p_item the item to move
604 * \param p_node the new parent of the item
605 * \param i_newpos the new position under this new parent
606 * \return VLC_SUCCESS or an error
608 int playlist_TreeMove( playlist_t * p_playlist, playlist_item_t *p_item,
609 playlist_item_t *p_node, int i_newpos )
613 if( p_node->i_children == -1 ) return VLC_EGENERIC;
615 playlist_item_t *p_detach = p_item->p_parent;
616 int i_index = ItemIndex( p_item );
618 REMOVE_ELEM( p_detach->pp_children, p_detach->i_children, i_index );
620 if( p_detach == p_node && i_index < i_newpos )
623 INSERT_ELEM( p_node->pp_children, p_node->i_children, i_newpos, p_item );
624 p_item->p_parent = p_node;
626 pl_priv( p_playlist )->b_reset_currently_playing = true;
627 vlc_cond_signal( &pl_priv( p_playlist )->signal );
632 * Moves an array of items
634 * This function must be entered with the playlist lock
636 * \param p_playlist the playlist
637 * \param i_items the number of indexes to move
638 * \param pp_items the array of indexes to move
639 * \param p_node the target node
640 * \param i_newpos the target position under this node
641 * \return VLC_SUCCESS or an error
643 int playlist_TreeMoveMany( playlist_t *p_playlist,
644 int i_items, playlist_item_t **pp_items,
645 playlist_item_t *p_node, int i_newpos )
649 if ( p_node->i_children == -1 ) return VLC_EGENERIC;
652 for( i = 0; i < i_items; i++ )
654 playlist_item_t *p_item = pp_items[i];
655 int i_index = ItemIndex( p_item );
656 playlist_item_t *p_parent = p_item->p_parent;
657 REMOVE_ELEM( p_parent->pp_children, p_parent->i_children, i_index );
658 if ( p_parent == p_node && i_index < i_newpos ) i_newpos--;
660 for( i = i_items - 1; i >= 0; i-- )
662 playlist_item_t *p_item = pp_items[i];
663 INSERT_ELEM( p_node->pp_children, p_node->i_children, i_newpos, p_item );
664 p_item->p_parent = p_node;
667 pl_priv( p_playlist )->b_reset_currently_playing = true;
668 vlc_cond_signal( &pl_priv( p_playlist )->signal );
673 * Send a notification that an item has been added to a node
675 * \param p_playlist the playlist object
676 * \param i_item_id id of the item added
677 * \param i_node_id id of the node in wich the item was added
678 * \param b_signal TRUE if the function must send a signal
681 void playlist_SendAddNotify( playlist_t *p_playlist, int i_item_id,
682 int i_node_id, bool b_signal )
684 playlist_private_t *p_sys = pl_priv(p_playlist);
687 p_sys->b_reset_currently_playing = true;
689 vlc_cond_signal( &p_sys->signal );
692 add.i_item = i_item_id;
693 add.i_node = i_node_id;
696 val.p_address = &add;
698 var_Set( p_playlist, "playlist-item-append", val );
701 /***************************************************************************
702 * The following functions are local
703 ***************************************************************************/
705 /* Enqueue an item for preparsing, and play it, if needed */
706 static void GoAndPreparse( playlist_t *p_playlist, int i_mode,
707 playlist_item_t *p_item )
710 if( (i_mode & PLAYLIST_GO ) )
712 pl_priv(p_playlist)->request.b_request = true;
713 pl_priv(p_playlist)->request.i_skip = 0;
714 pl_priv(p_playlist)->request.p_item = p_item;
715 if( pl_priv(p_playlist)->p_input )
716 input_Stop( pl_priv(p_playlist)->p_input, true );
717 pl_priv(p_playlist)->request.i_status = PLAYLIST_RUNNING;
718 vlc_cond_signal( &pl_priv(p_playlist)->signal );
720 /* Preparse if no artist/album info, and hasn't been preparsed allready
721 and if user has some preparsing option (auto-preparse variable)
723 char *psz_artist = input_item_GetArtist( p_item->p_input );
724 char *psz_album = input_item_GetAlbum( p_item->p_input );
725 if( pl_priv(p_playlist)->b_auto_preparse &&
726 input_item_IsPreparsed( p_item->p_input ) == false &&
727 ( EMPTY_STR( psz_artist ) || ( EMPTY_STR( psz_album ) ) )
729 playlist_PreparseEnqueue( p_playlist, p_item->p_input );
734 /* Add the playlist item to the requested node and fire a notification */
735 static void AddItem( playlist_t *p_playlist, playlist_item_t *p_item,
736 playlist_item_t *p_node, int i_mode, int i_pos )
739 ARRAY_APPEND(p_playlist->items, p_item);
740 ARRAY_APPEND(p_playlist->all_items, p_item);
742 if( i_pos == PLAYLIST_END )
743 playlist_NodeAppend( p_playlist, p_item, p_node );
745 playlist_NodeInsert( p_playlist, p_item, p_node, i_pos );
747 if( !pl_priv(p_playlist)->b_doing_ml )
748 playlist_SendAddNotify( p_playlist, p_item->i_id, p_node->i_id,
749 !( i_mode & PLAYLIST_NO_REBUILD ) );
752 /* Actually convert an item to a node */
753 static void ChangeToNode( playlist_t *p_playlist, playlist_item_t *p_item )
756 if( p_item->i_children == -1 )
757 p_item->i_children = 0;
759 /* Remove it from the array of available items */
760 ARRAY_BSEARCH( p_playlist->items,->i_id, int, p_item->i_id, i );
762 ARRAY_REMOVE( p_playlist->items, i );
765 /* Do the actual removal */
766 int playlist_DeleteItem( playlist_t * p_playlist, playlist_item_t *p_item,
770 int i_id = p_item->i_id;
773 if( p_item->i_children > -1 )
775 return playlist_NodeDelete( p_playlist, p_item, true, false );
778 pl_priv(p_playlist)->b_reset_currently_playing = true;
779 var_SetInteger( p_playlist, "playlist-item-deleted", i_id );
781 /* Remove the item from the bank */
782 ARRAY_BSEARCH( p_playlist->all_items,->i_id, int, i_id, i );
784 ARRAY_REMOVE( p_playlist->all_items, i );
786 ARRAY_BSEARCH( p_playlist->items,->i_id, int, i_id, i );
788 ARRAY_REMOVE( p_playlist->items, i );
790 /* Check if it is the current item */
791 if( get_current_status_item( p_playlist ) == p_item )
793 /* Stop it if we have to */
796 playlist_Control( p_playlist, PLAYLIST_STOP, pl_Locked );
797 msg_Info( p_playlist, "stopping playback" );
799 /* In any case, this item can't be the next one to be played ! */
800 set_current_status_item( p_playlist, NULL );
803 ARRAY_BSEARCH( p_playlist->current,->i_id, int, i_id, i );
805 ARRAY_REMOVE( p_playlist->current, i );
807 PL_DEBUG( "deleting item `%s'", p_item->p_input->psz_name );
809 /* Remove the item from its parent */
810 playlist_NodeRemoveItem( p_playlist, p_item, p_item->p_parent );
812 playlist_ItemRelease( p_item );
817 static int RecursiveAddIntoParent (
818 playlist_t *p_playlist, playlist_item_t *p_parent,
819 input_item_node_t *p_node, int i_pos, bool b_flat,
820 playlist_item_t **pp_first_leaf )
822 if( p_parent->i_children == -1 ) ChangeToNode( p_playlist, p_parent );
824 if( i_pos == PLAYLIST_END ) i_pos = p_parent->i_children;
826 for( int i = 0; i < p_node->i_children; i++ )
828 playlist_item_t *p_child = NULL;
829 if( b_flat ? p_node->pp_children[i]->i_children == 0 : 1 )
831 p_child = playlist_NodeAddInput( p_playlist,
832 p_node->pp_children[i]->p_item,
834 PLAYLIST_INSERT, i_pos,
838 if( p_node->pp_children[i]->i_children > 0 )
842 i_pos = RecursiveAddIntoParent(
843 p_playlist, p_parent,
844 p_node->pp_children[i], i_pos, true,
849 RecursiveAddIntoParent( p_playlist, p_child,
850 p_node->pp_children[i], 0, false,
854 assert( p_child != NULL );
855 if( i == 0 ) *pp_first_leaf = p_child;