]> git.sesse.net Git - vlc/blob - src/input/vlm.c
decref the correct value in vlm_ControlMediaDel
[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/vlc.h>
34
35 #include <stdio.h>
36 #include <ctype.h>                                              /* tolower() */
37 #include <assert.h>
38
39 #include <vlc_vlm.h>
40
41 #ifdef ENABLE_VLM
42
43 #ifndef WIN32
44 #   include <sys/time.h>                                   /* gettimeofday() */
45 #endif
46
47 #ifdef HAVE_TIME_H
48 #   include <time.h>                                              /* ctime() */
49 #   include <sys/timeb.h>                                         /* ftime() */
50 #endif
51
52 #include <vlc_input.h>
53 #include "input_internal.h"
54 #include <vlc_stream.h>
55 #include "vlm_internal.h"
56 #include <vlc_vod.h>
57 #include <vlc_charset.h>
58 #include <vlc_sout.h>
59 #include "../stream_output/stream_output.h"
60 #include "../libvlc.h"
61
62 /*****************************************************************************
63  * Local prototypes.
64  *****************************************************************************/
65
66 /* ugly kludge to avoid "null format string" warnings,
67  * even if we handle NULL format string in vlm_MessageNew() */
68 static const char *vlm_NULL = NULL;
69
70 static void vlm_Destructor( vlm_t *p_vlm );
71
72 /* */
73 static int vlm_ControlInternal( vlm_t *, int, ... );
74
75 /* */
76 static vlm_message_t *vlm_Show( vlm_t *, vlm_media_sys_t *, vlm_schedule_sys_t *, const char * );
77
78 static vlm_schedule_sys_t *vlm_ScheduleSearch( vlm_t *, const char * );
79
80 static char *Save( vlm_t * );
81 static int Load( vlm_t *, char * );
82
83 static int ExecuteCommand( vlm_t *, const char *, vlm_message_t ** );
84
85 static int Manage( vlc_object_t * );
86
87 static vlm_schedule_sys_t *vlm_ScheduleNew( vlm_t *vlm, const char *psz_name );
88 static void vlm_ScheduleDelete( vlm_t *vlm, vlm_schedule_sys_t *sched );
89 static int vlm_ScheduleSetup( vlm_schedule_sys_t *schedule, const char *psz_cmd,
90                               const char *psz_value );
91
92 static int vlm_MediaVodControl( void *, vod_media_t *, const char *, int, va_list );
93
94 /* */
95 static vlm_media_sys_t *vlm_MediaSearch( vlm_t *, const char *);
96
97 /*****************************************************************************
98  * vlm_New:
99  *****************************************************************************/
100 vlm_t *__vlm_New ( vlc_object_t *p_this )
101 {
102     vlc_value_t lockval;
103     vlm_t *p_vlm = NULL;
104     char *psz_vlmconf;
105     static const char vlm_object_name[] = "vlm daemon";
106
107     /* Avoid multiple creation */
108     if( var_Create( p_this->p_libvlc, "vlm_mutex", VLC_VAR_MUTEX ) ||
109         var_Get( p_this->p_libvlc, "vlm_mutex", &lockval ) )
110         return NULL;
111
112     vlc_mutex_lock( lockval.p_address );
113
114     p_vlm = vlc_object_find( p_this, VLC_OBJECT_VLM, FIND_ANYWHERE );
115     if( p_vlm )
116     {
117         vlc_object_yield( p_vlm );
118         vlc_mutex_unlock( lockval.p_address );
119         return p_vlm;
120     }
121
122     msg_Dbg( p_this, "creating VLM" );
123
124     p_vlm = vlc_custom_create( p_this, sizeof( *p_vlm ), VLC_OBJECT_VLM,
125                                vlm_object_name );
126     if( !p_vlm )
127     {
128         vlc_mutex_unlock( lockval.p_address );
129         return NULL;
130     }
131
132     vlc_mutex_init( p_this->p_libvlc, &p_vlm->lock );
133     p_vlm->i_id = 1;
134     TAB_INIT( p_vlm->i_media, p_vlm->media );
135     TAB_INIT( p_vlm->i_schedule, p_vlm->schedule );
136     p_vlm->i_vod = 0;
137     p_vlm->p_vod = NULL;
138     vlc_object_attach( p_vlm, p_this->p_libvlc );
139
140     if( vlc_thread_create( p_vlm, "vlm thread",
141                            Manage, VLC_THREAD_PRIORITY_LOW, VLC_FALSE ) )
142     {
143         vlc_mutex_destroy( &p_vlm->lock );
144         vlc_object_release( p_vlm );
145         return NULL;
146     }
147
148     /* Load our configuration file */
149     psz_vlmconf = var_CreateGetString( p_vlm, "vlm-conf" );
150     if( psz_vlmconf && *psz_vlmconf )
151     {
152         vlm_message_t *p_message = NULL;
153         char *psz_buffer = NULL;
154
155         msg_Dbg( p_this, "loading VLM configuration" );
156         asprintf(&psz_buffer, "load %s", psz_vlmconf );
157         if( psz_buffer )
158         {
159             msg_Dbg( p_this, psz_buffer );
160             if( vlm_ExecuteCommand( p_vlm, psz_buffer, &p_message ) )
161                 msg_Warn( p_this, "error while loading the configuration file" );
162
163             vlm_MessageDelete(p_message);
164             free(psz_buffer);
165         }
166     }
167     free(psz_vlmconf);
168
169     vlc_object_set_destructor( p_vlm, (vlc_destructor_t)vlm_Destructor );
170     vlc_mutex_unlock( lockval.p_address );
171
172     return p_vlm;
173 }
174
175 /*****************************************************************************
176  * vlm_Delete:
177  *****************************************************************************/
178 void vlm_Delete( vlm_t *p_vlm )
179 {
180     vlc_object_release( p_vlm );
181 }
182
183 /*****************************************************************************
184  * vlm_Destructor:
185  *****************************************************************************/
186 static void vlm_Destructor( vlm_t *p_vlm )
187 {
188     vlm_ControlInternal( p_vlm, VLM_CLEAR_MEDIAS );
189     TAB_CLEAN( p_vlm->i_media, p_vlm->media );
190
191     vlm_ControlInternal( p_vlm, VLM_CLEAR_SCHEDULES );
192     TAB_CLEAN( p_vlm->schedule, p_vlm->schedule );
193
194     vlc_mutex_destroy( &p_vlm->lock );
195 }
196
197 /*****************************************************************************
198  * vlm_ExecuteCommand:
199  *****************************************************************************/
200 int vlm_ExecuteCommand( vlm_t *p_vlm, const char *psz_command,
201                         vlm_message_t **pp_message)
202 {
203     int i_result;
204
205     vlc_mutex_lock( &p_vlm->lock );
206     i_result = ExecuteCommand( p_vlm, psz_command, pp_message );
207     vlc_mutex_unlock( &p_vlm->lock );
208
209     return i_result;
210 }
211
212
213 static const char quotes[] = "\"'";
214 /**
215  * FindCommandEnd: look for the end of a possibly quoted string
216  * @return NULL on mal-formatted string,
217  * pointer past the last character otherwise.
218  */
219 static const char *FindCommandEnd( const char *psz_sent )
220 {
221     char c, quote = 0;
222
223     while( (c = *psz_sent) != '\0' )
224     {
225         if( !quote )
226         {
227             if( strchr(quotes,c) )   // opening quote
228                 quote = c;
229             else if( isspace(c) )         // non-escaped space
230                 return psz_sent;
231             else if( c == '\\' )
232             {
233                 psz_sent++;         // skip escaped character
234                 if( *psz_sent == '\0' )
235                     return psz_sent;
236             }
237         }
238         else
239         {
240             if( c == quote )         // non-escaped matching quote
241                 quote = 0;
242             else if( (quote == '"') && (c == '\\') )
243             {
244                 psz_sent++;         // skip escaped character
245                 if (*psz_sent == '\0')
246                     return NULL;    // error, closing quote missing
247             }
248         }
249         psz_sent++;
250     }
251
252     // error (NULL) if we could not find a matching quote
253     return quote ? NULL : psz_sent;
254 }
255
256
257 /**
258  * Unescape a nul-terminated string.
259  * Note that in and out can be identical.
260  *
261  * @param out output buffer (at least <strlen (in) + 1> characters long)
262  * @param in nul-terminated string to be unescaped
263  *
264  * @return 0 on success, -1 on error.
265  */
266 static int Unescape( char *out, const char *in )
267 {
268     char c, quote = 0;
269
270     while( (c = *in++) != '\0' )
271     {
272         if( !quote )
273         {
274             if (strchr(quotes,c))   // opening quote
275             {
276                 quote = c;
277                 continue;
278             }
279             else if( c == '\\' )
280             {
281                 switch (c = *in++)
282                 {
283                     case '"':
284                     case '\'':
285                     case '\\':
286                         *out++ = c;
287                         continue;
288
289                     case '\0':
290                         *out = '\0';
291                         return 0;
292                 }
293                 if( isspace(c) )
294                 {
295                     *out++ = c;
296                     continue;
297                 }
298                 /* None of the special cases - copy the backslash */
299                 *out++ = '\\';
300             }
301         }
302         else
303         {
304             if( c == quote )         // non-escaped matching quote
305             {
306                 quote = 0;
307                 continue;
308             }
309             if( (quote == '"') && (c == '\\') )
310             {
311                 switch( c = *in++ )
312                 {
313                     case '"':
314                     case '\\':
315                         *out++ = c;
316                         continue;
317
318                     case '\0':   // should never happen
319                         *out = '\0';
320                         return -1;
321                 }
322                 /* None of the special cases - copy the backslash */
323                 *out++ = '\\';
324             }
325         }
326         *out++ = c;
327     }
328
329     *out = '\0';
330     return 0;
331 }
332
333
334 /*****************************************************************************
335  * ExecuteCommand: The main state machine
336  *****************************************************************************
337  * Execute a command which ends with '\0' (string)
338  *****************************************************************************/
339 static int ExecuteSyntaxError( const char *psz_cmd, vlm_message_t **pp_status )
340 {
341     *pp_status = vlm_MessageNew( psz_cmd, "Wrong command syntax" );
342     return VLC_EGENERIC;
343 }
344
345 static vlc_bool_t ExecuteIsMedia( vlm_t *p_vlm, const char *psz_name )
346 {
347     int64_t id;
348
349     if( !psz_name || vlm_ControlInternal( p_vlm, VLM_GET_MEDIA_ID, psz_name, &id ) )
350         return VLC_FALSE;
351     return VLC_TRUE;
352 }
353 static vlc_bool_t ExecuteIsSchedule( vlm_t *p_vlm, const char *psz_name )
354 {
355     if( !psz_name || !vlm_ScheduleSearch( p_vlm, psz_name ) )
356         return VLC_FALSE;
357     return VLC_TRUE;
358 }
359
360 static int ExecuteDel( vlm_t *p_vlm, const char *psz_name, vlm_message_t **pp_status )
361 {
362     vlm_media_sys_t *p_media;
363     vlm_schedule_sys_t *p_schedule;
364
365     p_media = vlm_MediaSearch( p_vlm, psz_name );
366     p_schedule = vlm_ScheduleSearch( p_vlm, psz_name );
367
368     if( p_schedule != NULL )
369     {
370         vlm_ScheduleDelete( p_vlm, p_schedule );
371     }
372     else if( p_media != NULL )
373     {
374         vlm_ControlInternal( p_vlm, VLM_DEL_MEDIA, p_media->cfg.id );
375     }
376     else if( !strcmp(psz_name, "media") )
377     {
378         vlm_ControlInternal( p_vlm, VLM_CLEAR_MEDIAS );
379     }
380     else if( !strcmp(psz_name, "schedule") )
381     {
382         vlm_ControlInternal( p_vlm, VLM_CLEAR_SCHEDULES );
383     }
384     else if( !strcmp(psz_name, "all") )
385     {
386         vlm_ControlInternal( p_vlm, VLM_CLEAR_MEDIAS );
387         vlm_ControlInternal( p_vlm, VLM_CLEAR_SCHEDULES );
388     }
389     else
390     {
391         *pp_status = vlm_MessageNew( "del", "%s: media unknown", psz_name );
392         return VLC_EGENERIC;
393     }
394
395     *pp_status = vlm_MessageNew( "del", vlm_NULL );
396     return VLC_SUCCESS;
397 }
398
399 static int ExecuteShow( vlm_t *p_vlm, const char *psz_name, vlm_message_t **pp_status )
400 {
401     vlm_media_sys_t *p_media;
402     vlm_schedule_sys_t *p_schedule;
403
404     if( !psz_name )
405     {
406         *pp_status = vlm_Show( p_vlm, NULL, NULL, NULL );
407         return VLC_SUCCESS;
408     }
409
410     p_media = vlm_MediaSearch( p_vlm, psz_name );
411     p_schedule = vlm_ScheduleSearch( p_vlm, psz_name );
412
413     if( p_schedule != NULL )
414         *pp_status = vlm_Show( p_vlm, NULL, p_schedule, NULL );
415     else if( p_media != NULL )
416         *pp_status = vlm_Show( p_vlm, p_media, NULL, NULL );
417     else
418         *pp_status = vlm_Show( p_vlm, NULL, NULL, psz_name );
419
420     return VLC_SUCCESS;
421 }
422
423 static int ExecuteHelp( vlm_message_t *p_status )
424 {
425     vlm_message_t *message_child;
426
427 #define MessageAdd( a ) \
428         vlm_MessageAdd( p_status, vlm_MessageNew( a, vlm_NULL ) );
429 #define MessageAddChild( a ) \
430         vlm_MessageAdd( message_child, vlm_MessageNew( a, vlm_NULL ) );
431
432     p_status = vlm_MessageNew( "help", vlm_NULL );
433
434     message_child = MessageAdd( "Commands Syntax:" );
435     MessageAddChild( "new (name) vod|broadcast|schedule [properties]" );
436     MessageAddChild( "setup (name) (properties)" );
437     MessageAddChild( "show [(name)|media|schedule]" );
438     MessageAddChild( "del (name)|all|media|schedule" );
439     MessageAddChild( "control (name) [instance_name] (command)" );
440     MessageAddChild( "save (config_file)" );
441     MessageAddChild( "export" );
442     MessageAddChild( "load (config_file)" );
443
444     message_child = MessageAdd( "Media Proprieties Syntax:" );
445     MessageAddChild( "input (input_name)" );
446     MessageAddChild( "inputdel (input_name)|all" );
447     MessageAddChild( "inputdeln input_number" );
448     MessageAddChild( "output (output_name)" );
449     MessageAddChild( "option (option_name)[=value]" );
450     MessageAddChild( "enabled|disabled" );
451     MessageAddChild( "loop|unloop (broadcast only)" );
452     MessageAddChild( "mux (mux_name)" );
453
454     message_child = MessageAdd( "Schedule Proprieties Syntax:" );
455     MessageAddChild( "enabled|disabled" );
456     MessageAddChild( "append (command_until_rest_of_the_line)" );
457     MessageAddChild( "date (year)/(month)/(day)-(hour):(minutes):"
458                      "(seconds)|now" );
459     MessageAddChild( "period (years_aka_12_months)/(months_aka_30_days)/"
460                      "(days)-(hours):(minutes):(seconds)" );
461     MessageAddChild( "repeat (number_of_repetitions)" );
462
463     message_child = MessageAdd( "Control Commands Syntax:" );
464     MessageAddChild( "play [input_number]" );
465     MessageAddChild( "pause" );
466     MessageAddChild( "stop" );
467     MessageAddChild( "seek [+-](percentage) | [+-](seconds)s | [+-](miliseconds)ms" );
468
469     return VLC_SUCCESS;
470 }
471
472 static int ExecuteControl( vlm_t *p_vlm, const char *psz_name, const int i_arg, char ** ppsz_arg, vlm_message_t **pp_status )
473 {
474     vlm_media_sys_t *p_media;
475     const char *psz_control = NULL;
476     const char *psz_instance = NULL;
477     const char *psz_argument = NULL;
478     int i_index;
479     int i_result;
480
481     if( !ExecuteIsMedia( p_vlm, psz_name ) )
482     {
483         *pp_status = vlm_MessageNew( "control", "%s: media unknown", psz_name );
484         return VLC_EGENERIC;
485     }
486
487     assert( i_arg > 0 );
488
489 #define IS(txt) ( !strcmp( ppsz_arg[i_index], (txt) ) )
490     i_index = 0;
491     if( !IS("play") && !IS("stop") && !IS("pause") && !IS("seek") )
492     {
493         i_index = 1;
494         psz_instance = ppsz_arg[0];
495
496         if( i_index >= i_arg || ( !IS("play") && !IS("stop") && !IS("pause") && !IS("seek") ) )
497             return ExecuteSyntaxError( "control", pp_status );
498     }
499 #undef IS
500     psz_control = ppsz_arg[i_index];
501
502     if( i_index+1 < i_arg )
503         psz_argument = ppsz_arg[i_index+1];
504
505     p_media = vlm_MediaSearch( p_vlm, psz_name );
506     assert( p_media );
507
508     if( !strcmp( psz_control, "play" ) )
509     {
510         int i_input_index = 0;
511         int i;
512
513         if( ( psz_argument && sscanf(psz_argument, "%d", &i) == 1 ) && i > 0 && i-1 < p_media->cfg.i_input )
514         {
515             i_input_index = i-1;
516         }
517         else if( psz_argument )
518         {
519             int j;
520             vlm_media_t *p_cfg = &p_media->cfg;
521             for ( j=0; j < p_cfg->i_input; j++)
522             {
523                 if( !strcmp( p_cfg->ppsz_input[j], psz_argument ) )
524                 {
525                     i_input_index = j;
526                     break;
527                 }
528             }
529         }
530
531         if( p_media->cfg.b_vod )
532             i_result = vlm_ControlInternal( p_vlm, VLM_START_MEDIA_VOD_INSTANCE, p_media->cfg.id, psz_instance, i_input_index, NULL );    // we should get here now
533         else
534             i_result = vlm_ControlInternal( p_vlm, VLM_START_MEDIA_BROADCAST_INSTANCE, p_media->cfg.id, psz_instance, i_input_index );
535     }
536     else if( !strcmp( psz_control, "seek" ) )
537     {
538         if( psz_argument )
539         {
540             vlc_bool_t b_relative;
541             if( psz_argument[0] == '+' || psz_argument[0] == '-' )
542                 b_relative = VLC_TRUE;
543             else
544                 b_relative = VLC_FALSE;
545
546             if( strstr( psz_argument, "ms" ) || strstr( psz_argument, "s" ) )
547             {
548                 /* Time (ms or s) */
549                 int64_t i_new_time;
550
551                 if( strstr( psz_argument, "ms" ) )
552                     i_new_time =  1000 * (int64_t)atoi( psz_argument );
553                 else
554                     i_new_time = 1000000 * (int64_t)atoi( psz_argument );
555
556                 if( b_relative )
557                 {
558                     int64_t i_time = 0;
559                     vlm_ControlInternal( p_vlm, VLM_GET_MEDIA_INSTANCE_TIME, p_media->cfg.id, psz_instance, &i_time );
560                     i_new_time += i_time;
561                 }
562                 if( i_new_time < 0 )
563                     i_new_time = 0;
564                 i_result = vlm_ControlInternal( p_vlm, VLM_SET_MEDIA_INSTANCE_TIME, p_media->cfg.id, psz_instance, i_new_time );
565             }
566             else
567             {
568                 /* Percent */
569                 double d_new_position = i18n_atof( psz_argument ) / 100.0;
570
571                 if( b_relative )
572                 {
573                     double d_position = 0.0;
574
575                     vlm_ControlInternal( p_vlm, VLM_GET_MEDIA_INSTANCE_POSITION, p_media->cfg.id, psz_instance, &d_position );
576                     d_new_position += d_position;
577                 }
578                 if( d_new_position < 0.0 )
579                     d_new_position = 0.0;
580                 else if( d_new_position > 1.0 )
581                     d_new_position = 1.0;
582                 i_result = vlm_ControlInternal( p_vlm, VLM_SET_MEDIA_INSTANCE_POSITION, p_media->cfg.id, psz_instance, d_new_position );
583             }
584         }
585         else
586         {
587             i_result = VLC_EGENERIC;
588         }
589     }
590     else if( !strcmp( psz_control, "rewind" ) )
591     {
592         if( psz_argument )
593         {
594             const double d_scale = i18n_atof( psz_argument );
595             double d_position;
596
597             vlm_ControlInternal( p_vlm, VLM_GET_MEDIA_INSTANCE_POSITION, p_media->cfg.id, psz_instance, &d_position );
598             d_position -= (d_scale / 1000.0);
599             if( d_position < 0.0 )
600                 d_position = 0.0;
601             i_result = vlm_ControlInternal( p_vlm, VLM_SET_MEDIA_INSTANCE_POSITION, p_media->cfg.id, psz_instance, d_position );
602         }
603         else
604         {
605             i_result = VLC_EGENERIC;
606         }
607     }
608     else if( !strcmp( psz_control, "forward" ) )
609     {
610         if( psz_argument )
611         {
612             const double d_scale = i18n_atof( psz_argument );
613             double d_position;
614
615             vlm_ControlInternal( p_vlm, VLM_GET_MEDIA_INSTANCE_POSITION, p_media->cfg.id, psz_instance, &d_position );
616             d_position += (d_scale / 1000.0);
617             if( d_position > 1.0 )
618                 d_position = 1.0;
619             i_result = vlm_ControlInternal( p_vlm, VLM_SET_MEDIA_INSTANCE_POSITION, p_media->cfg.id, psz_instance, d_position );
620
621         }
622         else
623         {
624             i_result = VLC_EGENERIC;
625         }
626     }
627     else if( !strcmp( psz_control, "stop" ) )
628     {
629         i_result = vlm_ControlInternal( p_vlm, VLM_STOP_MEDIA_INSTANCE, p_media->cfg.id, psz_instance );
630     }
631     else if( !strcmp( psz_control, "pause" ) )
632     {
633         i_result = vlm_ControlInternal( p_vlm, VLM_PAUSE_MEDIA_INSTANCE, p_media->cfg.id, psz_instance );
634     }
635     else
636     {
637         i_result = VLC_EGENERIC;
638     }
639
640     if( i_result )
641     {
642         *pp_status = vlm_MessageNew( "control", "unknown error" );
643         return VLC_SUCCESS;
644     }
645     *pp_status = vlm_MessageNew( "control", vlm_NULL );
646     return VLC_SUCCESS;
647 }
648
649 static int ExecuteExport( vlm_t *p_vlm, vlm_message_t **pp_status )
650 {
651     char *psz_export = Save( p_vlm );
652
653     *pp_status = vlm_MessageNew( "export", psz_export );
654     free( psz_export );
655     return VLC_SUCCESS;
656 }
657
658 static int ExecuteSave( vlm_t *p_vlm, const char *psz_file, vlm_message_t **pp_status )
659 {
660     FILE *f = utf8_fopen( psz_file, "wt" );
661     char *psz_save;
662
663     if( !f )
664         goto error;
665
666     psz_save = Save( p_vlm );
667     if( psz_save == NULL )
668     {
669         fclose( f );
670         goto error;
671     }
672     fwrite( psz_save, strlen( psz_save ), 1, f );
673     free( psz_save );
674     fclose( f );
675
676     *pp_status = vlm_MessageNew( "save", vlm_NULL );
677     return VLC_SUCCESS;
678
679 error:
680     *pp_status = vlm_MessageNew( "save", "Unable to save to file" );
681     return VLC_EGENERIC;
682 }
683
684 static int ExecuteLoad( vlm_t *p_vlm, const char *psz_url, vlm_message_t **pp_status )
685 {
686     stream_t *p_stream = stream_UrlNew( p_vlm, psz_url );
687     int64_t i_size;
688     char *psz_buffer;
689
690     if( !p_stream )
691     {
692         *pp_status = vlm_MessageNew( "load", "Unable to load from file" );
693         return VLC_EGENERIC;
694     }
695
696     /* FIXME needed ? */
697     if( stream_Seek( p_stream, 0 ) != 0 )
698     {
699         stream_Delete( p_stream );
700
701         *pp_status = vlm_MessageNew( "load", "Read file error" );
702         return VLC_EGENERIC;
703     }
704
705     i_size = stream_Size( p_stream );
706
707     psz_buffer = malloc( i_size + 1 );
708     if( !psz_buffer )
709     {
710         stream_Delete( p_stream );
711
712         *pp_status = vlm_MessageNew( "load", "Read file error" );
713         return VLC_EGENERIC;
714     }
715
716     stream_Read( p_stream, psz_buffer, i_size );
717     psz_buffer[i_size] = '\0';
718
719     stream_Delete( p_stream );
720
721     if( Load( p_vlm, psz_buffer ) )
722     {
723         free( psz_buffer );
724
725         *pp_status = vlm_MessageNew( "load", "Error while loading file" );
726         return VLC_EGENERIC;
727     }
728
729     free( psz_buffer );
730
731     *pp_status = vlm_MessageNew( "load", vlm_NULL );
732     return VLC_SUCCESS;
733 }
734
735 static int ExecuteScheduleProperty( vlm_t *p_vlm, vlm_schedule_sys_t *p_schedule, vlc_bool_t b_new,
736                                     const int i_property, char *ppsz_property[], vlm_message_t **pp_status )
737 {
738     const char *psz_cmd = b_new ? "new" : "setup";
739     int i;
740
741     for( i = 0; i < i_property; i++ )
742     {
743         if( !strcmp( ppsz_property[i], "enabled" ) ||
744             !strcmp( ppsz_property[i], "disabled" ) )
745         {
746             vlm_ScheduleSetup( p_schedule, ppsz_property[i], NULL );
747         }
748         else if( !strcmp( ppsz_property[i], "append" ) )
749         {
750             char *psz_line;
751             int j;
752             /* Beware: everything behind append is considered as
753              * command line */
754
755             if( ++i >= i_property )
756                 break;
757
758             psz_line = strdup( ppsz_property[i] );
759             for( j = i+1; j < i_property; j++ )
760             {
761                 psz_line = realloc( psz_line, strlen(psz_line) + strlen(ppsz_property[j]) + 1 + 1 );
762                 strcat( psz_line, " " );
763                 strcat( psz_line, ppsz_property[j] );
764             }
765
766             vlm_ScheduleSetup( p_schedule, "append", psz_line );
767             break;
768         }
769         else
770         {
771             if( i + 1 >= i_property )
772             {
773                 if( b_new )
774                     vlm_ScheduleDelete( p_vlm, p_schedule );
775                 return ExecuteSyntaxError( psz_cmd, pp_status );
776             }
777
778             vlm_ScheduleSetup( p_schedule, ppsz_property[i], ppsz_property[i+1] );
779             i++;
780         }
781     }
782     *pp_status = vlm_MessageNew( psz_cmd, vlm_NULL );
783     return VLC_SUCCESS;
784 }
785
786 static int ExecuteMediaProperty( vlm_t *p_vlm, int64_t id, vlc_bool_t b_new,
787                                  const int i_property, char *ppsz_property[], vlm_message_t **pp_status )
788 {
789     const char *psz_cmd = b_new ? "new" : "setup";
790     vlm_media_t *p_cfg = NULL;
791     int i_result;
792     int i;
793
794 #undef ERROR
795 #undef MISSING
796 #define ERROR( txt ) do { *pp_status = vlm_MessageNew( psz_cmd, txt); goto error; } while(0)
797     if( vlm_ControlInternal( p_vlm, VLM_GET_MEDIA, id, &p_cfg ) )
798         ERROR( "unknown media" );
799
800 #define MISSING(cmd) do { if( !psz_value ) ERROR( "missing argument for " cmd ); } while(0)
801     for( i = 0; i < i_property; i++ )
802     {
803         const char *psz_option = ppsz_property[i];
804         const char *psz_value = i+1 < i_property ? ppsz_property[i+1] :  NULL;
805
806         if( !strcmp( psz_option, "enabled" ) )
807         {
808             p_cfg->b_enabled = VLC_TRUE;
809         }
810         else if( !strcmp( psz_option, "disabled" ) )
811         {
812             p_cfg->b_enabled = VLC_FALSE;
813         }
814         else if( !strcmp( psz_option, "input" ) )
815         {
816             MISSING( "input" );
817             TAB_APPEND( p_cfg->i_input, p_cfg->ppsz_input, strdup(psz_value) );
818             i++;
819         }
820         else if( !strcmp( psz_option, "inputdel" ) && psz_value && !strcmp( psz_value, "all" ) )
821         {
822             while( p_cfg->i_input > 0 )
823                 TAB_REMOVE( p_cfg->i_input, p_cfg->ppsz_input, p_cfg->ppsz_input[0] );
824             i++;
825         }
826         else if( !strcmp( psz_option, "inputdel" ) )
827         {
828             int j;
829
830             MISSING( "inputdel" );
831
832             for( j = 0; j < p_cfg->i_input; j++ )
833             {
834                 if( !strcmp( p_cfg->ppsz_input[j], psz_value ) )
835                 {
836                     TAB_REMOVE( p_cfg->i_input, p_cfg->ppsz_input, p_cfg->ppsz_input[j] );
837                     break;
838                 }
839             }
840             i++;
841         }
842         else if( !strcmp( psz_option, "inputdeln" ) )
843         {
844             int i_index;
845
846             MISSING( "inputdeln" );
847  
848             i_index = atoi( psz_value );
849             if( i_index > 0 && i_index <= p_cfg->i_input )
850                 TAB_REMOVE( p_cfg->i_input, p_cfg->ppsz_input, p_cfg->ppsz_input[i_index-1] );
851             i++;
852         }
853         else if( !strcmp( psz_option, "output" ) )
854         {
855             MISSING( "output" );
856
857             free( p_cfg->psz_output );
858             p_cfg->psz_output = *psz_value ? strdup( psz_value ) : NULL;
859             i++;
860         }
861         else if( !strcmp( psz_option, "option" ) )
862         {
863             MISSING( "option" );
864
865             TAB_APPEND( p_cfg->i_option, p_cfg->ppsz_option, strdup( psz_value ) );
866             i++;
867         }
868         else if( !strcmp( psz_option, "loop" ) )
869         {
870             if( p_cfg->b_vod )
871                 ERROR( "invalid loop option for vod" );
872             p_cfg->broadcast.b_loop = VLC_TRUE;
873         }
874         else if( !strcmp( psz_option, "unloop" ) )
875         {
876             if( p_cfg->b_vod )
877                 ERROR( "invalid unloop option for vod" );
878             p_cfg->broadcast.b_loop = VLC_FALSE;
879         }
880         else if( !strcmp( psz_option, "mux" ) )
881         {
882             MISSING( "mux" );
883             if( !p_cfg->b_vod )
884                 ERROR( "invalid mux option for broadcast" );
885
886             free( p_cfg->vod.psz_mux );
887             p_cfg->vod.psz_mux = *psz_value ? strdup( psz_value ) : NULL;
888             i++;
889         }
890         else
891         {
892             fprintf( stderr, "PROP: name=%s unknown\n", psz_option );
893             ERROR( "Wrong command syntax" );
894         }
895     }
896 #undef MISSING
897 #undef ERROR
898
899     /* */
900     i_result = vlm_ControlInternal( p_vlm, VLM_CHANGE_MEDIA, p_cfg );
901     vlm_media_Delete( p_cfg );
902
903     *pp_status = vlm_MessageNew( psz_cmd, vlm_NULL );
904     return i_result;
905
906 error:
907     if( p_cfg )
908     {
909         if( b_new )
910             vlm_ControlInternal( p_vlm, VLM_DEL_MEDIA, p_cfg->id );
911         vlm_media_Delete( p_cfg );
912     }
913     return VLC_EGENERIC;
914 }
915
916 static int ExecuteNew( vlm_t *p_vlm, const char *psz_name, const char *psz_type, const int i_property, char *ppsz_property[], vlm_message_t **pp_status )
917 {
918     /* Check name */
919     if( !strcmp( psz_name, "all" ) || !strcmp( psz_name, "media" ) || !strcmp( psz_name, "schedule" ) )
920     {
921         *pp_status = vlm_MessageNew( "new", "\"all\", \"media\" and \"schedule\" are reserved names" );
922         return VLC_EGENERIC;
923     }
924     if( ExecuteIsMedia( p_vlm, psz_name ) || ExecuteIsSchedule( p_vlm, psz_name ) )
925     {
926         *pp_status = vlm_MessageNew( "new", "%s: Name already in use", psz_name );
927         return VLC_EGENERIC;
928     }
929     /* */
930     if( !strcmp( psz_type, "schedule" ) )
931     {
932         vlm_schedule_sys_t *p_schedule = vlm_ScheduleNew( p_vlm, psz_name );
933         if( !p_schedule )
934         {
935             *pp_status = vlm_MessageNew( "new", "could not create schedule" );
936             return VLC_EGENERIC;
937         }
938         return ExecuteScheduleProperty( p_vlm, p_schedule, VLC_TRUE, i_property, ppsz_property, pp_status );
939     }
940     else if( !strcmp( psz_type, "vod" ) || !strcmp( psz_type, "broadcast" ) )
941     {
942         vlm_media_t cfg;
943         int64_t id;
944
945         vlm_media_Init( &cfg );
946         cfg.psz_name = strdup( psz_name );
947         cfg.b_vod = !strcmp( psz_type, "vod" );
948
949         if( vlm_ControlInternal( p_vlm, VLM_ADD_MEDIA, &cfg, &id ) )
950         {
951             vlm_media_Clean( &cfg );
952             *pp_status = vlm_MessageNew( "new", "could not create media" );
953             return VLC_EGENERIC;
954         }
955         vlm_media_Clean( &cfg );
956         return ExecuteMediaProperty( p_vlm, id, VLC_TRUE, i_property, ppsz_property, pp_status );
957     }
958     else
959     {
960         *pp_status = vlm_MessageNew( "new", "%s: Choose between vod, broadcast or schedule", psz_type );
961         return VLC_EGENERIC;
962     }
963 }
964
965 static int ExecuteSetup( vlm_t *p_vlm, const char *psz_name, const int i_property, char *ppsz_property[], vlm_message_t **pp_status )
966 {
967     if( ExecuteIsSchedule( p_vlm, psz_name ) )
968     {
969         vlm_schedule_sys_t *p_schedule = vlm_ScheduleSearch( p_vlm, psz_name );
970         return ExecuteScheduleProperty( p_vlm, p_schedule, VLC_FALSE, i_property, ppsz_property, pp_status );
971     }
972     else if( ExecuteIsMedia( p_vlm, psz_name ) )
973     {
974         int64_t id;
975         if( vlm_ControlInternal( p_vlm, VLM_GET_MEDIA_ID, psz_name, &id ) )
976             goto error;
977         return ExecuteMediaProperty( p_vlm, id, VLC_FALSE, i_property, ppsz_property, pp_status );
978     }
979
980 error:
981     *pp_status = vlm_MessageNew( "setup", "%s unknown", psz_name );
982     return VLC_EGENERIC;
983 }
984
985 static int ExecuteCommand( vlm_t *p_vlm, const char *psz_command,
986                            vlm_message_t **pp_message )
987 {
988     size_t i_command = 0;
989     char buf[strlen (psz_command) + 1], *psz_buf = buf;
990     char *ppsz_command[3+sizeof (buf) / 2];
991     vlm_message_t *p_message = NULL;
992
993     /* First, parse the line and cut it */
994     while( *psz_command != '\0' )
995     {
996         const char *psz_temp;
997
998         if(isspace (*psz_command))
999         {
1000             psz_command++;
1001             continue;
1002         }
1003
1004         /* support for comments */
1005         if( i_command == 0 && *psz_command == '#')
1006         {
1007             p_message = vlm_MessageNew( "", vlm_NULL );
1008             goto success;
1009         }
1010
1011         psz_temp = FindCommandEnd( psz_command );
1012
1013         if( psz_temp == NULL )
1014         {
1015             p_message = vlm_MessageNew( "Incomplete command", psz_command );
1016             goto error;
1017         }
1018
1019         assert (i_command < (sizeof (ppsz_command) / sizeof (ppsz_command[0])));
1020
1021         ppsz_command[i_command] = psz_buf;
1022         memcpy (psz_buf, psz_command, psz_temp - psz_command);
1023         psz_buf[psz_temp - psz_command] = '\0';
1024
1025         Unescape (psz_buf, psz_buf);
1026
1027         i_command++;
1028         psz_buf += psz_temp - psz_command + 1;
1029         psz_command = psz_temp;
1030
1031         assert (buf + sizeof (buf) >= psz_buf);
1032     }
1033
1034     /*
1035      * And then Interpret it
1036      */
1037
1038 #define IF_EXECUTE( name, check, cmd ) if( !strcmp(ppsz_command[0], name ) ) { if( (check) ) goto syntax_error;  if( (cmd) ) goto error; goto success; }
1039     if( i_command == 0 )
1040     {
1041         p_message = vlm_MessageNew( "", vlm_NULL );
1042         goto success;
1043     }
1044     else IF_EXECUTE( "del",     (i_command != 2),   ExecuteDel(p_vlm, ppsz_command[1], &p_message) )
1045     else IF_EXECUTE( "show",    (i_command > 2),    ExecuteShow(p_vlm, i_command > 1 ? ppsz_command[1] : NULL, &p_message) )
1046     else IF_EXECUTE( "help",    (i_command != 1),   ExecuteHelp( p_message) )
1047     else IF_EXECUTE( "control", (i_command < 3),    ExecuteControl(p_vlm, ppsz_command[1], i_command - 2, &ppsz_command[2], &p_message) )
1048     else IF_EXECUTE( "save",    (i_command != 2),   ExecuteSave(p_vlm, ppsz_command[1], &p_message) )
1049     else IF_EXECUTE( "export",  (i_command != 1),   ExecuteExport(p_vlm, &p_message) )
1050     else IF_EXECUTE( "load",    (i_command != 2),   ExecuteLoad(p_vlm, ppsz_command[1], &p_message) )
1051     else IF_EXECUTE( "new",     (i_command < 3),    ExecuteNew(p_vlm, ppsz_command[1], ppsz_command[2], i_command-3, &ppsz_command[3], &p_message) )
1052     else IF_EXECUTE( "setup",   (i_command < 2),    ExecuteSetup(p_vlm, ppsz_command[1], i_command-2, &ppsz_command[2], &p_message) )
1053     else
1054     {
1055         p_message = vlm_MessageNew( ppsz_command[0], "Unknown command" );
1056         goto error;
1057     }
1058 #undef IF_EXECUTE
1059
1060 success:
1061     *pp_message = p_message;
1062     return VLC_SUCCESS;
1063
1064 syntax_error:
1065     return ExecuteSyntaxError( ppsz_command[0], pp_message );
1066
1067 error:
1068     *pp_message = p_message;
1069     return VLC_EGENERIC;
1070 }
1071
1072 /*****************************************************************************
1073  * Media handling
1074  *****************************************************************************/
1075 vlm_media_sys_t *vlm_MediaSearch( vlm_t *vlm, const char *psz_name )
1076 {
1077     int i;
1078
1079     for( i = 0; i < vlm->i_media; i++ )
1080     {
1081         if( strcmp( psz_name, vlm->media[i]->cfg.psz_name ) == 0 )
1082             return vlm->media[i];
1083     }
1084
1085     return NULL;
1086 }
1087
1088 /*****************************************************************************
1089  * Schedule handling
1090  *****************************************************************************/
1091 static int64_t vlm_Date(void)
1092 {
1093 #ifdef WIN32
1094     struct timeb tm;
1095     ftime( &tm );
1096     return ((int64_t)tm.time) * 1000000 + ((int64_t)tm.millitm) * 1000;
1097 #else
1098     struct timeval tv_date;
1099
1100     /* gettimeofday() cannot fail given &tv_date is a valid address */
1101     (void)gettimeofday( &tv_date, NULL );
1102     return (mtime_t) tv_date.tv_sec * 1000000 + (mtime_t) tv_date.tv_usec;
1103 #endif
1104 }
1105
1106 static vlm_schedule_sys_t *vlm_ScheduleNew( vlm_t *vlm, const char *psz_name )
1107 {
1108     vlm_schedule_sys_t *p_sched = malloc( sizeof( vlm_schedule_sys_t ) );
1109
1110     if( !p_sched )
1111     {
1112         return NULL;
1113     }
1114
1115     if( !psz_name )
1116     {
1117         return NULL;
1118     }
1119
1120     p_sched->psz_name = strdup( psz_name );
1121     p_sched->b_enabled = VLC_FALSE;
1122     p_sched->i_command = 0;
1123     p_sched->command = NULL;
1124     p_sched->i_date = 0;
1125     p_sched->i_period = 0;
1126     p_sched->i_repeat = -1;
1127
1128     TAB_APPEND( vlm->i_schedule, vlm->schedule, p_sched );
1129
1130     return p_sched;
1131 }
1132
1133 /* for now, simple delete. After, del with options (last arg) */
1134 static void vlm_ScheduleDelete( vlm_t *vlm, vlm_schedule_sys_t *sched )
1135 {
1136     if( sched == NULL ) return;
1137
1138     TAB_REMOVE( vlm->i_schedule, vlm->schedule, sched );
1139
1140     if( vlm->i_schedule == 0 ) free( vlm->schedule );
1141     free( sched->psz_name );
1142     while( sched->i_command )
1143     {
1144         char *psz_cmd = sched->command[0];
1145         TAB_REMOVE( sched->i_command, sched->command, psz_cmd );
1146         free( psz_cmd );
1147     }
1148     free( sched );
1149 }
1150
1151 static vlm_schedule_sys_t *vlm_ScheduleSearch( vlm_t *vlm, const char *psz_name )
1152 {
1153     int i;
1154
1155     for( i = 0; i < vlm->i_schedule; i++ )
1156     {
1157         if( strcmp( psz_name, vlm->schedule[i]->psz_name ) == 0 )
1158         {
1159             return vlm->schedule[i];
1160         }
1161     }
1162
1163     return NULL;
1164 }
1165
1166 /* Ok, setup schedule command will be able to support only one (argument value) at a time  */
1167 static int vlm_ScheduleSetup( vlm_schedule_sys_t *schedule, const char *psz_cmd,
1168                        const char *psz_value )
1169 {
1170     if( !strcmp( psz_cmd, "enabled" ) )
1171     {
1172         schedule->b_enabled = VLC_TRUE;
1173     }
1174     else if( !strcmp( psz_cmd, "disabled" ) )
1175     {
1176         schedule->b_enabled = VLC_FALSE;
1177     }
1178 #if !defined( UNDER_CE )
1179     else if( !strcmp( psz_cmd, "date" ) )
1180     {
1181         struct tm time;
1182         const char *p;
1183         time_t date;
1184
1185         time.tm_sec = 0;         /* seconds */
1186         time.tm_min = 0;         /* minutes */
1187         time.tm_hour = 0;        /* hours */
1188         time.tm_mday = 0;        /* day of the month */
1189         time.tm_mon = 0;         /* month */
1190         time.tm_year = 0;        /* year */
1191         time.tm_wday = 0;        /* day of the week */
1192         time.tm_yday = 0;        /* day in the year */
1193         time.tm_isdst = -1;       /* daylight saving time */
1194
1195         /* date should be year/month/day-hour:minutes:seconds */
1196         p = strchr( psz_value, '-' );
1197
1198         if( !strcmp( psz_value, "now" ) )
1199         {
1200             schedule->i_date = 0;
1201         }
1202         else if( (p == NULL) && sscanf( psz_value, "%d:%d:%d", &time.tm_hour,
1203                                         &time.tm_min, &time.tm_sec ) != 3 )
1204                                         /* it must be a hour:minutes:seconds */
1205         {
1206             return 1;
1207         }
1208         else
1209         {
1210             unsigned i,j,k;
1211
1212             switch( sscanf( p + 1, "%u:%u:%u", &i, &j, &k ) )
1213             {
1214                 case 1:
1215                     time.tm_sec = i;
1216                     break;
1217                 case 2:
1218                     time.tm_min = i;
1219                     time.tm_sec = j;
1220                     break;
1221                 case 3:
1222                     time.tm_hour = i;
1223                     time.tm_min = j;
1224                     time.tm_sec = k;
1225                     break;
1226                 default:
1227                     return 1;
1228             }
1229
1230             switch( sscanf( psz_value, "%d/%d/%d", &i, &j, &k ) )
1231             {
1232                 case 1:
1233                     time.tm_mday = i;
1234                     break;
1235                 case 2:
1236                     time.tm_mon = i - 1;
1237                     time.tm_mday = j;
1238                     break;
1239                 case 3:
1240                     time.tm_year = i - 1900;
1241                     time.tm_mon = j - 1;
1242                     time.tm_mday = k;
1243                     break;
1244                 default:
1245                     return 1;
1246             }
1247
1248             date = mktime( &time );
1249             schedule->i_date = ((mtime_t) date) * 1000000;
1250         }
1251     }
1252     else if( !strcmp( psz_cmd, "period" ) )
1253     {
1254         struct tm time;
1255         const char *p;
1256         const char *psz_time = NULL, *psz_date = NULL;
1257         time_t date;
1258         unsigned i,j,k;
1259
1260         /* First, if date or period are modified, repeat should be equal to -1 */
1261         schedule->i_repeat = -1;
1262
1263         time.tm_sec = 0;         /* seconds */
1264         time.tm_min = 0;         /* minutes */
1265         time.tm_hour = 0;        /* hours */
1266         time.tm_mday = 0;        /* day of the month */
1267         time.tm_mon = 0;         /* month */
1268         time.tm_year = 0;        /* year */
1269         time.tm_wday = 0;        /* day of the week */
1270         time.tm_yday = 0;        /* day in the year */
1271         time.tm_isdst = -1;       /* daylight saving time */
1272
1273         /* date should be year/month/day-hour:minutes:seconds */
1274         p = strchr( psz_value, '-' );
1275         if( p )
1276         {
1277             psz_date = psz_value;
1278             psz_time = p + 1;
1279         }
1280         else
1281         {
1282             psz_time = psz_value;
1283         }
1284
1285         switch( sscanf( psz_time, "%u:%u:%u", &i, &j, &k ) )
1286         {
1287             case 1:
1288                 time.tm_sec = i;
1289                 break;
1290             case 2:
1291                 time.tm_min = i;
1292                 time.tm_sec = j;
1293                 break;
1294             case 3:
1295                 time.tm_hour = i;
1296                 time.tm_min = j;
1297                 time.tm_sec = k;
1298                 break;
1299             default:
1300                 return 1;
1301         }
1302         if( psz_date )
1303         {
1304             switch( sscanf( psz_date, "%u/%u/%u", &i, &j, &k ) )
1305             {
1306                 case 1:
1307                     time.tm_mday = i;
1308                     break;
1309                 case 2:
1310                     time.tm_mon = i;
1311                     time.tm_mday = j;
1312                     break;
1313                 case 3:
1314                     time.tm_year = i;
1315                     time.tm_mon = j;
1316                     time.tm_mday = k;
1317                     break;
1318                 default:
1319                     return 1;
1320             }
1321         }
1322
1323         /* ok, that's stupid... who is going to schedule streams every 42 years ? */
1324         date = (((( time.tm_year * 12 + time.tm_mon ) * 30 + time.tm_mday ) * 24 + time.tm_hour ) * 60 + time.tm_min ) * 60 + time.tm_sec ;
1325         schedule->i_period = ((mtime_t) date) * 1000000;
1326     }
1327 #endif /* UNDER_CE */
1328     else if( !strcmp( psz_cmd, "repeat" ) )
1329     {
1330         int i;
1331
1332         if( sscanf( psz_value, "%d", &i ) == 1 )
1333         {
1334             schedule->i_repeat = i;
1335         }
1336         else
1337         {
1338             return 1;
1339         }
1340     }
1341     else if( !strcmp( psz_cmd, "append" ) )
1342     {
1343         char *command = strdup( psz_value );
1344
1345         TAB_APPEND( schedule->i_command, schedule->command, command );
1346     }
1347     else
1348     {
1349         return 1;
1350     }
1351     return 0;
1352 }
1353
1354 /*****************************************************************************
1355  * Message handling functions
1356  *****************************************************************************/
1357 vlm_message_t *vlm_MessageNew( const char *psz_name,
1358                                const char *psz_format, ... )
1359 {
1360     vlm_message_t *p_message;
1361     va_list args;
1362
1363     if( !psz_name ) return NULL;
1364
1365     p_message = malloc( sizeof(vlm_message_t) );
1366     if( !p_message)
1367     {
1368         return NULL;
1369     }
1370
1371     p_message->psz_value = 0;
1372
1373     if( psz_format )
1374     {
1375         va_start( args, psz_format );
1376         if( vasprintf( &p_message->psz_value, psz_format, args ) == -1 )
1377         {
1378             va_end( args );
1379             free( p_message );
1380             return NULL;
1381         }
1382         va_end( args );
1383     }
1384
1385     p_message->psz_name = strdup( psz_name );
1386     p_message->i_child = 0;
1387     p_message->child = NULL;
1388
1389     return p_message;
1390 }
1391
1392 void vlm_MessageDelete( vlm_message_t *p_message )
1393 {
1394     free( p_message->psz_name );
1395     free( p_message->psz_value );
1396     while( p_message->i_child-- )
1397         vlm_MessageDelete( p_message->child[p_message->i_child] );
1398     free( p_message->child );
1399     free( p_message );
1400 }
1401
1402 /* Add a child */
1403 vlm_message_t *vlm_MessageAdd( vlm_message_t *p_message,
1404                                vlm_message_t *p_child )
1405 {
1406     if( p_message == NULL ) return NULL;
1407
1408     if( p_child )
1409     {
1410         TAB_APPEND( p_message->i_child, p_message->child, p_child );
1411     }
1412
1413     return p_child;
1414 }
1415
1416 /*****************************************************************************
1417  * Misc utility functions
1418  *****************************************************************************/
1419 static vlm_message_t *vlm_ShowMedia( vlm_media_sys_t *p_media )
1420 {
1421     vlm_media_t *p_cfg = &p_media->cfg;
1422     vlm_message_t *p_msg;
1423     vlm_message_t *p_msg_sub;
1424     int i;
1425
1426     p_msg = vlm_MessageNew( p_cfg->psz_name, vlm_NULL );
1427     vlm_MessageAdd( p_msg,
1428                     vlm_MessageNew( "type", p_cfg->b_vod ? "vod" : "broadcast" ) );
1429     vlm_MessageAdd( p_msg,
1430                     vlm_MessageNew( "enabled", p_cfg->b_enabled ? "yes" : "no" ) );
1431
1432     if( p_cfg->b_vod )
1433         vlm_MessageAdd( p_msg,
1434                         vlm_MessageNew( "mux", p_cfg->vod.psz_mux ) );
1435     else
1436         vlm_MessageAdd( p_msg,
1437                         vlm_MessageNew( "loop", p_cfg->broadcast.b_loop ? "yes" : "no" ) );
1438
1439     p_msg_sub = vlm_MessageAdd( p_msg, vlm_MessageNew( "inputs", vlm_NULL ) );
1440     for( i = 0; i < p_cfg->i_input; i++ )
1441     {
1442         char *psz_tmp;
1443         asprintf( &psz_tmp, "%d", i+1 );
1444         vlm_MessageAdd( p_msg_sub,
1445                         vlm_MessageNew( psz_tmp, p_cfg->ppsz_input[i] ) );
1446         free( psz_tmp );
1447     }
1448
1449     vlm_MessageAdd( p_msg,
1450                     vlm_MessageNew( "output", p_cfg->psz_output ? p_cfg->psz_output : "" ) );
1451
1452     p_msg_sub = vlm_MessageAdd( p_msg, vlm_MessageNew( "options", vlm_NULL ) );
1453     for( i = 0; i < p_cfg->i_option; i++ )
1454         vlm_MessageAdd( p_msg_sub, vlm_MessageNew( p_cfg->ppsz_option[i], vlm_NULL ) );
1455
1456     p_msg_sub = vlm_MessageAdd( p_msg, vlm_MessageNew( "instances", vlm_NULL ) );
1457     for( i = 0; i < p_media->i_instance; i++ )
1458     {
1459         vlm_media_instance_sys_t *p_instance = p_media->instance[i];
1460         vlc_value_t val;
1461         vlm_message_t *p_msg_instance;
1462         char *psz_tmp;
1463
1464         val.i_int = END_S;
1465         if( p_instance->p_input )
1466             var_Get( p_instance->p_input, "state", &val );
1467
1468         p_msg_instance = vlm_MessageAdd( p_msg_sub, vlm_MessageNew( "instance" , vlm_NULL ) );
1469
1470         vlm_MessageAdd( p_msg_instance,
1471                         vlm_MessageNew( "name" , p_instance->psz_name ? p_instance->psz_name : "default" ) );
1472         vlm_MessageAdd( p_msg_instance,
1473                         vlm_MessageNew( "state",
1474                             val.i_int == PLAYING_S ? "playing" :
1475                             val.i_int == PAUSE_S ? "paused" :
1476                             "stopped" ) );
1477
1478         /* FIXME should not do that this way */
1479         if( p_instance->p_input )
1480         {
1481 #define APPEND_INPUT_INFO( a, format, type ) \
1482             asprintf( &psz_tmp, format, \
1483                       var_Get ## type( p_instance->p_input, a ) ); \
1484             vlm_MessageAdd( p_msg_instance, vlm_MessageNew( a, psz_tmp ) ); \
1485             free( psz_tmp );
1486             APPEND_INPUT_INFO( "position", "%f", Float );
1487             APPEND_INPUT_INFO( "time", I64Fi, Time );
1488             APPEND_INPUT_INFO( "length", I64Fi, Time );
1489             APPEND_INPUT_INFO( "rate", "%d", Integer );
1490             APPEND_INPUT_INFO( "title", "%d", Integer );
1491             APPEND_INPUT_INFO( "chapter", "%d", Integer );
1492             APPEND_INPUT_INFO( "seekable", "%d", Bool );
1493         }
1494 #undef APPEND_INPUT_INFO
1495         asprintf( &psz_tmp, "%d", p_instance->i_index + 1 );
1496         vlm_MessageAdd( p_msg_instance, vlm_MessageNew( "playlistindex", psz_tmp ) );
1497         free( psz_tmp );
1498     }
1499     return p_msg;
1500 }
1501
1502 static vlm_message_t *vlm_Show( vlm_t *vlm, vlm_media_sys_t *media,
1503                                 vlm_schedule_sys_t *schedule,
1504                                 const char *psz_filter )
1505 {
1506     if( media != NULL )
1507     {
1508         vlm_message_t *p_msg = vlm_MessageNew( "show", vlm_NULL );
1509         if( p_msg )
1510             vlm_MessageAdd( p_msg, vlm_ShowMedia( media ) );
1511         return p_msg;
1512     }
1513
1514     else if( schedule != NULL )
1515     {
1516         int i;
1517         vlm_message_t *msg;
1518         vlm_message_t *msg_schedule;
1519         vlm_message_t *msg_child;
1520         char buffer[100];
1521
1522         msg = vlm_MessageNew( "show", vlm_NULL );
1523         msg_schedule =
1524             vlm_MessageAdd( msg, vlm_MessageNew( schedule->psz_name, vlm_NULL ) );
1525
1526         vlm_MessageAdd( msg_schedule, vlm_MessageNew("type", "schedule") );
1527
1528         vlm_MessageAdd( msg_schedule,
1529                         vlm_MessageNew( "enabled", schedule->b_enabled ?
1530                                         "yes" : "no" ) );
1531
1532 #if !defined( UNDER_CE )
1533         if( schedule->i_date != 0 )
1534         {
1535             struct tm date;
1536             time_t i_time = (time_t)( schedule->i_date / 1000000 );
1537             char *psz_date;
1538
1539             localtime_r( &i_time, &date);
1540             asprintf( &psz_date, "%d/%d/%d-%d:%d:%d",
1541                       date.tm_year + 1900, date.tm_mon + 1, date.tm_mday,
1542                       date.tm_hour, date.tm_min, date.tm_sec );
1543
1544             vlm_MessageAdd( msg_schedule,
1545                             vlm_MessageNew( "date", psz_date ) );
1546             free( psz_date );
1547         }
1548         else
1549         {
1550             vlm_MessageAdd( msg_schedule, vlm_MessageNew("date", "now") );
1551         }
1552
1553         if( schedule->i_period != 0 )
1554         {
1555             time_t i_time = (time_t) ( schedule->i_period / 1000000 );
1556             struct tm date;
1557
1558             date.tm_sec = (int)( i_time % 60 );
1559             i_time = i_time / 60;
1560             date.tm_min = (int)( i_time % 60 );
1561             i_time = i_time / 60;
1562             date.tm_hour = (int)( i_time % 24 );
1563             i_time = i_time / 24;
1564             date.tm_mday = (int)( i_time % 30 );
1565             i_time = i_time / 30;
1566             /* okay, okay, months are not always 30 days long */
1567             date.tm_mon = (int)( i_time % 12 );
1568             i_time = i_time / 12;
1569             date.tm_year = (int)i_time;
1570
1571             sprintf( buffer, "%d/%d/%d-%d:%d:%d", date.tm_year, date.tm_mon,
1572                      date.tm_mday, date.tm_hour, date.tm_min, date.tm_sec);
1573
1574             vlm_MessageAdd( msg_schedule, vlm_MessageNew("period", buffer) );
1575         }
1576         else
1577         {
1578             vlm_MessageAdd( msg_schedule, vlm_MessageNew("period", "0") );
1579         }
1580 #endif /* UNDER_CE */
1581
1582         sprintf( buffer, "%d", schedule->i_repeat );
1583         vlm_MessageAdd( msg_schedule, vlm_MessageNew( "repeat", buffer ) );
1584
1585         msg_child =
1586             vlm_MessageAdd( msg_schedule, vlm_MessageNew("commands", vlm_NULL ) );
1587
1588         for( i = 0; i < schedule->i_command; i++ )
1589         {
1590            vlm_MessageAdd( msg_child,
1591                            vlm_MessageNew( schedule->command[i], vlm_NULL ) );
1592         }
1593
1594         return msg;
1595
1596     }
1597
1598     else if( psz_filter && !strcmp( psz_filter, "media" ) )
1599     {
1600         vlm_message_t *p_msg;
1601         vlm_message_t *p_msg_child;
1602         int i_vod = 0, i_broadcast = 0;
1603         int i;
1604         char *psz_count;
1605
1606         for( i = 0; i < vlm->i_media; i++ )
1607         {
1608             if( vlm->media[i]->cfg.b_vod )
1609                 i_vod++;
1610             else
1611                 i_broadcast++;
1612         }
1613
1614         asprintf( &psz_count, "( %d broadcast - %d vod )", i_broadcast, i_vod);
1615
1616         p_msg = vlm_MessageNew( "show", vlm_NULL );
1617         p_msg_child = vlm_MessageAdd( p_msg, vlm_MessageNew( "media", psz_count ) );
1618         free( psz_count );
1619
1620         for( i = 0; i < vlm->i_media; i++ )
1621             vlm_MessageAdd( p_msg_child, vlm_ShowMedia( vlm->media[i] ) );
1622
1623         return p_msg;
1624     }
1625
1626     else if( psz_filter && !strcmp( psz_filter, "schedule" ) )
1627     {
1628         int i;
1629         vlm_message_t *msg;
1630         vlm_message_t *msg_child;
1631
1632         msg = vlm_MessageNew( "show", vlm_NULL );
1633         msg_child = vlm_MessageAdd( msg, vlm_MessageNew( "schedule", vlm_NULL ) );
1634
1635         for( i = 0; i < vlm->i_schedule; i++ )
1636         {
1637             vlm_schedule_sys_t *s = vlm->schedule[i];
1638             vlm_message_t *msg_schedule;
1639             mtime_t i_time, i_next_date;
1640
1641             msg_schedule = vlm_MessageAdd( msg_child,
1642                                            vlm_MessageNew( s->psz_name, vlm_NULL ) );
1643             vlm_MessageAdd( msg_schedule,
1644                             vlm_MessageNew( "enabled", s->b_enabled ?
1645                                             "yes" : "no" ) );
1646
1647             /* calculate next date */
1648             i_time = vlm_Date();
1649             i_next_date = s->i_date;
1650
1651             if( s->i_period != 0 )
1652             {
1653                 int j = 0;
1654                 while( s->i_date + j * s->i_period <= i_time &&
1655                        s->i_repeat > j )
1656                 {
1657                     j++;
1658                 }
1659
1660                 i_next_date = s->i_date + j * s->i_period;
1661             }
1662
1663             if( i_next_date > i_time )
1664             {
1665                 time_t i_date = (time_t) (i_next_date / 1000000) ;
1666
1667 #if !defined( UNDER_CE )
1668 #ifdef HAVE_CTIME_R
1669                 char psz_date[500];
1670                 ctime_r( &i_date, psz_date );
1671 #else
1672                 char *psz_date = ctime( &i_date );
1673 #endif
1674
1675                 vlm_MessageAdd( msg_schedule,
1676                                 vlm_MessageNew( "next launch", psz_date ) );
1677 #endif
1678             }
1679         }
1680
1681         return msg;
1682     }
1683
1684     else if( ( psz_filter == NULL ) && ( media == NULL ) && ( schedule == NULL ) )
1685     {
1686         vlm_message_t *show1 = vlm_Show( vlm, NULL, NULL, "media" );
1687         vlm_message_t *show2 = vlm_Show( vlm, NULL, NULL, "schedule" );
1688
1689         vlm_MessageAdd( show1, show2->child[0] );
1690
1691         /* We must destroy the parent node "show" of show2
1692          * and not the children */
1693         free( show2->psz_name );
1694         free( show2 );
1695
1696         return show1;
1697     }
1698
1699     else
1700     {
1701         return vlm_MessageNew( "show", vlm_NULL );
1702     }
1703 }
1704
1705 /*****************************************************************************
1706  * Config handling functions
1707  *****************************************************************************/
1708 static int Load( vlm_t *vlm, char *file )
1709 {
1710     char *pf = file;
1711     int  i_line = 1;
1712
1713     while( *pf != '\0' )
1714     {
1715         vlm_message_t *message = NULL;
1716         int i_end = 0;
1717
1718         while( pf[i_end] != '\n' && pf[i_end] != '\0' && pf[i_end] != '\r' )
1719         {
1720             i_end++;
1721         }
1722
1723         if( pf[i_end] == '\r' || pf[i_end] == '\n' )
1724         {
1725             pf[i_end] = '\0';
1726             i_end++;
1727             if( pf[i_end] == '\n' ) i_end++;
1728         }
1729
1730         if( *pf && ExecuteCommand( vlm, pf, &message ) )
1731         {
1732             if( message )
1733             {
1734                 if( message->psz_value )
1735                     msg_Err( vlm, "Load error on line %d: %s: %s",
1736                              i_line, message->psz_name, message->psz_value );
1737                 vlm_MessageDelete( message );
1738             }
1739             return 1;
1740         }
1741         if( message ) vlm_MessageDelete( message );
1742
1743         pf += i_end;
1744         i_line++;
1745     }
1746
1747     return 0;
1748 }
1749
1750 static char *Save( vlm_t *vlm )
1751 {
1752     char *save = NULL;
1753     char psz_header[] = "\n"
1754                         "# VLC media player VLM command batch\n"
1755                         "# http://www.videolan.org/vlc/\n\n" ;
1756     char *p;
1757     int i,j;
1758     int i_length = strlen( psz_header );
1759
1760     for( i = 0; i < vlm->i_media; i++ )
1761     {
1762         vlm_media_sys_t *media = vlm->media[i];
1763         vlm_media_t *p_cfg = &media->cfg;
1764
1765         if( p_cfg->b_vod )
1766             i_length += strlen( "new * vod " ) + strlen(p_cfg->psz_name);
1767         else
1768             i_length += strlen( "new * broadcast " ) + strlen(p_cfg->psz_name);
1769
1770         if( p_cfg->b_enabled == VLC_TRUE )
1771             i_length += strlen( "enabled" );
1772         else
1773             i_length += strlen( "disabled" );
1774
1775         if( !p_cfg->b_vod && p_cfg->broadcast.b_loop == VLC_TRUE )
1776             i_length += strlen( " loop\n" );
1777         else
1778             i_length += strlen( "\n" );
1779
1780         for( j = 0; j < p_cfg->i_input; j++ )
1781             i_length += strlen( "setup * input \"\"\n" ) + strlen( p_cfg->psz_name ) + strlen( p_cfg->ppsz_input[j] );
1782
1783         if( p_cfg->psz_output != NULL )
1784             i_length += strlen( "setup * output \n" ) + strlen(p_cfg->psz_name) + strlen(p_cfg->psz_output);
1785
1786         for( j = 0; j < p_cfg->i_option; j++ )
1787             i_length += strlen("setup * option \n") + strlen(p_cfg->psz_name) + strlen(p_cfg->ppsz_option[j]);
1788
1789         if( p_cfg->b_vod && p_cfg->vod.psz_mux )
1790             i_length += strlen("setup * mux \n") + strlen(p_cfg->psz_name) + strlen(p_cfg->vod.psz_mux);
1791     }
1792
1793     for( i = 0; i < vlm->i_schedule; i++ )
1794     {
1795         vlm_schedule_sys_t *schedule = vlm->schedule[i];
1796
1797         i_length += strlen( "new  schedule " ) + strlen( schedule->psz_name );
1798
1799         if( schedule->b_enabled == VLC_TRUE )
1800         {
1801             i_length += strlen( "date //-:: enabled\n" ) + 14;
1802         }
1803         else
1804         {
1805             i_length += strlen( "date //-:: disabled\n" ) + 14;
1806         }
1807
1808
1809         if( schedule->i_period != 0 )
1810         {
1811             i_length += strlen( "setup  " ) + strlen( schedule->psz_name ) +
1812                 strlen( "period //-::\n" ) + 14;
1813         }
1814
1815         if( schedule->i_repeat >= 0 )
1816         {
1817             char buffer[12];
1818
1819             sprintf( buffer, "%d", schedule->i_repeat );
1820             i_length += strlen( "setup  repeat \n" ) +
1821                 strlen( schedule->psz_name ) + strlen( buffer );
1822         }
1823         else
1824         {
1825             i_length++;
1826         }
1827
1828         for( j = 0; j < schedule->i_command; j++ )
1829         {
1830             i_length += strlen( "setup  append \n" ) +
1831                 strlen( schedule->psz_name ) + strlen( schedule->command[j] );
1832         }
1833
1834     }
1835
1836     /* Don't forget the '\0' */
1837     i_length++;
1838     /* now we have the length of save */
1839
1840     p = save = malloc( i_length );
1841     if( !save ) return NULL;
1842     *save = '\0';
1843
1844     p += sprintf( p, "%s", psz_header );
1845
1846     /* finally we can write in it */
1847     for( i = 0; i < vlm->i_media; i++ )
1848     {
1849         vlm_media_sys_t *media = vlm->media[i];
1850         vlm_media_t *p_cfg = &media->cfg;
1851
1852         if( p_cfg->b_vod )
1853             p += sprintf( p, "new %s vod ", p_cfg->psz_name );
1854         else
1855             p += sprintf( p, "new %s broadcast ", p_cfg->psz_name );
1856
1857         if( p_cfg->b_enabled )
1858             p += sprintf( p, "enabled" );
1859         else
1860             p += sprintf( p, "disabled" );
1861
1862         if( !p_cfg->b_vod && p_cfg->broadcast.b_loop )
1863             p += sprintf( p, " loop\n" );
1864         else
1865             p += sprintf( p, "\n" );
1866
1867         for( j = 0; j < p_cfg->i_input; j++ )
1868             p += sprintf( p, "setup %s input \"%s\"\n", p_cfg->psz_name, p_cfg->ppsz_input[j] );
1869
1870         if( p_cfg->psz_output )
1871             p += sprintf( p, "setup %s output %s\n", p_cfg->psz_name, p_cfg->psz_output );
1872
1873         for( j = 0; j < p_cfg->i_option; j++ )
1874             p += sprintf( p, "setup %s option %s\n", p_cfg->psz_name, p_cfg->ppsz_option[j] );
1875
1876         if( p_cfg->b_vod && p_cfg->vod.psz_mux )
1877             p += sprintf( p, "setup %s mux %s\n", p_cfg->psz_name, p_cfg->vod.psz_mux );
1878     }
1879
1880     /* and now, the schedule scripts */
1881 #if !defined( UNDER_CE )
1882     for( i = 0; i < vlm->i_schedule; i++ )
1883     {
1884         vlm_schedule_sys_t *schedule = vlm->schedule[i];
1885         struct tm date;
1886         time_t i_time = (time_t) ( schedule->i_date / 1000000 );
1887
1888         localtime_r( &i_time, &date);
1889         p += sprintf( p, "new %s schedule ", schedule->psz_name);
1890
1891         if( schedule->b_enabled == VLC_TRUE )
1892         {
1893             p += sprintf( p, "date %d/%d/%d-%d:%d:%d enabled\n",
1894                           date.tm_year + 1900, date.tm_mon + 1, date.tm_mday,
1895                           date.tm_hour, date.tm_min, date.tm_sec );
1896         }
1897         else
1898         {
1899             p += sprintf( p, "date %d/%d/%d-%d:%d:%d disabled\n",
1900                           date.tm_year + 1900, date.tm_mon + 1, date.tm_mday,
1901                           date.tm_hour, date.tm_min, date.tm_sec);
1902         }
1903
1904         if( schedule->i_period != 0 )
1905         {
1906             p += sprintf( p, "setup %s ", schedule->psz_name );
1907
1908             i_time = (time_t) ( schedule->i_period / 1000000 );
1909
1910             date.tm_sec = (int)( i_time % 60 );
1911             i_time = i_time / 60;
1912             date.tm_min = (int)( i_time % 60 );
1913             i_time = i_time / 60;
1914             date.tm_hour = (int)( i_time % 24 );
1915             i_time = i_time / 24;
1916             date.tm_mday = (int)( i_time % 30 );
1917             i_time = i_time / 30;
1918             /* okay, okay, months are not always 30 days long */
1919             date.tm_mon = (int)( i_time % 12 );
1920             i_time = i_time / 12;
1921             date.tm_year = (int)i_time;
1922
1923             p += sprintf( p, "period %d/%d/%d-%d:%d:%d\n",
1924                           date.tm_year, date.tm_mon, date.tm_mday,
1925                           date.tm_hour, date.tm_min, date.tm_sec);
1926         }
1927
1928         if( schedule->i_repeat >= 0 )
1929         {
1930             p += sprintf( p, "setup %s repeat %d\n",
1931                           schedule->psz_name, schedule->i_repeat );
1932         }
1933         else
1934         {
1935             p += sprintf( p, "\n" );
1936         }
1937
1938         for( j = 0; j < schedule->i_command; j++ )
1939         {
1940             p += sprintf( p, "setup %s append %s\n",
1941                           schedule->psz_name, schedule->command[j] );
1942         }
1943
1944     }
1945 #endif /* UNDER_CE */
1946
1947     return save;
1948 }
1949
1950 /*****************************************************************************
1951  *
1952  *****************************************************************************/
1953 static int vlm_MediaVodControl( void *p_private, vod_media_t *p_vod_media,
1954                                 const char *psz_id, int i_query, va_list args )
1955 {
1956     vlm_t *vlm = (vlm_t *)p_private;
1957     int i, i_ret;
1958     const char *psz;
1959     int64_t id;
1960
1961     if( !p_private || !p_vod_media )
1962         return VLC_EGENERIC;
1963
1964     vlc_mutex_lock( &vlm->lock );
1965
1966     /* Find media id */
1967     for( i = 0, id = -1; i < vlm->i_media; i++ )
1968     {
1969         if( p_vod_media == vlm->media[i]->vod.p_media )
1970         {
1971             id = vlm->media[i]->cfg.id;
1972             break;
1973         }
1974     }
1975     if( id == -1 )
1976     {
1977         vlc_mutex_unlock( &vlm->lock );
1978         return VLC_EGENERIC;
1979     }
1980
1981     switch( i_query )
1982     {
1983     case VOD_MEDIA_PLAY:
1984         psz = (const char *)va_arg( args, const char * );
1985         i_ret = vlm_ControlInternal( vlm, VLM_START_MEDIA_VOD_INSTANCE, id, psz_id, 0, psz );
1986         break;
1987
1988     case VOD_MEDIA_PAUSE:
1989         i_ret = vlm_ControlInternal( vlm, VLM_PAUSE_MEDIA_INSTANCE, id, psz_id );
1990         break;
1991
1992     case VOD_MEDIA_STOP:
1993         i_ret = vlm_ControlInternal( vlm, VLM_STOP_MEDIA_INSTANCE, id, psz_id );
1994         break;
1995
1996     case VOD_MEDIA_SEEK:
1997     {
1998         double d_position = (double)va_arg( args, double );
1999         i_ret = vlm_ControlInternal( vlm, VLM_SET_MEDIA_INSTANCE_POSITION, id, psz_id, d_position/100.0 );
2000         break;
2001     }
2002
2003     case VOD_MEDIA_REWIND:
2004     {
2005         double d_scale = (double)va_arg( args, double );
2006         double d_position;
2007
2008         vlm_ControlInternal( vlm, VLM_GET_MEDIA_INSTANCE_POSITION, id, psz_id, &d_position );
2009         d_position -= (d_scale / 1000.0);
2010         if( d_position < 0.0 )
2011             d_position = 0.0;
2012         i_ret = vlm_ControlInternal( vlm, VLM_SET_MEDIA_INSTANCE_POSITION, id, psz_id, d_position );
2013         break;
2014     }
2015
2016     case VOD_MEDIA_FORWARD:
2017     {
2018         double d_scale = (double)va_arg( args, double );
2019         double d_position;
2020
2021         vlm_ControlInternal( vlm, VLM_GET_MEDIA_INSTANCE_POSITION, id, psz_id, &d_position );
2022         d_position += (d_scale / 1000.0);
2023         if( d_position > 1.0 )
2024             d_position = 1.0;
2025         i_ret = vlm_ControlInternal( vlm, VLM_SET_MEDIA_INSTANCE_POSITION, id, psz_id, d_position );
2026         break;
2027     }
2028
2029     default:
2030         i_ret = VLC_EGENERIC;
2031         break;
2032     }
2033
2034     vlc_mutex_unlock( &vlm->lock );
2035
2036     return i_ret;
2037 }
2038
2039
2040 /*****************************************************************************
2041  * Manage:
2042  *****************************************************************************/
2043 static int Manage( vlc_object_t* p_object )
2044 {
2045     vlm_t *vlm = (vlm_t*)p_object;
2046     int i, j;
2047     mtime_t i_lastcheck;
2048     mtime_t i_time;
2049
2050     i_lastcheck = vlm_Date();
2051
2052     while( !vlm->b_die )
2053     {
2054         char **ppsz_scheduled_commands = NULL;
2055         int    i_scheduled_commands = 0;
2056
2057         vlc_mutex_lock( &vlm->lock );
2058
2059         /* destroy the inputs that wants to die, and launch the next input */
2060         for( i = 0; i < vlm->i_media; i++ )
2061         {
2062             vlm_media_sys_t *p_media = vlm->media[i];
2063
2064             for( j = 0; j < p_media->i_instance; )
2065             {
2066                 vlm_media_instance_sys_t *p_instance = p_media->instance[j];
2067
2068                 if( p_instance->p_input && ( p_instance->p_input->b_eof || p_instance->p_input->b_error ) )
2069                 {
2070                     int i_new_input_index;
2071
2072                     /* */
2073                     i_new_input_index = p_instance->i_index + 1;
2074                     if( !p_media->cfg.b_vod && p_media->cfg.broadcast.b_loop && i_new_input_index >= p_media->cfg.i_input )
2075                         i_new_input_index = 0;
2076
2077                     /* FIXME implement multiple input with VOD */
2078                     if( p_media->cfg.b_vod || i_new_input_index >= p_media->cfg.i_input )
2079                         vlm_ControlInternal( vlm, VLM_STOP_MEDIA_INSTANCE, p_media->cfg.id, p_instance->psz_name );
2080                     else
2081                         vlm_ControlInternal( vlm, VLM_START_MEDIA_BROADCAST_INSTANCE, p_media->cfg.id, p_instance->psz_name, i_new_input_index );
2082
2083                     j = 0;
2084                 }
2085                 else
2086                 {
2087                     j++;
2088                 }
2089             }
2090         }
2091
2092         /* scheduling */
2093         i_time = vlm_Date();
2094
2095         for( i = 0; i < vlm->i_schedule; i++ )
2096         {
2097             mtime_t i_real_date = vlm->schedule[i]->i_date;
2098
2099             if( vlm->schedule[i]->b_enabled == VLC_TRUE )
2100             {
2101                 if( vlm->schedule[i]->i_date == 0 ) // now !
2102                 {
2103                     vlm->schedule[i]->i_date = (i_time / 1000000) * 1000000 ;
2104                     i_real_date = i_time;
2105                 }
2106                 else if( vlm->schedule[i]->i_period != 0 )
2107                 {
2108                     int j = 0;
2109                     while( vlm->schedule[i]->i_date + j *
2110                            vlm->schedule[i]->i_period <= i_lastcheck &&
2111                            ( vlm->schedule[i]->i_repeat > j ||
2112                              vlm->schedule[i]->i_repeat == -1 ) )
2113                     {
2114                         j++;
2115                     }
2116
2117                     i_real_date = vlm->schedule[i]->i_date + j *
2118                         vlm->schedule[i]->i_period;
2119                 }
2120
2121                 if( i_real_date <= i_time && i_real_date > i_lastcheck )
2122                 {
2123                     for( j = 0; j < vlm->schedule[i]->i_command; j++ )
2124                     {
2125                         TAB_APPEND( i_scheduled_commands,
2126                                     ppsz_scheduled_commands,
2127                                     strdup(vlm->schedule[i]->command[j] ) );
2128                     }
2129                 }
2130             }
2131         }
2132         while( i_scheduled_commands )
2133         {
2134             vlm_message_t *message = NULL;
2135             char *psz_command = ppsz_scheduled_commands[0];
2136             ExecuteCommand( vlm, psz_command,&message );
2137
2138             /* for now, drop the message */
2139             vlm_MessageDelete( message );
2140             TAB_REMOVE( i_scheduled_commands,
2141                         ppsz_scheduled_commands,
2142                         psz_command );
2143             free( psz_command );
2144         }
2145
2146         i_lastcheck = i_time;
2147
2148         vlc_mutex_unlock( &vlm->lock );
2149
2150         msleep( 100000 );
2151     }
2152
2153     return VLC_SUCCESS;
2154 }
2155
2156 /* New API
2157  */
2158 /*
2159 typedef struct
2160 {
2161     struct
2162     {
2163         int i_connection_count;
2164         int i_connection_active;
2165     } vod;
2166     struct
2167     {
2168         int        i_count;
2169         vlc_bool_t b_playing;
2170         int        i_playing_index;
2171     } broadcast;
2172
2173 } vlm_media_status_t;
2174 */
2175
2176 /* */
2177 static vlm_media_sys_t *vlm_ControlMediaGetById( vlm_t *p_vlm, int64_t id )
2178 {
2179     int i;
2180
2181     for( i = 0; i < p_vlm->i_media; i++ )
2182     {
2183         if( p_vlm->media[i]->cfg.id == id )
2184             return p_vlm->media[i];
2185     }
2186     return NULL;
2187 }
2188 static vlm_media_sys_t *vlm_ControlMediaGetByName( vlm_t *p_vlm, const char *psz_name )
2189 {
2190     int i;
2191
2192     for( i = 0; i < p_vlm->i_media; i++ )
2193     {
2194         if( !strcmp( p_vlm->media[i]->cfg.psz_name, psz_name ) )
2195             return p_vlm->media[i];
2196     }
2197     return NULL;
2198 }
2199 static int vlm_MediaDescriptionCheck( vlm_t *p_vlm, vlm_media_t *p_cfg )
2200 {
2201     int i;
2202
2203     if( !p_cfg || !p_cfg->psz_name ||
2204         !strcmp( p_cfg->psz_name, "all" ) || !strcmp( p_cfg->psz_name, "media" ) || !strcmp( p_cfg->psz_name, "schedule" ) )
2205         return VLC_EGENERIC;
2206
2207     for( i = 0; i < p_vlm->i_media; i++ )
2208     {
2209         if( p_vlm->media[i]->cfg.id == p_cfg->id )
2210             continue;
2211         if( !strcmp( p_vlm->media[i]->cfg.psz_name, p_cfg->psz_name ) )
2212             return VLC_EGENERIC;
2213     }
2214     return VLC_SUCCESS;
2215 }
2216
2217
2218 /* Called after a media description is changed/added */
2219 static int vlm_OnMediaUpdate( vlm_t *p_vlm, vlm_media_sys_t *p_media )
2220 {
2221     vlm_media_t *p_cfg = &p_media->cfg;
2222     /* Check if we need to create/delete a vod media */
2223     if( p_cfg->b_vod )
2224     {
2225         if( !p_cfg->b_enabled && p_media->vod.p_media )
2226         {
2227             p_vlm->p_vod->pf_media_del( p_vlm->p_vod, p_media->vod.p_media );
2228             p_media->vod.p_media = NULL;
2229         }
2230         else if( p_cfg->b_enabled && !p_media->vod.p_media && p_cfg->i_input )
2231         {
2232             /* Pre-parse the input */
2233             input_thread_t *p_input;
2234             char *psz_output;
2235             char *psz_header;
2236             char *psz_dup;
2237             int i;
2238
2239             vlc_gc_decref( p_media->vod.p_item );
2240             p_media->vod.p_item = input_ItemNew( p_vlm, p_cfg->ppsz_input[0],
2241                 p_cfg->psz_name );
2242
2243             if( p_cfg->psz_output )
2244                 asprintf( &psz_output, "%s:description", p_cfg->psz_output );
2245             else
2246                 asprintf( &psz_output, "#description" );
2247
2248             asprintf( &psz_dup, "sout=%s", psz_output);
2249             input_ItemAddOption( p_media->vod.p_item, psz_dup );
2250             free( psz_dup );
2251             for( i = 0; i < p_cfg->i_option; i++ )
2252                 input_ItemAddOption( p_media->vod.p_item,
2253                                      p_cfg->ppsz_option[i] );
2254             input_ItemAddOption( p_media->vod.p_item, "no-sout-keep" );
2255
2256             asprintf( &psz_header, _("Media: %s"), p_cfg->psz_name );
2257
2258             if( (p_input = input_CreateThreadExtended( p_vlm, p_media->vod.p_item, psz_header, NULL ) ) )
2259             {
2260                 while( !p_input->b_eof && !p_input->b_error )
2261                     msleep( 100000 );
2262
2263                 input_StopThread( p_input );
2264                 vlc_object_release( p_input );
2265             }
2266             free( psz_output );
2267             free( psz_header );
2268
2269             if( p_cfg->vod.psz_mux )
2270             {
2271                 input_item_t item;
2272                 es_format_t es, *p_es = &es;
2273                 char fourcc[5];
2274
2275                 sprintf( fourcc, "%4.4s", p_cfg->vod.psz_mux );
2276                 fourcc[0] = tolower(fourcc[0]); fourcc[1] = tolower(fourcc[1]);
2277                 fourcc[2] = tolower(fourcc[2]); fourcc[3] = tolower(fourcc[3]);
2278
2279                 /* XXX: Don't do it that way, but properly use a new input item ref. */
2280                 item = *p_media->vod.p_item;
2281                 item.i_es = 1;
2282                 item.es = &p_es;
2283                 es_format_Init( &es, VIDEO_ES, *((int *)fourcc) );
2284
2285                 p_media->vod.p_media =
2286                     p_vlm->p_vod->pf_media_new( p_vlm->p_vod, p_cfg->psz_name, &item );
2287             }
2288             else
2289             {
2290                 p_media->vod.p_media =
2291                     p_vlm->p_vod->pf_media_new( p_vlm->p_vod, p_cfg->psz_name, p_media->vod.p_item );
2292             }
2293         }
2294     }
2295     else
2296     {
2297         /* TODO start media if needed */
2298     }
2299
2300     /* TODO add support of var vlm_media_broadcast/vlm_media_vod */
2301
2302     return VLC_SUCCESS;
2303 }
2304 static int vlm_ControlMediaChange( vlm_t *p_vlm, vlm_media_t *p_cfg )
2305 {
2306     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, p_cfg->id );
2307
2308     /* */
2309     if( !p_media || vlm_MediaDescriptionCheck( p_vlm, p_cfg ) )
2310         return VLC_EGENERIC;
2311     if( ( p_media->cfg.b_vod && !p_cfg->b_vod ) || ( !p_media->cfg.b_vod && p_cfg->b_vod ) )
2312         return VLC_EGENERIC;
2313
2314     if( 0 )
2315     {
2316         /* TODO check what are the changes being done (stop instance if needed) */
2317     }
2318
2319     vlm_media_Clean( &p_media->cfg );
2320     vlm_media_Copy( &p_media->cfg, p_cfg );
2321
2322     return vlm_OnMediaUpdate( p_vlm, p_media );
2323 }
2324
2325 static int vlm_ControlMediaAdd( vlm_t *p_vlm, vlm_media_t *p_cfg, int64_t *p_id )
2326 {
2327     vlm_media_sys_t *p_media;
2328
2329     if( vlm_MediaDescriptionCheck( p_vlm, p_cfg ) || vlm_ControlMediaGetByName( p_vlm, p_cfg->psz_name ) )
2330     {
2331         msg_Err( p_vlm, "invalid media description" );
2332         return VLC_EGENERIC;
2333     }
2334     /* Check if we need to load the VOD server */
2335     if( p_cfg->b_vod && !p_vlm->i_vod )
2336     {
2337         p_vlm->p_vod = vlc_custom_create( VLC_OBJECT(p_vlm), sizeof( vod_t ),
2338                                           VLC_OBJECT_GENERIC, "vod server" );
2339         vlc_object_attach( p_vlm->p_vod, p_vlm );
2340         p_vlm->p_vod->p_module = module_Need( p_vlm->p_vod, "vod server", 0, 0 );
2341         if( !p_vlm->p_vod->p_module )
2342         {
2343             msg_Err( p_vlm, "cannot find vod server" );
2344             vlc_object_detach( p_vlm->p_vod );
2345             vlc_object_release( p_vlm->p_vod );
2346             p_vlm->p_vod = 0;
2347             return VLC_EGENERIC;
2348         }
2349
2350         p_vlm->p_vod->p_data = p_vlm;
2351         p_vlm->p_vod->pf_media_control = vlm_MediaVodControl;
2352     }
2353
2354     p_media = malloc( sizeof( vlm_media_sys_t ) );
2355     if( !p_media )
2356     {
2357         msg_Err( p_vlm, "out of memory" );
2358         return VLC_ENOMEM;
2359     }
2360     memset( p_media, 0, sizeof(vlm_media_sys_t) );
2361
2362     if( p_cfg->b_vod )
2363         p_vlm->i_vod++;
2364
2365     vlm_media_Copy( &p_media->cfg, p_cfg );
2366     p_media->cfg.id = p_vlm->i_id++;
2367     /* FIXME do we do something here if enabled is true ? */
2368
2369     p_media->vod.p_item = input_ItemNew( p_vlm, NULL, NULL );
2370
2371     p_media->vod.p_media = NULL;
2372     TAB_INIT( p_media->i_instance, p_media->instance );
2373
2374     /* */
2375     TAB_APPEND( p_vlm->i_media, p_vlm->media, p_media );
2376
2377     if( p_id )
2378         *p_id = p_media->cfg.id;
2379
2380     return vlm_OnMediaUpdate( p_vlm, p_media );
2381 }
2382
2383 static int vlm_ControlMediaDel( vlm_t *p_vlm, int64_t id )
2384 {
2385     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
2386
2387     if( !p_media )
2388         return VLC_EGENERIC;
2389
2390     while( p_media->i_instance > 0 )
2391         vlm_ControlInternal( p_vlm, VLM_STOP_MEDIA_INSTANCE, id, p_media->instance[0]->psz_name );
2392
2393     if( p_media->cfg.b_vod )
2394     {
2395         p_media->cfg.b_enabled = VLC_FALSE;
2396         vlm_OnMediaUpdate( p_vlm, p_media );
2397         p_vlm->i_vod--;
2398     }
2399
2400     vlm_media_Clean( &p_media->cfg );
2401
2402     vlc_gc_decref( p_media->vod.p_item );
2403
2404     TAB_REMOVE( p_vlm->i_media, p_vlm->media, p_media );
2405
2406     free( p_media );
2407
2408     /* Check if we need to unload the VOD server */
2409     if( p_vlm->p_vod && p_vlm->i_vod <= 0 )
2410     {
2411         module_Unneed( p_vlm->p_vod, p_vlm->p_vod->p_module );
2412         vlc_object_detach( p_vlm->p_vod );
2413         vlc_object_release( p_vlm->p_vod );
2414         p_vlm->p_vod = NULL;
2415     }
2416     return VLC_SUCCESS;
2417 }
2418
2419 static int vlm_ControlMediaGets( vlm_t *p_vlm, vlm_media_t ***ppp_dsc, int *pi_dsc )
2420 {
2421     vlm_media_t **pp_dsc;
2422     int                     i_dsc;
2423     int i;
2424
2425     TAB_INIT( i_dsc, pp_dsc );
2426     for( i = 0; i < p_vlm->i_media; i++ )
2427     {
2428         vlm_media_t *p_dsc = vlm_media_Duplicate( &p_vlm->media[i]->cfg );
2429         TAB_APPEND( i_dsc, pp_dsc, p_dsc );
2430     }
2431
2432     *ppp_dsc = pp_dsc;
2433     *pi_dsc = i_dsc;
2434
2435     return VLC_SUCCESS;
2436 }
2437 static int vlm_ControlMediaClear( vlm_t *p_vlm )
2438 {
2439     while( p_vlm->i_media > 0 )
2440         vlm_ControlMediaDel( p_vlm, p_vlm->media[0]->cfg.id );
2441
2442     return VLC_SUCCESS;
2443 }
2444 static int vlm_ControlMediaGet( vlm_t *p_vlm, int64_t id, vlm_media_t **pp_dsc )
2445 {
2446     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
2447     if( !p_media )
2448         return VLC_EGENERIC;
2449
2450     *pp_dsc = vlm_media_Duplicate( &p_media->cfg );
2451     return VLC_SUCCESS;
2452 }
2453 static int vlm_ControlMediaGetId( vlm_t *p_vlm, const char *psz_name, int64_t *p_id )
2454 {
2455     vlm_media_sys_t *p_media = vlm_ControlMediaGetByName( p_vlm, psz_name );
2456     if( !p_media )
2457         return VLC_EGENERIC;
2458
2459     *p_id = p_media->cfg.id;
2460     return VLC_SUCCESS;
2461 }
2462
2463 static vlm_media_instance_sys_t *vlm_ControlMediaInstanceGetByName( vlm_media_sys_t *p_media, const char *psz_id )
2464 {
2465     int i;
2466
2467     for( i = 0; i < p_media->i_instance; i++ )
2468     {
2469         const char *psz = p_media->instance[i]->psz_name;
2470         if( ( psz == NULL && psz_id == NULL ) ||
2471             ( psz && psz_id && !strcmp( psz, psz_id ) ) )
2472             return p_media->instance[i];
2473     }
2474     return NULL;
2475 }
2476 static vlm_media_instance_sys_t *vlm_MediaInstanceNew( vlm_t *p_vlm, const char *psz_name )
2477 {
2478     vlm_media_instance_sys_t *p_instance = malloc( sizeof(vlm_media_instance_sys_t) );
2479     if( !p_instance )
2480         return NULL;
2481
2482     memset( p_instance, 0, sizeof(vlm_media_instance_sys_t) );
2483
2484     p_instance->psz_name = NULL;
2485     if( psz_name )
2486         p_instance->psz_name = strdup( psz_name );
2487
2488     p_instance->p_item = input_ItemNew( p_vlm, NULL, NULL );
2489
2490     p_instance->i_index = 0;
2491     p_instance->b_sout_keep = VLC_FALSE;
2492     p_instance->p_input = NULL;
2493     p_instance->p_sout = NULL;
2494
2495     return p_instance;
2496 }
2497 static void vlm_MediaInstanceDelete( vlm_media_instance_sys_t *p_instance )
2498 {
2499     if( p_instance->p_input )
2500     {
2501         input_StopThread( p_instance->p_input );
2502         p_instance->p_sout = input_DetachSout( p_instance->p_input );
2503         vlc_object_release( p_instance->p_input );
2504     }
2505     if( p_instance->p_sout )
2506         sout_DeleteInstance( p_instance->p_sout );
2507
2508     vlc_gc_decref( p_instance->p_item );
2509     free( p_instance->psz_name );
2510     free( p_instance );
2511 }
2512
2513
2514 static int vlm_ControlMediaInstanceStart( vlm_t *p_vlm, int64_t id, const char *psz_id, int i_input_index, const char *psz_vod_output )
2515 {
2516     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
2517     vlm_media_instance_sys_t *p_instance;
2518     char *psz_log;
2519
2520     if( !p_media || !p_media->cfg.b_enabled || p_media->cfg.i_input <= 0 )
2521         return VLC_EGENERIC;
2522
2523     /* TODO support multiple input for VOD with sout-keep ? */
2524
2525     if( ( p_media->cfg.b_vod && !psz_vod_output ) || ( !p_media->cfg.b_vod && psz_vod_output ) )
2526         return VLC_EGENERIC;
2527
2528     if( i_input_index < 0 || i_input_index >= p_media->cfg.i_input )
2529         return VLC_EGENERIC;
2530
2531     p_instance = vlm_ControlMediaInstanceGetByName( p_media, psz_id );
2532     if( !p_instance )
2533     {
2534         vlm_media_t *p_cfg = &p_media->cfg;
2535         const char *psz_keep;
2536         int i;
2537
2538         p_instance = vlm_MediaInstanceNew( p_vlm, psz_id );
2539         if( !p_instance )
2540             return VLC_ENOMEM;
2541
2542         if( p_cfg->psz_output != NULL || psz_vod_output != NULL )
2543         {
2544             char *psz_buffer;
2545             asprintf( &psz_buffer, "sout=%s%s%s",
2546                       p_cfg->psz_output ? p_cfg->psz_output : "",
2547                       (p_cfg->psz_output && psz_vod_output) ? ":" : psz_vod_output ? "#" : "",
2548                       psz_vod_output ? psz_vod_output : "" );
2549             input_ItemAddOption( p_instance->p_item, psz_buffer );
2550             free( psz_buffer );
2551         }
2552
2553         for( i = 0; i < p_cfg->i_option; i++ )
2554         {
2555             if( !strcmp( p_cfg->ppsz_option[i], "sout-keep" ) )
2556                 p_instance->b_sout_keep = VLC_TRUE;
2557             else if( !strcmp( p_cfg->ppsz_option[i], "nosout-keep" ) || !strcmp( p_cfg->ppsz_option[i], "no-sout-keep" ) )
2558                 p_instance->b_sout_keep = VLC_FALSE;
2559             else
2560                 input_ItemAddOption( p_instance->p_item, p_cfg->ppsz_option[i] );
2561         }
2562         /* We force the right sout-keep value (avoid using the sout-keep from the global configuration)
2563          * FIXME implement input list for VOD (need sout-keep)
2564          * */
2565         if( !p_cfg->b_vod && p_instance->b_sout_keep )
2566             psz_keep = "sout-keep";
2567         else
2568             psz_keep = "no-sout-keep";
2569         input_ItemAddOption( p_instance->p_item, psz_keep );
2570
2571         TAB_APPEND( p_media->i_instance, p_media->instance, p_instance );
2572     }
2573
2574     /* Stop old instance */
2575     if( p_instance->p_input )
2576     {
2577         if( p_instance->i_index == i_input_index &&
2578             !p_instance->p_input->b_eof && !p_instance->p_input->b_error )
2579         {
2580             if( var_GetInteger( p_instance->p_input, "state" ) == PAUSE_S )
2581                 var_SetInteger( p_instance->p_input, "state",  PLAYING_S );
2582             return VLC_SUCCESS;
2583         }
2584
2585         input_StopThread( p_instance->p_input );
2586         p_instance->p_sout = input_DetachSout( p_instance->p_input );
2587         vlc_object_release( p_instance->p_input );
2588         if( !p_instance->b_sout_keep && p_instance->p_sout )
2589         {
2590             sout_DeleteInstance( p_instance->p_sout );
2591             p_instance->p_sout = NULL;
2592         }
2593     }
2594
2595     /* Start new one */
2596     p_instance->i_index = i_input_index;
2597     input_item_SetURI( p_instance->p_item, p_media->cfg.ppsz_input[p_instance->i_index] ) ;
2598
2599     asprintf( &psz_log, _("Media: %s"), p_media->cfg.psz_name );
2600     p_instance->p_input = input_CreateThreadExtended( p_vlm, p_instance->p_item, psz_log, p_instance->p_sout );
2601     if( !p_instance->p_input )
2602     {
2603         TAB_REMOVE( p_media->i_instance, p_media->instance, p_instance );
2604         vlm_MediaInstanceDelete( p_instance );
2605     }
2606     free( psz_log );
2607
2608     return VLC_SUCCESS;
2609 }
2610
2611 static int vlm_ControlMediaInstanceStop( vlm_t *p_vlm, int64_t id, const char *psz_id )
2612 {
2613     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
2614     vlm_media_instance_sys_t *p_instance;
2615
2616     if( !p_media )
2617         return VLC_EGENERIC;
2618
2619     p_instance = vlm_ControlMediaInstanceGetByName( p_media, psz_id );
2620     if( !p_instance )
2621         return VLC_EGENERIC;
2622
2623     TAB_REMOVE( p_media->i_instance, p_media->instance, p_instance );
2624
2625     vlm_MediaInstanceDelete( p_instance );
2626
2627     return VLC_SUCCESS;
2628 }
2629 static int vlm_ControlMediaInstancePause( vlm_t *p_vlm, int64_t id, const char *psz_id )
2630 {
2631     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
2632     vlm_media_instance_sys_t *p_instance;
2633     int i_state;
2634
2635     if( !p_media )
2636         return VLC_EGENERIC;
2637
2638     p_instance = vlm_ControlMediaInstanceGetByName( p_media, psz_id );
2639     if( !p_instance || !p_instance->p_input )
2640         return VLC_EGENERIC;
2641
2642     /* Toggle pause state */
2643     i_state = var_GetInteger( p_instance->p_input, "state" );
2644     if( i_state == PAUSE_S )
2645         var_SetInteger( p_instance->p_input, "state", PLAYING_S );
2646     else if( i_state == PLAYING_S )
2647         var_SetInteger( p_instance->p_input, "state", PAUSE_S );
2648     return VLC_SUCCESS;
2649 }
2650 static int vlm_ControlMediaInstanceGetTimePosition( vlm_t *p_vlm, int64_t id, const char *psz_id, int64_t *pi_time, double *pd_position )
2651 {
2652     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
2653     vlm_media_instance_sys_t *p_instance;
2654
2655     if( !p_media )
2656         return VLC_EGENERIC;
2657
2658     p_instance = vlm_ControlMediaInstanceGetByName( p_media, psz_id );
2659     if( !p_instance || !p_instance->p_input )
2660         return VLC_EGENERIC;
2661
2662     if( pi_time )
2663         *pi_time = var_GetTime( p_instance->p_input, "time" );
2664     if( pd_position )
2665         *pd_position = var_GetFloat( p_instance->p_input, "position" );
2666     return VLC_SUCCESS;
2667 }
2668 static int vlm_ControlMediaInstanceSetTimePosition( vlm_t *p_vlm, int64_t id, const char *psz_id, int64_t i_time, double d_position )
2669 {
2670     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
2671     vlm_media_instance_sys_t *p_instance;
2672
2673     if( !p_media )
2674         return VLC_EGENERIC;
2675
2676     p_instance = vlm_ControlMediaInstanceGetByName( p_media, psz_id );
2677     if( !p_instance || !p_instance->p_input )
2678         return VLC_EGENERIC;
2679
2680     if( i_time >= 0 )
2681         return var_SetTime( p_instance->p_input, "time", i_time );
2682     else if( d_position >= 0 && d_position <= 100 )
2683         return var_SetFloat( p_instance->p_input, "position", d_position );
2684     return VLC_EGENERIC;
2685 }
2686
2687 static int vlm_ControlMediaInstanceGets( vlm_t *p_vlm, int64_t id, vlm_media_instance_t ***ppp_idsc, int *pi_instance )
2688 {
2689     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
2690     vlm_media_instance_t **pp_idsc;
2691     int                              i_idsc;
2692     int i;
2693
2694     if( !p_media )
2695         return VLC_EGENERIC;
2696
2697     TAB_INIT( i_idsc, pp_idsc );
2698     for( i = 0; i < p_media->i_instance; i++ )
2699     {
2700         vlm_media_instance_sys_t *p_instance = p_media->instance[i];
2701         vlm_media_instance_t *p_idsc = vlm_media_instance_New();
2702
2703         if( p_instance->psz_name )
2704             p_idsc->psz_name = strdup( p_instance->psz_name );
2705         if( p_instance->p_input )
2706         {
2707             p_idsc->i_time = var_GetTime( p_instance->p_input, "time" );
2708             p_idsc->i_length = var_GetTime( p_instance->p_input, "length" );
2709             p_idsc->d_position = var_GetFloat( p_instance->p_input, "position" );
2710             if( var_GetInteger( p_instance->p_input, "state" ) == PAUSE_S )
2711                 p_idsc->b_paused = VLC_TRUE;
2712             p_idsc->i_rate = var_GetInteger( p_instance->p_input, "rate" );
2713         }
2714
2715         TAB_APPEND( i_idsc, pp_idsc, p_idsc );
2716     }
2717     *ppp_idsc = pp_idsc;
2718     *pi_instance = i_idsc;
2719     return VLC_SUCCESS;
2720 }
2721 static int vlm_ControlMediaInstanceClear( vlm_t *p_vlm, int64_t id )
2722 {
2723     vlm_media_sys_t *p_media = vlm_ControlMediaGetById( p_vlm, id );
2724
2725     if( !p_media )
2726         return VLC_EGENERIC;
2727
2728     while( p_media->i_instance > 0 )
2729         vlm_ControlMediaInstanceStop( p_vlm, id, p_media->instance[0]->psz_name );
2730
2731     return VLC_SUCCESS;
2732 }
2733
2734 static int vlm_ControlScheduleClear( vlm_t *p_vlm )
2735 {
2736     while( p_vlm->i_schedule > 0 )
2737         vlm_ScheduleDelete( p_vlm, p_vlm->schedule[0] );
2738
2739     return VLC_SUCCESS;
2740 }
2741 static int vlm_vaControlInternal( vlm_t *p_vlm, int i_query, va_list args )
2742 {
2743     vlm_media_t *p_dsc;
2744     vlm_media_t **pp_dsc;
2745     vlm_media_t ***ppp_dsc;
2746     vlm_media_instance_t ***ppp_idsc;
2747     const char *psz_id;
2748     const char *psz_vod;
2749     int64_t *p_id;
2750     int64_t id;
2751     int i_int;
2752     int *pi_int;
2753
2754     int64_t *pi_i64;
2755     int64_t i_i64;
2756     double *pd_double;
2757     double d_double;
2758
2759     switch( i_query )
2760     {
2761     /* Media control */
2762     case VLM_GET_MEDIAS:
2763         ppp_dsc = (vlm_media_t ***)va_arg( args, vlm_media_t *** );
2764         pi_int = (int *)va_arg( args, int * );
2765         return vlm_ControlMediaGets( p_vlm, ppp_dsc, pi_int );
2766
2767     case VLM_CLEAR_MEDIAS:
2768         return vlm_ControlMediaClear( p_vlm );
2769
2770     case VLM_CHANGE_MEDIA:
2771         p_dsc = (vlm_media_t*)va_arg( args, vlm_media_t * );
2772         return vlm_ControlMediaChange( p_vlm, p_dsc );
2773
2774     case VLM_ADD_MEDIA:
2775         p_dsc = (vlm_media_t*)va_arg( args, vlm_media_t * );
2776         p_id = (int64_t*)va_arg( args, int64_t * );
2777         return vlm_ControlMediaAdd( p_vlm, p_dsc, p_id );
2778
2779     case VLM_DEL_MEDIA:
2780         id = (int64_t)va_arg( args, int64_t );
2781         return vlm_ControlMediaDel( p_vlm, id );
2782
2783     case VLM_GET_MEDIA:
2784         id = (int64_t)va_arg( args, int64_t );
2785         pp_dsc = (vlm_media_t **)va_arg( args, vlm_media_t ** );
2786         return vlm_ControlMediaGet( p_vlm, id, pp_dsc );
2787
2788     case VLM_GET_MEDIA_ID:
2789         psz_id = (const char*)va_arg( args, const char * );
2790         p_id = (int64_t*)va_arg( args, int64_t * );
2791         return vlm_ControlMediaGetId( p_vlm, psz_id, p_id );
2792
2793
2794     /* Media instance control */
2795     case VLM_GET_MEDIA_INSTANCES:
2796         id = (int64_t)va_arg( args, int64_t );
2797         ppp_idsc = (vlm_media_instance_t ***)va_arg( args, vlm_media_instance_t *** );
2798         pi_int = (int *)va_arg( args, int *);
2799         return vlm_ControlMediaInstanceGets( p_vlm, id, ppp_idsc, pi_int );
2800
2801     case VLM_CLEAR_MEDIA_INSTANCES:
2802         id = (int64_t)va_arg( args, int64_t );
2803         return vlm_ControlMediaInstanceClear( p_vlm, id );
2804
2805
2806     case VLM_START_MEDIA_BROADCAST_INSTANCE:
2807         id = (int64_t)va_arg( args, int64_t );
2808         psz_id = (const char*)va_arg( args, const char* );
2809         i_int = (int)va_arg( args, int );
2810         return vlm_ControlMediaInstanceStart( p_vlm, id, psz_id, i_int, NULL );
2811
2812     case VLM_START_MEDIA_VOD_INSTANCE:
2813         id = (int64_t)va_arg( args, int64_t );
2814         psz_id = (const char*)va_arg( args, const char* );
2815         i_int = (int)va_arg( args, int );
2816         psz_vod = (const char*)va_arg( args, const char* );
2817         if( !psz_vod )
2818             return VLC_EGENERIC;
2819         return vlm_ControlMediaInstanceStart( p_vlm, id, psz_id, i_int, psz_vod );
2820
2821     case VLM_STOP_MEDIA_INSTANCE:
2822         id = (int64_t)va_arg( args, int64_t );
2823         psz_id = (const char*)va_arg( args, const char* );
2824         return vlm_ControlMediaInstanceStop( p_vlm, id, psz_id );
2825
2826     case VLM_PAUSE_MEDIA_INSTANCE:
2827         id = (int64_t)va_arg( args, int64_t );
2828         psz_id = (const char*)va_arg( args, const char* );
2829         return vlm_ControlMediaInstancePause( p_vlm, id, psz_id );
2830
2831     case VLM_GET_MEDIA_INSTANCE_TIME:
2832         id = (int64_t)va_arg( args, int64_t );
2833         psz_id = (const char*)va_arg( args, const char* );
2834         pi_i64 = (int64_t*)va_arg( args, int64_t * );
2835         return vlm_ControlMediaInstanceGetTimePosition( p_vlm, id, psz_id, pi_i64, NULL );
2836     case VLM_GET_MEDIA_INSTANCE_POSITION:
2837         id = (int64_t)va_arg( args, int64_t );
2838         psz_id = (const char*)va_arg( args, const char* );
2839         pd_double = (double*)va_arg( args, double* );
2840         return vlm_ControlMediaInstanceGetTimePosition( p_vlm, id, psz_id, NULL, pd_double );
2841
2842     case VLM_SET_MEDIA_INSTANCE_TIME:
2843         id = (int64_t)va_arg( args, int64_t );
2844         psz_id = (const char*)va_arg( args, const char* );
2845         i_i64 = (int64_t)va_arg( args, int64_t);
2846         return vlm_ControlMediaInstanceSetTimePosition( p_vlm, id, psz_id, i_i64, -1 );
2847     case VLM_SET_MEDIA_INSTANCE_POSITION:
2848         id = (int64_t)va_arg( args, int64_t );
2849         psz_id = (const char*)va_arg( args, const char* );
2850         d_double = (double)va_arg( args, double );
2851         return vlm_ControlMediaInstanceSetTimePosition( p_vlm, id, psz_id, -1, d_double );
2852
2853     case VLM_CLEAR_SCHEDULES:
2854         return vlm_ControlScheduleClear( p_vlm );
2855
2856     default:
2857         msg_Err( p_vlm, "unknown VLM query" );
2858         return VLC_EGENERIC;
2859     }
2860 }
2861 static int vlm_ControlInternal( vlm_t *p_vlm, int i_query, ... )
2862 {
2863     va_list args;
2864     int     i_result;
2865
2866     va_start( args, i_query );
2867     i_result = vlm_vaControlInternal( p_vlm, i_query, args );
2868     va_end( args );
2869
2870     return i_result;
2871 }
2872
2873 int vlm_Control( vlm_t *p_vlm, int i_query, ... )
2874 {
2875     va_list args;
2876     int     i_result;
2877
2878     va_start( args, i_query );
2879
2880     vlc_mutex_lock( &p_vlm->lock );
2881     i_result = vlm_vaControlInternal( p_vlm, i_query, args );
2882     vlc_mutex_unlock( &p_vlm->lock );
2883
2884     va_end( args );
2885
2886     return i_result;
2887 }
2888
2889 #else /* ENABLE_VLM */
2890
2891 /* We just define an empty wrapper */
2892 vlm_t *__vlm_New( vlc_object_t *a )
2893 {
2894     msg_Err( a, "VideoLAN manager support is disabled" );
2895     return NULL;
2896 }
2897
2898 void vlm_Delete( vlm_t *a )
2899 {
2900     (void)a;
2901 }
2902
2903 int vlm_ExecuteCommand( vlm_t *a, const char *b, vlm_message_t **c )
2904 {
2905     abort();
2906 }
2907
2908 vlm_message_t *vlm_MessageNew( const char *psz_name,
2909                                const char *psz_format, ... )
2910 {
2911     (void)psz_name; (void)psz_format;
2912     return NULL;
2913 }
2914
2915 vlm_message_t *vlm_MessageAdd( vlm_message_t *p_message,
2916                                vlm_message_t *p_child )
2917 {
2918     abort();
2919 }
2920
2921 void vlm_MessageDelete( vlm_message_t *a )
2922 {
2923     (void)a;
2924 }
2925
2926 int vlm_Control( vlm_t *p_vlm, int i_query, ... )
2927 {
2928     (void)p_vlm; (void)i_query;
2929     return VLC_EGENERIC;
2930 }
2931
2932 #endif /* ENABLE_VLM */