]> git.sesse.net Git - vlc/blob - src/playlist/item-ext.c
* do not use a dynamic linker if no plugin support was detected/requested.
[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     var_SetInteger( p_playlist, "item-deleted", i_id );
634
635     i_bottom = 0; i_top = p_playlist->i_all_size - 1;
636     i = i_top / 2;
637     while( p_playlist->pp_all_items[i]->input.i_id != i_id &&
638            i_top > i_bottom )
639     {
640         if( p_playlist->pp_all_items[i]->input.i_id < i_id )
641         {
642             i_bottom = i + 1;
643         }
644         else
645         {
646             i_top = i - 1;
647         }
648         i = i_bottom + ( i_top - i_bottom ) / 2;
649     }
650     if( p_playlist->pp_all_items[i]->input.i_id == i_id )
651     {
652         REMOVE_ELEM( p_playlist->pp_all_items, p_playlist->i_all_size, i );
653     }
654
655     /* Check if it is the current item */
656     if( p_playlist->status.p_item == p_item )
657     {
658         /* Hack we don't call playlist_Control for lock reasons */
659         p_playlist->status.i_status = PLAYLIST_STOPPED;
660         p_playlist->request.b_request = VLC_TRUE;
661 //        p_playlist->status.p_item = NULL;
662         msg_Info( p_playlist, "stopping playback" );
663         b_flag = VLC_TRUE;
664     }
665
666     msg_Dbg( p_playlist, "deleting playlist item `%s'",
667                           p_item->input.psz_name );
668
669     /* Remove the item from all its parent nodes */
670     for ( i= 0 ; i < p_item->i_parents ; i++ )
671     {
672         playlist_NodeRemoveItem( p_playlist, p_item,
673                                  p_item->pp_parents[i]->p_parent );
674         if( p_item->pp_parents[i]->i_view == VIEW_ALL )
675         {
676             p_playlist->i_size--;
677         }
678     }
679
680     /* TODO : Update views */
681
682     if( b_flag == VLC_FALSE )
683         playlist_ItemDelete( p_item );
684     else
685         p_item->i_flags |= PLAYLIST_REMOVE_FLAG;
686
687     return VLC_SUCCESS;
688 }
689
690 int playlist_LockDelete( playlist_t * p_playlist, int i_id )
691 {
692     int i_ret;
693     vlc_mutex_lock( &p_playlist->object_lock );
694     i_ret = playlist_Delete( p_playlist, i_id );
695     vlc_mutex_unlock( &p_playlist->object_lock );
696     return i_ret;
697 }
698
699 /**
700  * Clear all playlist items
701  *
702  * \param p_playlist the playlist to be cleared.
703  * \return returns 0
704  */
705 int playlist_Clear( playlist_t * p_playlist )
706 {
707     int i;
708     for( i = p_playlist->i_size; i > 0 ; i-- )
709     {
710         playlist_Delete( p_playlist, p_playlist->pp_items[0]->input.i_id );
711     }
712     for( i = 0 ; i< p_playlist->i_views; i++ )
713     {
714         playlist_ViewEmpty( p_playlist, i, VLC_TRUE );
715     }
716     return VLC_SUCCESS;
717 }
718
719 int playlist_LockClear( playlist_t *p_playlist )
720 {
721     int i_ret;
722     vlc_mutex_lock( &p_playlist->object_lock );
723     i_ret = playlist_Clear( p_playlist );
724     vlc_mutex_unlock( &p_playlist->object_lock );
725     return i_ret;
726 }
727
728
729 /**
730  * Disables a playlist item
731  *
732  * \param p_playlist the playlist to disable from.
733  * \param i_pos the position of the item to disable
734  * \return returns 0
735  */
736 int playlist_Disable( playlist_t * p_playlist, playlist_item_t *p_item )
737 {
738     if( !p_item ) return VLC_EGENERIC;
739
740     msg_Dbg( p_playlist, "disabling playlist item `%s'",
741                    p_item->input.psz_name );
742
743     if( p_item->i_flags & PLAYLIST_ENA_FLAG )
744     {
745         p_playlist->i_enabled--;
746     }
747     p_item->i_flags &= ~PLAYLIST_ENA_FLAG;
748
749     var_SetInteger( p_playlist, "item-change", p_item->input.i_id );
750     return VLC_SUCCESS;
751 }
752
753 /**
754  * Enables a playlist item
755  *
756  * \param p_playlist the playlist to enable from.
757  * \param i_pos the position of the item to enable
758  * \return returns 0
759  */
760 int playlist_Enable( playlist_t * p_playlist, playlist_item_t *p_item )
761 {
762     if( !p_item ) return VLC_EGENERIC;
763
764     msg_Dbg( p_playlist, "enabling playlist item `%s'",
765                    p_item->input.psz_name );
766
767     if( p_item->i_flags & ~PLAYLIST_ENA_FLAG )
768     {
769         p_playlist->i_enabled++;
770     }
771     p_item->i_flags |= PLAYLIST_ENA_FLAG;
772
773     var_SetInteger( p_playlist, "item-change", p_item->input.i_id );
774     return VLC_SUCCESS;
775 }
776
777 /**
778  * Move an item in a playlist
779  *
780  * This function must be entered without the playlist lock
781  *
782  * Move the item in the playlist with position i_pos before the current item
783  * at position i_newpos.
784  * \param p_playlist the playlist to move items in
785  * \param i_pos the position of the item to move
786  * \param i_newpos the position of the item that will be behind the moved item
787  *        after the move
788  * \return returns VLC_SUCCESS
789  */
790 int playlist_Move( playlist_t * p_playlist, int i_pos, int i_newpos )
791 {
792     vlc_value_t val;
793     vlc_mutex_lock( &p_playlist->object_lock );
794
795     /* take into account that our own row disappears. */
796     if( i_pos < i_newpos ) i_newpos--;
797
798     if( i_pos >= 0 && i_newpos >=0 && i_pos <= p_playlist->i_size &&
799         i_newpos <= p_playlist->i_size )
800     {
801         playlist_item_t * temp;
802
803         msg_Dbg( p_playlist, "moving playlist item `%s' (%i -> %i)",
804                  p_playlist->pp_items[i_pos]->input.psz_name, i_pos, i_newpos);
805
806         if( i_pos == p_playlist->i_index )
807         {
808             p_playlist->i_index = i_newpos;
809         }
810         else if( i_pos > p_playlist->i_index &&
811                  i_newpos <= p_playlist->i_index )
812         {
813             p_playlist->i_index++;
814         }
815         else if( i_pos < p_playlist->i_index &&
816                  i_newpos >= p_playlist->i_index )
817         {
818             p_playlist->i_index--;
819         }
820
821         if ( i_pos < i_newpos )
822         {
823             temp = p_playlist->pp_items[i_pos];
824             while ( i_pos < i_newpos )
825             {
826                 p_playlist->pp_items[i_pos] = p_playlist->pp_items[i_pos+1];
827                 i_pos++;
828             }
829             p_playlist->pp_items[i_newpos] = temp;
830         }
831         else if ( i_pos > i_newpos )
832         {
833             temp = p_playlist->pp_items[i_pos];
834             while ( i_pos > i_newpos )
835             {
836                 p_playlist->pp_items[i_pos] = p_playlist->pp_items[i_pos-1];
837                 i_pos--;
838             }
839             p_playlist->pp_items[i_newpos] = temp;
840         }
841     }
842
843     vlc_mutex_unlock( &p_playlist->object_lock );
844
845     val.b_bool = VLC_TRUE;
846     var_Set( p_playlist, "intf-change", val );
847
848     return VLC_SUCCESS;
849 }
850
851 /**
852  * Moves an item
853  *
854  * \param p_playlist the playlist
855  * \param p_item the item to move
856  * \param p_node the new parent of the item
857  * \param i_newpos the new position under this new parent
858  * \param i_view the view in which the move must be done or ALL_VIEWS
859  * \return VLC_SUCCESS or an error
860  */
861 int playlist_TreeMove( playlist_t * p_playlist, playlist_item_t *p_item,
862                        playlist_item_t *p_node, int i_newpos, int i_view )
863 {
864     int i;
865     playlist_item_t *p_detach = NULL;
866 #if 0
867     if( i_view == ALL_VIEWS )
868     {
869         for( i = 0 ; i < p_playlist->i_views; i++ )
870         {
871             playlist_TreeMove( p_playlist, p_item, p_node, i_newpos,
872                                p_playlist->pp_views[i] );
873         }
874     }
875 #endif
876
877     /* Find the parent */
878     for( i = 0 ; i< p_item->i_parents; i++ )
879     {
880         if( p_item->pp_parents[i]->i_view == i_view )
881         {
882             p_detach = p_item->pp_parents[i]->p_parent;
883             break;
884         }
885     }
886     if( p_detach == NULL )
887     {
888         msg_Err( p_playlist, "item not found in view %i", i_view );
889         return VLC_EGENERIC;
890     }
891
892     /* Detach from the parent */
893 //    playlist_NodeDetach( p_detach, p_item );
894
895     /* Attach to new parent */
896
897     return VLC_SUCCESS;
898 }