]> git.sesse.net Git - vlc/blob - src/playlist/engine.c
Cleanup control and parser threads handling. Might fix #917
[vlc] / src / playlist / engine.c
1 /*****************************************************************************
2  * engine.c : Run the playlist and handle its control
3  *****************************************************************************
4  * Copyright (C) 1999-2004 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
25 #include <vlc/vlc.h>
26 #include <vlc_vout.h>
27 #include <vlc_sout.h>
28 #include <vlc_playlist.h>
29 #include <vlc_interface.h>
30 #include "playlist_internal.h"
31 #include "stream_output/stream_output.h" /* sout_DeleteInstance */
32
33 /*****************************************************************************
34  * Local prototypes
35  *****************************************************************************/
36 static void VariablesInit( playlist_t *p_playlist );
37
38 static int RandomCallback( vlc_object_t *p_this, char const *psz_cmd,
39                            vlc_value_t oldval, vlc_value_t newval, void *a )
40 {
41     ((playlist_t*)p_this)->b_reset_currently_playing = VLC_TRUE;
42     playlist_Signal( ((playlist_t*)p_this) );
43     return VLC_SUCCESS;
44 }
45
46 /**
47  * Create playlist
48  *
49  * Create a playlist structure.
50  * \param p_parent the vlc object that is to be the parent of this playlist
51  * \return a pointer to the created playlist, or NULL on error
52  */
53 playlist_t * playlist_Create( vlc_object_t *p_parent )
54 {
55     playlist_t *p_playlist;
56     vlc_bool_t b_save;
57     int i_tree;
58
59     /* Allocate structure */
60     p_playlist = vlc_object_create( p_parent, VLC_OBJECT_PLAYLIST );
61     if( !p_playlist )
62     {
63         msg_Err( p_parent, "out of memory" );
64         return NULL;
65     }
66     p_parent->p_libvlc->p_playlist = p_playlist;
67
68     VariablesInit( p_playlist );
69
70     /* Initialise data structures */
71     vlc_mutex_init( p_playlist, &p_playlist->gc_lock );
72     p_playlist->i_last_playlist_id = 0;
73     p_playlist->i_last_input_id = 0;
74     p_playlist->p_input = NULL;
75
76     p_playlist->gc_date = 0;
77     p_playlist->b_cant_sleep = VLC_FALSE;
78
79     ARRAY_INIT( p_playlist->items );
80     ARRAY_INIT( p_playlist->all_items );
81     ARRAY_INIT( p_playlist->input_items );
82     ARRAY_INIT( p_playlist->current );
83
84     p_playlist->i_current_index = 0;
85     p_playlist->b_reset_currently_playing = VLC_TRUE;
86     p_playlist->last_rebuild_date = 0;
87
88     i_tree = var_CreateGetBool( p_playlist, "playlist-tree" );
89     p_playlist->b_always_tree = (i_tree == 1);
90     p_playlist->b_never_tree = (i_tree == 2);
91
92     p_playlist->b_doing_ml = VLC_FALSE;
93
94     p_playlist->b_auto_preparse =
95                         var_CreateGetBool( p_playlist, "auto-preparse") ;
96
97     p_playlist->p_root_category = playlist_NodeCreate( p_playlist, NULL, NULL,
98                                                        0 );
99     p_playlist->p_root_onelevel = playlist_NodeCreate( p_playlist, NULL, NULL,
100                                                        0 );
101
102     if( !p_playlist->p_root_category || !p_playlist->p_root_onelevel )
103         return NULL;
104
105     /* Create playlist and media library */
106     p_playlist->p_local_category = playlist_NodeCreate( p_playlist,
107                               _( "Playlist" ),p_playlist->p_root_category, 0 );
108     p_playlist->p_local_onelevel =  playlist_NodeCreate( p_playlist,
109                               _( "Playlist" ), p_playlist->p_root_onelevel, 0 );
110     p_playlist->p_local_category->i_flags |= PLAYLIST_RO_FLAG;
111     p_playlist->p_local_onelevel->i_flags |= PLAYLIST_RO_FLAG;
112
113     if( !p_playlist->p_local_category || !p_playlist->p_local_onelevel ||
114         !p_playlist->p_local_category->p_input ||
115         !p_playlist->p_local_onelevel->p_input )
116         return NULL;
117
118     /* Link the nodes together. Todo: actually create them from the same input*/
119     p_playlist->p_local_onelevel->p_input->i_id =
120         p_playlist->p_local_category->p_input->i_id;
121
122     if( config_GetInt( p_playlist, "media-library") )
123     {
124         p_playlist->p_ml_category =   playlist_NodeCreate( p_playlist,
125                          _( "Media Library" ), p_playlist->p_root_category, 0 );
126         p_playlist->p_ml_onelevel =  playlist_NodeCreate( p_playlist,
127                          _( "Media Library" ), p_playlist->p_root_onelevel, 0 );
128
129         if(!p_playlist->p_ml_category || !p_playlist->p_ml_onelevel)
130             return NULL;
131
132         p_playlist->p_ml_category->i_flags |= PLAYLIST_RO_FLAG;
133         p_playlist->p_ml_onelevel->i_flags |= PLAYLIST_RO_FLAG;
134         p_playlist->p_ml_onelevel->p_input->i_id =
135              p_playlist->p_ml_category->p_input->i_id;
136
137     }
138     else
139     {
140         p_playlist->p_ml_category = p_playlist->p_ml_onelevel = NULL;
141     }
142
143     /* Initial status */
144     p_playlist->status.p_item = NULL;
145     p_playlist->status.p_node = p_playlist->p_local_onelevel;
146     p_playlist->request.b_request = VLC_FALSE;
147     p_playlist->status.i_status = PLAYLIST_STOPPED;
148
149     p_playlist->i_sort = SORT_ID;
150     p_playlist->i_order = ORDER_NORMAL;
151
152     b_save = p_playlist->b_auto_preparse;
153     p_playlist->b_auto_preparse = VLC_FALSE;
154     playlist_MLLoad( p_playlist );
155     p_playlist->b_auto_preparse = VLC_TRUE;
156     return p_playlist;
157 }
158
159 void playlist_Destroy( playlist_t *p_playlist )
160 {
161     var_Destroy( p_playlist, "intf-change" );
162     var_Destroy( p_playlist, "item-change" );
163     var_Destroy( p_playlist, "playlist-current" );
164     var_Destroy( p_playlist, "intf-popmenu" );
165     var_Destroy( p_playlist, "intf-show" );
166     var_Destroy( p_playlist, "play-and-stop" );
167     var_Destroy( p_playlist, "play-and-exit" );
168     var_Destroy( p_playlist, "random" );
169     var_Destroy( p_playlist, "repeat" );
170     var_Destroy( p_playlist, "loop" );
171     var_Destroy( p_playlist, "activity" );
172
173     vlc_mutex_destroy( &p_playlist->gc_lock );
174     vlc_object_detach( p_playlist );
175     vlc_object_destroy( p_playlist );
176 }
177
178 /* Destroy remaining objects */
179 static void ObjectGarbageCollector( playlist_t *p_playlist )
180 {
181     vlc_object_t *p_obj;
182
183     if( mdate() - p_playlist->gc_date < 1000000 )
184     {
185         p_playlist->b_cant_sleep = VLC_TRUE;
186         return;
187     }
188     else if( p_playlist->gc_date == 0 )
189         return;
190
191     vlc_mutex_lock( &p_playlist->gc_lock );
192     while( ( p_obj = vlc_object_find( p_playlist, VLC_OBJECT_VOUT,
193                                                   FIND_CHILD ) ) )
194     {
195         if( p_obj->p_parent != (vlc_object_t*)p_playlist )
196         {
197             vlc_object_release( p_obj );
198             break;
199         }
200         msg_Dbg( p_playlist, "garbage collector destroying 1 vout" );
201         vlc_object_detach( p_obj );
202         vlc_object_release( p_obj );
203         vout_Destroy( (vout_thread_t *)p_obj );
204     }
205     while( ( p_obj = vlc_object_find( p_playlist, VLC_OBJECT_SOUT,
206                                                   FIND_CHILD ) ) )
207     {
208         if( p_obj->p_parent != (vlc_object_t*)p_playlist )
209         {
210             vlc_object_release( p_obj );
211             break;
212         }
213         vlc_object_release( p_obj );
214         sout_DeleteInstance( (sout_instance_t*)p_obj );
215     }
216     p_playlist->b_cant_sleep = VLC_FALSE;
217     vlc_mutex_unlock( &p_playlist->gc_lock );
218 }
219
220 /** Main loop for the playlist */
221 void playlist_MainLoop( playlist_t *p_playlist )
222 {
223     playlist_item_t *p_item = NULL;
224     vlc_bool_t b_playexit = var_GetBool( p_playlist, "play-and-exit" );
225     PL_LOCK;
226
227     if( p_playlist->b_reset_currently_playing &&
228         mdate() - p_playlist->last_rebuild_date > 30000 ) // 30 ms
229     {
230         ResetCurrentlyPlaying( p_playlist, var_GetBool( p_playlist, "random"),
231                              p_playlist->status.p_item );
232         p_playlist->last_rebuild_date = mdate();
233     }
234
235 check_input:
236     /* If there is an input, check that it doesn't need to die. */
237     if( p_playlist->p_input )
238     {
239         if( p_playlist->request.b_request && !p_playlist->p_input->b_die )
240         {
241             PL_DEBUG( "incoming request - stopping current input" );
242             input_StopThread( p_playlist->p_input );
243         }
244
245         /* This input is dead. Remove it ! */
246         if( p_playlist->p_input->b_dead )
247         {
248             int i_activity;
249             input_thread_t *p_input;
250             PL_DEBUG( "dead input" );
251
252             p_input = p_playlist->p_input;
253             p_playlist->p_input = NULL;
254
255             /* Release the playlist lock, because we may get stuck
256              * in input_DestroyThread() for some time. */
257             PL_UNLOCK
258
259             /* Destroy input */
260             input_DestroyThread( p_input );
261
262             /* Unlink current input
263              * (_after_ input_DestroyThread for vout garbage collector) */
264             vlc_object_detach( p_input );
265
266             /* Destroy object */
267             vlc_object_destroy( p_input );
268
269             PL_LOCK;
270
271             p_playlist->gc_date = mdate();
272             p_playlist->b_cant_sleep = VLC_TRUE;
273
274             if( p_playlist->status.p_item->i_flags
275                 & PLAYLIST_REMOVE_FLAG )
276             {
277                  PL_DEBUG( "%s was marked for deletion, deleting",
278                                  PLI_NAME( p_playlist->status.p_item  ) );
279                  playlist_ItemDelete( p_playlist->status.p_item );
280                  if( p_playlist->request.p_item == p_playlist->status.p_item )
281                      p_playlist->request.p_item = NULL;
282                  p_playlist->status.p_item = NULL;
283             }
284
285             i_activity= var_GetInteger( p_playlist, "activity") ;
286             var_SetInteger( p_playlist, "activity", i_activity -
287                             DEFAULT_INPUT_ACTIVITY );
288             goto check_input;
289         }
290         /* This input is dying, let it do */
291         else if( p_playlist->p_input->b_die )
292         {
293             PL_DEBUG( "dying input" );
294             msleep( 25000 ); // 25 ms
295             goto check_input;
296         }
297         /* This input has finished, ask it to die ! */
298         else if( p_playlist->p_input->b_error
299                   || p_playlist->p_input->b_eof )
300         {
301             PL_DEBUG( "finished input" );
302             input_StopThread( p_playlist->p_input );
303             /* No need to wait here, we'll wait in the p_input->b_die case */
304             goto check_input;
305         }
306         else if( p_playlist->p_input->i_state != INIT_S )
307         {
308             PL_UNLOCK;
309             ObjectGarbageCollector( p_playlist );
310             PL_LOCK;
311         }
312     }
313     else
314     {
315         /* No input. Several cases
316          *  - No request, running status -> start new item
317          *  - No request, stopped status -> collect garbage
318          *  - Request, running requested -> start new item
319          *  - Request, stopped requested -> collect garbage
320          */
321          if( (!p_playlist->request.b_request &&
322               p_playlist->status.i_status != PLAYLIST_STOPPED) ||
323               ( p_playlist->request.b_request &&
324                 p_playlist->request.i_status != PLAYLIST_STOPPED ) )
325          {
326              msg_Dbg( p_playlist, "starting new item" );
327              p_item = playlist_NextItem( p_playlist );
328
329              if( p_item == NULL )
330              {
331                 msg_Dbg( p_playlist, "nothing to play" );
332                 if( b_playexit == VLC_TRUE )
333                 {
334                     msg_Info( p_playlist, "end of playlist, exiting" );
335                     p_playlist->p_libvlc->b_die = VLC_TRUE;
336                 }
337                 p_playlist->status.i_status = PLAYLIST_STOPPED;
338                 PL_UNLOCK
339                 return;
340              }
341              playlist_PlayItem( p_playlist, p_item );
342          }
343          else
344          {
345             p_playlist->status.i_status = PLAYLIST_STOPPED;
346             if( p_playlist->status.p_item &&
347                 p_playlist->status.p_item->i_flags & PLAYLIST_REMOVE_FLAG )
348             {
349                 PL_DEBUG( "deleting item marked for deletion" );
350                 playlist_ItemDelete( p_playlist->status.p_item );
351                 p_playlist->status.p_item = NULL;
352             }
353
354             /* Collect garbage */
355             PL_UNLOCK;
356             ObjectGarbageCollector( p_playlist );
357             PL_LOCK;
358         }
359     }
360     PL_UNLOCK
361 }
362
363 /** Playlist dying last loop */
364 void playlist_LastLoop( playlist_t *p_playlist )
365 {
366     vlc_object_t *p_obj;
367
368     /* If there is an input, kill it */
369     while( 1 )
370     {
371         PL_LOCK
372
373         if( p_playlist->p_input == NULL )
374         {
375             PL_UNLOCK
376             break;
377         }
378
379         if( p_playlist->p_input->b_dead )
380         {
381             input_thread_t *p_input;
382
383             /* Unlink current input */
384             p_input = p_playlist->p_input;
385             p_playlist->p_input = NULL;
386             PL_UNLOCK
387
388             /* Destroy input */
389             input_DestroyThread( p_input );
390             /* Unlink current input (_after_ input_DestroyThread for vout
391              * garbage collector)*/
392             vlc_object_detach( p_input );
393
394             /* Destroy object */
395             vlc_object_destroy( p_input );
396             continue;
397         }
398         else if( p_playlist->p_input->b_die )
399         {
400             /* This input is dying, leave it alone */
401             ;
402         }
403         else if( p_playlist->p_input->b_error || p_playlist->p_input->b_eof )
404         {
405             input_StopThread( p_playlist->p_input );
406             PL_UNLOCK
407             continue;
408         }
409         else
410         {
411             p_playlist->p_input->b_eof = 1;
412         }
413
414         PL_UNLOCK
415
416         msleep( INTF_IDLE_SLEEP );
417     }
418
419     /* close all remaining sout */
420     while( ( p_obj = vlc_object_find( p_playlist,
421                                       VLC_OBJECT_SOUT, FIND_CHILD ) ) )
422     {
423         vlc_object_release( p_obj );
424         sout_DeleteInstance( (sout_instance_t*)p_obj );
425     }
426
427     /* close all remaining vout */
428     while( ( p_obj = vlc_object_find( p_playlist,
429                                       VLC_OBJECT_VOUT, FIND_CHILD ) ) )
430     {
431         vlc_object_detach( p_obj );
432         vlc_object_release( p_obj );
433         vout_Destroy( (vout_thread_t *)p_obj );
434     }
435
436     while( p_playlist->i_sds )
437     {
438         playlist_ServicesDiscoveryRemove( p_playlist,
439                                           p_playlist->pp_sds[0]->psz_module );
440     }
441
442     playlist_MLDump( p_playlist );
443
444     PL_LOCK;
445     /* Go through all items, and simply free everything without caring
446      * about the tree structure. Do not decref, it will be done by doing
447      * the same thing on the input items array */
448     FOREACH_ARRAY( playlist_item_t *p_del, p_playlist->all_items )
449         free( p_del->pp_children );
450         free( p_del );
451     FOREACH_END();
452     ARRAY_RESET( p_playlist->all_items );
453
454     FOREACH_ARRAY( input_item_t *p_del, p_playlist->input_items )
455         input_ItemClean( p_del );
456         free( p_del );
457     FOREACH_END();
458     ARRAY_RESET( p_playlist->input_items );
459
460     ARRAY_RESET( p_playlist->items );
461     ARRAY_RESET( p_playlist->current );
462
463     PL_UNLOCK;
464 }
465
466 /** Main loop for preparser queue */
467 void playlist_PreparseLoop( playlist_preparse_t *p_obj )
468 {
469     playlist_t *p_playlist = (playlist_t *)p_obj->p_parent;
470     input_item_t *p_current;
471     int i_activity;
472     uint32_t i_m, i_o;
473
474     while( !p_playlist->b_die )
475     {
476         vlc_mutex_lock( &p_obj->object_lock );
477         while( p_obj->i_waiting == 0 )
478         {
479             vlc_cond_wait( &p_obj->object_wait, &p_obj->object_lock );
480             if( p_playlist->b_die )
481             {
482                 vlc_mutex_unlock( &p_obj->object_lock );
483                 return;
484             }
485         }
486
487         p_current = p_obj->pp_waiting[0];
488         REMOVE_ELEM( p_obj->pp_waiting, p_obj->i_waiting, 0 );
489         vlc_mutex_unlock( &p_obj->object_lock );
490
491         PL_LOCK;
492         if( p_current )
493         {
494             vlc_bool_t b_preparsed = VLC_FALSE;
495             if( strncmp( p_current->psz_uri, "http:", 5 ) &&
496                 strncmp( p_current->psz_uri, "rtsp:", 5 ) &&
497                 strncmp( p_current->psz_uri, "udp:", 4 ) &&
498                 strncmp( p_current->psz_uri, "mms:", 4 ) &&
499                 strncmp( p_current->psz_uri, "cdda:", 4 ) &&
500                 strncmp( p_current->psz_uri, "dvd:", 4 ) &&
501                 strncmp( p_current->psz_uri, "v4l:", 4 ) &&
502                 strncmp( p_current->psz_uri, "dshow:", 6 ) )
503             {
504                 b_preparsed = VLC_TRUE;
505                 stats_TimerStart( p_playlist, "Preparse run",
506                                   STATS_TIMER_PREPARSE );
507                 PL_UNLOCK;
508                 input_Preparse( p_playlist, p_current );
509                 PL_LOCK;
510                 stats_TimerStop( p_playlist, STATS_TIMER_PREPARSE );
511             }
512             PL_UNLOCK;
513             if( b_preparsed )
514             {
515                 p_current->p_meta->i_status |= ITEM_PREPARSED;
516                 var_SetInteger( p_playlist, "item-change", p_current->i_id );
517             }
518             PL_LOCK;
519
520             /* If we haven't retrieved enough meta, add to secondary queue
521              * which will run the "meta fetchers".
522              * This only checks for meta, not for art
523              * \todo don't do this for things we won't get meta for, like vids
524              */
525             if( p_current->p_meta &&
526                 !input_MetaSatisfied( p_playlist, p_current, &i_m, &i_o ) )
527             {
528                 preparse_item_t p;
529                 PL_DEBUG("need to fetch meta for %s", p_current->psz_name );
530                 p.p_item = p_current;
531                 p.b_fetch_art = VLC_FALSE;
532                 vlc_mutex_lock( &p_playlist->p_fetcher->object_lock );
533                 INSERT_ELEM( p_playlist->p_fetcher->p_waiting,
534                              p_playlist->p_fetcher->i_waiting,
535                              p_playlist->p_fetcher->i_waiting, p);
536                 vlc_mutex_unlock( &p_playlist->p_fetcher->object_lock );
537                 vlc_cond_signal( &p_playlist->p_fetcher->object_wait );
538             }
539             /* We already have all needed meta, but we need art right now */
540             else if( p_current->p_meta &&
541                      p_playlist->p_fetcher->i_art_policy == ALBUM_ART_ALL &&
542                      EMPTY_STR( p_current->p_meta->psz_arturl ) )
543             {
544                 preparse_item_t p;
545                 PL_DEBUG("meta ok for %s, need to fetch art",
546                                                          p_current->psz_name );
547                 p.p_item = p_current;
548                 p.b_fetch_art = VLC_TRUE;
549                 vlc_mutex_lock( &p_playlist->p_fetcher->object_lock );
550                 INSERT_ELEM( p_playlist->p_fetcher->p_waiting,
551                              p_playlist->p_fetcher->i_waiting,
552                              p_playlist->p_fetcher->i_waiting, p);
553                 vlc_mutex_unlock( &p_playlist->p_fetcher->object_lock );
554                 vlc_cond_signal( &p_playlist->p_fetcher->object_wait );
555             }
556             else
557             {
558                 PL_DEBUG( "no fetch required for %s (art currently %s)",
559                           p_current->psz_name,
560                           p_current->p_meta ? p_current->p_meta->psz_arturl:
561                                               "null" );
562                 vlc_gc_decref( p_current );
563             }
564             PL_UNLOCK;
565         }
566         else
567             PL_UNLOCK;
568
569         vlc_mutex_lock( &p_obj->object_lock );
570         i_activity = var_GetInteger( p_playlist, "activity" );
571         if( i_activity < 0 ) i_activity = 0;
572         vlc_mutex_unlock( &p_obj->object_lock );
573         /* Sleep at least 1ms */
574         msleep( (i_activity+1) * 1000 );
575     }
576 }
577
578 /** Main loop for secondary preparser queue */
579 void playlist_FetcherLoop( playlist_fetcher_t *p_obj )
580 {
581     playlist_t *p_playlist = (playlist_t *)p_obj->p_parent;
582     vlc_bool_t b_fetch_art;
583     input_item_t *p_item;
584     int i_activity;
585
586     while( !p_playlist->b_die )
587     {
588         vlc_mutex_lock( &p_obj->object_lock );
589         while( p_obj->i_waiting == 0 )
590         {
591             vlc_cond_wait( &p_obj->object_wait, &p_obj->object_lock );
592             if( p_playlist->b_die )
593             {
594                 vlc_mutex_unlock( &p_obj->object_lock );
595                 return;
596             }
597         }
598
599         b_fetch_art = p_obj->p_waiting->b_fetch_art;
600         p_item = p_obj->p_waiting->p_item;
601         REMOVE_ELEM( p_obj->p_waiting, p_obj->i_waiting, 0 );
602         vlc_mutex_unlock( &p_obj->object_lock );
603         if( p_item )
604         {
605             assert( p_item->p_meta );
606             if( !b_fetch_art )
607             {
608                 input_MetaFetch( p_playlist, p_item );
609                 p_item->p_meta->i_status |= ITEM_META_FETCHED;
610                 var_SetInteger( p_playlist, "item-change", p_item->i_id );
611                 /*  Fetch right now */
612                 if( p_playlist->p_fetcher->i_art_policy == ALBUM_ART_ALL )
613                 {
614                     vlc_mutex_lock( &p_obj->object_lock );
615                     preparse_item_t p;
616                     p.p_item = p_item;
617                     p.b_fetch_art = VLC_TRUE;
618                     INSERT_ELEM( p_playlist->p_fetcher->p_waiting,
619                                  p_playlist->p_fetcher->i_waiting,
620                                  0, p );
621                     PL_DEBUG("meta fetched for %s, get art", p_item->psz_name);
622                     vlc_mutex_unlock( &p_obj->object_lock );
623                     continue;
624                 }
625                 else
626                     vlc_gc_decref( p_item );
627             }
628             else
629             {
630                 int i_ret = input_ArtFind( p_playlist, p_item );
631                 if( i_ret == 1 )
632                 {
633                     PL_DEBUG("downloading art for %s", p_item->psz_name );
634                     if( input_DownloadAndCacheArt( p_playlist, p_item ) )
635                         p_item->p_meta->i_status |= ITEM_ART_NOTFOUND;
636                     else {
637                         p_item->p_meta->i_status |= ITEM_ART_FETCHED;
638                         var_SetInteger( p_playlist, "item-change",
639                                         p_item->i_id );
640                     }
641                 }
642                 else if( i_ret == 0 ) /* Was in cache */
643                 {
644                     PL_DEBUG("found art for %s in cache", p_item->psz_name );
645                     p_item->p_meta->i_status |= ITEM_ART_FETCHED;
646                     var_SetInteger( p_playlist, "item-change", p_item->i_id );
647                 }
648                 else
649                 {
650                     PL_DEBUG("art not found for %s", p_item->psz_name );
651                     p_item->p_meta->i_status |= ITEM_ART_NOTFOUND;
652                 }
653                 vlc_gc_decref( p_item );
654            }
655         }
656         vlc_mutex_lock( &p_obj->object_lock );
657         i_activity = var_GetInteger( p_playlist, "activity" );
658         if( i_activity < 0 ) i_activity = 0;
659         vlc_mutex_unlock( &p_obj->object_lock );
660         /* Sleep at least 1ms */
661         msleep( (i_activity+1) * 1000 );
662     }
663 }
664
665 static void VariablesInit( playlist_t *p_playlist )
666 {
667     vlc_value_t val;
668     /* These variables control updates */
669     var_Create( p_playlist, "intf-change", VLC_VAR_BOOL );
670     val.b_bool = VLC_TRUE;
671     var_Set( p_playlist, "intf-change", val );
672
673     var_Create( p_playlist, "item-change", VLC_VAR_INTEGER );
674     val.i_int = -1;
675     var_Set( p_playlist, "item-change", val );
676
677     var_Create( p_playlist, "item-deleted", VLC_VAR_INTEGER );
678     val.i_int = -1;
679     var_Set( p_playlist, "item-deleted", val );
680
681     var_Create( p_playlist, "item-append", VLC_VAR_ADDRESS );
682
683     var_Create( p_playlist, "playlist-current", VLC_VAR_INTEGER );
684     val.i_int = -1;
685     var_Set( p_playlist, "playlist-current", val );
686
687     var_Create( p_playlist, "intf-popupmenu", VLC_VAR_BOOL );
688
689     var_Create( p_playlist, "intf-show", VLC_VAR_BOOL );
690     val.b_bool = VLC_TRUE;
691     var_Set( p_playlist, "intf-show", val );
692
693     var_Create( p_playlist, "activity", VLC_VAR_INTEGER );
694     var_SetInteger( p_playlist, "activity", 0 );
695
696     /* Variables to control playback */
697     var_CreateGetBool( p_playlist, "play-and-stop" );
698     var_CreateGetBool( p_playlist, "play-and-exit" );
699     var_CreateGetBool( p_playlist, "random" );
700     var_CreateGetBool( p_playlist, "repeat" );
701     var_CreateGetBool( p_playlist, "loop" );
702
703     var_AddCallback( p_playlist, "random", RandomCallback, NULL );
704 }