]> git.sesse.net Git - vlc/blob - src/misc/vlm.c
modules/control/http/mvar.c : explore vlm_message_t trees all the way
[vlc] / src / misc / 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 #include <stdlib.h>                                      /* malloc(), free() */
30 #include <ctype.h>                                              /* tolower() */
31
32 #include <vlc/vlc.h>
33
34 #ifdef ENABLE_VLM
35
36 #include <vlc/intf.h>
37 #include <vlc/input.h>
38
39 #ifdef HAVE_TIME_H
40 #   include <time.h>                                              /* ctime() */
41 #   include <sys/timeb.h>                                         /* ftime() */
42 #endif
43
44 #include "vlc_vlm.h"
45 #include "vlc_vod.h"
46
47 #define FREE( p ) \
48         if( p ) { free( p ); (p) = NULL; }
49
50 /*****************************************************************************
51  * Local prototypes.
52  *****************************************************************************/
53 static vlm_message_t *vlm_Show( vlm_t *, vlm_media_t *, vlm_schedule_t *, char * );
54 static vlm_message_t *vlm_Help( vlm_t *, char * );
55
56 static vlm_media_t *vlm_MediaSearch ( vlm_t *, const char * );
57 static vlm_media_instance_t *vlm_MediaInstanceSearch( vlm_t *, vlm_media_t *, const char * );
58
59 static vlm_message_t *vlm_MessageNew( char *, const char *, ... );
60 static vlm_message_t *vlm_MessageAdd( vlm_message_t *, vlm_message_t * );
61
62 static vlm_schedule_t *vlm_ScheduleSearch( vlm_t *, const char * );
63
64 static char *Save( vlm_t * );
65 static int Load( vlm_t *, char * );
66 static int ExecuteCommand( vlm_t *, const char *, vlm_message_t ** );
67 static int Manage( vlc_object_t * );
68
69 /*****************************************************************************
70  * vlm_New:
71  *****************************************************************************/
72 vlm_t *__vlm_New ( vlc_object_t *p_this )
73 {
74     vlc_value_t lockval;
75     vlm_t *p_vlm = NULL;
76     char *psz_vlmconf;
77
78     /* to be sure to avoid multiple creation */
79     var_Create( p_this->p_libvlc, "vlm_mutex", VLC_VAR_MUTEX );
80     var_Get( p_this->p_libvlc, "vlm_mutex", &lockval );
81     vlc_mutex_lock( lockval.p_address );
82
83     if( !(p_vlm = vlc_object_find( p_this, VLC_OBJECT_VLM, FIND_ANYWHERE )) )
84     {
85         msg_Info( p_this, "creating vlm" );
86         if( ( p_vlm = vlc_object_create( p_this, VLC_OBJECT_VLM ) ) == NULL )
87         {
88             vlc_mutex_unlock( lockval.p_address );
89             return NULL;
90         }
91
92         vlc_mutex_init( p_this->p_vlc, &p_vlm->lock );
93         p_vlm->i_media      = 0;
94         p_vlm->media        = NULL;
95         p_vlm->i_vod        = 0;
96         p_vlm->i_schedule   = 0;
97         p_vlm->schedule     = NULL;
98
99         vlc_object_yield( p_vlm );
100         vlc_object_attach( p_vlm, p_this->p_vlc );
101     }
102     vlc_mutex_unlock( lockval.p_address );
103
104     if( vlc_thread_create( p_vlm, "vlm thread",
105                            Manage, VLC_THREAD_PRIORITY_LOW, VLC_FALSE ) )
106     {
107         vlc_mutex_destroy( &p_vlm->lock );
108         vlc_object_destroy( p_vlm );
109         return NULL;
110     }
111
112     /* Try loading the vlm conf file given by --vlm-conf */
113     psz_vlmconf = config_GetPsz( p_vlm, "vlm-conf" );
114
115     if( psz_vlmconf && *psz_vlmconf )
116     {
117         vlm_message_t *p_message = NULL;
118         char *psz_buffer = NULL;
119
120         msg_Dbg( p_this, "loading vlm conf ..." );
121         asprintf(&psz_buffer, "load %s", psz_vlmconf );
122         if( psz_buffer )
123         {
124             msg_Dbg( p_this, psz_buffer);
125             if( vlm_ExecuteCommand( p_vlm, psz_buffer, &p_message ) ){
126                 msg_Warn( p_this, "error while loading the vlm conf file" );
127             }
128             free(p_message);
129             free(psz_buffer);
130         }
131    }
132    free(psz_vlmconf);
133
134    return p_vlm;
135 }
136
137 /*****************************************************************************
138  * vlm_Delete:
139  *****************************************************************************/
140 void vlm_Delete( vlm_t *p_vlm )
141 {
142     vlc_value_t lockval;
143
144     var_Get( p_vlm->p_libvlc, "vlm_mutex", &lockval );
145     vlc_mutex_lock( lockval.p_address );
146
147     vlc_object_release( p_vlm );
148
149     if( p_vlm->i_refcount > 0 )
150     {
151         vlc_mutex_unlock( lockval.p_address );
152         return;
153     }
154
155     p_vlm->b_die = VLC_TRUE;
156     vlc_thread_join( p_vlm );
157
158     vlc_mutex_destroy( &p_vlm->lock );
159
160     while( p_vlm->i_media ) vlm_MediaDelete( p_vlm, p_vlm->media[0], NULL );
161     FREE( p_vlm->media );
162
163     while( p_vlm->i_schedule ) vlm_ScheduleDelete( p_vlm,
164                                                    p_vlm->schedule[0], NULL );
165     FREE( p_vlm->schedule );
166
167     vlc_object_detach( p_vlm );
168     vlc_object_destroy( p_vlm );
169     vlc_mutex_unlock( lockval.p_address );
170 }
171
172 /*****************************************************************************
173  * vlm_ExecuteCommand:
174  *****************************************************************************/
175 int vlm_ExecuteCommand( vlm_t *p_vlm, const char *psz_command,
176                         vlm_message_t **pp_message)
177 {
178     int i_result;
179
180     vlc_mutex_lock( &p_vlm->lock );
181     i_result = ExecuteCommand( p_vlm, psz_command, pp_message );
182     vlc_mutex_unlock( &p_vlm->lock );
183
184     return i_result;
185 }
186
187 /*****************************************************************************
188  * vlm_Save:
189  *****************************************************************************/
190 int vlm_Save( vlm_t *p_vlm, const char *psz_file )
191 {
192     FILE *file;
193     char *psz_save;
194
195     if( !p_vlm || !psz_file ) return 1;
196
197     file = fopen( psz_file, "wt" );
198     if( file == NULL ) return 1;
199
200     psz_save = Save( p_vlm );
201     if( psz_save == NULL )
202     {
203         fclose( file );
204         return 1;
205     }
206     fwrite( psz_save, strlen( psz_save ), 1, file );
207     fclose( file );
208     free( psz_save );
209
210     return 0;
211 }
212
213 /*****************************************************************************
214  * vlm_Load:
215  *****************************************************************************/
216 int vlm_Load( vlm_t *p_vlm, const char *psz_file )
217 {
218     FILE *file;
219     int64_t i_size;
220     char *psz_buffer;
221
222     if( !p_vlm || !psz_file ) return 1;
223
224     file = fopen( psz_file, "r" );
225     if( file == NULL ) return 1;
226
227     if( fseek( file, 0, SEEK_END) != 0 )
228     {
229         fclose( file );
230         return 2;
231     }
232
233     i_size = ftell( file );
234     fseek( file, 0, SEEK_SET );
235     psz_buffer = malloc( i_size + 1 );
236     if( !psz_buffer )
237     {
238         fclose( file );
239         return 2;
240     }
241     fread( psz_buffer, 1, i_size, file );
242     psz_buffer[ i_size ] = '\0';
243     if( Load( p_vlm, psz_buffer ) )
244     {
245         fclose( file );
246         free( psz_buffer );
247         return 3;
248     }
249
250     free( psz_buffer );
251     fclose( file );
252
253     return 0;
254 }
255
256 /*****************************************************************************
257  * FindEndCommand
258  *****************************************************************************/
259 static const char *FindEndCommand( const char *psz_sent )
260 {
261     switch( *psz_sent )
262     {
263     case '\"':
264         psz_sent++;
265
266         while( ( *psz_sent != '\"' ) && ( *psz_sent != '\0' ) )
267         {
268             if( *psz_sent == '\'' )
269             {
270                 psz_sent = FindEndCommand( psz_sent );
271                 if( psz_sent == NULL ) return NULL;
272             }
273             else psz_sent++;
274         }
275
276         if( *psz_sent == '\"' )
277         {
278             psz_sent++;
279             return psz_sent;
280         }
281
282         /* *psz_sent == '\0' -> number of " is incorrect */
283         else return NULL;
284
285         break;
286
287     case '\'':
288         psz_sent++;
289
290         while( ( *psz_sent != '\'' ) && ( *psz_sent != '\0' ) )
291         {
292             if( *psz_sent == '\"' )
293             {
294                 psz_sent = FindEndCommand( psz_sent );
295                 if( psz_sent == NULL ) return NULL;
296             }
297             else psz_sent++;
298         }
299
300         if( *psz_sent == '\'' )
301         {
302             psz_sent++;
303             return psz_sent;
304         }
305
306         /* *psz_sent == '\0' -> number of " is incorrect */
307         else return NULL;
308
309         break;
310
311     default: /* now we can look for spaces */
312         while( ( *psz_sent != ' ' ) && ( *psz_sent != '\0' ) )
313         {
314             if( ( *psz_sent == '\'' ) || ( *psz_sent == '\"' ) )
315             {
316                 psz_sent = FindEndCommand( psz_sent );
317                 if( psz_sent == NULL ) return NULL;
318             }
319             else psz_sent++;
320         }
321
322         return psz_sent;
323     }
324 }
325
326 /*****************************************************************************
327  * ExecuteCommand: The main state machine
328  *****************************************************************************
329  * Execute a command which ends with '\0' (string)
330  *****************************************************************************/
331 static int ExecuteCommand( vlm_t *p_vlm, const char *psz_command,
332                            vlm_message_t **pp_message )
333 {
334     int i_command = 0;
335     char **ppsz_command = NULL;
336     const char *psz_cmd = psz_command;
337     vlm_message_t *p_message = NULL;
338     int i, j;
339
340     /* First, parse the line and cut it */
341     while( *psz_cmd != '\0' )
342     {
343
344         if( *psz_cmd == ' ' || *psz_cmd == '\t' )
345         {
346             psz_cmd++;
347         }
348         else
349         {
350             const char *psz_temp;
351             int   i_temp;
352
353             /* support for comments */
354             if( i_command == 0 && *psz_cmd == '#')
355             {
356                 p_message = vlm_MessageNew( "", NULL );
357                 goto success;
358             }
359
360             psz_temp = FindEndCommand( psz_cmd );
361
362             if( psz_temp == NULL )
363             {
364                 p_message = vlm_MessageNew( "Incomplete command", psz_cmd );
365                 goto error;
366             }
367
368             i_temp = psz_temp - psz_cmd;
369
370             ppsz_command = realloc( ppsz_command, (i_command + 1) *
371                                     sizeof(char*) );
372             ppsz_command[ i_command ] = malloc( (i_temp + 1) * sizeof(char) );
373             strncpy( ppsz_command[ i_command ], psz_cmd, i_temp );
374             ppsz_command[ i_command ][ i_temp ] = '\0';
375
376             i_command++;
377
378             psz_cmd = psz_temp;
379         }
380     }
381
382     /*
383      * And then Interpret it
384      */
385
386     if( i_command == 0 )
387     {
388         p_message = vlm_MessageNew( "", NULL );
389         goto success;
390     }
391
392     if( !strcmp(ppsz_command[0], "new") )
393     {
394         int i_type;
395
396         /* Check the number of arguments */
397         if( i_command < 3 ) goto syntax_error;
398
399         /* Get type */
400         if( !strcmp(ppsz_command[2], "vod") )
401         {
402             i_type = VOD_TYPE;
403         }
404         else if( !strcmp(ppsz_command[2], "broadcast") )
405         {
406             i_type = BROADCAST_TYPE;
407         }
408         else if( !strcmp(ppsz_command[2], "schedule") )
409         {
410             i_type = SCHEDULE_TYPE;
411         }
412         else
413         {
414             p_message =
415                 vlm_MessageNew( "new", "%s: Choose between vod, "
416                                 "broadcast or schedule", ppsz_command[1] );
417             goto error;
418         }
419
420         /* Check for forbidden media names */
421         if( !strcmp(ppsz_command[1], "all") ||
422             !strcmp(ppsz_command[1], "media") ||
423             !strcmp(ppsz_command[1], "schedule") )
424         {
425             p_message = vlm_MessageNew( "new", "\"all\", \"media\" and "
426                                         "\"schedule\" are reserved names" );
427             goto error;
428         }
429
430         /* Check the name is not already in use */
431         if( vlm_ScheduleSearch( p_vlm, ppsz_command[1] ) ||
432             vlm_MediaSearch( p_vlm, ppsz_command[1] ) )
433         {
434             p_message = vlm_MessageNew( "new", "%s: Name already in use",
435                                         ppsz_command[1] );
436             goto error;
437         }
438
439         /* Schedule */
440         if( i_type == SCHEDULE_TYPE )
441         {
442             vlm_schedule_t *p_schedule;
443             p_schedule = vlm_ScheduleNew( p_vlm, ppsz_command[1] );
444             if( !p_schedule )
445             {
446                 p_message = vlm_MessageNew( "new", "could not create schedule" );
447                 goto error;
448             }
449         }
450
451         /* Media */
452         else
453         {
454             vlm_media_t *p_media;
455             p_media = vlm_MediaNew( p_vlm, ppsz_command[1], i_type );
456             if( !p_media )
457             {
458                 p_message = vlm_MessageNew( "new", "could not create media" );
459                 goto error;
460             }
461         }
462
463         if( i_command <= 3 )
464         {
465             p_message = vlm_MessageNew( "new", NULL );
466             goto success;
467         }
468
469         /* Properties will be dealt with later on */
470     }
471
472     else if( !strcmp(ppsz_command[0], "setup") )
473     {
474         if( i_command < 2 ) goto syntax_error;
475
476         /* Properties will be dealt with later on */
477     }
478
479     else if( !strcmp(ppsz_command[0], "del") )
480     {
481         vlm_media_t *p_media;
482         vlm_schedule_t *p_schedule;
483
484         if( i_command < 2 ) goto syntax_error;
485
486         p_media = vlm_MediaSearch( p_vlm, ppsz_command[1] );
487         p_schedule = vlm_ScheduleSearch( p_vlm, ppsz_command[1] );
488
489         if( p_schedule != NULL )
490         {
491             vlm_ScheduleDelete( p_vlm, p_schedule, NULL );
492         }
493         else if( p_media != NULL )
494         {
495             vlm_MediaDelete( p_vlm, p_media, NULL );
496         }
497         else if( !strcmp(ppsz_command[1], "media") )
498         {
499             while( p_vlm->i_media ) vlm_MediaDelete( p_vlm, p_vlm->media[0],
500                                                      NULL );
501         }
502         else if( !strcmp(ppsz_command[1], "schedule") )
503         {
504             while( p_vlm->i_schedule )
505                 vlm_ScheduleDelete( p_vlm, p_vlm->schedule[0], NULL );
506         }
507         else if( !strcmp(ppsz_command[1], "all") )
508         {
509             while( p_vlm->i_media ) vlm_MediaDelete( p_vlm, p_vlm->media[0],
510                                                      NULL );
511
512             while( p_vlm->i_schedule )
513                 vlm_ScheduleDelete( p_vlm, p_vlm->schedule[0], NULL );
514         }
515         else
516         {
517             p_message = vlm_MessageNew( "del", "%s: media unknown",
518                                       ppsz_command[1] );
519             goto error;
520         }
521
522         p_message = vlm_MessageNew( "del", NULL );
523         goto success;
524     }
525
526     else if( !strcmp(ppsz_command[0], "show") )
527     {
528         vlm_media_t *p_media;
529         vlm_schedule_t *p_schedule;
530
531         if( i_command == 1 )
532         {
533             p_message = vlm_Show( p_vlm, NULL, NULL, NULL );
534             goto success;
535         }
536         else if( i_command > 2 ) goto syntax_error;
537
538         p_media = vlm_MediaSearch( p_vlm, ppsz_command[1] );
539         p_schedule = vlm_ScheduleSearch( p_vlm, ppsz_command[1] );
540
541         if( p_schedule != NULL )
542         {
543             p_message = vlm_Show( p_vlm, NULL, p_schedule, NULL );
544         }
545         else if( p_media != NULL )
546         {
547             p_message = vlm_Show( p_vlm, p_media, NULL, NULL );
548         }
549         else
550         {
551             p_message = vlm_Show( p_vlm, NULL, NULL, ppsz_command[1] );
552         }
553
554         goto success;
555     }
556
557     else if( !strcmp(ppsz_command[0], "help") )
558     {
559         if( i_command != 1 ) goto syntax_error;
560
561         p_message = vlm_Help( p_vlm, NULL );
562         goto success;
563     }
564
565     else if( !strcmp(ppsz_command[0], "control") )
566     {
567         vlm_media_t *p_media;
568
569         if( i_command < 3 ) goto syntax_error;
570
571         if( !(p_media = vlm_MediaSearch( p_vlm, ppsz_command[1] ) ) )
572         {
573             p_message = vlm_MessageNew( "control", "%s: media unknown",
574                                       ppsz_command[1] );
575             goto error;
576         }
577         else
578         {
579             char *psz_command, *psz_arg = 0, *psz_instance = 0;
580             int i_index = 2;
581
582             if( strcmp( ppsz_command[2], "play" ) &&
583                 strcmp( ppsz_command[2], "stop" ) &&
584                 strcmp( ppsz_command[2], "pause" ) &&
585                 strcmp( ppsz_command[2], "seek" ) )
586             {
587                 i_index++;
588                 psz_instance = ppsz_command[2];
589
590                 if( i_command < 4 ) goto syntax_error;
591             }
592
593             psz_command = ppsz_command[i_index];
594
595             if( i_command >= i_index + 2 ) psz_arg = ppsz_command[i_index + 1];
596
597             vlm_MediaControl( p_vlm, p_media, psz_instance, psz_command,
598                              psz_arg );
599             p_message = vlm_MessageNew( "control", NULL );
600             goto success;
601         }
602     }
603
604     else if( !strcmp(ppsz_command[0], "save") )
605     {
606         if( i_command != 2 ) goto syntax_error;
607
608         if( vlm_Save( p_vlm, ppsz_command[1] ) )
609         {
610             p_message = vlm_MessageNew( "save", "Unable to save to file" );
611             goto error;
612         }
613         else
614         {
615             p_message = vlm_MessageNew( "save", NULL );
616             goto success;
617         }
618     }
619
620     else if( !strcmp(ppsz_command[0], "export" ) )
621     {
622         char *psz_buf;
623
624         if( i_command != 1 ) goto syntax_error;
625
626         p_message = vlm_MessageNew( "export", psz_buf = Save( p_vlm ) );
627         free( psz_buf );
628
629         goto success;
630     }
631
632     else if( !strcmp(ppsz_command[0], "load") )
633     {
634         if( i_command != 2 ) goto syntax_error;
635
636         switch( vlm_Load( p_vlm, ppsz_command[1] ) )
637         {
638             case 0:
639                 p_message = vlm_MessageNew( "load", NULL );
640                 goto success;
641             case 2:
642                 p_message = vlm_MessageNew( "load", "read file error" );
643                 goto error;
644             case 3:
645                 p_message =
646                     vlm_MessageNew( "load", "error while loading file" );
647                 goto error;
648             default:
649                 p_message =
650                     vlm_MessageNew( "load", "Unable to load from file" );
651                 goto error;
652         }
653     }
654
655     else
656     {
657         p_message = vlm_MessageNew( ppsz_command[0], "Unknown command" );
658         goto error;
659     }
660
661     /* Common code between "new" and "setup" */
662     if( !strcmp(ppsz_command[0], "new") ||
663         !strcmp(ppsz_command[0], "setup") )
664     {
665         int i_command_start = strcmp(ppsz_command[0], "new") ? 2 : 3;
666         vlm_media_t *p_media;
667         vlm_schedule_t *p_schedule;
668
669         if( i_command < i_command_start ) goto syntax_error;
670
671         p_media = vlm_MediaSearch( p_vlm, ppsz_command[1] );
672         p_schedule = vlm_ScheduleSearch( p_vlm, ppsz_command[1] );
673
674         if( !p_media && !p_schedule )
675         {
676             p_message = vlm_MessageNew( ppsz_command[0], "%s unknown",
677                                         ppsz_command[1] );
678             goto error;
679         }
680
681         if( p_schedule != NULL )
682         {
683             for( i = i_command_start ; i < i_command ; i++ )
684             {
685                 if( !strcmp( ppsz_command[i], "enabled" ) ||
686                     !strcmp( ppsz_command[i], "disabled" ) )
687                 {
688                     vlm_ScheduleSetup( p_schedule, ppsz_command[i], NULL );
689                 }
690
691                 /* Beware: everything behind append is considered as
692                  * command line */
693                 else if( !strcmp( ppsz_command[i], "append" ) )
694                 {
695                     if( ++i >= i_command ) break;
696
697                     for( j = i + 1; j < i_command; j++ )
698                     {
699                         ppsz_command[i] =
700                             realloc( ppsz_command[i], strlen(ppsz_command[i]) +
701                                      strlen(ppsz_command[j]) + 1 + 1 );
702                         strcat( ppsz_command[i], " " );
703                         strcat( ppsz_command[i], ppsz_command[j] );
704                     }
705
706                     vlm_ScheduleSetup( p_schedule, ppsz_command[i - 1],
707                                        ppsz_command[i] );
708                     break;
709                 }
710                 else
711                 {
712                     if( i + 1 >= i_command && !strcmp(ppsz_command[0], "new") )
713                     {
714                         vlm_ScheduleDelete( p_vlm, p_schedule, NULL );
715                         p_message =
716                             vlm_MessageNew( ppsz_command[0],
717                                             "Wrong properties syntax" );
718                         goto error;
719                     }
720                     else if( i + 1 >= i_command )
721                     {
722                         p_message =
723                             vlm_MessageNew( ppsz_command[0],
724                                             "Wrong properties syntax" );
725                         goto error;
726                     }
727
728                     vlm_ScheduleSetup( p_schedule, ppsz_command[i],
729                                        ppsz_command[i+1] );
730                     i++;
731                 }
732             }
733         }
734
735         else if( p_media != NULL )
736         {
737             for( i = i_command_start ; i < i_command ; i++ )
738             {
739                 if( !strcmp( ppsz_command[i], "enabled" ) ||
740                     !strcmp( ppsz_command[i], "disabled" ) )
741                 {
742                     vlm_MediaSetup( p_vlm, p_media, ppsz_command[i], NULL );
743                 }
744                 else if( i + 1 >= i_command &&
745                          !strcmp( ppsz_command[i], "mux") )
746                 {
747                     if( p_media->i_type != VOD_TYPE )
748                     {
749                         p_message = vlm_MessageNew( ppsz_command[0],
750                                   "mux only available for broadcast" );
751                     }
752                     else
753                     {
754                         vlm_MediaSetup( p_vlm, p_media, ppsz_command[i],
755                                         ppsz_command[i+1] );
756                         i++;
757                     }
758                 }
759                 else if( !strcmp( ppsz_command[i], "loop" ) ||
760                          !strcmp( ppsz_command[i], "unloop" ) )
761                 {
762                     if( p_media->i_type != BROADCAST_TYPE )
763                     {
764                         p_message = vlm_MessageNew( ppsz_command[0],
765                                   "loop only available for broadcast" );
766                     }
767                     else
768                     {
769                         vlm_MediaSetup( p_vlm, p_media, ppsz_command[i], NULL );
770                     }
771                 }
772                 else
773                 {
774                     if( i + 1 >= i_command &&
775                         !strcmp(ppsz_command[0], "new") )
776                     {
777                         vlm_MediaDelete( p_vlm, p_media, NULL );
778                         p_message =
779                             vlm_MessageNew( ppsz_command[0],
780                                             "Wrong properties syntax" );
781                         goto error;
782                     }
783                     else if( i + 1 >= i_command )
784                     {
785                         p_message =
786                             vlm_MessageNew( ppsz_command[0],
787                                             "Wrong properties syntax" );
788                         goto error;
789                     }
790
791                     vlm_MediaSetup( p_vlm, p_media, ppsz_command[i],
792                                     ppsz_command[i+1] );
793                     i++;
794                 }
795             }
796         }
797
798         p_message = vlm_MessageNew( ppsz_command[0], NULL );
799         goto success;
800     }
801
802 success:
803     for( i = 0 ; i < i_command ; i++ ) FREE( ppsz_command[i] );
804     FREE( ppsz_command );
805     *pp_message = p_message;
806
807     return VLC_SUCCESS;
808
809 syntax_error:
810     p_message = vlm_MessageNew( ppsz_command[0], "Wrong command syntax" );
811
812 error:
813     for( i = 0 ; i < i_command ; i++ ) FREE( ppsz_command[i] );
814     FREE( ppsz_command );
815     *pp_message = p_message;
816
817     return VLC_EGENERIC;
818 }
819
820 static vlm_media_t *vlm_MediaSearch( vlm_t *vlm, const char *psz_name )
821 {
822     int i;
823
824     for( i = 0; i < vlm->i_media; i++ )
825     {
826         if( strcmp( psz_name, vlm->media[i]->psz_name ) == 0 )
827         {
828             return vlm->media[i];
829         }
830     }
831
832     return NULL;
833 }
834
835 /*****************************************************************************
836  * Media handling
837  *****************************************************************************/
838 static vlm_media_instance_t *
839 vlm_MediaInstanceSearch( vlm_t *vlm, vlm_media_t *media,
840                          const char *psz_name )
841 {
842     int i;
843
844     for( i = 0; i < media->i_instance; i++ )
845     {
846         if( ( !psz_name && !media->instance[i]->psz_name ) ||
847             ( psz_name && media->instance[i]->psz_name &&
848               !strcmp( psz_name, media->instance[i]->psz_name ) ) )
849         {
850             return media->instance[i];
851         }
852     }
853
854     return NULL;
855 }
856
857 vlm_media_t *vlm_MediaNew( vlm_t *vlm, const char *psz_name, int i_type )
858 {
859     vlm_media_t *media = malloc( sizeof( vlm_media_t ) );
860
861     if( !media )
862     {
863         msg_Err( vlm, "out of memory" );
864         return NULL;
865     }
866
867     /* Check if we need to load the VOD server */
868     if( i_type == VOD_TYPE && !vlm->i_vod )
869     {
870         vlm->vod = vlc_object_create( vlm, VLC_OBJECT_VOD );
871         vlc_object_attach( vlm->vod, vlm );
872         vlm->vod->p_module = module_Need( vlm->vod, "vod server", 0, 0 );
873         if( !vlm->vod->p_module )
874         {
875             msg_Err( vlm, "cannot find vod server" );
876             vlc_object_detach( vlm->vod );
877             vlc_object_destroy( vlm->vod );
878             vlm->vod = 0;
879             free( media );
880             return NULL;
881         }
882
883         vlm->vod->p_data = vlm;
884         vlm->vod->pf_media_control = vlm_MediaVodControl;
885     }
886
887     if( i_type == VOD_TYPE ) vlm->i_vod++;
888
889     media->psz_name = strdup( psz_name );
890     media->b_enabled = VLC_FALSE;
891     media->b_loop = VLC_FALSE;
892     media->vod_media = NULL;
893     media->psz_vod_output = NULL;
894     media->psz_mux = NULL;
895     media->i_input = 0;
896     media->input = NULL;
897     media->psz_output = NULL;
898     media->i_option = 0;
899     media->option = NULL;
900     media->i_type = i_type;
901     media->i_instance = 0;
902     media->instance = NULL;
903
904     media->item.psz_uri = strdup( psz_name );
905     vlc_input_item_Init( VLC_OBJECT(vlm), &media->item );
906
907     TAB_APPEND( vlm->i_media, vlm->media, media );
908
909     return media;
910 }
911
912 /* for now, simple delete. After, del with options (last arg) */
913 void vlm_MediaDelete( vlm_t *vlm, vlm_media_t *media, const char *psz_name )
914 {
915     if( media == NULL ) return;
916
917     while( media->i_instance )
918     {
919         vlm_media_instance_t *p_instance = media->instance[0];
920         vlm_MediaControl( vlm, media, p_instance->psz_name, "stop", 0 );
921     }
922
923     TAB_REMOVE( vlm->i_media, vlm->media, media );
924
925     if( media->i_type == VOD_TYPE )
926     {
927         vlm_MediaSetup( vlm, media, "disabled", 0 );
928         vlm->i_vod--;
929     }
930
931     /* Check if we need to unload the VOD server */
932     if( media->i_type == VOD_TYPE && !vlm->i_vod )
933     {
934         module_Unneed( vlm->vod, vlm->vod->p_module );
935         vlc_object_detach( vlm->vod );
936         vlc_object_destroy( vlm->vod );
937         vlm->vod = 0;
938     }
939
940     if( vlm->i_media == 0 && vlm->media ) free( vlm->media );
941
942     free( media->psz_name );
943
944     while( media->i_input-- ) free( media->input[media->i_input] );
945     if( media->input ) free( media->input );
946
947     if( media->psz_output ) free( media->psz_output );
948     if( media->psz_mux ) free( media->psz_mux );
949
950     while( media->i_option-- ) free( media->option[media->i_option] );
951     if( media->option ) free( media->option );
952
953     vlc_input_item_Clean( &media->item );
954
955     free( media );
956 }
957
958 int vlm_MediaSetup( vlm_t *vlm, vlm_media_t *media, const char *psz_cmd,
959                     const char *psz_value )
960 {
961     if( !psz_cmd) return VLC_EGENERIC;
962
963     if( !strcmp( psz_cmd, "loop" ) )
964     {
965         media->b_loop = VLC_TRUE;
966     }
967     else if( !strcmp( psz_cmd, "unloop" ) )
968     {
969         media->b_loop = VLC_FALSE;
970     }
971     else if( !strcmp( psz_cmd, "enabled" ) )
972     {
973         media->b_enabled = VLC_TRUE;
974     }
975     else if( !strcmp( psz_cmd, "disabled" ) )
976     {
977         media->b_enabled = VLC_FALSE;
978     }
979     else if( !strcmp( psz_cmd, "mux" ) )
980     {
981         if( media->psz_mux ) free( media->psz_mux );
982         media->psz_mux = NULL;
983         if( psz_value ) media->psz_mux = strdup( psz_value );
984     }
985     else if( !strcmp( psz_cmd, "input" ) )
986     {
987         char *input;
988
989         if( psz_value != NULL && strlen(psz_value) > 1 &&
990             ( psz_value[0] == '\'' || psz_value[0] == '\"' ) &&
991             ( psz_value[ strlen(psz_value) - 1 ] == '\'' ||
992               psz_value[ strlen(psz_value) - 1 ] == '\"' )  )
993         {
994             input = malloc( strlen(psz_value) - 1 );
995
996             memcpy( input, psz_value + 1, strlen(psz_value) - 2 );
997             input[ strlen(psz_value) - 2 ] = '\0';
998         }
999         else
1000         {
1001             input = strdup( psz_value );
1002         }
1003
1004         TAB_APPEND( media->i_input, media->input, input );
1005     }
1006     else if( !strcmp( psz_cmd, "inputdel" ) && !strcmp( psz_value, "all" ) )
1007     {
1008         while( media->i_input > 0 )
1009         {
1010             TAB_REMOVE( media->i_input, media->input, media->input[0] );
1011         }
1012     }
1013     else if( !strcmp( psz_cmd, "inputdel" ) )
1014     {
1015         char *input;
1016         int i;
1017
1018         if( psz_value != NULL && strlen(psz_value) > 1 &&
1019             ( psz_value[0] == '\'' || psz_value[0] == '\"' ) &&
1020             ( psz_value[ strlen(psz_value) - 1 ] == '\'' ||
1021               psz_value[ strlen(psz_value) - 1 ] == '\"' )  )
1022         {
1023             input = malloc( strlen(psz_value) - 1 );
1024
1025             memcpy( input, psz_value + 1, strlen(psz_value) - 2 );
1026             input[ strlen(psz_value) - 2 ] = '\0';
1027         }
1028         else
1029         {
1030             input = strdup( psz_value );
1031         }
1032
1033         for( i = 0; i < media->i_input; i++ )
1034         {
1035             if( !strcmp( input, media->input[i] ) )
1036             {
1037                 TAB_REMOVE( media->i_input, media->input, media->input[i] );
1038                 break;
1039             }
1040         }
1041     }
1042     else if( !strcmp( psz_cmd, "inputdeln" ) )
1043     {
1044         int index = atoi( psz_value );
1045         if( index > 0 && index <= media->i_input )
1046         {
1047             TAB_REMOVE( media->i_input, media->input, media->input[index-1] );
1048         }
1049     }
1050     else if( !strcmp( psz_cmd, "output" ) )
1051     {
1052         if( media->psz_output != NULL )
1053         {
1054             free( media->psz_output );
1055         }
1056         media->psz_output = strdup( psz_value );
1057     }
1058     else if( !strcmp( psz_cmd, "option" ) )
1059     {
1060         char *psz_option;
1061         psz_option = strdup( psz_value );
1062
1063         TAB_APPEND( media->i_option, media->option, psz_option );
1064     }
1065     else
1066     {
1067         return VLC_EGENERIC;
1068     }
1069
1070     /* Check if we need to create/delete a vod media */
1071     if( media->i_type == VOD_TYPE )
1072     {
1073         if( !media->b_enabled && media->vod_media )
1074         {
1075             vlm->vod->pf_media_del( vlm->vod, media->vod_media );
1076             media->vod_media = 0;
1077         }
1078         else if( media->b_enabled && !media->vod_media && media->i_input )
1079         {
1080             /* Pre-parse the input */
1081             input_thread_t *p_input;
1082             char *psz_output;
1083             char *psz_header;
1084             int i;
1085
1086             vlc_input_item_Clean( &media->item );
1087             vlc_input_item_Init( VLC_OBJECT(vlm), &media->item );
1088
1089             if( media->psz_output )
1090                 asprintf( &psz_output, "%s:description", media->psz_output );
1091             else
1092                 asprintf( &psz_output, "#description" );
1093
1094             media->item.psz_uri = strdup( media->input[0] );
1095             media->item.ppsz_options = malloc( sizeof( char* ) );
1096             asprintf( &media->item.ppsz_options[0], "sout=%s", psz_output);
1097             media->item.i_options = 1;
1098             for( i = 0; i < media->i_option; i++ )
1099             {
1100                 media->item.i_options++;
1101                 media->item.ppsz_options =
1102                     realloc( media->item.ppsz_options,
1103                              media->item.i_options * sizeof( char* ) );
1104                 media->item.ppsz_options[ media->item.i_options - 1 ] =
1105                     strdup( media->option[i] );
1106             }
1107
1108             asprintf( &psz_header, _("Media: %s"), media->psz_name );
1109
1110             if( (p_input = input_CreateThread2( vlm, &media->item, psz_header
1111                                               ) ) )
1112             {
1113                 while( !p_input->b_eof && !p_input->b_error ) msleep( 100000 );
1114
1115                 input_StopThread( p_input );
1116                 input_DestroyThread( p_input );
1117                 vlc_object_detach( p_input );
1118                 vlc_object_destroy( p_input );
1119             }
1120             free( psz_output );
1121             free( psz_header );
1122
1123             if( media->psz_mux )
1124             {
1125                 input_item_t item;
1126                 es_format_t es, *p_es = &es;
1127                 char fourcc[5];
1128
1129                 sprintf( fourcc, "%4.4s", media->psz_mux );
1130                 fourcc[0] = tolower(fourcc[0]); fourcc[1] = tolower(fourcc[1]);
1131                 fourcc[2] = tolower(fourcc[2]); fourcc[3] = tolower(fourcc[3]);
1132
1133                 item = media->item;
1134                 item.i_es = 1;
1135                 item.es = &p_es;
1136                 es_format_Init( &es, VIDEO_ES, *((int *)fourcc) );
1137
1138                 media->vod_media =
1139                   vlm->vod->pf_media_new( vlm->vod, media->psz_name, &item );
1140                 return VLC_SUCCESS;
1141             }
1142
1143             media->vod_media =
1144                 vlm->vod->pf_media_new( vlm->vod, media->psz_name,
1145                                         &media->item );
1146         }
1147     }
1148
1149     return VLC_SUCCESS;
1150 }
1151
1152 int vlm_MediaControl( vlm_t *vlm, vlm_media_t *media, const char *psz_id,
1153                       const char *psz_command, const char *psz_args )
1154 {
1155     vlm_media_instance_t *p_instance;
1156     int i;
1157     char *psz_header;
1158
1159     p_instance = vlm_MediaInstanceSearch( vlm, media, psz_id );
1160
1161     if( !strcmp( psz_command, "play" ) )
1162     {
1163         if( !media->b_enabled || media->i_input == 0 ) return 0;
1164
1165         if( !p_instance )
1166         {
1167             p_instance = malloc( sizeof(vlm_media_instance_t) );
1168             if( !p_instance ) return VLC_EGENERIC;
1169             memset( p_instance, 0, sizeof(vlm_media_instance_t) );
1170             vlc_input_item_Init( VLC_OBJECT(vlm), &p_instance->item );
1171             p_instance->p_input = NULL;
1172
1173             if( media->psz_output != NULL || media->psz_vod_output != NULL )
1174             {
1175                 p_instance->item.ppsz_options = malloc( sizeof( char* ) );
1176                 asprintf( &p_instance->item.ppsz_options[0], "sout=%s%s%s",
1177                           media->psz_output ? media->psz_output : "",
1178                           (media->psz_output && media->psz_vod_output) ?
1179                           ":" : media->psz_vod_output ? "#" : "",
1180                           media->psz_vod_output ? media->psz_vod_output : "" );
1181                 p_instance->item.i_options = 1;
1182             }
1183
1184             for( i = 0; i < media->i_option; i++ )
1185             {
1186                 p_instance->item.i_options++;
1187                 p_instance->item.ppsz_options =
1188                     realloc( p_instance->item.ppsz_options,
1189                              p_instance->item.i_options * sizeof( char* ) );
1190                 p_instance->item.ppsz_options[p_instance->item.i_options - 1] =
1191                     strdup( media->option[i] );
1192             }
1193
1194             p_instance->psz_name = psz_id ? strdup( psz_id ) : NULL;
1195             TAB_APPEND( media->i_instance, media->instance, p_instance );
1196         }
1197
1198         if( psz_args && sscanf(psz_args, "%d", &i) == 1 && i < media->i_input )
1199         {
1200             p_instance->i_index = i;
1201         }
1202
1203         if( p_instance->item.psz_uri ) free( p_instance->item.psz_uri );
1204         p_instance->item.psz_uri =
1205             strdup( media->input[p_instance->i_index] );
1206
1207         if( p_instance->p_input )
1208         {
1209             input_StopThread( p_instance->p_input );
1210             input_DestroyThread( p_instance->p_input );
1211             vlc_object_detach( p_instance->p_input );
1212             vlc_object_destroy( p_instance->p_input );
1213         }
1214
1215         asprintf( &psz_header, _("Media: %s"), media->psz_name );
1216         p_instance->p_input = input_CreateThread2( vlm, &p_instance->item,
1217                                                    psz_header );
1218         if( !p_instance->p_input )
1219         {
1220             TAB_REMOVE( media->i_instance, media->instance, p_instance );
1221             vlc_input_item_Clean( &p_instance->item );
1222             if( p_instance->psz_name ) free( p_instance->psz_name );
1223         }
1224         free( psz_header );
1225
1226         return VLC_SUCCESS;
1227     }
1228
1229     if( !p_instance ) return VLC_EGENERIC;
1230
1231     if( !strcmp( psz_command, "seek" ) )
1232     {
1233         vlc_value_t val;
1234         float f_percentage;
1235
1236         if( psz_args && sscanf( psz_args, "%f", &f_percentage ) == 1 )
1237         {
1238             val.f_float = f_percentage / 100.0 ;
1239             var_Set( p_instance->p_input, "position", val );
1240             return VLC_SUCCESS;
1241         }
1242     }
1243     else if( !strcmp( psz_command, "stop" ) )
1244     {
1245         TAB_REMOVE( media->i_instance, media->instance, p_instance );
1246
1247         if( p_instance->p_input )
1248         {
1249             input_StopThread( p_instance->p_input );
1250             input_DestroyThread( p_instance->p_input );
1251             vlc_object_detach( p_instance->p_input );
1252             vlc_object_destroy( p_instance->p_input );
1253         }
1254
1255         vlc_input_item_Clean( &p_instance->item );
1256         if( p_instance->psz_name ) free( p_instance->psz_name );
1257         free( p_instance );
1258
1259         return VLC_SUCCESS;
1260     }
1261     else if( !strcmp( psz_command, "pause" ) )
1262     {
1263         vlc_value_t val;
1264
1265         if( !p_instance->p_input ) return VLC_SUCCESS;
1266
1267         var_Get( p_instance->p_input, "state", &val );
1268
1269         if( val.i_int == PAUSE_S ) val.i_int = PLAYING_S;
1270         else val.i_int = PAUSE_S;
1271         var_Set( p_instance->p_input, "state", val );
1272
1273         return VLC_SUCCESS;
1274     }
1275
1276     return VLC_EGENERIC;
1277 }
1278
1279 /*****************************************************************************
1280  * Schedule handling
1281  *****************************************************************************/
1282 static int64_t vlm_Date()
1283 {
1284 #ifdef WIN32
1285     struct timeb tm;
1286     ftime( &tm );
1287     return ((int64_t)tm.time) * 1000000 + ((int64_t)tm.millitm) * 1000;
1288 #else
1289     return mdate();
1290 #endif
1291 }
1292
1293 vlm_schedule_t *vlm_ScheduleNew( vlm_t *vlm, const char *psz_name )
1294 {
1295     vlm_schedule_t *p_sched = malloc( sizeof( vlm_schedule_t ) );
1296
1297     if( !p_sched )
1298     {
1299         return NULL;
1300     }
1301
1302     if( !psz_name )
1303     {
1304         return NULL;
1305     }
1306
1307     p_sched->psz_name = strdup( psz_name );
1308     p_sched->b_enabled = VLC_FALSE;
1309     p_sched->i_command = 0;
1310     p_sched->command = NULL;
1311     p_sched->i_date = 0;
1312     p_sched->i_period = 0;
1313     p_sched->i_repeat = -1;
1314
1315     TAB_APPEND( vlm->i_schedule, vlm->schedule, p_sched );
1316
1317     return p_sched;
1318 }
1319
1320 /* for now, simple delete. After, del with options (last arg) */
1321 void vlm_ScheduleDelete( vlm_t *vlm, vlm_schedule_t *sched,
1322                          const char *psz_name )
1323 {
1324     if( sched == NULL ) return;
1325
1326     TAB_REMOVE( vlm->i_schedule, vlm->schedule, sched );
1327
1328     if( vlm->i_schedule == 0 && vlm->schedule ) free( vlm->schedule );
1329     free( sched->psz_name );
1330     while( sched->i_command )
1331     {
1332         char *psz_cmd = sched->command[0];
1333         TAB_REMOVE( sched->i_command, sched->command, psz_cmd );
1334         free( psz_cmd );
1335     }
1336     free( sched );
1337 }
1338
1339 static vlm_schedule_t *vlm_ScheduleSearch( vlm_t *vlm, const char *psz_name )
1340 {
1341     int i;
1342
1343     for( i = 0; i < vlm->i_schedule; i++ )
1344     {
1345         if( strcmp( psz_name, vlm->schedule[i]->psz_name ) == 0 )
1346         {
1347             return vlm->schedule[i];
1348         }
1349     }
1350
1351     return NULL;
1352 }
1353
1354 /* Ok, setup schedule command will be able to support only one (argument value) at a time  */
1355 int vlm_ScheduleSetup( vlm_schedule_t *schedule, const char *psz_cmd,
1356                        const char *psz_value )
1357 {
1358     if( !strcmp( psz_cmd, "enabled" ) )
1359     {
1360         schedule->b_enabled = VLC_TRUE;
1361     }
1362     else if( !strcmp( psz_cmd, "disabled" ) )
1363     {
1364         schedule->b_enabled = VLC_FALSE;
1365     }
1366 #if !defined( UNDER_CE )
1367     else if( !strcmp( psz_cmd, "date" ) )
1368     {
1369         struct tm time;
1370         const char *p;
1371         time_t date;
1372
1373         time.tm_sec = 0;         /* seconds */
1374         time.tm_min = 0;         /* minutes */
1375         time.tm_hour = 0;        /* hours */
1376         time.tm_mday = 0;        /* day of the month */
1377         time.tm_mon = 0;         /* month */
1378         time.tm_year = 0;        /* year */
1379         time.tm_wday = 0;        /* day of the week */
1380         time.tm_yday = 0;        /* day in the year */
1381         time.tm_isdst = -1;       /* daylight saving time */
1382
1383         /* date should be year/month/day-hour:minutes:seconds */
1384         p = strchr( psz_value, '-' );
1385
1386         if( !strcmp( psz_value, "now" ) )
1387         {
1388             schedule->i_date = 0;
1389         }
1390         else if( p == NULL && sscanf( psz_value, "%d:%d:%d", &time.tm_hour, &time.tm_min, &time.tm_sec ) != 3 ) /* it must be a hour:minutes:seconds */
1391         {
1392             return 1;
1393         }
1394         else
1395         {
1396             unsigned i,j,k;
1397
1398             switch( sscanf( p + 1, "%u:%u:%u", &i, &j, &k ) )
1399             {
1400                 case 1:
1401                     time.tm_sec = i;
1402                     break;
1403                 case 2:
1404                     time.tm_min = i;
1405                     time.tm_sec = j;
1406                     break;
1407                 case 3:
1408                     time.tm_hour = i;
1409                     time.tm_min = j;
1410                     time.tm_sec = k;
1411                     break;
1412                 default:
1413                     return 1;
1414             }
1415
1416             switch( sscanf( psz_value, "%d/%d/%d", &i, &j, &k ) )
1417             {
1418                 case 1:
1419                     time.tm_mday = i;
1420                     break;
1421                 case 2:
1422                     time.tm_mon = i - 1;
1423                     time.tm_mday = j;
1424                     break;
1425                 case 3:
1426                     time.tm_year = i - 1900;
1427                     time.tm_mon = j - 1;
1428                     time.tm_mday = k;
1429                     break;
1430                 default:
1431                     return 1;
1432             }
1433
1434             date = mktime( &time );
1435             schedule->i_date = ((mtime_t) date) * 1000000;
1436         }
1437     }
1438     else if( !strcmp( psz_cmd, "period" ) )
1439     {
1440         struct tm time;
1441         const char *p;
1442         const char *psz_time = NULL, *psz_date = NULL;
1443         time_t date;
1444         unsigned i,j,k;
1445
1446         /* First, if date or period are modified, repeat should be equal to -1 */
1447         schedule->i_repeat = -1;
1448
1449         time.tm_sec = 0;         /* seconds */
1450         time.tm_min = 0;         /* minutes */
1451         time.tm_hour = 0;        /* hours */
1452         time.tm_mday = 0;        /* day of the month */
1453         time.tm_mon = 0;         /* month */
1454         time.tm_year = 0;        /* year */
1455         time.tm_wday = 0;        /* day of the week */
1456         time.tm_yday = 0;        /* day in the year */
1457         time.tm_isdst = -1;       /* daylight saving time */
1458
1459         /* date should be year/month/day-hour:minutes:seconds */
1460         p = strchr( psz_value, '-' );
1461         if( p )
1462         {
1463             psz_date = psz_value;
1464             psz_time = p + 1;
1465         }
1466         else
1467         {
1468             psz_time = psz_value;
1469         }
1470
1471
1472         switch( sscanf( psz_time, "%u:%u:%u", &i, &j, &k ) )
1473         {
1474             case 1:
1475                 time.tm_sec = i;
1476                 break;
1477             case 2:
1478                 time.tm_min = i;
1479                 time.tm_sec = j;
1480                 break;
1481             case 3:
1482                 time.tm_hour = i;
1483                 time.tm_min = j;
1484                 time.tm_sec = k;
1485                 break;
1486             default:
1487                 return 1;
1488         }
1489         if( psz_date )
1490         {
1491             switch( sscanf( psz_date, "%u/%u/%u", &i, &j, &k ) )
1492             {
1493                 case 1:
1494                     time.tm_mday = i;
1495                     break;
1496                 case 2:
1497                     time.tm_mon = i;
1498                     time.tm_mday = j;
1499                     break;
1500                 case 3:
1501                     time.tm_year = i;
1502                     time.tm_mon = j;
1503                     time.tm_mday = k;
1504                     break;
1505                 default:
1506                     return 1;
1507             }
1508         }
1509
1510         /* ok, that's stupid... who is going to schedule streams every 42 years ? */
1511         date = (((( time.tm_year * 12 + time.tm_mon ) * 30 + time.tm_mday ) * 24 + time.tm_hour ) * 60 + time.tm_min ) * 60 + time.tm_sec ;
1512         schedule->i_period = ((mtime_t) date) * 1000000;
1513     }
1514 #endif /* UNDER_CE */
1515     else if( !strcmp( psz_cmd, "repeat" ) )
1516     {
1517         int i;
1518
1519         if( sscanf( psz_value, "%d", &i ) == 1 )
1520         {
1521             schedule->i_repeat = i;
1522         }
1523         else
1524         {
1525             return 1;
1526         }
1527     }
1528     else if( !strcmp( psz_cmd, "append" ) )
1529     {
1530         char *command = strdup( psz_value );
1531
1532         TAB_APPEND( schedule->i_command, schedule->command, command );
1533     }
1534     else
1535     {
1536         return 1;
1537     }
1538     return 0;
1539 }
1540
1541 /*****************************************************************************
1542  * Message handling functions
1543  *****************************************************************************/
1544 static vlm_message_t *vlm_MessageNew( char *psz_name,
1545                                       const char *psz_format, ... )
1546 {
1547     vlm_message_t *p_message;
1548     va_list args;
1549
1550     if( !psz_name ) return 0;
1551
1552     p_message = malloc( sizeof(vlm_message_t) );
1553     if( !p_message)
1554     {
1555         return NULL;
1556     }
1557
1558     p_message->psz_value = 0;
1559
1560     if( psz_format )
1561     {
1562         va_start( args, psz_format );
1563         if( vasprintf( &p_message->psz_value, psz_format, args ) < 0 )
1564         {
1565             va_end( args );
1566             free( p_message );
1567             return 0;
1568         }
1569         va_end( args );
1570     }
1571
1572     p_message->psz_name = strdup( psz_name );
1573     p_message->i_child = 0;
1574     p_message->child = NULL;
1575
1576     return p_message;
1577 }
1578
1579 void vlm_MessageDelete( vlm_message_t *p_message )
1580 {
1581     if( p_message->psz_name ) free( p_message->psz_name );
1582     if( p_message->psz_value ) free( p_message->psz_value );
1583     while( p_message->i_child-- )
1584         vlm_MessageDelete( p_message->child[p_message->i_child] );
1585     if( p_message->child ) free( p_message->child );
1586     free( p_message );
1587 }
1588
1589 /* Add a child */
1590 static vlm_message_t *vlm_MessageAdd( vlm_message_t *p_message,
1591                                       vlm_message_t *p_child )
1592 {
1593     if( p_message == NULL ) return NULL;
1594
1595     if( p_child )
1596     {
1597         TAB_APPEND( p_message->i_child, p_message->child, p_child );
1598     }
1599
1600     return p_child;
1601 }
1602
1603 /*****************************************************************************
1604  * Misc utility functions
1605  *****************************************************************************/
1606 static vlm_message_t *vlm_Show( vlm_t *vlm, vlm_media_t *media,
1607                                 vlm_schedule_t *schedule, char *psz_filter )
1608 {
1609     if( media != NULL )
1610     {
1611         int i;
1612         vlm_message_t *msg;
1613         vlm_message_t *msg_media;
1614         vlm_message_t *msg_child;
1615
1616         msg = vlm_MessageNew( "show", NULL );
1617         msg_media = vlm_MessageAdd( msg, vlm_MessageNew( media->psz_name, 0 ));
1618
1619         vlm_MessageAdd( msg_media,
1620                         vlm_MessageNew( "type", media->i_type == VOD_TYPE ?
1621                                         "vod" : "broadcast" ) );
1622         vlm_MessageAdd( msg_media,
1623                         vlm_MessageNew( "enabled", media->b_enabled ?
1624                                         "yes" : "no" ) );
1625
1626         vlm_MessageAdd( msg_media,
1627                         vlm_MessageNew( "loop", media->b_loop ?
1628                                         "yes" : "no" ) );
1629
1630         if( media->i_type == VOD_TYPE && media->psz_mux )
1631             vlm_MessageAdd( msg_media,
1632                             vlm_MessageNew( "mux", media->psz_mux ) );
1633
1634         msg_child = vlm_MessageAdd( msg_media,
1635                                     vlm_MessageNew( "inputs", NULL ) );
1636
1637         for( i = 0; i < media->i_input; i++ )
1638         {
1639             vlm_MessageAdd( msg_child,
1640                             vlm_MessageNew( media->input[i], NULL ) );
1641         }
1642
1643         vlm_MessageAdd( msg_media,
1644                         vlm_MessageNew( "output", media->psz_output ?
1645                                         media->psz_output : "" ) );
1646
1647         msg_child = vlm_MessageAdd( msg_media, vlm_MessageNew( "options", 0 ));
1648
1649         for( i = 0; i < media->i_option; i++ )
1650         {
1651             vlm_MessageAdd( msg_child, vlm_MessageNew( media->option[i], 0 ) );
1652         }
1653
1654         msg_child = vlm_MessageAdd( msg_media,
1655                                     vlm_MessageNew( "instances", NULL ) );
1656
1657         for( i = 0; i < media->i_instance; i++ )
1658         {
1659             vlm_media_instance_t *p_instance = media->instance[i];
1660             vlc_value_t val;
1661             vlm_message_t *msg_instance;
1662             char *psz_tmp;
1663
1664             if( !p_instance->p_input ) val.i_int = END_S;
1665             else var_Get( p_instance->p_input, "state", &val );
1666
1667             msg_instance = vlm_MessageNew( "instance" , NULL );
1668             vlm_MessageAdd( msg_instance, vlm_MessageNew( "name" , p_instance->psz_name ? p_instance->psz_name : "default" ) );
1669             vlm_MessageAdd( msg_instance, vlm_MessageNew( "state",
1670                                 val.i_int == PLAYING_S ? "playing" :
1671                                 val.i_int == PAUSE_S ? "paused" :
1672                                 "stopped" ) );
1673 #define APPEND_INPUT_INFO( a, format, type ) \
1674             asprintf( &psz_tmp, format, \
1675                       var_Get ## type( p_instance->p_input, a ) ); \
1676             vlm_MessageAdd( msg_instance, vlm_MessageNew( a, psz_tmp ) ); \
1677             free( psz_tmp );
1678             APPEND_INPUT_INFO( "position", "%f", Float );
1679             APPEND_INPUT_INFO( "time", "%d", Integer );
1680             APPEND_INPUT_INFO( "length", "%d", Integer );
1681             APPEND_INPUT_INFO( "rate", "%d", Integer );
1682             APPEND_INPUT_INFO( "title", "%d", Integer );
1683             APPEND_INPUT_INFO( "chapter", "%d", Integer );
1684             APPEND_INPUT_INFO( "seekable", "%d", Bool );
1685 #undef APPEND_INPUT_INFO
1686             vlm_MessageAdd( msg_child, msg_instance );
1687         }
1688
1689         return msg;
1690
1691     }
1692
1693     else if( schedule != NULL )
1694     {
1695         int i;
1696         vlm_message_t *msg;
1697         vlm_message_t *msg_schedule;
1698         vlm_message_t *msg_child;
1699         char buffer[100];
1700
1701         msg = vlm_MessageNew( "show", NULL );
1702         msg_schedule =
1703             vlm_MessageAdd( msg, vlm_MessageNew( schedule->psz_name, 0 ) );
1704
1705         vlm_MessageAdd( msg_schedule, vlm_MessageNew("type", "schedule") );
1706
1707         vlm_MessageAdd( msg_schedule,
1708                         vlm_MessageNew( "enabled", schedule->b_enabled ?
1709                                         "yes" : "no" ) );
1710
1711 #if !defined( UNDER_CE )
1712         if( schedule->i_date != 0 )
1713         {
1714             struct tm date;
1715             time_t i_time = (time_t)( schedule->i_date / 1000000 );
1716             char *psz_date;
1717
1718 #ifdef HAVE_LOCALTIME_R
1719             localtime_r( &i_time, &date);
1720 #else
1721             struct tm *p_date = localtime( &i_time );
1722             date = *p_date;
1723 #endif
1724
1725             asprintf( &psz_date, "%d/%d/%d-%d:%d:%d",
1726                       date.tm_year + 1900, date.tm_mon + 1, date.tm_mday,
1727                       date.tm_hour, date.tm_min, date.tm_sec );
1728
1729             vlm_MessageAdd( msg_schedule,
1730                             vlm_MessageNew( "date", psz_date ) );
1731             free( psz_date );
1732         }
1733         else
1734         {
1735             vlm_MessageAdd( msg_schedule, vlm_MessageNew("date", "now") );
1736         }
1737
1738         if( schedule->i_period != 0 )
1739         {
1740             time_t i_time = (time_t) ( schedule->i_period / 1000000 );
1741             struct tm date;
1742
1743             date.tm_sec = (int)( i_time % 60 );
1744             i_time = i_time / 60;
1745             date.tm_min = (int)( i_time % 60 );
1746             i_time = i_time / 60;
1747             date.tm_hour = (int)( i_time % 24 );
1748             i_time = i_time / 24;
1749             date.tm_mday = (int)( i_time % 30 );
1750             i_time = i_time / 30;
1751             /* okay, okay, months are not always 30 days long */
1752             date.tm_mon = (int)( i_time % 12 );
1753             i_time = i_time / 12;
1754             date.tm_year = (int)i_time;
1755
1756             sprintf( buffer, "%d/%d/%d-%d:%d:%d", date.tm_year, date.tm_mon,
1757                      date.tm_mday, date.tm_hour, date.tm_min, date.tm_sec);
1758
1759             vlm_MessageAdd( msg_schedule, vlm_MessageNew("period", buffer) );
1760         }
1761         else
1762         {
1763             vlm_MessageAdd( msg_schedule, vlm_MessageNew("period", "0") );
1764         }
1765 #endif /* UNDER_CE */
1766
1767         sprintf( buffer, "%d", schedule->i_repeat );
1768         vlm_MessageAdd( msg_schedule, vlm_MessageNew( "repeat", buffer ) );
1769
1770         msg_child =
1771             vlm_MessageAdd( msg_schedule, vlm_MessageNew("commands", 0) );
1772
1773         for( i = 0; i < schedule->i_command; i++ )
1774         {
1775            vlm_MessageAdd( msg_child,
1776                            vlm_MessageNew( schedule->command[i], NULL ) );
1777         }
1778
1779         return msg;
1780
1781     }
1782
1783     else if( psz_filter && !strcmp( psz_filter, "media" ) )
1784     {
1785         int i, j;
1786         vlm_message_t *msg;
1787         vlm_message_t *msg_child;
1788         int i_vod = 0, i_broadcast = 0;
1789         char *psz_count;
1790
1791         for( i = 0; i < vlm->i_media; i++ )
1792         {
1793             if( vlm->media[i]->i_type == VOD_TYPE )
1794                 i_vod ++;
1795             else
1796                 i_broadcast ++;
1797         }
1798
1799         asprintf( &psz_count, "( %d broadcast - %d vod )", i_broadcast, i_vod);
1800
1801         msg = vlm_MessageNew( "show", NULL );
1802         msg_child = vlm_MessageAdd( msg, vlm_MessageNew( "media", psz_count ) );
1803         free( psz_count );
1804
1805         for( i = 0; i < vlm->i_media; i++ )
1806         {
1807             vlm_media_t *m = vlm->media[i];
1808             vlm_message_t *msg_media, *msg_instance;
1809
1810             msg_media = vlm_MessageAdd( msg_child,
1811                                         vlm_MessageNew( m->psz_name, 0 ) );
1812
1813             vlm_MessageAdd( msg_media,
1814                             vlm_MessageNew( "type", m->i_type == VOD_TYPE ?
1815                                             "vod" : "broadcast" ) );
1816
1817             vlm_MessageAdd( msg_media,
1818                             vlm_MessageNew( "enabled", m->b_enabled ?
1819                                             "yes" : "no" ) );
1820
1821             if( m->i_type == VOD_TYPE && m->psz_mux )
1822                 vlm_MessageAdd( msg_media,
1823                                 vlm_MessageNew( "mux", m->psz_mux ) );
1824
1825             msg_instance = vlm_MessageAdd( msg_media,
1826                                            vlm_MessageNew( "instances", 0 ) );
1827
1828             for( j = 0; j < m->i_instance; j++ )
1829             {
1830                 vlm_media_instance_t *p_instance = m->instance[j];
1831                 vlc_value_t val;
1832
1833                 if( !p_instance->p_input ) val.i_int = END_S;
1834                 else var_Get( p_instance->p_input, "state", &val );
1835
1836                 vlm_MessageAdd( msg_instance,
1837                     vlm_MessageNew( p_instance->psz_name ?
1838                                     p_instance->psz_name : "default",
1839                                     val.i_int == PLAYING_S ? "playing" :
1840                                     val.i_int == PAUSE_S ? "paused" :
1841                                     "stopped" ) );
1842             }
1843         }
1844
1845         return msg;
1846     }
1847
1848     else if( psz_filter && !strcmp( psz_filter, "schedule" ) )
1849     {
1850         int i;
1851         vlm_message_t *msg;
1852         vlm_message_t *msg_child;
1853
1854         msg = vlm_MessageNew( "show", NULL );
1855         msg_child = vlm_MessageAdd( msg, vlm_MessageNew( "schedule", NULL ) );
1856
1857         for( i = 0; i < vlm->i_schedule; i++ )
1858         {
1859             vlm_schedule_t *s = vlm->schedule[i];
1860             vlm_message_t *msg_schedule;
1861             mtime_t i_time, i_next_date;
1862
1863             msg_schedule = vlm_MessageAdd( msg_child,
1864                                            vlm_MessageNew( s->psz_name, 0 ) );
1865             vlm_MessageAdd( msg_schedule,
1866                             vlm_MessageNew( "enabled", s->b_enabled ?
1867                                             "yes" : "no" ) );
1868
1869             /* calculate next date */
1870             i_time = vlm_Date();
1871             i_next_date = s->i_date;
1872
1873             if( s->i_period != 0 )
1874             {
1875                 int j = 0;
1876                 while( s->i_date + j * s->i_period <= i_time &&
1877                        s->i_repeat > j )
1878                 {
1879                     j++;
1880                 }
1881
1882                 i_next_date = s->i_date + j * s->i_period;
1883             }
1884
1885             if( i_next_date > i_time )
1886             {
1887                 time_t i_date = (time_t) (i_next_date / 1000000) ;
1888
1889 #if !defined( UNDER_CE )
1890 #ifdef HAVE_CTIME_R
1891                 char psz_date[500];
1892                 ctime_r( &i_date, psz_date );
1893 #else
1894                 char *psz_date = ctime( &i_date );
1895 #endif
1896
1897                 vlm_MessageAdd( msg_schedule,
1898                                 vlm_MessageNew( "next launch", psz_date ) );
1899 #endif
1900             }
1901         }
1902
1903         return msg;
1904     }
1905
1906     else if( psz_filter == NULL && media == NULL && schedule == NULL )
1907     {
1908         vlm_message_t *show1 = vlm_Show( vlm, NULL, NULL, "media" );
1909         vlm_message_t *show2 = vlm_Show( vlm, NULL, NULL, "schedule" );
1910
1911         vlm_MessageAdd( show1, show2->child[0] );
1912
1913         /* We must destroy the parent node "show" of show2
1914          * and not the children */
1915         free( show2->psz_name );
1916         free( show2 );
1917
1918         return show1;
1919     }
1920
1921     else
1922     {
1923         return vlm_MessageNew( "show", NULL );
1924     }
1925 }
1926
1927 static vlm_message_t *vlm_Help( vlm_t *vlm, char *psz_filter )
1928 {
1929     vlm_message_t *message, *message_child;
1930
1931 #define MessageAdd( a ) \
1932         vlm_MessageAdd( message, vlm_MessageNew( a, NULL ) );
1933 #define MessageAddChild( a ) \
1934         vlm_MessageAdd( message_child, vlm_MessageNew( a, NULL ) );
1935
1936     if( psz_filter == NULL )
1937     {
1938         message = vlm_MessageNew( "help", NULL );
1939
1940         message_child = MessageAdd( "Commands Syntax:" );
1941         MessageAddChild( "new (name) vod|broadcast|schedule [properties]" );
1942         MessageAddChild( "setup (name) (properties)" );
1943         MessageAddChild( "show [(name)|media|schedule]" );
1944         MessageAddChild( "del (name)|all|media|schedule" );
1945         MessageAddChild( "control (name) [instance_name] (command)" );
1946         MessageAddChild( "save (config_file)" );
1947         MessageAddChild( "export" );
1948         MessageAddChild( "load (config_file)" );
1949
1950         message_child = MessageAdd( "Media Proprieties Syntax:" );
1951         MessageAddChild( "input (input_name)" );
1952         MessageAddChild( "inputdel (input_name)|all" );
1953         MessageAddChild( "inputdeln input_number" );
1954         MessageAddChild( "output (output_name)" );
1955         MessageAddChild( "option (option_name)[=value]" );
1956         MessageAddChild( "enabled|disabled" );
1957         MessageAddChild( "loop|unloop (broadcast only)" );
1958         MessageAddChild( "mux (mux_name)" );
1959
1960         message_child = MessageAdd( "Schedule Proprieties Syntax:" );
1961         MessageAddChild( "enabled|disabled" );
1962         MessageAddChild( "append (command_until_rest_of_the_line)" );
1963         MessageAddChild( "date (year)/(month)/(day)-(hour):(minutes):"
1964                          "(seconds)|now" );
1965         MessageAddChild( "period (years_aka_12_months)/(months_aka_30_days)/"
1966                          "(days)-(hours):(minutes):(seconds)" );
1967         MessageAddChild( "repeat (number_of_repetitions)" );
1968
1969         message_child = MessageAdd( "Control Commands Syntax:" );
1970         MessageAddChild( "play" );
1971         MessageAddChild( "pause" );
1972         MessageAddChild( "stop" );
1973         MessageAddChild( "seek (percentage)" );
1974
1975         return message;
1976     }
1977
1978     return vlm_MessageNew( "help", NULL );
1979 }
1980
1981 /*****************************************************************************
1982  * Config handling functions
1983  *****************************************************************************/
1984 static int Load( vlm_t *vlm, char *file )
1985 {
1986     char *pf = file;
1987     int  i_line = 1;
1988
1989     while( *pf != '\0' )
1990     {
1991         vlm_message_t *message = NULL;
1992         int i_end = 0;
1993
1994         while( pf[i_end] != '\n' && pf[i_end] != '\0' && pf[i_end] != '\r' )
1995         {
1996             i_end++;
1997         }
1998
1999         if( pf[i_end] == '\r' || pf[i_end] == '\n' )
2000         {
2001             pf[i_end] = '\0';
2002             i_end++;
2003             if( pf[i_end] == '\n' ) i_end++;
2004         }
2005
2006         if( *pf && ExecuteCommand( vlm, pf, &message ) )
2007         {
2008             if( message )
2009             {
2010                 if( message->psz_value )
2011                     msg_Err( vlm, "Load error on line %d: %s: %s",
2012                              i_line, message->psz_name, message->psz_value );
2013                 free( message );
2014             }
2015             return 1;
2016         }
2017         if( message ) free( message );
2018
2019         pf += i_end;
2020         i_line++;
2021     }
2022
2023     return 0;
2024 }
2025
2026 static char *Save( vlm_t *vlm )
2027 {
2028     char *save = NULL;
2029     char psz_header[] = "\n"
2030                         "# VLC media player VLM command batch\n"
2031                         "# http://www.videolan.org/vlc/\n\n" ;
2032     char *p;
2033     int i,j;
2034     int i_length = strlen( psz_header );
2035
2036     for( i = 0; i < vlm->i_media; i++ )
2037     {
2038         vlm_media_t *media = vlm->media[i];
2039
2040         if( media->i_type == VOD_TYPE )
2041         {
2042             i_length += strlen( "new  vod " ) + strlen(media->psz_name);
2043         }
2044         else
2045         {
2046             i_length += strlen( "new  broadcast " ) + strlen(media->psz_name);
2047         }
2048
2049         if( media->b_enabled == VLC_TRUE )
2050         {
2051             i_length += strlen( "enabled" );
2052         }
2053         else
2054         {
2055             i_length += strlen( "disabled" );
2056         }
2057
2058         if( media->b_loop == VLC_TRUE )
2059         {
2060             i_length += strlen( " loop\n" );
2061         }
2062         else
2063         {
2064             i_length += strlen( "\n" );
2065         }
2066
2067         for( j = 0; j < media->i_input; j++ )
2068         {
2069             i_length += strlen( "setup  input \"\"\n" ) +
2070                 strlen( media->psz_name ) + strlen( media->input[j] );
2071         }
2072
2073         if( media->psz_output != NULL )
2074         {
2075             i_length += strlen(media->psz_name) + strlen(media->psz_output) +
2076                 strlen( "setup  output \n" );
2077         }
2078
2079         for( j=0 ; j < media->i_option ; j++ )
2080         {
2081             i_length += strlen(media->psz_name) + strlen(media->option[j]) +
2082                 strlen("setup  option \n");
2083         }
2084     }
2085
2086     for( i = 0; i < vlm->i_schedule; i++ )
2087     {
2088         vlm_schedule_t *schedule = vlm->schedule[i];
2089
2090         i_length += strlen( "new  schedule " ) + strlen( schedule->psz_name );
2091
2092         if( schedule->b_enabled == VLC_TRUE )
2093         {
2094             i_length += strlen( "date //-:: enabled\n" ) + 14;
2095         }
2096         else
2097         {
2098             i_length += strlen( "date //-:: disabled\n" ) + 14;
2099         }
2100
2101
2102         if( schedule->i_period != 0 )
2103         {
2104             i_length += strlen( "setup  " ) + strlen( schedule->psz_name ) +
2105                 strlen( "period //-::\n" ) + 14;
2106         }
2107
2108         if( schedule->i_repeat >= 0 )
2109         {
2110             char buffer[12];
2111
2112             sprintf( buffer, "%d", schedule->i_repeat );
2113             i_length += strlen( "setup  repeat \n" ) +
2114                 strlen( schedule->psz_name ) + strlen( buffer );
2115         }
2116         else
2117         {
2118             i_length++;
2119         }
2120
2121         for( j = 0; j < schedule->i_command; j++ )
2122         {
2123             i_length += strlen( "setup  append \n" ) +
2124                 strlen( schedule->psz_name ) + strlen( schedule->command[j] );
2125         }
2126
2127     }
2128
2129     /* Don't forget the '\0' */
2130     i_length++;
2131     /* now we have the length of save */
2132
2133     p = save = malloc( i_length );
2134     *save = '\0';
2135
2136     p += sprintf( p, "%s", psz_header );
2137
2138     /* finally we can write in it */
2139     for( i = 0; i < vlm->i_media; i++ )
2140     {
2141         vlm_media_t *media = vlm->media[i];
2142
2143         if( media->i_type == VOD_TYPE )
2144         {
2145             p += sprintf( p, "new %s vod ", media->psz_name);
2146         }
2147         else
2148         {
2149             p += sprintf( p, "new %s broadcast ", media->psz_name);
2150         }
2151
2152         if( media->b_enabled == VLC_TRUE )
2153         {
2154             p += sprintf( p, "enabled" );
2155         }
2156         else
2157         {
2158             p += sprintf( p, "disabled" );
2159         }
2160
2161         if( media->b_loop == VLC_TRUE )
2162         {
2163             p += sprintf( p, " loop\n" );
2164         }
2165         else
2166         {
2167             p += sprintf( p, "\n" );
2168         }
2169
2170         for( j = 0; j < media->i_input; j++ )
2171         {
2172             p += sprintf( p, "setup %s input \"%s\"\n", media->psz_name,
2173                           media->input[j] );
2174         }
2175
2176         if( media->psz_output != NULL )
2177         {
2178             p += sprintf( p, "setup %s output %s\n", media->psz_name,
2179                           media->psz_output );
2180         }
2181
2182         for( j = 0; j < media->i_option; j++ )
2183         {
2184             p += sprintf( p, "setup %s option %s\n", media->psz_name,
2185                           media->option[j] );
2186         }
2187     }
2188
2189     /* and now, the schedule scripts */
2190 #if !defined( UNDER_CE )
2191     for( i = 0; i < vlm->i_schedule; i++ )
2192     {
2193         vlm_schedule_t *schedule = vlm->schedule[i];
2194         struct tm date;
2195         time_t i_time = (time_t) ( schedule->i_date / 1000000 );
2196
2197 #ifdef HAVE_LOCALTIME_R
2198         localtime_r( &i_time, &date);
2199 #else
2200         struct tm *p_date = localtime( &i_time );
2201         date = *p_date;
2202 #endif
2203
2204         p += sprintf( p, "new %s schedule ", schedule->psz_name);
2205
2206         if( schedule->b_enabled == VLC_TRUE )
2207         {
2208             p += sprintf( p, "date %d/%d/%d-%d:%d:%d enabled\n",
2209                           date.tm_year + 1900, date.tm_mon + 1, date.tm_mday,
2210                           date.tm_hour, date.tm_min, date.tm_sec );
2211         }
2212         else
2213         {
2214             p += sprintf( p, "date %d/%d/%d-%d:%d:%d disabled\n",
2215                           date.tm_year + 1900, date.tm_mon + 1, date.tm_mday,
2216                           date.tm_hour, date.tm_min, date.tm_sec);
2217         }
2218
2219         if( schedule->i_period != 0 )
2220         {
2221             p += sprintf( p, "setup %s ", schedule->psz_name );
2222
2223             i_time = (time_t) ( schedule->i_period / 1000000 );
2224
2225             date.tm_sec = (int)( i_time % 60 );
2226             i_time = i_time / 60;
2227             date.tm_min = (int)( i_time % 60 );
2228             i_time = i_time / 60;
2229             date.tm_hour = (int)( i_time % 24 );
2230             i_time = i_time / 24;
2231             date.tm_mday = (int)( i_time % 30 );
2232             i_time = i_time / 30;
2233             /* okay, okay, months are not always 30 days long */
2234             date.tm_mon = (int)( i_time % 12 );
2235             i_time = i_time / 12;
2236             date.tm_year = (int)i_time;
2237
2238             p += sprintf( p, "period %d/%d/%d-%d:%d:%d\n",
2239                           date.tm_year, date.tm_mon, date.tm_mday,
2240                           date.tm_hour, date.tm_min, date.tm_sec);
2241         }
2242
2243         if( schedule->i_repeat >= 0 )
2244         {
2245             p += sprintf( p, "setup %s repeat %d\n",
2246                           schedule->psz_name, schedule->i_repeat );
2247         }
2248         else
2249         {
2250             p += sprintf( p, "\n" );
2251         }
2252
2253         for( j = 0; j < schedule->i_command; j++ )
2254         {
2255             p += sprintf( p, "setup %s append %s\n",
2256                           schedule->psz_name, schedule->command[j] );
2257         }
2258
2259     }
2260 #endif /* UNDER_CE */
2261
2262     return save;
2263 }
2264
2265 /*****************************************************************************
2266  * Manage:
2267  *****************************************************************************/
2268 int vlm_MediaVodControl( void *p_private, vod_media_t *p_vod_media,
2269                          const char *psz_id, int i_query, va_list args )
2270 {
2271     vlm_t *vlm = (vlm_t *)p_private;
2272     int i, i_ret = VLC_EGENERIC;
2273
2274     if( !p_private || !p_vod_media ) return VLC_EGENERIC;
2275
2276     vlc_mutex_lock( &vlm->lock );
2277
2278     /* Find media */
2279     for( i = 0; i < vlm->i_media; i++ )
2280     {
2281         if( p_vod_media == vlm->media[i]->vod_media ) break;
2282     }
2283
2284     if( i == vlm->i_media )
2285     {
2286         vlc_mutex_unlock( &vlm->lock );
2287         return VLC_EGENERIC;
2288     }
2289
2290     switch( i_query )
2291     {
2292     case VOD_MEDIA_PLAY:
2293         vlm->media[i]->psz_vod_output = (char *)va_arg( args, char * );
2294         i_ret = vlm_MediaControl( vlm, vlm->media[i], psz_id, "play", 0 );
2295         vlm->media[i]->psz_vod_output = 0;
2296         break;
2297
2298     case VOD_MEDIA_PAUSE:
2299         i_ret = vlm_MediaControl( vlm, vlm->media[i], psz_id, "pause", 0 );
2300         break;
2301
2302     case VOD_MEDIA_STOP:
2303         i_ret = vlm_MediaControl( vlm, vlm->media[i], psz_id, "stop", 0 );
2304         break;
2305
2306     case VOD_MEDIA_SEEK:
2307     {
2308         double f_pos = (double)va_arg( args, double );
2309         char psz_pos[50];
2310
2311         sprintf( psz_pos, "%f", f_pos );
2312         i_ret = vlm_MediaControl( vlm, vlm->media[i], psz_id, "seek", psz_pos);
2313         break;
2314     }
2315
2316     default:
2317         break;
2318     }
2319
2320     vlc_mutex_unlock( &vlm->lock );
2321
2322     return i_ret;
2323 }
2324
2325 /*****************************************************************************
2326  * Manage:
2327  *****************************************************************************/
2328 static int Manage( vlc_object_t* p_object )
2329 {
2330     vlm_t *vlm = (vlm_t*)p_object;
2331     int i, j;
2332     mtime_t i_lastcheck;
2333     mtime_t i_time;
2334
2335     i_lastcheck = vlm_Date();
2336
2337     msleep( 100000 );
2338
2339     while( !vlm->b_die )
2340     {
2341         char **ppsz_scheduled_commands = NULL;
2342         int    i_scheduled_commands = 0;
2343         vlc_mutex_lock( &vlm->lock );
2344
2345         /* destroy the inputs that wants to die, and launch the next input */
2346         for( i = 0; i < vlm->i_media; i++ )
2347         {
2348             vlm_media_t *p_media = vlm->media[i];
2349
2350             for( j = 0; j < p_media->i_instance; j++ )
2351             {
2352                 vlm_media_instance_t *p_instance = p_media->instance[j];
2353
2354                 if( !p_instance->p_input ||
2355                     ( !p_instance->p_input->b_eof &&
2356                       !p_instance->p_input->b_error ) ) continue;
2357
2358                 input_StopThread( p_instance->p_input );
2359                 input_DestroyThread( p_instance->p_input );
2360                 vlc_object_detach( p_instance->p_input );
2361                 vlc_object_destroy( p_instance->p_input );
2362
2363                 p_instance->i_index++;
2364                 if( p_instance->i_index == p_media->i_input &&
2365                     p_media->b_loop ) p_instance->i_index = 0;
2366
2367                 if( p_instance->i_index < p_media->i_input )
2368                 {
2369                     /* FIXME, find a way to select the right instance */
2370                     char buffer[12];
2371                     sprintf( buffer, "%d", p_instance->i_index );
2372                     vlm_MediaControl( vlm, p_media, p_instance->psz_name,
2373                                       "play", buffer );
2374                 }
2375                 else
2376                 {
2377                     if( vlm_MediaControl( vlm, p_media, p_instance->psz_name,
2378                                           "stop", 0 ) == VLC_SUCCESS ) i--;
2379                 }
2380             }
2381         }
2382
2383         /* scheduling */
2384         i_time = vlm_Date();
2385
2386         for( i = 0; i < vlm->i_schedule; i++ )
2387         {
2388             mtime_t i_real_date = vlm->schedule[i]->i_date;
2389
2390             if( vlm->schedule[i]->b_enabled == VLC_TRUE )
2391             {
2392                 if( vlm->schedule[i]->i_date == 0 ) // now !
2393                 {
2394                     vlm->schedule[i]->i_date = (i_time / 1000000) * 1000000 ;
2395                     i_real_date = i_time;
2396                 }
2397                 else if( vlm->schedule[i]->i_period != 0 )
2398                 {
2399                     int j = 0;
2400                     while( vlm->schedule[i]->i_date + j *
2401                            vlm->schedule[i]->i_period <= i_lastcheck &&
2402                            ( vlm->schedule[i]->i_repeat > j ||
2403                              vlm->schedule[i]->i_repeat == -1 ) )
2404                     {
2405                         j++;
2406                     }
2407
2408                     i_real_date = vlm->schedule[i]->i_date + j *
2409                         vlm->schedule[i]->i_period;
2410                 }
2411
2412                 if( i_real_date <= i_time && i_real_date > i_lastcheck )
2413                 {
2414                     for( j = 0; j < vlm->schedule[i]->i_command; j++ )
2415                     {
2416                         TAB_APPEND( i_scheduled_commands,
2417                                     ppsz_scheduled_commands,
2418                                     strdup(vlm->schedule[i]->command[j] ) );
2419                     }
2420                 }
2421             }
2422         }
2423         while( i_scheduled_commands )
2424         {
2425             vlm_message_t *message = NULL;
2426             char *psz_command = ppsz_scheduled_commands[0];
2427             ExecuteCommand( vlm, psz_command,&message );
2428
2429             /* for now, drop the message */
2430             free( message );
2431             TAB_REMOVE( i_scheduled_commands,
2432                         ppsz_scheduled_commands,
2433                         psz_command );
2434             free( psz_command );
2435         }
2436
2437         i_lastcheck = i_time;
2438
2439         vlc_mutex_unlock( &vlm->lock );
2440
2441         msleep( 100000 );
2442     }
2443
2444     return VLC_SUCCESS;
2445 }
2446
2447 #else /* ENABLE_VLM */
2448
2449 /* We just define an empty wrapper */
2450 vlm_t *__vlm_New( vlc_object_t *a )
2451 {
2452     msg_Err( a, "VideoLAN manager support is disabled" );
2453     return 0;
2454 }
2455 void vlm_Delete( vlm_t *a ){}
2456 int vlm_ExecuteCommand( vlm_t *a, char *b, vlm_message_t **c ){ return -1; }
2457 void vlm_MessageDelete( vlm_message_t *a ){}
2458 vlm_media_t *vlm_MediaNew( vlm_t *a, char *b, int c ){ return NULL; }
2459 void vlm_MediaDelete( vlm_t *a, vlm_media_t *b, char *c ){}
2460 int vlm_MediaSetup( vlm_t *a, vlm_media_t *b, char *c, char *d ){ return -1; }
2461 int vlm_MediaControl( vlm_t *a, vlm_media_t *b, char *c, char *d, char *e )
2462     { return -1; }
2463 vlm_schedule_t * vlm_ScheduleNew( vlm_t *a, char *b ){ return NULL; }
2464 void  vlm_ScheduleDelete( vlm_t *a, vlm_schedule_t *b, char *c ){}
2465 int vlm_ScheduleSetup( vlm_schedule_t *a, char *b, char *c ){ return -1; }
2466 int vlm_MediaVodControl( void *a, vod_media_t *b, char *c, int d, va_list e )
2467     { return -1; }
2468 int vlm_Save( vlm_t *a, char *b ){ return -1; }
2469 int vlm_Load( vlm_t *a, char *b ){ return -1; }
2470
2471 #endif /* ENABLE_VLM */