]> git.sesse.net Git - vlc/blob - src/playlist/item-ext.c
f2087be59b7acb631b10bd6698f528d83ca4c079
[vlc] / src / playlist / item-ext.c
1 /*****************************************************************************
2  * item-ext.c : Playlist item management functions (act on the playlist)
3  *****************************************************************************
4  * Copyright (C) 1999-2004 VideoLAN
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24 #include <stdlib.h>                                      /* free(), strtol() */
25 #include <stdio.h>                                              /* sprintf() */
26 #include <string.h>                                            /* strerror() */
27
28 #include <vlc/vlc.h>
29 #include <vlc/input.h>
30
31 #include "vlc_playlist.h"
32
33 /***************************************************************************
34  * Item creation/addition functions
35  ***************************************************************************/
36
37 /**
38  * Add a MRL into the playlist, duration and options given
39  *
40  * \param p_playlist the playlist to add into
41  * \param psz_uri the mrl to add to the playlist
42  * \param psz_name a text giving a name or description of this item
43  * \param i_mode the mode used when adding
44  * \param i_pos the position in the playlist where to add. If this is
45  *        PLAYLIST_END the item will be added at the end of the playlist
46  *        regardless of it's size
47  * \param i_duration length of the item in milliseconds.
48  * \param ppsz_options an array of options
49  * \param i_options the number of options
50  * \return The id of the playlist item
51 */
52 int playlist_AddExt( playlist_t *p_playlist, const char * psz_uri,
53                      const char *psz_name, int i_mode, int i_pos,
54                      mtime_t i_duration, const char **ppsz_options,
55                      int i_options )
56 {
57     playlist_item_t *p_item;
58     p_item = playlist_ItemNew( p_playlist , psz_uri, psz_name );
59
60     if( p_item == NULL )
61     {
62         msg_Err( p_playlist, "unable to add item to playlist" );
63         return -1;
64     }
65
66     p_item->input.i_duration = i_duration;
67     p_item->input.i_options = i_options;
68     p_item->input.ppsz_options = NULL;
69
70     for( p_item->input.i_options = 0; p_item->input.i_options < i_options;
71          p_item->input.i_options++ )
72     {
73         if( !p_item->input.i_options )
74         {
75             p_item->input.ppsz_options = malloc( i_options * sizeof(char *) );
76             if( !p_item->input.ppsz_options ) break;
77         }
78
79         p_item->input.ppsz_options[p_item->input.i_options] =
80             strdup( ppsz_options[p_item->input.i_options] );
81     }
82
83     return playlist_AddItem( p_playlist, p_item, i_mode, i_pos );
84 }
85
86 /**
87  * Add a MRL into the playlist.
88  *
89  * \param p_playlist the playlist to add into
90  * \param psz_uri the mrl to add to the playlist
91  * \param psz_name a text giving a name or description of this item
92  * \param i_mode the mode used when adding
93  * \param i_pos the position in the playlist where to add. If this is
94  *        PLAYLIST_END the item will be added at the end of the playlist
95  *        regardless of it's size
96  * \return The id of the playlist item
97 */
98 int playlist_Add( playlist_t *p_playlist, const char *psz_uri,
99                   const char *psz_name, int i_mode, int i_pos )
100 {
101     return playlist_AddExt( p_playlist, psz_uri, psz_name, i_mode, i_pos,
102                             -1, NULL, 0 );
103 }
104
105 /**
106  * Add a playlist item into a playlist
107  *
108  * \param p_playlist the playlist to insert into
109  * \param p_item the playlist item to insert
110  * \param i_mode the mode used when adding
111  * \param i_pos the possition in the playlist where to add. If this is
112  *        PLAYLIST_END the item will be added at the end of the playlist
113  *        regardless of it's size
114  * \return The id of the playlist item
115  */
116 int playlist_AddItem( playlist_t *p_playlist, playlist_item_t *p_item,
117                       int i_mode, int i_pos)
118 {
119     vlc_value_t val;
120     vlc_bool_t b_end = VLC_FALSE;
121     playlist_view_t *p_view = NULL;
122
123     playlist_add_t *p_add = (playlist_add_t *)malloc(sizeof( playlist_add_t));
124
125     vlc_mutex_lock( &p_playlist->object_lock );
126
127     /*
128      * CHECK_INSERT : checks if the item is already enqued before
129      * enqueing it
130      */
131
132     /* That should not change */
133     if ( i_mode & PLAYLIST_CHECK_INSERT )
134     {
135          int j;
136
137         if ( p_playlist->pp_items )
138         {
139             for ( j = 0; j < p_playlist->i_size; j++ )
140             {
141                 if ( !strcmp( p_playlist->pp_items[j]->input.psz_uri,
142                                p_item->input.psz_uri ) )
143                 {
144                     playlist_ItemDelete( p_item );
145                     vlc_mutex_unlock( &p_playlist->object_lock );
146                     return -1;
147                 }
148              }
149          }
150          i_mode &= ~PLAYLIST_CHECK_INSERT;
151          i_mode |= PLAYLIST_APPEND;
152     }
153
154     msg_Dbg( p_playlist, "adding playlist item `%s' ( %s )",
155              p_item->input.psz_name, p_item->input.psz_uri );
156
157     p_item->input.i_id = ++p_playlist->i_last_id;
158
159     /* Do a few boundary checks and allocate space for the item */
160     if( i_pos == PLAYLIST_END )
161     {
162         b_end = VLC_TRUE;
163         if( i_mode & PLAYLIST_INSERT )
164         {
165             i_mode &= ~PLAYLIST_INSERT;
166             i_mode |= PLAYLIST_APPEND;
167         }
168
169         i_pos = p_playlist->i_size - 1;
170     }
171
172     if( !(i_mode & PLAYLIST_REPLACE)
173          || i_pos < 0 || i_pos >= p_playlist->i_size )
174     {
175         /* Additional boundary checks */
176         if( i_mode & PLAYLIST_APPEND )
177         {
178             i_pos++;
179         }
180
181         if( i_pos < 0 )
182         {
183             i_pos = 0;
184         }
185         else if( i_pos > p_playlist->i_size )
186         {
187             i_pos = p_playlist->i_size;
188         }
189
190         INSERT_ELEM( p_playlist->pp_items, p_playlist->i_size, i_pos, p_item );
191         INSERT_ELEM( p_playlist->pp_all_items, p_playlist->i_all_size,
192                      p_playlist->i_all_size, p_item );
193         p_playlist->i_enabled ++;
194
195         /* We update the ALL view directly */
196         playlist_ViewUpdate( p_playlist, VIEW_ALL );
197
198         /* Add the item to the General category */
199         if( b_end == VLC_TRUE )
200         {
201             playlist_NodeAppend( p_playlist, VIEW_CATEGORY, p_item,
202                                  p_playlist->p_general );
203             p_add->i_item = p_item->input.i_id;
204             p_add->i_node = p_playlist->p_general->input.i_id;
205             p_add->i_view = VIEW_CATEGORY;
206             val.p_address = p_add;
207             var_Set( p_playlist, "item-append", val );
208         }
209         else
210         {
211             playlist_NodeInsert( p_playlist, VIEW_CATEGORY, p_item,
212                                  p_playlist->p_general, i_pos );
213         }
214
215
216         p_view = playlist_ViewFind( p_playlist, VIEW_ALL );
217         playlist_ItemAddParent( p_item, VIEW_ALL, p_view->p_root );
218
219         /* FIXME : Update sorted views */
220
221         if( p_playlist->i_index >= i_pos )
222         {
223             p_playlist->i_index++;
224         }
225     }
226     else
227     {
228         msg_Err( p_playlist, "Insert mode not implemented" );
229     }
230
231     if( (i_mode & PLAYLIST_GO ) && p_view )
232     {
233         p_playlist->request.b_request = VLC_TRUE;
234         /* FIXME ... */
235         p_playlist->request.i_view = VIEW_CATEGORY;
236         p_playlist->request.p_node = p_view->p_root;
237         p_playlist->request.p_item = p_item;
238
239         if( p_playlist->p_input )
240         {
241             input_StopThread( p_playlist->p_input );
242         }
243         p_playlist->status.i_status = PLAYLIST_RUNNING;
244     }
245
246     vlc_mutex_unlock( &p_playlist->object_lock );
247
248     if( b_end == VLC_FALSE )
249     {
250         val.b_bool = VLC_TRUE;
251         var_Set( p_playlist, "intf-change", val );
252     }
253
254     free( p_add );
255
256     return p_item->input.i_id;
257 }
258
259
260 /**
261  * Add a playlist item to a given node (in the category view )
262  *
263  * \param p_playlist the playlist to insert into
264  * \param p_item the playlist item to insert
265  * \param i_view the view for which to add or TODO: ALL_VIEWS
266  * \param p_parent the parent node
267  * \param i_mode the mode used when adding
268  * \param i_pos the possition in the node where to add. If this is
269  *        PLAYLIST_END the item will be added at the end of the node
270  ** \return The id of the playlist item
271  */
272 int playlist_NodeAddItem( playlist_t *p_playlist, playlist_item_t *p_item,
273                           int i_view,playlist_item_t *p_parent,
274                           int i_mode, int i_pos)
275 {
276     vlc_value_t val;
277     int i_position;
278     playlist_view_t *p_view;
279
280     playlist_add_t *p_add = (playlist_add_t *)malloc(sizeof( playlist_add_t));
281
282     vlc_mutex_lock( &p_playlist->object_lock );
283
284     /* Sanity checks */
285     if( !p_parent || p_parent->i_children == -1 )
286     {
287         msg_Err( p_playlist, "invalid node" );
288     }
289
290     /*
291      * CHECK_INSERT : checks if the item is already enqued before
292      * enqueing it
293      */
294     if ( i_mode & PLAYLIST_CHECK_INSERT )
295     {
296          int j;
297
298         if ( p_playlist->pp_items )
299         {
300             for ( j = 0; j < p_playlist->i_size; j++ )
301             {
302                 if ( !strcmp( p_playlist->pp_items[j]->input.psz_uri,
303                               p_item->input.psz_uri ) )
304                 {
305                     playlist_ItemDelete( p_item );
306                     vlc_mutex_unlock( &p_playlist->object_lock );
307                     free( p_add );
308                     return -1;
309                 }
310             }
311         }
312         i_mode &= ~PLAYLIST_CHECK_INSERT;
313         i_mode |= PLAYLIST_APPEND;
314     }
315
316     msg_Dbg( p_playlist, "adding playlist item `%s' ( %s )",
317              p_item->input.psz_name, p_item->input.psz_uri );
318
319     p_item->input.i_id = ++p_playlist->i_last_id;
320
321     /* First, add the item at the right position in the item bank */
322     /* WHY THAT ? */
323      //i_position = p_playlist->i_index == -1 ? 0 : p_playlist->i_index;
324     i_position = p_playlist->i_size ;
325
326     INSERT_ELEM( p_playlist->pp_items,
327                  p_playlist->i_size,
328                  i_position,
329                  p_item );
330     INSERT_ELEM( p_playlist->pp_all_items,
331                  p_playlist->i_all_size,
332                  p_playlist->i_all_size,
333                  p_item );
334     p_playlist->i_enabled ++;
335
336     /* TODO: Handle modes */
337     playlist_NodeAppend( p_playlist, i_view, p_item, p_parent );
338
339     p_add->i_item = p_item->input.i_id;
340     p_add->i_node = p_parent->input.i_id;
341     p_add->i_view = i_view;
342     val.p_address = p_add;
343     var_Set( p_playlist, "item-append", val );
344
345     /* We update the ALL view directly */
346     p_view = playlist_ViewFind( p_playlist, VIEW_ALL );
347     playlist_ItemAddParent( p_item, VIEW_ALL, p_view->p_root );
348     playlist_ViewUpdate( p_playlist, VIEW_ALL );
349
350     /* TODO : Update sorted views*/
351
352     if( i_mode & PLAYLIST_GO )
353     {
354         p_playlist->request.b_request = VLC_TRUE;
355         p_playlist->request.i_view = VIEW_CATEGORY;
356         p_playlist->request.p_node = p_parent;
357         p_playlist->request.p_item = p_item;
358         if( p_playlist->p_input )
359         {
360             input_StopThread( p_playlist->p_input );
361         }
362         p_playlist->status.i_status = PLAYLIST_RUNNING;
363     }
364
365     vlc_mutex_unlock( &p_playlist->object_lock );
366
367     val.b_bool = VLC_TRUE;
368 //    var_Set( p_playlist, "intf-change", val );
369 //
370     free( p_add );
371
372     return p_item->input.i_id;
373 }
374
375 /***************************************************************************
376  * Item search functions
377  ***************************************************************************/
378
379 /**
380  * Search the position of an item by its id
381  * This function must be entered with the playlist lock
382  *
383  * \param p_playlist the playlist
384  * \param i_id the id to find
385  * \return the position, or VLC_EGENERIC on failure
386  */
387 int playlist_GetPositionById( playlist_t * p_playlist , int i_id )
388 {
389     int i;
390     for( i =  0 ; i < p_playlist->i_size ; i++ )
391     {
392         if( p_playlist->pp_items[i]->input.i_id == i_id )
393         {
394             return i;
395         }
396     }
397     return VLC_EGENERIC;
398 }
399
400
401 /**
402  * Search an item by its position
403  * This function must be entered with the playlist lock
404  *
405  * \param p_playlist the playlist
406  * \param i_pos the position of the item to find
407  * \return the item, or NULL on failure
408  */
409 playlist_item_t * playlist_ItemGetByPos( playlist_t * p_playlist , int i_pos )
410 {
411     if( i_pos >= 0 && i_pos < p_playlist->i_size)
412     {
413         return p_playlist->pp_items[i_pos];
414     }
415     else if( p_playlist->i_size > 0)
416     {
417         return p_playlist->pp_items[p_playlist->i_index];
418     }
419     else
420     {
421         return NULL;
422     }
423 }
424
425 playlist_item_t *playlist_LockItemGetByPos( playlist_t *p_playlist, int i_pos )
426 {
427     playlist_item_t *p_ret;
428     vlc_mutex_lock( &p_playlist->object_lock );
429     p_ret = playlist_ItemGetByPos( p_playlist, i_pos );
430     vlc_mutex_unlock( &p_playlist->object_lock );
431     return p_ret;
432 }
433
434 /**
435  * Search an item by its id
436  *
437  * \param p_playlist the playlist
438  * \param i_id the id to find
439  * \return the item, or NULL on failure
440  */
441 playlist_item_t * playlist_ItemGetById( playlist_t * p_playlist , int i_id )
442 {
443     int i, i_top, i_bottom;
444     i_bottom = 0; i_top = p_playlist->i_all_size - 1;
445     i = i_top / 2;
446     while( p_playlist->pp_all_items[i]->input.i_id != i_id &&
447            i_top > i_bottom )
448     {
449         if( p_playlist->pp_all_items[i]->input.i_id < i_id )
450         {
451             i_bottom = i + 1;
452         }
453         else
454         {
455             i_top = i - 1;
456         }
457         i = i_bottom + ( i_top - i_bottom ) / 2;
458     }
459     if( p_playlist->pp_all_items[i]->input.i_id == i_id )
460     {
461         return p_playlist->pp_all_items[i];
462     }
463     return NULL;
464 }
465
466 playlist_item_t *playlist_LockItemGetById( playlist_t *p_playlist, int i_id)
467 {
468     playlist_item_t *p_ret;
469     vlc_mutex_lock( &p_playlist->object_lock );
470     p_ret = playlist_ItemGetById( p_playlist, i_id );
471     vlc_mutex_unlock( &p_playlist->object_lock );
472     return p_ret;
473 }
474
475 /**
476  * Search an item by its input_item_t
477  *
478  * \param p_playlist the playlist
479  * \param p_item the input_item_t to find
480  * \return the item, or NULL on failure
481  */
482 playlist_item_t * playlist_ItemGetByInput( playlist_t * p_playlist ,
483                                            input_item_t *p_item )
484 {
485     int i;
486     if( &p_playlist->status.p_item->input == p_item )
487     {
488         return p_playlist->status.p_item;
489     }
490
491     for( i =  0 ; i < p_playlist->i_size ; i++ )
492     {
493         if( &p_playlist->pp_items[i]->input == p_item )
494         {
495             return p_playlist->pp_items[i];
496         }
497     }
498     return NULL;
499 }
500
501 playlist_item_t *playlist_LockItemGetByInput( playlist_t *p_playlist,
502                                                input_item_t *p_item )
503 {
504     playlist_item_t *p_ret;
505     vlc_mutex_lock( &p_playlist->object_lock );
506     p_ret = playlist_ItemGetByInput( p_playlist, p_item );
507     vlc_mutex_unlock( &p_playlist->object_lock );
508     return p_ret;
509 }
510
511
512 /***********************************************************************
513  * Misc functions
514  ***********************************************************************/
515
516 /**
517  * Transform an item to a node
518  *
519  * This function must be entered without the playlist lock
520  *
521  * \param p_playlist the playlist object
522  * \param p_item the item to transform
523  * \return nothing
524  */
525 int playlist_ItemToNode( playlist_t *p_playlist,playlist_item_t *p_item )
526 {
527     int i = 0;
528     if( p_item->i_children == -1 )
529     {
530         p_item->i_children = 0;
531     }
532
533     /* Remove it from the array of available items */
534     for( i = 0 ; i < p_playlist->i_size ; i++ )
535     {
536         if( p_item == p_playlist->pp_items[i] )
537         {
538             REMOVE_ELEM( p_playlist->pp_items, p_playlist->i_size, i );
539         }
540     }
541     var_SetInteger( p_playlist, "item-change", p_item->input.i_id );
542
543     return VLC_SUCCESS;
544 }
545
546 int playlist_LockItemToNode( playlist_t *p_playlist, playlist_item_t *p_item )
547 {
548     int i_ret;
549     vlc_mutex_lock( &p_playlist->object_lock );
550     i_ret = playlist_ItemToNode( p_playlist, p_item );
551     vlc_mutex_unlock( &p_playlist->object_lock );
552     return i_ret;
553 }
554
555 /**
556  * Replaces an item with another one
557  * This function must be entered without the playlist lock
558  *
559  * \see playlist_Replace
560  */
561 int playlist_LockReplace( playlist_t *p_playlist,
562                              playlist_item_t *p_olditem,
563                              input_item_t *p_new )
564 {
565     int i_ret;
566     vlc_mutex_lock( &p_playlist->object_lock );
567     i_ret = playlist_Replace( p_playlist, p_olditem, p_new );
568     vlc_mutex_unlock( &p_playlist->object_lock );
569     return i_ret;
570 }
571
572 /**
573  * Replaces an item with another one
574  * This function must be entered with the playlist lock:
575  *
576  * \param p_playlist the playlist
577  * \param p_olditem the item to replace
578  * \param p_new the new input_item
579  * \return VLC_SUCCESS or an error
580  */
581 int playlist_Replace( playlist_t *p_playlist, playlist_item_t *p_olditem,
582                        input_item_t *p_new )
583 {
584     int i;
585     int j;
586
587     if( p_olditem->i_children != -1 )
588     {
589         msg_Err( p_playlist, "playlist_Replace can only be used on leafs");
590         return VLC_EGENERIC;
591     }
592
593     p_olditem->i_nb_played = 0;
594     memcpy( &p_olditem->input, p_new, sizeof( input_item_t ) );
595
596     p_olditem->i_nb_played = 0;
597
598     for( i = 0 ; i< p_olditem->i_parents ; i++ )
599     {
600         playlist_item_t *p_parent = p_olditem->pp_parents[i]->p_parent;
601
602         for( j = 0 ; j< p_parent->i_children ; i++ )
603         {
604             if( p_parent->pp_children[j] == p_olditem )
605             {
606                 p_parent->i_serial++;
607             }
608         }
609     }
610     return VLC_SUCCESS;
611 }
612
613 /**
614  * Deletes an item from a playlist.
615  *
616  * This function must be entered without the playlist lock
617  *
618  * \param p_playlist the playlist to remove from.
619  * \param i_id the identifier of the item to delete
620  * \return returns VLC_SUCCESS or an error
621  */
622 int playlist_Delete( playlist_t * p_playlist, int i_id )
623 {
624     int i, i_top, i_bottom;
625     vlc_bool_t b_flag = VLC_FALSE;
626
627     playlist_item_t *p_item = playlist_ItemGetById( p_playlist, i_id );
628
629     if( p_item == NULL )
630     {
631         return VLC_EGENERIC;
632     }
633     if( p_item->i_children > -1 )
634     {
635         return playlist_NodeDelete( p_playlist, p_item, VLC_TRUE, VLC_FALSE );
636     }
637
638     var_SetInteger( p_playlist, "item-deleted", i_id );
639
640     i_bottom = 0; i_top = p_playlist->i_all_size - 1;
641     i = i_top / 2;
642     while( p_playlist->pp_all_items[i]->input.i_id != i_id &&
643            i_top > i_bottom )
644     {
645         if( p_playlist->pp_all_items[i]->input.i_id < i_id )
646         {
647             i_bottom = i + 1;
648         }
649         else
650         {
651             i_top = i - 1;
652         }
653         i = i_bottom + ( i_top - i_bottom ) / 2;
654     }
655     if( p_playlist->pp_all_items[i]->input.i_id == i_id )
656     {
657         REMOVE_ELEM( p_playlist->pp_all_items, p_playlist->i_all_size, i );
658     }
659
660     /* Check if it is the current item */
661     if( p_playlist->status.p_item == p_item )
662     {
663         /* Hack we don't call playlist_Control for lock reasons */
664         p_playlist->status.i_status = PLAYLIST_STOPPED;
665         p_playlist->request.b_request = VLC_TRUE;
666         msg_Info( p_playlist, "stopping playback" );
667         b_flag = VLC_TRUE;
668     }
669
670     msg_Dbg( p_playlist, "deleting playlist item `%s'",
671                           p_item->input.psz_name );
672
673     /* Remove the item from all its parent nodes */
674     for ( i= 0 ; i < p_item->i_parents ; i++ )
675     {
676         playlist_NodeRemoveItem( p_playlist, p_item,
677                                  p_item->pp_parents[i]->p_parent );
678         if( p_item->pp_parents[i]->i_view == VIEW_ALL )
679         {
680             p_playlist->i_size--;
681         }
682     }
683
684     /* TODO : Update views */
685
686     if( b_flag == VLC_FALSE )
687         playlist_ItemDelete( p_item );
688     else
689         p_item->i_flags |= PLAYLIST_REMOVE_FLAG;
690
691     return VLC_SUCCESS;
692 }
693
694 int playlist_LockDelete( playlist_t * p_playlist, int i_id )
695 {
696     int i_ret;
697     vlc_mutex_lock( &p_playlist->object_lock );
698     i_ret = playlist_Delete( p_playlist, i_id );
699     vlc_mutex_unlock( &p_playlist->object_lock );
700     return i_ret;
701 }
702
703 /**
704  * Clear all playlist items
705  *
706  * \param p_playlist the playlist to be cleared.
707  * \return returns 0
708  */
709 int playlist_Clear( playlist_t * p_playlist )
710 {
711     int i;
712     for( i = p_playlist->i_size; i > 0 ; i-- )
713     {
714         playlist_Delete( p_playlist, p_playlist->pp_items[0]->input.i_id );
715     }
716     for( i = 0 ; i< p_playlist->i_views; i++ )
717     {
718         playlist_ViewEmpty( p_playlist, i, VLC_TRUE );
719     }
720     return VLC_SUCCESS;
721 }
722
723 int playlist_LockClear( playlist_t *p_playlist )
724 {
725     int i_ret;
726     vlc_mutex_lock( &p_playlist->object_lock );
727     i_ret = playlist_Clear( p_playlist );
728     vlc_mutex_unlock( &p_playlist->object_lock );
729     return i_ret;
730 }
731
732
733 /**
734  * Disables a playlist item
735  *
736  * \param p_playlist the playlist to disable from.
737  * \param i_pos the position of the item to disable
738  * \return returns 0
739  */
740 int playlist_Disable( playlist_t * p_playlist, playlist_item_t *p_item )
741 {
742     if( !p_item ) return VLC_EGENERIC;
743
744     msg_Dbg( p_playlist, "disabling playlist item `%s'",
745                    p_item->input.psz_name );
746
747     if( p_item->i_flags & PLAYLIST_ENA_FLAG )
748     {
749         p_playlist->i_enabled--;
750     }
751     p_item->i_flags &= ~PLAYLIST_ENA_FLAG;
752
753     var_SetInteger( p_playlist, "item-change", p_item->input.i_id );
754     return VLC_SUCCESS;
755 }
756
757 /**
758  * Enables a playlist item
759  *
760  * \param p_playlist the playlist to enable from.
761  * \param i_pos the position of the item to enable
762  * \return returns 0
763  */
764 int playlist_Enable( playlist_t * p_playlist, playlist_item_t *p_item )
765 {
766     if( !p_item ) return VLC_EGENERIC;
767
768     msg_Dbg( p_playlist, "enabling playlist item `%s'",
769                    p_item->input.psz_name );
770
771     if( p_item->i_flags & ~PLAYLIST_ENA_FLAG )
772     {
773         p_playlist->i_enabled++;
774     }
775     p_item->i_flags |= PLAYLIST_ENA_FLAG;
776
777     var_SetInteger( p_playlist, "item-change", p_item->input.i_id );
778     return VLC_SUCCESS;
779 }
780
781 /**
782  * Move an item in a playlist
783  *
784  * This function must be entered without the playlist lock
785  *
786  * Move the item in the playlist with position i_pos before the current item
787  * at position i_newpos.
788  * \param p_playlist the playlist to move items in
789  * \param i_pos the position of the item to move
790  * \param i_newpos the position of the item that will be behind the moved item
791  *        after the move
792  * \return returns VLC_SUCCESS
793  */
794 int playlist_Move( playlist_t * p_playlist, int i_pos, int i_newpos )
795 {
796     vlc_value_t val;
797     vlc_mutex_lock( &p_playlist->object_lock );
798
799     /* take into account that our own row disappears. */
800     if( i_pos < i_newpos ) i_newpos--;
801
802     if( i_pos >= 0 && i_newpos >=0 && i_pos <= p_playlist->i_size &&
803         i_newpos <= p_playlist->i_size )
804     {
805         playlist_item_t * temp;
806
807         msg_Dbg( p_playlist, "moving playlist item `%s' (%i -> %i)",
808                  p_playlist->pp_items[i_pos]->input.psz_name, i_pos, i_newpos);
809
810         if( i_pos == p_playlist->i_index )
811         {
812             p_playlist->i_index = i_newpos;
813         }
814         else if( i_pos > p_playlist->i_index &&
815                  i_newpos <= p_playlist->i_index )
816         {
817             p_playlist->i_index++;
818         }
819         else if( i_pos < p_playlist->i_index &&
820                  i_newpos >= p_playlist->i_index )
821         {
822             p_playlist->i_index--;
823         }
824
825         if ( i_pos < i_newpos )
826         {
827             temp = p_playlist->pp_items[i_pos];
828             while ( i_pos < i_newpos )
829             {
830                 p_playlist->pp_items[i_pos] = p_playlist->pp_items[i_pos+1];
831                 i_pos++;
832             }
833             p_playlist->pp_items[i_newpos] = temp;
834         }
835         else if ( i_pos > i_newpos )
836         {
837             temp = p_playlist->pp_items[i_pos];
838             while ( i_pos > i_newpos )
839             {
840                 p_playlist->pp_items[i_pos] = p_playlist->pp_items[i_pos-1];
841                 i_pos--;
842             }
843             p_playlist->pp_items[i_newpos] = temp;
844         }
845     }
846
847     vlc_mutex_unlock( &p_playlist->object_lock );
848
849     val.b_bool = VLC_TRUE;
850     var_Set( p_playlist, "intf-change", val );
851
852     return VLC_SUCCESS;
853 }
854
855 /**
856  * Moves an item
857  *
858  * \param p_playlist the playlist
859  * \param p_item the item to move
860  * \param p_node the new parent of the item
861  * \param i_newpos the new position under this new parent
862  * \param i_view the view in which the move must be done or ALL_VIEWS
863  * \return VLC_SUCCESS or an error
864  */
865 int playlist_TreeMove( playlist_t * p_playlist, playlist_item_t *p_item,
866                        playlist_item_t *p_node, int i_newpos, int i_view )
867 {
868     int i;
869     playlist_item_t *p_detach = NULL;
870 #if 0
871     if( i_view == ALL_VIEWS )
872     {
873         for( i = 0 ; i < p_playlist->i_views; i++ )
874         {
875             playlist_TreeMove( p_playlist, p_item, p_node, i_newpos,
876                                p_playlist->pp_views[i] );
877         }
878     }
879 #endif
880
881     /* Find the parent */
882     for( i = 0 ; i< p_item->i_parents; i++ )
883     {
884         if( p_item->pp_parents[i]->i_view == i_view )
885         {
886             p_detach = p_item->pp_parents[i]->p_parent;
887             break;
888         }
889     }
890     if( p_detach == NULL )
891     {
892         msg_Err( p_playlist, "item not found in view %i", i_view );
893         return VLC_EGENERIC;
894     }
895
896     /* Detach from the parent */
897 //    playlist_NodeDetach( p_detach, p_item );
898
899     /* Attach to new parent */
900
901     return VLC_SUCCESS;
902 }