]> git.sesse.net Git - vlc/blob - src/input/vlm.c
Activated vout/aout recycling with playlist inputs.
[vlc] / src / input / vlm.c
1 /*****************************************************************************
2  * vlm.c: VLM interface plugin
3  *****************************************************************************
4  * Copyright (C) 2000-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Simon Latapie <garf@videolan.org>
8  *          Laurent Aimar <fenrir@videolan.org>
9  *          Gildas Bazin <gbazin@videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34
35 #include <stdio.h>
36 #include <ctype.h>                                              /* tolower() */
37 #include <assert.h>
38
39 #include <vlc_vlm.h>
40
41 #ifndef WIN32
42 #   include <sys/time.h>                                   /* gettimeofday() */
43 #endif
44
45 #ifdef HAVE_TIME_H
46 #   include <time.h>                                              /* ctime() */
47 #   include <sys/timeb.h>                                         /* ftime() */
48 #endif
49
50 #include <vlc_input.h>
51 #include "input_internal.h"
52 #include <vlc_stream.h>
53 #include "vlm_internal.h"
54 #include <vlc_vod.h>
55 #include <vlc_charset.h>
56 #include <vlc_sout.h>
57 #include "../stream_output/stream_output.h"
58 #include "../libvlc.h"
59
60 /*****************************************************************************
61  * Local prototypes.
62  *****************************************************************************/
63
64 static void vlm_Destructor( vlm_t *p_vlm );
65 static void* Manage( void * );
66 static int vlm_MediaVodControl( void *, vod_media_t *, const char *, int, va_list );
67
68 /*****************************************************************************
69  * vlm_New:
70  *****************************************************************************/
71 vlm_t *__vlm_New ( vlc_object_t *p_this )
72 {
73     vlc_value_t lockval;
74     vlm_t *p_vlm = NULL, **pp_vlm = &(libvlc_priv (p_this->p_libvlc)->p_vlm);
75     char *psz_vlmconf;
76     static const char vlm_object_name[] = "vlm daemon";
77
78     /* Avoid multiple creation */
79     if( var_Create( p_this->p_libvlc, "vlm_mutex", VLC_VAR_MUTEX ) ||
80         var_Get( p_this->p_libvlc, "vlm_mutex", &lockval ) )
81         return NULL;
82
83     vlc_mutex_lock( lockval.p_address );
84
85     p_vlm = *pp_vlm;
86     if( p_vlm )
87     {   /* VLM already exists */
88         vlc_object_hold( p_vlm );
89         vlc_mutex_unlock( lockval.p_address );
90         return p_vlm;
91     }
92
93     msg_Dbg( p_this, "creating VLM" );
94
95     p_vlm = vlc_custom_create( p_this, sizeof( *p_vlm ), VLC_OBJECT_GENERIC,
96                                vlm_object_name );
97     if( !p_vlm )
98     {
99         vlc_mutex_unlock( lockval.p_address );
100         return NULL;
101     }
102
103     vlc_mutex_init( &p_vlm->lock );
104     p_vlm->i_id = 1;
105     TAB_INIT( p_vlm->i_media, p_vlm->media );
106     TAB_INIT( p_vlm->i_schedule, p_vlm->schedule );
107     p_vlm->i_vod = 0;
108     p_vlm->p_vod = NULL;
109     vlc_object_attach( p_vlm, p_this->p_libvlc );
110
111     if( vlc_clone( &p_vlm->thread, Manage, p_vlm, VLC_THREAD_PRIORITY_LOW ) )
112     {
113         vlc_mutex_destroy( &p_vlm->lock );
114         vlc_object_release( p_vlm );
115         return NULL;
116     }
117
118     /* Load our configuration file */
119     psz_vlmconf = var_CreateGetString( p_vlm, "vlm-conf" );
120     if( psz_vlmconf && *psz_vlmconf )
121     {
122         vlm_message_t *p_message = NULL;
123         char *psz_buffer = NULL;
124
125         msg_Dbg( p_this, "loading VLM configuration" );
126         if( asprintf(&psz_buffer, "load %s", psz_vlmconf ) != -1 )
127         {
128             msg_Dbg( p_this, "%s", psz_buffer );
129             if( vlm_ExecuteCommand( p_vlm, psz_buffer, &p_message ) )
130                 msg_Warn( p_this, "error while loading the configuration file" );
131
132             vlm_MessageDelete( p_message );
133             free( psz_buffer );
134         }
135     }
136     free( psz_vlmconf );
137
138     vlc_object_set_destructor( p_vlm, (vlc_destructor_t)vlm_Destructor );
139     *pp_vlm = p_vlm; /* for future reference */
140     vlc_mutex_unlock( lockval.p_address );
141
142     return p_vlm;
143 }
144
145 /*****************************************************************************
146  * vlm_Delete:
147  *****************************************************************************/
148 void vlm_Delete( vlm_t *p_vlm )
149 {
150     vlc_value_t lockval;
151
152     /* vlm_Delete() is serialized against itself, and against vlm_New().
153      * This way, vlm_Destructor () (called from vlc_objet_release() above)
154      * is serialized against setting libvlc_priv->p_vlm from vlm_New(). */
155     var_Get( p_vlm->p_libvlc, "vlm_mutex", &lockval );
156     vlc_mutex_lock( lockval.p_address );
157     vlc_object_release( p_vlm );
158     vlc_mutex_unlock( lockval.p_address );
159 }
160
161 /*****************************************************************************
162  * vlm_Destructor:
163  *****************************************************************************/
164 static void vlm_Destructor( vlm_t *p_vlm )
165 {
166     libvlc_priv (p_vlm->p_libvlc)->p_vlm = NULL;
167
168     vlm_ControlInternal( p_vlm, VLM_CLEAR_MEDIAS );
169     TAB_CLEAN( p_vlm->i_media, p_vlm->media );
170
171     vlm_ControlInternal( p_vlm, VLM_CLEAR_SCHEDULES );
172     TAB_CLEAN( p_vlm->schedule, p_vlm->schedule );
173
174     vlc_object_kill( p_vlm );
175     /*vlc_cancel( p_vlm->thread ); */
176     vlc_join( p_vlm->thread, NULL );
177     vlc_mutex_destroy( &p_vlm->lock );
178 }
179
180 /*****************************************************************************
181  * vlm_ExecuteCommand:
182  *****************************************************************************/
183 int vlm_ExecuteCommand( vlm_t *p_vlm, const char *psz_command,
184                         vlm_message_t **pp_message)
185 {
186     int i_result;
187
188     vlc_mutex_lock( &p_vlm->lock );
189     i_result = ExecuteCommand( p_vlm, psz_command, pp_message );
190     vlc_mutex_unlock( &p_vlm->lock );
191
192     return i_result;
193 }
194
195
196 int64_t vlm_Date(void)
197 {
198 #if defined (WIN32) && !defined (UNDER_CE)
199     struct timeb tm;
200     ftime( &tm );
201     return ((int64_t)tm.time) * 1000000 + ((int64_t)tm.millitm) * 1000;
202 #else
203     struct timeval tv_date;
204
205     /* gettimeofday() cannot fail given &tv_date is a valid address */
206     (void)gettimeofday( &tv_date, NULL );
207     return (mtime_t) tv_date.tv_sec * 1000000 + (mtime_t) tv_date.tv_usec;
208 #endif
209 }
210
211
212 /*****************************************************************************
213  *
214  *****************************************************************************/
215 static int vlm_MediaVodControl( void *p_private, vod_media_t *p_vod_media,
216                                 const char *psz_id, int i_query, va_list args )
217 {
218     vlm_t *vlm = (vlm_t *)p_private;
219     int i, i_ret;
220     const char *psz;
221     int64_t id;
222
223     if( !p_private || !p_vod_media )
224         return VLC_EGENERIC;
225
226     vlc_mutex_lock( &vlm->lock );
227
228     /* Find media id */
229     for( i = 0, id = -1; i < vlm->i_media; i++ )
230     {
231         if( p_vod_media == vlm->media[i]->vod.p_media )
232         {
233             id = vlm->media[i]->cfg.id;
234             break;
235         }
236     }
237     if( id == -1 )
238     {
239         vlc_mutex_unlock( &vlm->lock );
240         return VLC_EGENERIC;
241     }
242
243     switch( i_query )
244     {
245     case VOD_MEDIA_PLAY:
246         psz = (const char *)va_arg( args, const char * );
247         i_ret = vlm_ControlInternal( vlm, VLM_START_MEDIA_VOD_INSTANCE, id, psz_id, 0, psz );
248         break;
249
250     case VOD_MEDIA_PAUSE:
251         i_ret = vlm_ControlInternal( vlm, VLM_PAUSE_MEDIA_INSTANCE, id, psz_id );
252         break;
253
254     case VOD_MEDIA_STOP:
255         i_ret = vlm_ControlInternal( vlm, VLM_STOP_MEDIA_INSTANCE, id, psz_id );
256         break;
257
258     case VOD_MEDIA_SEEK:
259     {
260         double d_position = (double)va_arg( args, double );
261         i_ret = vlm_ControlInternal( vlm, VLM_SET_MEDIA_INSTANCE_POSITION, id, psz_id, d_position/100.0 );
262         break;
263     }
264
265     case VOD_MEDIA_REWIND:
266     {
267         double d_scale = (double)va_arg( args, double );
268         double d_position;
269
270         vlm_ControlInternal( vlm, VLM_GET_MEDIA_INSTANCE_POSITION, id, psz_id, &d_position );
271         d_position -= (d_scale / 1000.0);
272         if( d_position < 0.0 )
273             d_position = 0.0;
274         i_ret = vlm_ControlInternal( vlm, VLM_SET_MEDIA_INSTANCE_POSITION, id, psz_id, d_position );
275         break;
276     }
277
278     case VOD_MEDIA_FORWARD:
279     {
280         double d_scale = (double)va_arg( args, double );
281         double d_position;
282
283         vlm_ControlInternal( vlm, VLM_GET_MEDIA_INSTANCE_POSITION, id, psz_id, &d_position );
284         d_position += (d_scale / 1000.0);
285         if( d_position > 1.0 )
286             d_position = 1.0;
287         i_ret = vlm_ControlInternal( vlm, VLM_SET_MEDIA_INSTANCE_POSITION, id, psz_id, d_position );
288         break;
289     }
290
291     default:
292         i_ret = VLC_EGENERIC;
293         break;
294     }
295
296     vlc_mutex_unlock( &vlm->lock );
297
298     return i_ret;
299 }
300
301
302 /*****************************************************************************
303  * Manage:
304  *****************************************************************************/
305 static void* Manage( void* p_object )
306 {
307     vlm_t *vlm = (vlm_t*)p_object;
308     int i, j;
309     mtime_t i_lastcheck;
310     mtime_t i_time;
311
312     int canc = vlc_savecancel ();
313     i_lastcheck = vlm_Date();
314
315     while( !vlm->b_die )
316     {
317         char **ppsz_scheduled_commands = NULL;
318         int    i_scheduled_commands = 0;
319
320         vlc_mutex_lock( &vlm->lock );
321
322         /* destroy the inputs that wants to die, and launch the next input */
323         for( i = 0; i < vlm->i_media; i++ )
324         {
325             vlm_media_sys_t *p_media = vlm->media[i];
326
327             for( j = 0; j < p_media->i_instance; )
328             {
329                 vlm_media_instance_sys_t *p_instance = p_media->instance[j];
330
331                 if( p_instance->p_input && ( p_instance->p_input->b_eof || p_instance->p_input->b_error ) )
332                 {
333                     int i_new_input_index;
334
335                     /* */
336                     i_new_input_index = p_instance->i_index + 1;
337                     if( !p_media->cfg.b_vod && p_media->cfg.broadcast.b_loop && i_new_input_index >= p_media->cfg.i_input )
338                         i_new_input_index = 0;
339
340                     /* FIXME implement multiple input with VOD */
341                     if( p_media->cfg.b_vod || i_new_input_index >= p_media->cfg.i_input )
342                         vlm_ControlInternal( vlm, VLM_STOP_MEDIA_INSTANCE, p_media->cfg.id, p_instance->psz_name );
343                     else
344                         vlm_ControlInternal( vlm, VLM_START_MEDIA_BROADCAST_INSTANCE, p_media->cfg.id, p_instance->psz_name, i_new_input_index );
345
346                     j = 0;
347                 }
348                 else
349                 {
350                     j++;
351                 }
352             }
353         }
354
355         /* scheduling */
356         i_time = vlm_Date();
357
358         for( i = 0; i < vlm->i_schedule; i++ )
359         {
360             mtime_t i_real_date = vlm->schedule[i]->i_date;
361
362             if( vlm->schedule[i]->b_enabled == true )
363             {
364                 if( vlm->schedule[i]->i_date == 0 ) // now !
365                 {
366                     vlm->schedule[i]->i_date = (i_time / 1000000) * 1000000 ;
367                     i_real_date = i_time;
368                 }
369                 else if( vlm->schedule[i]->i_period != 0 )
370                 {
371                     int j = 0;
372                     while( vlm->schedule[i]->i_date + j *
373                            vlm->schedule[i]->i_period <= i_lastcheck &&
374                            ( vlm->schedule[i]->i_repeat > j ||
375                              vlm->schedule[i]->i_repeat == -1 ) )
376                     {
377                         j++;
378                     }
379
380                     i_real_date = vlm->schedule[i]->i_date + j *
381                         vlm->schedule[i]->i_period;
382                 }
383
384                 if( i_real_date <= i_time && i_real_date > i_lastcheck )
385                 {
386                     for( j = 0; j < vlm->schedule[i]->i_command; j++ )
387                     {
388                         TAB_APPEND( i_scheduled_commands,
389                                     ppsz_scheduled_commands,
390                                     strdup(vlm->schedule[i]->command[j] ) );
391                     }
392                 }
393             }
394         }
395         while( i_scheduled_commands )
396         {
397             vlm_message_t *message = NULL;
398             char *psz_command = ppsz_scheduled_commands[0];
399             ExecuteCommand( vlm, psz_command,&message );
400
401             /* for now, drop the message */
402             vlm_MessageDelete( message );
403             TAB_REMOVE( i_scheduled_commands,
404                         ppsz_scheduled_commands,
405                         psz_command );
406             free( psz_command );
407         }
408
409         i_lastcheck = i_time;
410
411         vlc_mutex_unlock( &vlm->lock );
412
413         msleep( 100000 );
414     }
415
416     vlc_restorecancel (canc);
417     return NULL;
418 }
419
420 /* New API
421  */
422 /*
423 typedef struct
424 {
425     struct
426     {
427         int i_connection_count;
428         int i_connection_active;
429     } vod;
430     struct
431     {
432         int        i_count;
433         bool b_playing;
434         int        i_playing_index;
435     } broadcast;
436
437 } vlm_media_status_t;
438 */
439
440 /* */
441 static vlm_media_sys_t *vlm_ControlMediaGetById( vlm_t *p_vlm, int64_t id )
442 {
443     int i;
444
445     for( i = 0; i < p_vlm->i_media; i++ )
446     {
447         if( p_vlm->media[i]->cfg.id == id )
448             return p_vlm->media[i];
449     }
450     return NULL;
451 }
452 static vlm_media_sys_t *vlm_ControlMediaGetByName( vlm_t *p_vlm, const char *psz_name )
453 {
454     int i;
455
456     for( i = 0; i < p_vlm->i_media; i++ )
457     {
458         if( !strcmp( p_vlm->media[i]->cfg.psz_name, psz_name ) )
459             return p_vlm->media[i];
460     }
461     return NULL;
462 }
463 static int vlm_MediaDescriptionCheck( vlm_t *p_vlm, vlm_media_t *p_cfg )
464 {
465     int i;
466
467     if( !p_cfg || !p_cfg->psz_name ||
468         !strcmp( p_cfg->psz_name, "all" ) || !strcmp( p_cfg->psz_name, "media" ) || !strcmp( p_cfg->psz_name, "schedule" ) )
469         return VLC_EGENERIC;
470
471     for( i = 0; i < p_vlm->i_media; i++ )
472     {
473         if( p_vlm->media[i]->cfg.id == p_cfg->id )
474             continue;
475         if( !strcmp( p_vlm->media[i]->cfg.psz_name, p_cfg->psz_name ) )
476             return VLC_EGENERIC;
477     }
478     return VLC_SUCCESS;
479 }
480
481
482 /* Called after a media description is changed/added */
483 static int vlm_OnMediaUpdate( vlm_t *p_vlm, vlm_media_sys_t *p_media )
484 {
485     vlm_media_t *p_cfg = &p_media->cfg;
486     /* Check if we need to create/delete a vod media */
487     if( p_cfg->b_vod )
488     {
489         if( !p_cfg->b_enabled && p_media->vod.p_media )
490         {
491             p_vlm->p_vod->pf_media_del( p_vlm->p_vod, p_media->vod.p_media );
492             p_media->vod.p_media = NULL;
493         }
494         else if( p_cfg->b_enabled && !p_media->vod.p_media && p_cfg->i_input )
495         {
496             /* Pre-parse the input */
497             input_thread_t *p_input;
498             char *psz_output;
499             char *psz_header;
500             char *psz_dup;
501             int i;
502
503             vlc_gc_decref( p_media->vod.p_item );
504             p_media->vod.p_item = input_item_New( p_vlm, p_cfg->ppsz_input[0],
505                 p_cfg->psz_name );
506
507             if( p_cfg->psz_output )
508             {
509                 if( asprintf( &psz_output, "%s:description", p_cfg->psz_output )  == -1 )
510                     psz_output = NULL;
511             }
512             else
513                 psz_output = strdup( "#description" );
514
515             if( psz_output && asprintf( &psz_dup, "sout=%s", psz_output ) != -1 )
516             {
517                 input_item_AddOption( p_media->vod.p_item, psz_dup );
518                 free( psz_dup );
519             }
520             free( psz_output );
521
522             for( i = 0; i < p_cfg->i_option; i++ )
523                 input_item_AddOption( p_media->vod.p_item,
524                                       p_cfg->ppsz_option[i] );
525
526             if( asprintf( &psz_header, _("Media: %s"), p_cfg->psz_name ) == -1 )
527                 psz_header = NULL;
528
529             if( (p_input = input_CreateThreadExtended( p_vlm, p_media->vod.p_item, psz_header, NULL ) ) )
530             {
531                 while( !p_input->b_eof && !p_input->b_error )
532                     msleep( 100000 );
533
534                 input_StopThread( p_input );
535                 vlc_thread_join( p_input );
536                 vlc_object_release( p_input );
537             }
538             free( psz_header );
539
540             if( p_cfg->vod.psz_mux )
541             {
542                 input_item_t item;
543                 es_format_t es, *p_es = &es;
544                 char fourcc[5];
545
546                 sprintf( fourcc, "%4.4s", p_cfg->vod.psz_mux );
547                 fourcc[0] = tolower(fourcc[0]); fourcc[1] = tolower(fourcc[1]);
548                 fourcc[2] = tolower(fourcc[2]); fourcc[3] = tolower(fourcc[3]);
549
550                 /* XXX: Don't do it that way, but properly use a new input item ref. */
551                 item = *p_media->vod.p_item;
552                 item.i_es = 1;
553                 item.es = &p_es;
554                 es_format_Init( &es, VIDEO_ES, *((int *)fourcc) );
555
556                 p_media->vod.p_media =
557                     p_vlm->p_vod->pf_media_new( p_vlm->p_vod, p_cfg->psz_name, &item );
558             }
559             else
560             {
561                 p_media->vod.p_media =
562                     p_vlm->p_vod->pf_media_new( p_vlm->p_vod, p_cfg->psz_name, p_media->vod.p_item );
563             }
564         }
565     }
566     else
567     {
568         /* TODO start media if needed */
569     }
570
571     /* TODO add support of var vlm_media_broadcast/vlm_media_vod */
572
573     return VLC_SUCCESS;
574 }
575 static int vlm_ControlMediaChange( vlm_t *p_vlm, vlm_media_t *p_cfg )
576 {
577     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, p_cfg->id );
578
579     /* */
580     if( !p_media || vlm_MediaDescriptionCheck( p_vlm, p_cfg ) )
581         return VLC_EGENERIC;
582     if( ( p_media->cfg.b_vod && !p_cfg->b_vod ) || ( !p_media->cfg.b_vod && p_cfg->b_vod ) )
583         return VLC_EGENERIC;
584
585     if( 0 )
586     {
587         /* TODO check what are the changes being done (stop instance if needed) */
588     }
589
590     vlm_media_Clean( &p_media->cfg );
591     vlm_media_Copy( &p_media->cfg, p_cfg );
592
593     return vlm_OnMediaUpdate( p_vlm, p_media );
594 }
595
596 static int vlm_ControlMediaAdd( vlm_t *p_vlm, vlm_media_t *p_cfg, int64_t *p_id )
597 {
598     vlm_media_sys_t *p_media;
599
600     if( vlm_MediaDescriptionCheck( p_vlm, p_cfg ) || vlm_ControlMediaGetByName( p_vlm, p_cfg->psz_name ) )
601     {
602         msg_Err( p_vlm, "invalid media description" );
603         return VLC_EGENERIC;
604     }
605     /* Check if we need to load the VOD server */
606     if( p_cfg->b_vod && !p_vlm->i_vod )
607     {
608         p_vlm->p_vod = vlc_custom_create( VLC_OBJECT(p_vlm), sizeof( vod_t ),
609                                           VLC_OBJECT_GENERIC, "vod server" );
610         vlc_object_attach( p_vlm->p_vod, p_vlm );
611         p_vlm->p_vod->p_module = module_need( p_vlm->p_vod, "vod server", NULL, false );
612         if( !p_vlm->p_vod->p_module )
613         {
614             msg_Err( p_vlm, "cannot find vod server" );
615             vlc_object_detach( p_vlm->p_vod );
616             vlc_object_release( p_vlm->p_vod );
617             p_vlm->p_vod = NULL;
618             return VLC_EGENERIC;
619         }
620
621         p_vlm->p_vod->p_data = p_vlm;
622         p_vlm->p_vod->pf_media_control = vlm_MediaVodControl;
623     }
624
625     p_media = calloc( 1, sizeof( vlm_media_sys_t ) );
626     if( !p_media )
627         return VLC_ENOMEM;
628
629     if( p_cfg->b_vod )
630         p_vlm->i_vod++;
631
632     vlm_media_Copy( &p_media->cfg, p_cfg );
633     p_media->cfg.id = p_vlm->i_id++;
634     /* FIXME do we do something here if enabled is true ? */
635
636     p_media->vod.p_item = input_item_New( p_vlm, NULL, NULL );
637
638     p_media->vod.p_media = NULL;
639     TAB_INIT( p_media->i_instance, p_media->instance );
640
641     /* */
642     TAB_APPEND( p_vlm->i_media, p_vlm->media, p_media );
643
644     if( p_id )
645         *p_id = p_media->cfg.id;
646
647     return vlm_OnMediaUpdate( p_vlm, p_media );
648 }
649
650 static int vlm_ControlMediaDel( vlm_t *p_vlm, int64_t id )
651 {
652     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
653
654     if( !p_media )
655         return VLC_EGENERIC;
656
657     while( p_media->i_instance > 0 )
658         vlm_ControlInternal( p_vlm, VLM_STOP_MEDIA_INSTANCE, id, p_media->instance[0]->psz_name );
659
660     if( p_media->cfg.b_vod )
661     {
662         p_media->cfg.b_enabled = false;
663         vlm_OnMediaUpdate( p_vlm, p_media );
664         p_vlm->i_vod--;
665     }
666
667     vlm_media_Clean( &p_media->cfg );
668
669     vlc_gc_decref( p_media->vod.p_item );
670
671     TAB_REMOVE( p_vlm->i_media, p_vlm->media, p_media );
672
673     free( p_media );
674
675     /* Check if we need to unload the VOD server */
676     if( p_vlm->p_vod && p_vlm->i_vod <= 0 )
677     {
678         module_unneed( p_vlm->p_vod, p_vlm->p_vod->p_module );
679         vlc_object_detach( p_vlm->p_vod );
680         vlc_object_release( p_vlm->p_vod );
681         p_vlm->p_vod = NULL;
682     }
683     return VLC_SUCCESS;
684 }
685
686 static int vlm_ControlMediaGets( vlm_t *p_vlm, vlm_media_t ***ppp_dsc, int *pi_dsc )
687 {
688     vlm_media_t **pp_dsc;
689     int                     i_dsc;
690     int i;
691
692     TAB_INIT( i_dsc, pp_dsc );
693     for( i = 0; i < p_vlm->i_media; i++ )
694     {
695         vlm_media_t *p_dsc = vlm_media_Duplicate( &p_vlm->media[i]->cfg );
696         TAB_APPEND( i_dsc, pp_dsc, p_dsc );
697     }
698
699     *ppp_dsc = pp_dsc;
700     *pi_dsc = i_dsc;
701
702     return VLC_SUCCESS;
703 }
704 static int vlm_ControlMediaClear( vlm_t *p_vlm )
705 {
706     while( p_vlm->i_media > 0 )
707         vlm_ControlMediaDel( p_vlm, p_vlm->media[0]->cfg.id );
708
709     return VLC_SUCCESS;
710 }
711 static int vlm_ControlMediaGet( vlm_t *p_vlm, int64_t id, vlm_media_t **pp_dsc )
712 {
713     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
714     if( !p_media )
715         return VLC_EGENERIC;
716
717     *pp_dsc = vlm_media_Duplicate( &p_media->cfg );
718     return VLC_SUCCESS;
719 }
720 static int vlm_ControlMediaGetId( vlm_t *p_vlm, const char *psz_name, int64_t *p_id )
721 {
722     vlm_media_sys_t *p_media = vlm_ControlMediaGetByName( p_vlm, psz_name );
723     if( !p_media )
724         return VLC_EGENERIC;
725
726     *p_id = p_media->cfg.id;
727     return VLC_SUCCESS;
728 }
729
730 static vlm_media_instance_sys_t *vlm_ControlMediaInstanceGetByName( vlm_media_sys_t *p_media, const char *psz_id )
731 {
732     int i;
733
734     for( i = 0; i < p_media->i_instance; i++ )
735     {
736         const char *psz = p_media->instance[i]->psz_name;
737         if( ( psz == NULL && psz_id == NULL ) ||
738             ( psz && psz_id && !strcmp( psz, psz_id ) ) )
739             return p_media->instance[i];
740     }
741     return NULL;
742 }
743 static vlm_media_instance_sys_t *vlm_MediaInstanceNew( vlm_t *p_vlm, const char *psz_name )
744 {
745     vlm_media_instance_sys_t *p_instance = calloc( 1, sizeof(vlm_media_instance_sys_t) );
746     if( !p_instance )
747         return NULL;
748
749     p_instance->psz_name = NULL;
750     if( psz_name )
751         p_instance->psz_name = strdup( psz_name );
752
753     p_instance->p_item = input_item_New( p_vlm, NULL, NULL );
754
755     p_instance->i_index = 0;
756     p_instance->b_sout_keep = false;
757     p_instance->p_input = NULL;
758     p_instance->p_input_ressource = NULL;
759
760     return p_instance;
761 }
762 static void vlm_MediaInstanceDelete( vlm_media_instance_sys_t *p_instance )
763 {
764     input_thread_t *p_input = p_instance->p_input;
765     if( p_input )
766     {
767         input_ressource_t *p_ressource;
768
769         input_StopThread( p_input );
770         vlc_thread_join( p_input );
771
772         p_ressource = input_DetachRessource( p_input );
773         input_ressource_Delete( p_ressource );
774
775         vlc_object_release( p_input );
776     }
777     if( p_instance->p_input_ressource )
778         input_ressource_Delete( p_instance->p_input_ressource );
779
780     vlc_gc_decref( p_instance->p_item );
781     free( p_instance->psz_name );
782     free( p_instance );
783 }
784
785
786 static int vlm_ControlMediaInstanceStart( vlm_t *p_vlm, int64_t id, const char *psz_id, int i_input_index, const char *psz_vod_output )
787 {
788     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
789     vlm_media_instance_sys_t *p_instance;
790     char *psz_log;
791
792     if( !p_media || !p_media->cfg.b_enabled || p_media->cfg.i_input <= 0 )
793         return VLC_EGENERIC;
794
795     /* TODO support multiple input for VOD with sout-keep ? */
796
797     if( ( p_media->cfg.b_vod && !psz_vod_output ) || ( !p_media->cfg.b_vod && psz_vod_output ) )
798         return VLC_EGENERIC;
799
800     if( i_input_index < 0 || i_input_index >= p_media->cfg.i_input )
801         return VLC_EGENERIC;
802
803     p_instance = vlm_ControlMediaInstanceGetByName( p_media, psz_id );
804     if( !p_instance )
805     {
806         vlm_media_t *p_cfg = &p_media->cfg;
807         int i;
808
809         p_instance = vlm_MediaInstanceNew( p_vlm, psz_id );
810         if( !p_instance )
811             return VLC_ENOMEM;
812
813         if( p_cfg->psz_output != NULL || psz_vod_output != NULL )
814         {
815             char *psz_buffer;
816             if( asprintf( &psz_buffer, "sout=%s%s%s",
817                       p_cfg->psz_output ? p_cfg->psz_output : "",
818                       (p_cfg->psz_output && psz_vod_output) ? ":" : psz_vod_output ? "#" : "",
819                       psz_vod_output ? psz_vod_output : "" ) != -1 )
820             {
821                 input_item_AddOption( p_instance->p_item, psz_buffer );
822                 free( psz_buffer );
823             }
824         }
825
826         for( i = 0; i < p_cfg->i_option; i++ )
827         {
828             if( !strcmp( p_cfg->ppsz_option[i], "sout-keep" ) )
829                 p_instance->b_sout_keep = true;
830             else if( !strcmp( p_cfg->ppsz_option[i], "nosout-keep" ) || !strcmp( p_cfg->ppsz_option[i], "no-sout-keep" ) )
831                 p_instance->b_sout_keep = false;
832             else
833                 input_item_AddOption( p_instance->p_item, p_cfg->ppsz_option[i] );
834         }
835         TAB_APPEND( p_media->i_instance, p_media->instance, p_instance );
836     }
837
838     /* Stop old instance */
839     input_thread_t *p_input = p_instance->p_input;
840     if( p_input )
841     {
842         if( p_instance->i_index == i_input_index &&
843             !p_input->b_eof && !p_input->b_error )
844         {
845             if( var_GetInteger( p_input, "state" ) == PAUSE_S )
846                 var_SetInteger( p_input, "state",  PLAYING_S );
847             return VLC_SUCCESS;
848         }
849
850         input_StopThread( p_input );
851         vlc_thread_join( p_input );
852
853         p_instance->p_input_ressource = input_DetachRessource( p_input );
854
855         vlc_object_release( p_input );
856
857         if( !p_instance->b_sout_keep )
858             input_ressource_TerminateSout( p_instance->p_input_ressource );
859         input_ressource_TerminateVout( p_instance->p_input_ressource );
860     }
861
862     /* Start new one */
863     p_instance->i_index = i_input_index;
864     input_item_SetURI( p_instance->p_item, p_media->cfg.ppsz_input[p_instance->i_index] ) ;
865
866     if( asprintf( &psz_log, _("Media: %s"), p_media->cfg.psz_name ) != -1 )
867     {
868         p_instance->p_input = input_CreateThreadExtended( p_vlm, p_instance->p_item,
869                                                           psz_log, p_instance->p_input_ressource );
870         p_instance->p_input_ressource = NULL;
871
872         if( !p_instance->p_input )
873         {
874             TAB_REMOVE( p_media->i_instance, p_media->instance, p_instance );
875             vlm_MediaInstanceDelete( p_instance );
876         }
877         free( psz_log );
878     }
879
880     return VLC_SUCCESS;
881 }
882
883 static int vlm_ControlMediaInstanceStop( vlm_t *p_vlm, int64_t id, const char *psz_id )
884 {
885     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
886     vlm_media_instance_sys_t *p_instance;
887
888     if( !p_media )
889         return VLC_EGENERIC;
890
891     p_instance = vlm_ControlMediaInstanceGetByName( p_media, psz_id );
892     if( !p_instance )
893         return VLC_EGENERIC;
894
895     TAB_REMOVE( p_media->i_instance, p_media->instance, p_instance );
896
897     vlm_MediaInstanceDelete( p_instance );
898
899     return VLC_SUCCESS;
900 }
901 static int vlm_ControlMediaInstancePause( vlm_t *p_vlm, int64_t id, const char *psz_id )
902 {
903     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
904     vlm_media_instance_sys_t *p_instance;
905     int i_state;
906
907     if( !p_media )
908         return VLC_EGENERIC;
909
910     p_instance = vlm_ControlMediaInstanceGetByName( p_media, psz_id );
911     if( !p_instance || !p_instance->p_input )
912         return VLC_EGENERIC;
913
914     /* Toggle pause state */
915     i_state = var_GetInteger( p_instance->p_input, "state" );
916     if( i_state == PAUSE_S )
917         var_SetInteger( p_instance->p_input, "state", PLAYING_S );
918     else if( i_state == PLAYING_S )
919         var_SetInteger( p_instance->p_input, "state", PAUSE_S );
920     return VLC_SUCCESS;
921 }
922 static int vlm_ControlMediaInstanceGetTimePosition( vlm_t *p_vlm, int64_t id, const char *psz_id, int64_t *pi_time, double *pd_position )
923 {
924     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
925     vlm_media_instance_sys_t *p_instance;
926
927     if( !p_media )
928         return VLC_EGENERIC;
929
930     p_instance = vlm_ControlMediaInstanceGetByName( p_media, psz_id );
931     if( !p_instance || !p_instance->p_input )
932         return VLC_EGENERIC;
933
934     if( pi_time )
935         *pi_time = var_GetTime( p_instance->p_input, "time" );
936     if( pd_position )
937         *pd_position = var_GetFloat( p_instance->p_input, "position" );
938     return VLC_SUCCESS;
939 }
940 static int vlm_ControlMediaInstanceSetTimePosition( vlm_t *p_vlm, int64_t id, const char *psz_id, int64_t i_time, double d_position )
941 {
942     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
943     vlm_media_instance_sys_t *p_instance;
944
945     if( !p_media )
946         return VLC_EGENERIC;
947
948     p_instance = vlm_ControlMediaInstanceGetByName( p_media, psz_id );
949     if( !p_instance || !p_instance->p_input )
950         return VLC_EGENERIC;
951
952     if( i_time >= 0 )
953         return var_SetTime( p_instance->p_input, "time", i_time );
954     else if( d_position >= 0 && d_position <= 100 )
955         return var_SetFloat( p_instance->p_input, "position", d_position );
956     return VLC_EGENERIC;
957 }
958
959 static int vlm_ControlMediaInstanceGets( vlm_t *p_vlm, int64_t id, vlm_media_instance_t ***ppp_idsc, int *pi_instance )
960 {
961     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
962     vlm_media_instance_t **pp_idsc;
963     int                              i_idsc;
964     int i;
965
966     if( !p_media )
967         return VLC_EGENERIC;
968
969     TAB_INIT( i_idsc, pp_idsc );
970     for( i = 0; i < p_media->i_instance; i++ )
971     {
972         vlm_media_instance_sys_t *p_instance = p_media->instance[i];
973         vlm_media_instance_t *p_idsc = vlm_media_instance_New();
974
975         if( p_instance->psz_name )
976             p_idsc->psz_name = strdup( p_instance->psz_name );
977         if( p_instance->p_input )
978         {
979             p_idsc->i_time = var_GetTime( p_instance->p_input, "time" );
980             p_idsc->i_length = var_GetTime( p_instance->p_input, "length" );
981             p_idsc->d_position = var_GetFloat( p_instance->p_input, "position" );
982             if( var_GetInteger( p_instance->p_input, "state" ) == PAUSE_S )
983                 p_idsc->b_paused = true;
984             p_idsc->i_rate = var_GetInteger( p_instance->p_input, "rate" );
985         }
986
987         TAB_APPEND( i_idsc, pp_idsc, p_idsc );
988     }
989     *ppp_idsc = pp_idsc;
990     *pi_instance = i_idsc;
991     return VLC_SUCCESS;
992 }
993
994 static int vlm_ControlMediaInstanceClear( vlm_t *p_vlm, int64_t id )
995 {
996     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
997
998     if( !p_media )
999         return VLC_EGENERIC;
1000
1001     while( p_media->i_instance > 0 )
1002         vlm_ControlMediaInstanceStop( p_vlm, id, p_media->instance[0]->psz_name );
1003
1004     return VLC_SUCCESS;
1005 }
1006
1007 static int vlm_ControlScheduleClear( vlm_t *p_vlm )
1008 {
1009     while( p_vlm->i_schedule > 0 )
1010         vlm_ScheduleDelete( p_vlm, p_vlm->schedule[0] );
1011
1012     return VLC_SUCCESS;
1013 }
1014
1015 static int vlm_vaControlInternal( vlm_t *p_vlm, int i_query, va_list args )
1016 {
1017     vlm_media_t *p_dsc;
1018     vlm_media_t **pp_dsc;
1019     vlm_media_t ***ppp_dsc;
1020     vlm_media_instance_t ***ppp_idsc;
1021     const char *psz_id;
1022     const char *psz_vod;
1023     int64_t *p_id;
1024     int64_t id;
1025     int i_int;
1026     int *pi_int;
1027
1028     int64_t *pi_i64;
1029     int64_t i_i64;
1030     double *pd_double;
1031     double d_double;
1032
1033     switch( i_query )
1034     {
1035     /* Media control */
1036     case VLM_GET_MEDIAS:
1037         ppp_dsc = (vlm_media_t ***)va_arg( args, vlm_media_t *** );
1038         pi_int = (int *)va_arg( args, int * );
1039         return vlm_ControlMediaGets( p_vlm, ppp_dsc, pi_int );
1040
1041     case VLM_CLEAR_MEDIAS:
1042         return vlm_ControlMediaClear( p_vlm );
1043
1044     case VLM_CHANGE_MEDIA:
1045         p_dsc = (vlm_media_t*)va_arg( args, vlm_media_t * );
1046         return vlm_ControlMediaChange( p_vlm, p_dsc );
1047
1048     case VLM_ADD_MEDIA:
1049         p_dsc = (vlm_media_t*)va_arg( args, vlm_media_t * );
1050         p_id = (int64_t*)va_arg( args, int64_t * );
1051         return vlm_ControlMediaAdd( p_vlm, p_dsc, p_id );
1052
1053     case VLM_DEL_MEDIA:
1054         id = (int64_t)va_arg( args, int64_t );
1055         return vlm_ControlMediaDel( p_vlm, id );
1056
1057     case VLM_GET_MEDIA:
1058         id = (int64_t)va_arg( args, int64_t );
1059         pp_dsc = (vlm_media_t **)va_arg( args, vlm_media_t ** );
1060         return vlm_ControlMediaGet( p_vlm, id, pp_dsc );
1061
1062     case VLM_GET_MEDIA_ID:
1063         psz_id = (const char*)va_arg( args, const char * );
1064         p_id = (int64_t*)va_arg( args, int64_t * );
1065         return vlm_ControlMediaGetId( p_vlm, psz_id, p_id );
1066
1067
1068     /* Media instance control */
1069     case VLM_GET_MEDIA_INSTANCES:
1070         id = (int64_t)va_arg( args, int64_t );
1071         ppp_idsc = (vlm_media_instance_t ***)va_arg( args, vlm_media_instance_t *** );
1072         pi_int = (int *)va_arg( args, int *);
1073         return vlm_ControlMediaInstanceGets( p_vlm, id, ppp_idsc, pi_int );
1074
1075     case VLM_CLEAR_MEDIA_INSTANCES:
1076         id = (int64_t)va_arg( args, int64_t );
1077         return vlm_ControlMediaInstanceClear( p_vlm, id );
1078
1079
1080     case VLM_START_MEDIA_BROADCAST_INSTANCE:
1081         id = (int64_t)va_arg( args, int64_t );
1082         psz_id = (const char*)va_arg( args, const char* );
1083         i_int = (int)va_arg( args, int );
1084         return vlm_ControlMediaInstanceStart( p_vlm, id, psz_id, i_int, NULL );
1085
1086     case VLM_START_MEDIA_VOD_INSTANCE:
1087         id = (int64_t)va_arg( args, int64_t );
1088         psz_id = (const char*)va_arg( args, const char* );
1089         i_int = (int)va_arg( args, int );
1090         psz_vod = (const char*)va_arg( args, const char* );
1091         if( !psz_vod )
1092             return VLC_EGENERIC;
1093         return vlm_ControlMediaInstanceStart( p_vlm, id, psz_id, i_int, psz_vod );
1094
1095     case VLM_STOP_MEDIA_INSTANCE:
1096         id = (int64_t)va_arg( args, int64_t );
1097         psz_id = (const char*)va_arg( args, const char* );
1098         return vlm_ControlMediaInstanceStop( p_vlm, id, psz_id );
1099
1100     case VLM_PAUSE_MEDIA_INSTANCE:
1101         id = (int64_t)va_arg( args, int64_t );
1102         psz_id = (const char*)va_arg( args, const char* );
1103         return vlm_ControlMediaInstancePause( p_vlm, id, psz_id );
1104
1105     case VLM_GET_MEDIA_INSTANCE_TIME:
1106         id = (int64_t)va_arg( args, int64_t );
1107         psz_id = (const char*)va_arg( args, const char* );
1108         pi_i64 = (int64_t*)va_arg( args, int64_t * );
1109         return vlm_ControlMediaInstanceGetTimePosition( p_vlm, id, psz_id, pi_i64, NULL );
1110     case VLM_GET_MEDIA_INSTANCE_POSITION:
1111         id = (int64_t)va_arg( args, int64_t );
1112         psz_id = (const char*)va_arg( args, const char* );
1113         pd_double = (double*)va_arg( args, double* );
1114         return vlm_ControlMediaInstanceGetTimePosition( p_vlm, id, psz_id, NULL, pd_double );
1115
1116     case VLM_SET_MEDIA_INSTANCE_TIME:
1117         id = (int64_t)va_arg( args, int64_t );
1118         psz_id = (const char*)va_arg( args, const char* );
1119         i_i64 = (int64_t)va_arg( args, int64_t);
1120         return vlm_ControlMediaInstanceSetTimePosition( p_vlm, id, psz_id, i_i64, -1 );
1121     case VLM_SET_MEDIA_INSTANCE_POSITION:
1122         id = (int64_t)va_arg( args, int64_t );
1123         psz_id = (const char*)va_arg( args, const char* );
1124         d_double = (double)va_arg( args, double );
1125         return vlm_ControlMediaInstanceSetTimePosition( p_vlm, id, psz_id, -1, d_double );
1126
1127     case VLM_CLEAR_SCHEDULES:
1128         return vlm_ControlScheduleClear( p_vlm );
1129
1130     default:
1131         msg_Err( p_vlm, "unknown VLM query" );
1132         return VLC_EGENERIC;
1133     }
1134 }
1135
1136 int vlm_ControlInternal( vlm_t *p_vlm, int i_query, ... )
1137 {
1138     va_list args;
1139     int     i_result;
1140
1141     va_start( args, i_query );
1142     i_result = vlm_vaControlInternal( p_vlm, i_query, args );
1143     va_end( args );
1144
1145     return i_result;
1146 }
1147
1148 int vlm_Control( vlm_t *p_vlm, int i_query, ... )
1149 {
1150     va_list args;
1151     int     i_result;
1152
1153     va_start( args, i_query );
1154
1155     vlc_mutex_lock( &p_vlm->lock );
1156     i_result = vlm_vaControlInternal( p_vlm, i_query, args );
1157     vlc_mutex_unlock( &p_vlm->lock );
1158
1159     va_end( args );
1160
1161     return i_result;
1162 }
1163