vlmshell.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:55k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlm.c: VLM interface plugin
  3.  *****************************************************************************
  4.  * Copyright (C) 2000-2005 the VideoLAN team
  5.  * $Id: ba62608c1c9b4891bf9a9b11bf7343152e7d2ea8 $
  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.  * Preamble
  27.  *****************************************************************************/
  28. #ifdef HAVE_CONFIG_H
  29. # include "config.h"
  30. #endif
  31. #include <vlc_common.h>
  32. #include <stdio.h>
  33. #include <ctype.h>                                              /* tolower() */
  34. #include <assert.h>
  35. #include <vlc_vlm.h>
  36. #ifdef ENABLE_VLM
  37. #ifndef WIN32
  38. #   include <sys/time.h>                                   /* gettimeofday() */
  39. #endif
  40. #include <time.h>                                                 /* ctime() */
  41. #include <vlc_input.h>
  42. #include "input_internal.h"
  43. #include <vlc_stream.h>
  44. #include "vlm_internal.h"
  45. #include <vlc_vod.h>
  46. #include <vlc_charset.h>
  47. #include <vlc_sout.h>
  48. #include "../stream_output/stream_output.h"
  49. #include "../libvlc.h"
  50. /*****************************************************************************
  51.  * Local prototypes.
  52.  *****************************************************************************/
  53. /* */
  54. static vlm_message_t *vlm_Show( vlm_t *, vlm_media_sys_t *, vlm_schedule_sys_t *, const char * );
  55. static vlm_schedule_sys_t *vlm_ScheduleSearch( vlm_t *, const char * );
  56. static char *Save( vlm_t * );
  57. static int Load( vlm_t *, char * );
  58. static vlm_schedule_sys_t *vlm_ScheduleNew( vlm_t *vlm, const char *psz_name );
  59. static int vlm_ScheduleSetup( vlm_schedule_sys_t *schedule, const char *psz_cmd,
  60.                               const char *psz_value );
  61. /* */
  62. static vlm_media_sys_t *vlm_MediaSearch( vlm_t *, const char *);
  63. static const char quotes[] = ""'";
  64. /**
  65.  * FindCommandEnd: look for the end of a possibly quoted string
  66.  * @return NULL on mal-formatted string,
  67.  * pointer past the last character otherwise.
  68.  */
  69. static const char *FindCommandEnd( const char *psz_sent )
  70. {
  71.     char c, quote = 0;
  72.     while( (c = *psz_sent) != '' )
  73.     {
  74.         if( !quote )
  75.         {
  76.             if( strchr(quotes,c) )   // opening quote
  77.                 quote = c;
  78.             else if( isspace(c) )         // non-escaped space
  79.                 return psz_sent;
  80.             else if( c == '\' )
  81.             {
  82.                 psz_sent++;         // skip escaped character
  83.                 if( *psz_sent == '' )
  84.                     return psz_sent;
  85.             }
  86.         }
  87.         else
  88.         {
  89.             if( c == quote )         // non-escaped matching quote
  90.                 quote = 0;
  91.             else if( (quote == '"') && (c == '\') )
  92.             {
  93.                 psz_sent++;         // skip escaped character
  94.                 if (*psz_sent == '')
  95.                     return NULL;    // error, closing quote missing
  96.             }
  97.         }
  98.         psz_sent++;
  99.     }
  100.     // error (NULL) if we could not find a matching quote
  101.     return quote ? NULL : psz_sent;
  102. }
  103. /**
  104.  * Unescape a nul-terminated string.
  105.  * Note that in and out can be identical.
  106.  *
  107.  * @param out output buffer (at least <strlen (in) + 1> characters long)
  108.  * @param in nul-terminated string to be unescaped
  109.  *
  110.  * @return 0 on success, -1 on error.
  111.  */
  112. static int Unescape( char *out, const char *in )
  113. {
  114.     char c, quote = 0;
  115.     bool param = false;
  116.     while( (c = *in++) != '' )
  117.     {
  118.         // Don't escape the end of the string if we find a '#'
  119.         // that's the begining of a vlc command
  120.         // TODO: find a better solution
  121.         if( c == '#' || param )
  122.         {
  123.             param = true;
  124.             *out++ = c;
  125.             continue;
  126.         }
  127.         if( !quote )
  128.         {
  129.             if (strchr(quotes,c))   // opening quote
  130.             {
  131.                 quote = c;
  132.                 continue;
  133.             }
  134.             else if( c == '\' )
  135.             {
  136.                 switch (c = *in++)
  137.                 {
  138.                     case '"':
  139.                     case ''':
  140.                     case '\':
  141.                         *out++ = c;
  142.                         continue;
  143.                     case '':
  144.                         *out = '';
  145.                         return 0;
  146.                 }
  147.                 if( isspace(c) )
  148.                 {
  149.                     *out++ = c;
  150.                     continue;
  151.                 }
  152.                 /* None of the special cases - copy the backslash */
  153.                 *out++ = '\';
  154.             }
  155.         }
  156.         else
  157.         {
  158.             if( c == quote )         // non-escaped matching quote
  159.             {
  160.                 quote = 0;
  161.                 continue;
  162.             }
  163.             if( (quote == '"') && (c == '\') )
  164.             {
  165.                 switch( c = *in++ )
  166.                 {
  167.                     case '"':
  168.                     case '\':
  169.                         *out++ = c;
  170.                         continue;
  171.                     case '':   // should never happen
  172.                         *out = '';
  173.                         return -1;
  174.                 }
  175.                 /* None of the special cases - copy the backslash */
  176.                 *out++ = '\';
  177.             }
  178.         }
  179.         *out++ = c;
  180.     }
  181.     *out = '';
  182.     return 0;
  183. }
  184. /*****************************************************************************
  185.  * ExecuteCommand: The main state machine
  186.  *****************************************************************************
  187.  * Execute a command which ends with '' (string)
  188.  *****************************************************************************/
  189. static int ExecuteSyntaxError( const char *psz_cmd, vlm_message_t **pp_status )
  190. {
  191.     *pp_status = vlm_MessageNew( psz_cmd, "Wrong command syntax" );
  192.     return VLC_EGENERIC;
  193. }
  194. static bool ExecuteIsMedia( vlm_t *p_vlm, const char *psz_name )
  195. {
  196.     int64_t id;
  197.     if( !psz_name || vlm_ControlInternal( p_vlm, VLM_GET_MEDIA_ID, psz_name, &id ) )
  198.         return false;
  199.     return true;
  200. }
  201. static bool ExecuteIsSchedule( vlm_t *p_vlm, const char *psz_name )
  202. {
  203.     if( !psz_name || !vlm_ScheduleSearch( p_vlm, psz_name ) )
  204.         return false;
  205.     return true;
  206. }
  207. static int ExecuteDel( vlm_t *p_vlm, const char *psz_name, vlm_message_t **pp_status )
  208. {
  209.     vlm_media_sys_t *p_media;
  210.     vlm_schedule_sys_t *p_schedule;
  211.     p_media = vlm_MediaSearch( p_vlm, psz_name );
  212.     p_schedule = vlm_ScheduleSearch( p_vlm, psz_name );
  213.     if( p_schedule != NULL )
  214.     {
  215.         vlm_ScheduleDelete( p_vlm, p_schedule );
  216.     }
  217.     else if( p_media != NULL )
  218.     {
  219.         vlm_ControlInternal( p_vlm, VLM_DEL_MEDIA, p_media->cfg.id );
  220.     }
  221.     else if( !strcmp(psz_name, "media") )
  222.     {
  223.         vlm_ControlInternal( p_vlm, VLM_CLEAR_MEDIAS );
  224.     }
  225.     else if( !strcmp(psz_name, "schedule") )
  226.     {
  227.         vlm_ControlInternal( p_vlm, VLM_CLEAR_SCHEDULES );
  228.     }
  229.     else if( !strcmp(psz_name, "all") )
  230.     {
  231.         vlm_ControlInternal( p_vlm, VLM_CLEAR_MEDIAS );
  232.         vlm_ControlInternal( p_vlm, VLM_CLEAR_SCHEDULES );
  233.     }
  234.     else
  235.     {
  236.         *pp_status = vlm_MessageNew( "del", "%s: media unknown", psz_name );
  237.         return VLC_EGENERIC;
  238.     }
  239.     *pp_status = vlm_MessageSimpleNew( "del" );
  240.     return VLC_SUCCESS;
  241. }
  242. static int ExecuteShow( vlm_t *p_vlm, const char *psz_name, vlm_message_t **pp_status )
  243. {
  244.     vlm_media_sys_t *p_media;
  245.     vlm_schedule_sys_t *p_schedule;
  246.     if( !psz_name )
  247.     {
  248.         *pp_status = vlm_Show( p_vlm, NULL, NULL, NULL );
  249.         return VLC_SUCCESS;
  250.     }
  251.     p_media = vlm_MediaSearch( p_vlm, psz_name );
  252.     p_schedule = vlm_ScheduleSearch( p_vlm, psz_name );
  253.     if( p_schedule != NULL )
  254.         *pp_status = vlm_Show( p_vlm, NULL, p_schedule, NULL );
  255.     else if( p_media != NULL )
  256.         *pp_status = vlm_Show( p_vlm, p_media, NULL, NULL );
  257.     else
  258.         *pp_status = vlm_Show( p_vlm, NULL, NULL, psz_name );
  259.     return VLC_SUCCESS;
  260. }
  261. static int ExecuteHelp( vlm_message_t **pp_status )
  262. {
  263.     vlm_message_t *message_child;
  264. #define MessageAdd( a ) 
  265.         vlm_MessageAdd( *pp_status, vlm_MessageSimpleNew( a ) );
  266. #define MessageAddChild( a ) 
  267.         vlm_MessageAdd( message_child, vlm_MessageSimpleNew( a ) );
  268.     *pp_status = vlm_MessageSimpleNew( "help" );
  269.     message_child = MessageAdd( "Commands Syntax:" );
  270.     MessageAddChild( "new (name) vod|broadcast|schedule [properties]" );
  271.     MessageAddChild( "setup (name) (properties)" );
  272.     MessageAddChild( "show [(name)|media|schedule]" );
  273.     MessageAddChild( "del (name)|all|media|schedule" );
  274.     MessageAddChild( "control (name) [instance_name] (command)" );
  275.     MessageAddChild( "save (config_file)" );
  276.     MessageAddChild( "export" );
  277.     MessageAddChild( "load (config_file)" );
  278.     message_child = MessageAdd( "Media Proprieties Syntax:" );
  279.     MessageAddChild( "input (input_name)" );
  280.     MessageAddChild( "inputdel (input_name)|all" );
  281.     MessageAddChild( "inputdeln input_number" );
  282.     MessageAddChild( "output (output_name)" );
  283.     MessageAddChild( "option (option_name)[=value]" );
  284.     MessageAddChild( "enabled|disabled" );
  285.     MessageAddChild( "loop|unloop (broadcast only)" );
  286.     MessageAddChild( "mux (mux_name)" );
  287.     message_child = MessageAdd( "Schedule Proprieties Syntax:" );
  288.     MessageAddChild( "enabled|disabled" );
  289.     MessageAddChild( "append (command_until_rest_of_the_line)" );
  290.     MessageAddChild( "date (year)/(month)/(day)-(hour):(minutes):"
  291.                      "(seconds)|now" );
  292.     MessageAddChild( "period (years_aka_12_months)/(months_aka_30_days)/"
  293.                      "(days)-(hours):(minutes):(seconds)" );
  294.     MessageAddChild( "repeat (number_of_repetitions)" );
  295.     message_child = MessageAdd( "Control Commands Syntax:" );
  296.     MessageAddChild( "play [input_number]" );
  297.     MessageAddChild( "pause" );
  298.     MessageAddChild( "stop" );
  299.     MessageAddChild( "seek [+-](percentage) | [+-](seconds)s | [+-](milliseconds)ms" );
  300.     return VLC_SUCCESS;
  301. }
  302. static int ExecuteControl( vlm_t *p_vlm, const char *psz_name, const int i_arg, char ** ppsz_arg, vlm_message_t **pp_status )
  303. {
  304.     vlm_media_sys_t *p_media;
  305.     const char *psz_control = NULL;
  306.     const char *psz_instance = NULL;
  307.     const char *psz_argument = NULL;
  308.     int i_index;
  309.     int i_result;
  310.     if( !ExecuteIsMedia( p_vlm, psz_name ) )
  311.     {
  312.         *pp_status = vlm_MessageNew( "control", "%s: media unknown", psz_name );
  313.         return VLC_EGENERIC;
  314.     }
  315.     assert( i_arg > 0 );
  316. #define IS(txt) ( !strcmp( ppsz_arg[i_index], (txt) ) )
  317.     i_index = 0;
  318.     if( !IS("play") && !IS("stop") && !IS("pause") && !IS("seek") )
  319.     {
  320.         i_index = 1;
  321.         psz_instance = ppsz_arg[0];
  322.         if( i_index >= i_arg || ( !IS("play") && !IS("stop") && !IS("pause") && !IS("seek") ) )
  323.             return ExecuteSyntaxError( "control", pp_status );
  324.     }
  325. #undef IS
  326.     psz_control = ppsz_arg[i_index];
  327.     if( i_index+1 < i_arg )
  328.         psz_argument = ppsz_arg[i_index+1];
  329.     p_media = vlm_MediaSearch( p_vlm, psz_name );
  330.     assert( p_media );
  331.     if( !strcmp( psz_control, "play" ) )
  332.     {
  333.         int i_input_index = 0;
  334.         int i;
  335.         if( ( psz_argument && sscanf(psz_argument, "%d", &i) == 1 ) && i > 0 && i-1 < p_media->cfg.i_input )
  336.         {
  337.             i_input_index = i-1;
  338.         }
  339.         else if( psz_argument )
  340.         {
  341.             int j;
  342.             vlm_media_t *p_cfg = &p_media->cfg;
  343.             for ( j=0; j < p_cfg->i_input; j++)
  344.             {
  345.                 if( !strcmp( p_cfg->ppsz_input[j], psz_argument ) )
  346.                 {
  347.                     i_input_index = j;
  348.                     break;
  349.                 }
  350.             }
  351.         }
  352.         if( p_media->cfg.b_vod )
  353.             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
  354.         else
  355.             i_result = vlm_ControlInternal( p_vlm, VLM_START_MEDIA_BROADCAST_INSTANCE, p_media->cfg.id, psz_instance, i_input_index );
  356.     }
  357.     else if( !strcmp( psz_control, "seek" ) )
  358.     {
  359.         if( psz_argument )
  360.         {
  361.             bool b_relative;
  362.             if( psz_argument[0] == '+' || psz_argument[0] == '-' )
  363.                 b_relative = true;
  364.             else
  365.                 b_relative = false;
  366.             if( strstr( psz_argument, "ms" ) || strstr( psz_argument, "s" ) )
  367.             {
  368.                 /* Time (ms or s) */
  369.                 int64_t i_new_time;
  370.                 if( strstr( psz_argument, "ms" ) )
  371.                     i_new_time =  1000 * (int64_t)atoi( psz_argument );
  372.                 else
  373.                     i_new_time = 1000000 * (int64_t)atoi( psz_argument );
  374.                 if( b_relative )
  375.                 {
  376.                     int64_t i_time = 0;
  377.                     vlm_ControlInternal( p_vlm, VLM_GET_MEDIA_INSTANCE_TIME, p_media->cfg.id, psz_instance, &i_time );
  378.                     i_new_time += i_time;
  379.                 }
  380.                 if( i_new_time < 0 )
  381.                     i_new_time = 0;
  382.                 i_result = vlm_ControlInternal( p_vlm, VLM_SET_MEDIA_INSTANCE_TIME, p_media->cfg.id, psz_instance, i_new_time );
  383.             }
  384.             else
  385.             {
  386.                 /* Percent */
  387.                 double d_new_position = us_atof( psz_argument ) / 100.0;
  388.                 if( b_relative )
  389.                 {
  390.                     double d_position = 0.0;
  391.                     vlm_ControlInternal( p_vlm, VLM_GET_MEDIA_INSTANCE_POSITION, p_media->cfg.id, psz_instance, &d_position );
  392.                     d_new_position += d_position;
  393.                 }
  394.                 if( d_new_position < 0.0 )
  395.                     d_new_position = 0.0;
  396.                 else if( d_new_position > 1.0 )
  397.                     d_new_position = 1.0;
  398.                 i_result = vlm_ControlInternal( p_vlm, VLM_SET_MEDIA_INSTANCE_POSITION, p_media->cfg.id, psz_instance, d_new_position );
  399.             }
  400.         }
  401.         else
  402.         {
  403.             i_result = VLC_EGENERIC;
  404.         }
  405.     }
  406.     else if( !strcmp( psz_control, "rewind" ) )
  407.     {
  408.         if( psz_argument )
  409.         {
  410.             const double d_scale = us_atof( psz_argument );
  411.             double d_position;
  412.             vlm_ControlInternal( p_vlm, VLM_GET_MEDIA_INSTANCE_POSITION, p_media->cfg.id, psz_instance, &d_position );
  413.             d_position -= (d_scale / 1000.0);
  414.             if( d_position < 0.0 )
  415.                 d_position = 0.0;
  416.             i_result = vlm_ControlInternal( p_vlm, VLM_SET_MEDIA_INSTANCE_POSITION, p_media->cfg.id, psz_instance, d_position );
  417.         }
  418.         else
  419.         {
  420.             i_result = VLC_EGENERIC;
  421.         }
  422.     }
  423.     else if( !strcmp( psz_control, "forward" ) )
  424.     {
  425.         if( psz_argument )
  426.         {
  427.             const double d_scale = us_atof( psz_argument );
  428.             double d_position;
  429.             vlm_ControlInternal( p_vlm, VLM_GET_MEDIA_INSTANCE_POSITION, p_media->cfg.id, psz_instance, &d_position );
  430.             d_position += (d_scale / 1000.0);
  431.             if( d_position > 1.0 )
  432.                 d_position = 1.0;
  433.             i_result = vlm_ControlInternal( p_vlm, VLM_SET_MEDIA_INSTANCE_POSITION, p_media->cfg.id, psz_instance, d_position );
  434.         }
  435.         else
  436.         {
  437.             i_result = VLC_EGENERIC;
  438.         }
  439.     }
  440.     else if( !strcmp( psz_control, "stop" ) )
  441.     {
  442.         i_result = vlm_ControlInternal( p_vlm, VLM_STOP_MEDIA_INSTANCE, p_media->cfg.id, psz_instance );
  443.     }
  444.     else if( !strcmp( psz_control, "pause" ) )
  445.     {
  446.         i_result = vlm_ControlInternal( p_vlm, VLM_PAUSE_MEDIA_INSTANCE, p_media->cfg.id, psz_instance );
  447.     }
  448.     else
  449.     {
  450.         i_result = VLC_EGENERIC;
  451.     }
  452.     if( i_result )
  453.     {
  454.         *pp_status = vlm_MessageNew( "control", "unknown error" );
  455.         return VLC_SUCCESS;
  456.     }
  457.     *pp_status = vlm_MessageSimpleNew( "control" );
  458.     return VLC_SUCCESS;
  459. }
  460. static int ExecuteExport( vlm_t *p_vlm, vlm_message_t **pp_status )
  461. {
  462.     char *psz_export = Save( p_vlm );
  463.     *pp_status = vlm_MessageNew( "export", "%s", psz_export );
  464.     free( psz_export );
  465.     return VLC_SUCCESS;
  466. }
  467. static int ExecuteSave( vlm_t *p_vlm, const char *psz_file, vlm_message_t **pp_status )
  468. {
  469.     FILE *f = utf8_fopen( psz_file, "wt" );
  470.     char *psz_save = NULL;
  471.     if( !f )
  472.         goto error;
  473.     psz_save = Save( p_vlm );
  474.     if( psz_save == NULL )
  475.         goto error;
  476.     if( fputs( psz_save, f ) == EOF )
  477.         goto error;;
  478.     if( fclose( f ) )
  479.     {
  480.         f = NULL;
  481.         goto error;
  482.     }
  483.     free( psz_save );
  484.     *pp_status = vlm_MessageSimpleNew( "save" );
  485.     return VLC_SUCCESS;
  486. error:
  487.     free( psz_save );
  488.     if( f )
  489.          fclose( f );
  490.     *pp_status = vlm_MessageNew( "save", "Unable to save to file");
  491.     return VLC_EGENERIC;
  492. }
  493. static int ExecuteLoad( vlm_t *p_vlm, const char *psz_url, vlm_message_t **pp_status )
  494. {
  495.     stream_t *p_stream = stream_UrlNew( p_vlm, psz_url );
  496.     int64_t i_size;
  497.     char *psz_buffer;
  498.     if( !p_stream )
  499.     {
  500.         *pp_status = vlm_MessageNew( "load", "Unable to load from file" );
  501.         return VLC_EGENERIC;
  502.     }
  503.     /* FIXME needed ? */
  504.     if( stream_Seek( p_stream, 0 ) != 0 )
  505.     {
  506.         stream_Delete( p_stream );
  507.         *pp_status = vlm_MessageNew( "load", "Read file error" );
  508.         return VLC_EGENERIC;
  509.     }
  510.     i_size = stream_Size( p_stream );
  511.     psz_buffer = malloc( i_size + 1 );
  512.     if( !psz_buffer )
  513.     {
  514.         stream_Delete( p_stream );
  515.         *pp_status = vlm_MessageNew( "load", "Read file error" );
  516.         return VLC_EGENERIC;
  517.     }
  518.     stream_Read( p_stream, psz_buffer, i_size );
  519.     psz_buffer[i_size] = '';
  520.     stream_Delete( p_stream );
  521.     if( Load( p_vlm, psz_buffer ) )
  522.     {
  523.         free( psz_buffer );
  524.         *pp_status = vlm_MessageNew( "load", "Error while loading file" );
  525.         return VLC_EGENERIC;
  526.     }
  527.     free( psz_buffer );
  528.     *pp_status = vlm_MessageSimpleNew( "load" );
  529.     return VLC_SUCCESS;
  530. }
  531. static int ExecuteScheduleProperty( vlm_t *p_vlm, vlm_schedule_sys_t *p_schedule, bool b_new,
  532.                                     const int i_property, char *ppsz_property[], vlm_message_t **pp_status )
  533. {
  534.     const char *psz_cmd = b_new ? "new" : "setup";
  535.     int i;
  536.     for( i = 0; i < i_property; i++ )
  537.     {
  538.         if( !strcmp( ppsz_property[i], "enabled" ) ||
  539.             !strcmp( ppsz_property[i], "disabled" ) )
  540.         {
  541.             if ( vlm_ScheduleSetup( p_schedule, ppsz_property[i], NULL ) )
  542.                 goto error;
  543.         }
  544.         else if( !strcmp( ppsz_property[i], "append" ) )
  545.         {
  546.             char *psz_line;
  547.             int j;
  548.             /* Beware: everything behind append is considered as
  549.              * command line */
  550.             if( ++i >= i_property )
  551.                 break;
  552.             psz_line = strdup( ppsz_property[i] );
  553.             for( j = i+1; j < i_property; j++ )
  554.             {
  555.                 psz_line = realloc( psz_line, strlen(psz_line) + strlen(ppsz_property[j]) + 1 + 1 );
  556.                 strcat( psz_line, " " );
  557.                 strcat( psz_line, ppsz_property[j] );
  558.             }
  559.             if( vlm_ScheduleSetup( p_schedule, "append", psz_line ) )
  560.                 goto error;
  561.             break;
  562.         }
  563.         else
  564.         {
  565.             if( i + 1 >= i_property )
  566.             {
  567.                 if( b_new )
  568.                     vlm_ScheduleDelete( p_vlm, p_schedule );
  569.                 return ExecuteSyntaxError( psz_cmd, pp_status );
  570.             }
  571.             if( vlm_ScheduleSetup( p_schedule, ppsz_property[i], ppsz_property[i+1] ) )
  572.                 goto error;
  573.             i++;
  574.         }
  575.     }
  576.     *pp_status = vlm_MessageSimpleNew( psz_cmd );
  577.     return VLC_SUCCESS;
  578. error:
  579.     *pp_status = vlm_MessageNew( psz_cmd, "Error while setting the property '%s' to the schedule",
  580.                                  ppsz_property[i] );
  581.     return VLC_EGENERIC;
  582. }
  583. static int ExecuteMediaProperty( vlm_t *p_vlm, int64_t id, bool b_new,
  584.                                  const int i_property, char *ppsz_property[], vlm_message_t **pp_status )
  585. {
  586.     const char *psz_cmd = b_new ? "new" : "setup";
  587.     vlm_media_t *p_cfg = NULL;
  588.     int i_result;
  589.     int i;
  590. #undef ERROR
  591. #undef MISSING
  592. #define ERROR( txt ) do { *pp_status = vlm_MessageNew( psz_cmd, txt); goto error; } while(0)
  593.     if( vlm_ControlInternal( p_vlm, VLM_GET_MEDIA, id, &p_cfg ) )
  594.         ERROR( "unknown media" );
  595. #define MISSING(cmd) do { if( !psz_value ) ERROR( "missing argument for " cmd ); } while(0)
  596.     for( i = 0; i < i_property; i++ )
  597.     {
  598.         const char *psz_option = ppsz_property[i];
  599.         const char *psz_value = i+1 < i_property ? ppsz_property[i+1] :  NULL;
  600.         if( !strcmp( psz_option, "enabled" ) )
  601.         {
  602.             p_cfg->b_enabled = true;
  603.         }
  604.         else if( !strcmp( psz_option, "disabled" ) )
  605.         {
  606.             p_cfg->b_enabled = false;
  607.         }
  608.         else if( !strcmp( psz_option, "input" ) )
  609.         {
  610.             MISSING( "input" );
  611.             TAB_APPEND( p_cfg->i_input, p_cfg->ppsz_input, strdup(psz_value) );
  612.             i++;
  613.         }
  614.         else if( !strcmp( psz_option, "inputdel" ) && psz_value && !strcmp( psz_value, "all" ) )
  615.         {
  616.             while( p_cfg->i_input > 0 )
  617.                 TAB_REMOVE( p_cfg->i_input, p_cfg->ppsz_input, p_cfg->ppsz_input[0] );
  618.             i++;
  619.         }
  620.         else if( !strcmp( psz_option, "inputdel" ) )
  621.         {
  622.             int j;
  623.             MISSING( "inputdel" );
  624.             for( j = 0; j < p_cfg->i_input; j++ )
  625.             {
  626.                 if( !strcmp( p_cfg->ppsz_input[j], psz_value ) )
  627.                 {
  628.                     TAB_REMOVE( p_cfg->i_input, p_cfg->ppsz_input, p_cfg->ppsz_input[j] );
  629.                     break;
  630.                 }
  631.             }
  632.             i++;
  633.         }
  634.         else if( !strcmp( psz_option, "inputdeln" ) )
  635.         {
  636.             int i_index;
  637.             MISSING( "inputdeln" );
  638.  
  639.             i_index = atoi( psz_value );
  640.             if( i_index > 0 && i_index <= p_cfg->i_input )
  641.                 TAB_REMOVE( p_cfg->i_input, p_cfg->ppsz_input, p_cfg->ppsz_input[i_index-1] );
  642.             i++;
  643.         }
  644.         else if( !strcmp( psz_option, "output" ) )
  645.         {
  646.             MISSING( "output" );
  647.             free( p_cfg->psz_output );
  648.             p_cfg->psz_output = *psz_value ? strdup( psz_value ) : NULL;
  649.             i++;
  650.         }
  651.         else if( !strcmp( psz_option, "option" ) )
  652.         {
  653.             MISSING( "option" );
  654.             TAB_APPEND( p_cfg->i_option, p_cfg->ppsz_option, strdup( psz_value ) );
  655.             i++;
  656.         }
  657.         else if( !strcmp( psz_option, "loop" ) )
  658.         {
  659.             if( p_cfg->b_vod )
  660.                 ERROR( "invalid loop option for vod" );
  661.             p_cfg->broadcast.b_loop = true;
  662.         }
  663.         else if( !strcmp( psz_option, "unloop" ) )
  664.         {
  665.             if( p_cfg->b_vod )
  666.                 ERROR( "invalid unloop option for vod" );
  667.             p_cfg->broadcast.b_loop = false;
  668.         }
  669.         else if( !strcmp( psz_option, "mux" ) )
  670.         {
  671.             MISSING( "mux" );
  672.             if( !p_cfg->b_vod )
  673.                 ERROR( "invalid mux option for broadcast" );
  674.             free( p_cfg->vod.psz_mux );
  675.             p_cfg->vod.psz_mux = *psz_value ? strdup( psz_value ) : NULL;
  676.             i++;
  677.         }
  678.         else
  679.         {
  680.             fprintf( stderr, "PROP: name=%s unknownn", psz_option );
  681.             ERROR( "Wrong command syntax" );
  682.         }
  683.     }
  684. #undef MISSING
  685. #undef ERROR
  686.     /* */
  687.     i_result = vlm_ControlInternal( p_vlm, VLM_CHANGE_MEDIA, p_cfg );
  688.     vlm_media_Delete( p_cfg );
  689.     *pp_status = vlm_MessageSimpleNew( psz_cmd );
  690.     return i_result;
  691. error:
  692.     if( p_cfg )
  693.     {
  694.         if( b_new )
  695.             vlm_ControlInternal( p_vlm, VLM_DEL_MEDIA, p_cfg->id );
  696.         vlm_media_Delete( p_cfg );
  697.     }
  698.     return VLC_EGENERIC;
  699. }
  700. 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 )
  701. {
  702.     /* Check name */
  703.     if( !strcmp( psz_name, "all" ) || !strcmp( psz_name, "media" ) || !strcmp( psz_name, "schedule" ) )
  704.     {
  705.         *pp_status = vlm_MessageNew( "new", ""all", "media" and "schedule" are reserved names" );
  706.         return VLC_EGENERIC;
  707.     }
  708.     if( ExecuteIsMedia( p_vlm, psz_name ) || ExecuteIsSchedule( p_vlm, psz_name ) )
  709.     {
  710.         *pp_status = vlm_MessageNew( "new", "%s: Name already in use", psz_name );
  711.         return VLC_EGENERIC;
  712.     }
  713.     /* */
  714.     if( !strcmp( psz_type, "schedule" ) )
  715.     {
  716.         vlm_schedule_sys_t *p_schedule = vlm_ScheduleNew( p_vlm, psz_name );
  717.         if( !p_schedule )
  718.         {
  719.             *pp_status = vlm_MessageNew( "new", "could not create schedule" );
  720.             return VLC_EGENERIC;
  721.         }
  722.         return ExecuteScheduleProperty( p_vlm, p_schedule, true, i_property, ppsz_property, pp_status );
  723.     }
  724.     else if( !strcmp( psz_type, "vod" ) || !strcmp( psz_type, "broadcast" ) )
  725.     {
  726.         vlm_media_t cfg;
  727.         int64_t id;
  728.         vlm_media_Init( &cfg );
  729.         cfg.psz_name = strdup( psz_name );
  730.         cfg.b_vod = !strcmp( psz_type, "vod" );
  731.         if( vlm_ControlInternal( p_vlm, VLM_ADD_MEDIA, &cfg, &id ) )
  732.         {
  733.             vlm_media_Clean( &cfg );
  734.             *pp_status = vlm_MessageNew( "new", "could not create media" );
  735.             return VLC_EGENERIC;
  736.         }
  737.         vlm_media_Clean( &cfg );
  738.         return ExecuteMediaProperty( p_vlm, id, true, i_property, ppsz_property, pp_status );
  739.     }
  740.     else
  741.     {
  742.         *pp_status = vlm_MessageNew( "new", "%s: Choose between vod, broadcast or schedule", psz_type );
  743.         return VLC_EGENERIC;
  744.     }
  745. }
  746. static int ExecuteSetup( vlm_t *p_vlm, const char *psz_name, const int i_property, char *ppsz_property[], vlm_message_t **pp_status )
  747. {
  748.     if( ExecuteIsSchedule( p_vlm, psz_name ) )
  749.     {
  750.         vlm_schedule_sys_t *p_schedule = vlm_ScheduleSearch( p_vlm, psz_name );
  751.         return ExecuteScheduleProperty( p_vlm, p_schedule, false, i_property, ppsz_property, pp_status );
  752.     }
  753.     else if( ExecuteIsMedia( p_vlm, psz_name ) )
  754.     {
  755.         int64_t id;
  756.         if( vlm_ControlInternal( p_vlm, VLM_GET_MEDIA_ID, psz_name, &id ) )
  757.             goto error;
  758.         return ExecuteMediaProperty( p_vlm, id, false, i_property, ppsz_property, pp_status );
  759.     }
  760. error:
  761.     *pp_status = vlm_MessageNew( "setup", "%s unknown", psz_name );
  762.     return VLC_EGENERIC;
  763. }
  764. int ExecuteCommand( vlm_t *p_vlm, const char *psz_command,
  765.                            vlm_message_t **pp_message )
  766. {
  767.     size_t i_command = 0;
  768.     char buf[strlen (psz_command) + 1], *psz_buf = buf;
  769.     char *ppsz_command[3+sizeof (buf) / 2];
  770.     vlm_message_t *p_message = NULL;
  771.     /* First, parse the line and cut it */
  772.     while( *psz_command != '' )
  773.     {
  774.         const char *psz_temp;
  775.         if(isspace (*psz_command))
  776.         {
  777.             psz_command++;
  778.             continue;
  779.         }
  780.         /* support for comments */
  781.         if( i_command == 0 && *psz_command == '#')
  782.         {
  783.             p_message = vlm_MessageSimpleNew( "" );
  784.             goto success;
  785.         }
  786.         psz_temp = FindCommandEnd( psz_command );
  787.         if( psz_temp == NULL )
  788.         {
  789.             p_message = vlm_MessageNew( "Incomplete command", "%s", psz_command );
  790.             goto error;
  791.         }
  792.         assert (i_command < (sizeof (ppsz_command) / sizeof (ppsz_command[0])));
  793.         ppsz_command[i_command] = psz_buf;
  794.         memcpy (psz_buf, psz_command, psz_temp - psz_command);
  795.         psz_buf[psz_temp - psz_command] = '';
  796.         Unescape (psz_buf, psz_buf);
  797.         i_command++;
  798.         psz_buf += psz_temp - psz_command + 1;
  799.         psz_command = psz_temp;
  800.         assert (buf + sizeof (buf) >= psz_buf);
  801.     }
  802.     /*
  803.      * And then Interpret it
  804.      */
  805. #define IF_EXECUTE( name, check, cmd ) if( !strcmp(ppsz_command[0], name ) ) { if( (check) ) goto syntax_error;  if( (cmd) ) goto error; goto success; }
  806.     if( i_command == 0 )
  807.     {
  808.         p_message = vlm_MessageSimpleNew( "" );
  809.         goto success;
  810.     }
  811.     else IF_EXECUTE( "del",     (i_command != 2),   ExecuteDel(p_vlm, ppsz_command[1], &p_message) )
  812.     else IF_EXECUTE( "show",    (i_command > 2),    ExecuteShow(p_vlm, i_command > 1 ? ppsz_command[1] : NULL, &p_message) )
  813.     else IF_EXECUTE( "help",    (i_command != 1),   ExecuteHelp( &p_message ) )
  814.     else IF_EXECUTE( "control", (i_command < 3),    ExecuteControl(p_vlm, ppsz_command[1], i_command - 2, &ppsz_command[2], &p_message) )
  815.     else IF_EXECUTE( "save",    (i_command != 2),   ExecuteSave(p_vlm, ppsz_command[1], &p_message) )
  816.     else IF_EXECUTE( "export",  (i_command != 1),   ExecuteExport(p_vlm, &p_message) )
  817.     else IF_EXECUTE( "load",    (i_command != 2),   ExecuteLoad(p_vlm, ppsz_command[1], &p_message) )
  818.     else IF_EXECUTE( "new",     (i_command < 3),    ExecuteNew(p_vlm, ppsz_command[1], ppsz_command[2], i_command-3, &ppsz_command[3], &p_message) )
  819.     else IF_EXECUTE( "setup",   (i_command < 2),    ExecuteSetup(p_vlm, ppsz_command[1], i_command-2, &ppsz_command[2], &p_message) )
  820.     else
  821.     {
  822.         p_message = vlm_MessageNew( ppsz_command[0], "Unknown command" );
  823.         goto error;
  824.     }
  825. #undef IF_EXECUTE
  826. success:
  827.     *pp_message = p_message;
  828.     return VLC_SUCCESS;
  829. syntax_error:
  830.     return ExecuteSyntaxError( ppsz_command[0], pp_message );
  831. error:
  832.     *pp_message = p_message;
  833.     return VLC_EGENERIC;
  834. }
  835. /*****************************************************************************
  836.  * Media handling
  837.  *****************************************************************************/
  838. vlm_media_sys_t *vlm_MediaSearch( vlm_t *vlm, const char *psz_name )
  839. {
  840.     int i;
  841.     for( i = 0; i < vlm->i_media; i++ )
  842.     {
  843.         if( strcmp( psz_name, vlm->media[i]->cfg.psz_name ) == 0 )
  844.             return vlm->media[i];
  845.     }
  846.     return NULL;
  847. }
  848. /*****************************************************************************
  849.  * Schedule handling
  850.  *****************************************************************************/
  851. static vlm_schedule_sys_t *vlm_ScheduleNew( vlm_t *vlm, const char *psz_name )
  852. {
  853.     if( !psz_name )
  854.         return NULL;
  855.     vlm_schedule_sys_t *p_sched = malloc( sizeof( vlm_schedule_sys_t ) );
  856.     if( !p_sched )
  857.         return NULL;
  858.     p_sched->psz_name = strdup( psz_name );
  859.     p_sched->b_enabled = false;
  860.     p_sched->i_command = 0;
  861.     p_sched->command = NULL;
  862.     p_sched->i_date = 0;
  863.     p_sched->i_period = 0;
  864.     p_sched->i_repeat = -1;
  865.     TAB_APPEND( vlm->i_schedule, vlm->schedule, p_sched );
  866.     return p_sched;
  867. }
  868. /* for now, simple delete. After, del with options (last arg) */
  869. void vlm_ScheduleDelete( vlm_t *vlm, vlm_schedule_sys_t *sched )
  870. {
  871.     if( sched == NULL ) return;
  872.     TAB_REMOVE( vlm->i_schedule, vlm->schedule, sched );
  873.     if( vlm->i_schedule == 0 ) free( vlm->schedule );
  874.     free( sched->psz_name );
  875.     while( sched->i_command )
  876.     {
  877.         char *psz_cmd = sched->command[0];
  878.         TAB_REMOVE( sched->i_command, sched->command, psz_cmd );
  879.         free( psz_cmd );
  880.     }
  881.     free( sched );
  882. }
  883. static vlm_schedule_sys_t *vlm_ScheduleSearch( vlm_t *vlm, const char *psz_name )
  884. {
  885.     int i;
  886.     for( i = 0; i < vlm->i_schedule; i++ )
  887.     {
  888.         if( strcmp( psz_name, vlm->schedule[i]->psz_name ) == 0 )
  889.         {
  890.             return vlm->schedule[i];
  891.         }
  892.     }
  893.     return NULL;
  894. }
  895. /* Ok, setup schedule command will be able to support only one (argument value) at a time  */
  896. static int vlm_ScheduleSetup( vlm_schedule_sys_t *schedule, const char *psz_cmd,
  897.                        const char *psz_value )
  898. {
  899.     if( !strcmp( psz_cmd, "enabled" ) )
  900.     {
  901.         schedule->b_enabled = true;
  902.     }
  903.     else if( !strcmp( psz_cmd, "disabled" ) )
  904.     {
  905.         schedule->b_enabled = false;
  906.     }
  907.     else if( !strcmp( psz_cmd, "date" ) )
  908.     {
  909.         struct tm time;
  910.         const char *p;
  911.         time_t date;
  912.         time.tm_sec = 0;         /* seconds */
  913.         time.tm_min = 0;         /* minutes */
  914.         time.tm_hour = 0;        /* hours */
  915.         time.tm_mday = 0;        /* day of the month */
  916.         time.tm_mon = 0;         /* month */
  917.         time.tm_year = 0;        /* year */
  918.         time.tm_wday = 0;        /* day of the week */
  919.         time.tm_yday = 0;        /* day in the year */
  920.         time.tm_isdst = -1;       /* daylight saving time */
  921.         /* date should be year/month/day-hour:minutes:seconds */
  922.         p = strchr( psz_value, '-' );
  923.         if( !strcmp( psz_value, "now" ) )
  924.         {
  925.             schedule->i_date = 0;
  926.         }
  927.         else if(p == NULL)
  928.         {
  929.             return 1;
  930.         }
  931.         else
  932.         {
  933.             unsigned i,j,k;
  934.             switch( sscanf( p + 1, "%u:%u:%u", &i, &j, &k ) )
  935.             {
  936.                 case 1:
  937.                     time.tm_sec = i;
  938.                     break;
  939.                 case 2:
  940.                     time.tm_min = i;
  941.                     time.tm_sec = j;
  942.                     break;
  943.                 case 3:
  944.                     time.tm_hour = i;
  945.                     time.tm_min = j;
  946.                     time.tm_sec = k;
  947.                     break;
  948.                 default:
  949.                     return 1;
  950.             }
  951.             switch( sscanf( psz_value, "%d/%d/%d", &i, &j, &k ) )
  952.             {
  953.                 case 1:
  954.                     time.tm_mday = i;
  955.                     break;
  956.                 case 2:
  957.                     time.tm_mon = i - 1;
  958.                     time.tm_mday = j;
  959.                     break;
  960.                 case 3:
  961.                     time.tm_year = i - 1900;
  962.                     time.tm_mon = j - 1;
  963.                     time.tm_mday = k;
  964.                     break;
  965.                 default:
  966.                     return 1;
  967.             }
  968.             date = mktime( &time );
  969.             schedule->i_date = ((mtime_t) date) * 1000000;
  970.         }
  971.     }
  972.     else if( !strcmp( psz_cmd, "period" ) )
  973.     {
  974.         struct tm time;
  975.         const char *p;
  976.         const char *psz_time = NULL, *psz_date = NULL;
  977.         time_t date;
  978.         unsigned i,j,k;
  979.         /* First, if date or period are modified, repeat should be equal to -1 */
  980.         schedule->i_repeat = -1;
  981.         time.tm_sec = 0;         /* seconds */
  982.         time.tm_min = 0;         /* minutes */
  983.         time.tm_hour = 0;        /* hours */
  984.         time.tm_mday = 0;        /* day of the month */
  985.         time.tm_mon = 0;         /* month */
  986.         time.tm_year = 0;        /* year */
  987.         time.tm_wday = 0;        /* day of the week */
  988.         time.tm_yday = 0;        /* day in the year */
  989.         time.tm_isdst = -1;       /* daylight saving time */
  990.         /* date should be year/month/day-hour:minutes:seconds */
  991.         p = strchr( psz_value, '-' );
  992.         if( p )
  993.         {
  994.             psz_date = psz_value;
  995.             psz_time = p + 1;
  996.         }
  997.         else
  998.         {
  999.             psz_time = psz_value;
  1000.         }
  1001.         switch( sscanf( psz_time, "%u:%u:%u", &i, &j, &k ) )
  1002.         {
  1003.             case 1:
  1004.                 time.tm_sec = i;
  1005.                 break;
  1006.             case 2:
  1007.                 time.tm_min = i;
  1008.                 time.tm_sec = j;
  1009.                 break;
  1010.             case 3:
  1011.                 time.tm_hour = i;
  1012.                 time.tm_min = j;
  1013.                 time.tm_sec = k;
  1014.                 break;
  1015.             default:
  1016.                 return 1;
  1017.         }
  1018.         if( psz_date )
  1019.         {
  1020.             switch( sscanf( psz_date, "%u/%u/%u", &i, &j, &k ) )
  1021.             {
  1022.                 case 1:
  1023.                     time.tm_mday = i;
  1024.                     break;
  1025.                 case 2:
  1026.                     time.tm_mon = i;
  1027.                     time.tm_mday = j;
  1028.                     break;
  1029.                 case 3:
  1030.                     time.tm_year = i;
  1031.                     time.tm_mon = j;
  1032.                     time.tm_mday = k;
  1033.                     break;
  1034.                 default:
  1035.                     return 1;
  1036.             }
  1037.         }
  1038.         /* ok, that's stupid... who is going to schedule streams every 42 years ? */
  1039.         date = (((( time.tm_year * 12 + time.tm_mon ) * 30 + time.tm_mday ) * 24 + time.tm_hour ) * 60 + time.tm_min ) * 60 + time.tm_sec ;
  1040.         schedule->i_period = ((mtime_t) date) * 1000000;
  1041.     }
  1042.     else if( !strcmp( psz_cmd, "repeat" ) )
  1043.     {
  1044.         int i;
  1045.         if( sscanf( psz_value, "%d", &i ) == 1 )
  1046.         {
  1047.             schedule->i_repeat = i;
  1048.         }
  1049.         else
  1050.         {
  1051.             return 1;
  1052.         }
  1053.     }
  1054.     else if( !strcmp( psz_cmd, "append" ) )
  1055.     {
  1056.         char *command = strdup( psz_value );
  1057.         TAB_APPEND( schedule->i_command, schedule->command, command );
  1058.     }
  1059.     else
  1060.     {
  1061.         return 1;
  1062.     }
  1063.     return 0;
  1064. }
  1065. /*****************************************************************************
  1066.  * Message handling functions
  1067.  *****************************************************************************/
  1068. vlm_message_t *vlm_MessageSimpleNew( const char *psz_name )
  1069. {
  1070.     if( !psz_name ) return NULL;
  1071.     vlm_message_t *p_message = malloc( sizeof(*p_message) );
  1072.     if( !p_message )
  1073.         return NULL;
  1074.     p_message->psz_name = strdup( psz_name );
  1075.     if( !p_message->psz_name )
  1076.     {
  1077.         free( p_message );
  1078.         return NULL;
  1079.     }
  1080.     p_message->psz_value = NULL;
  1081.     p_message->i_child = 0;
  1082.     p_message->child = NULL;
  1083.     return p_message;
  1084. }
  1085. vlm_message_t *vlm_MessageNew( const char *psz_name,
  1086.                                const char *psz_format, ... )
  1087. {
  1088.     vlm_message_t *p_message = vlm_MessageSimpleNew( psz_name );
  1089.     va_list args;
  1090.     if( !p_message )
  1091.         return NULL;
  1092.     assert( psz_format );
  1093.     va_start( args, psz_format );
  1094.     if( vasprintf( &p_message->psz_value, psz_format, args ) == -1 )
  1095.         p_message->psz_value = NULL;
  1096.     va_end( args );
  1097.     if( !p_message->psz_value )
  1098.     {
  1099.         vlm_MessageDelete( p_message );
  1100.         return NULL;
  1101.     }
  1102.     return p_message;
  1103. }
  1104. void vlm_MessageDelete( vlm_message_t *p_message )
  1105. {
  1106.     free( p_message->psz_name );
  1107.     free( p_message->psz_value );
  1108.     while( p_message->i_child-- )
  1109.         vlm_MessageDelete( p_message->child[p_message->i_child] );
  1110.     free( p_message->child );
  1111.     free( p_message );
  1112. }
  1113. /* Add a child */
  1114. vlm_message_t *vlm_MessageAdd( vlm_message_t *p_message,
  1115.                                vlm_message_t *p_child )
  1116. {
  1117.     if( p_message == NULL ) return NULL;
  1118.     if( p_child )
  1119.     {
  1120.         TAB_APPEND( p_message->i_child, p_message->child, p_child );
  1121.     }
  1122.     return p_child;
  1123. }
  1124. /*****************************************************************************
  1125.  * Misc utility functions
  1126.  *****************************************************************************/
  1127. static vlm_message_t *vlm_ShowMedia( vlm_media_sys_t *p_media )
  1128. {
  1129.     vlm_media_t *p_cfg = &p_media->cfg;
  1130.     vlm_message_t *p_msg;
  1131.     vlm_message_t *p_msg_sub;
  1132.     int i;
  1133.     p_msg = vlm_MessageSimpleNew( p_cfg->psz_name );
  1134.     vlm_MessageAdd( p_msg,
  1135.                     vlm_MessageNew( "type", p_cfg->b_vod ? "vod" : "broadcast" ) );
  1136.     vlm_MessageAdd( p_msg,
  1137.                     vlm_MessageNew( "enabled", p_cfg->b_enabled ? "yes" : "no" ) );
  1138.     if( p_cfg->b_vod )
  1139.         vlm_MessageAdd( p_msg,
  1140.                         vlm_MessageNew( "mux", "%s", p_cfg->vod.psz_mux ) );
  1141.     else
  1142.         vlm_MessageAdd( p_msg,
  1143.                         vlm_MessageNew( "loop", p_cfg->broadcast.b_loop ? "yes" : "no" ) );
  1144.     p_msg_sub = vlm_MessageAdd( p_msg, vlm_MessageSimpleNew( "inputs" ) );
  1145.     for( i = 0; i < p_cfg->i_input; i++ )
  1146.     {
  1147.         char *psz_tmp;
  1148.         if( asprintf( &psz_tmp, "%d", i+1 ) != -1 )
  1149.         {
  1150.             vlm_MessageAdd( p_msg_sub,
  1151.                        vlm_MessageNew( psz_tmp, "%s", p_cfg->ppsz_input[i] ) );
  1152.             free( psz_tmp );
  1153.         }
  1154.     }
  1155.     vlm_MessageAdd( p_msg,
  1156.                     vlm_MessageNew( "output", "%s", p_cfg->psz_output ? p_cfg->psz_output : "" ) );
  1157.     p_msg_sub = vlm_MessageAdd( p_msg, vlm_MessageSimpleNew( "options" ) );
  1158.     for( i = 0; i < p_cfg->i_option; i++ )
  1159.         vlm_MessageAdd( p_msg_sub, vlm_MessageSimpleNew( p_cfg->ppsz_option[i] ) );
  1160.     p_msg_sub = vlm_MessageAdd( p_msg, vlm_MessageSimpleNew( "instances" ) );
  1161.     for( i = 0; i < p_media->i_instance; i++ )
  1162.     {
  1163.         vlm_media_instance_sys_t *p_instance = p_media->instance[i];
  1164.         vlc_value_t val;
  1165.         vlm_message_t *p_msg_instance;
  1166.         char *psz_tmp;
  1167.         val.i_int = END_S;
  1168.         if( p_instance->p_input )
  1169.             var_Get( p_instance->p_input, "state", &val );
  1170.         p_msg_instance = vlm_MessageAdd( p_msg_sub, vlm_MessageSimpleNew( "instance" ) );
  1171.         vlm_MessageAdd( p_msg_instance,
  1172.                         vlm_MessageNew( "name" , "%s", p_instance->psz_name ? p_instance->psz_name : "default" ) );
  1173.         vlm_MessageAdd( p_msg_instance,
  1174.                         vlm_MessageNew( "state",
  1175.                             val.i_int == PLAYING_S ? "playing" :
  1176.                             val.i_int == PAUSE_S ? "paused" :
  1177.                             "stopped" ) );
  1178.         /* FIXME should not do that this way */
  1179.         if( p_instance->p_input )
  1180.         {
  1181. #define APPEND_INPUT_INFO( a, format, type ) 
  1182.             if( asprintf( &psz_tmp, format, 
  1183.                       var_Get ## type( p_instance->p_input, a ) ) != -1 ) 
  1184.             { 
  1185.                 vlm_MessageAdd( p_msg_instance, vlm_MessageNew( a, 
  1186.                                 "%s", psz_tmp ) ); 
  1187.                 free( psz_tmp ); 
  1188.             }
  1189.             APPEND_INPUT_INFO( "position", "%f", Float );
  1190.             APPEND_INPUT_INFO( "time", "%"PRIi64, Time );
  1191.             APPEND_INPUT_INFO( "length", "%"PRIi64, Time );
  1192.             APPEND_INPUT_INFO( "rate", "%d", Integer );
  1193.             APPEND_INPUT_INFO( "title", "%d", Integer );
  1194.             APPEND_INPUT_INFO( "chapter", "%d", Integer );
  1195.             APPEND_INPUT_INFO( "can-seek", "%d", Bool );
  1196.         }
  1197. #undef APPEND_INPUT_INFO
  1198.         if( asprintf( &psz_tmp, "%d", p_instance->i_index + 1 ) != -1 )
  1199.         {
  1200.             vlm_MessageAdd( p_msg_instance, vlm_MessageNew( "playlistindex",
  1201.                             "%s", psz_tmp ) );
  1202.             free( psz_tmp );
  1203.         }
  1204.     }
  1205.     return p_msg;
  1206. }
  1207. static vlm_message_t *vlm_Show( vlm_t *vlm, vlm_media_sys_t *media,
  1208.                                 vlm_schedule_sys_t *schedule,
  1209.                                 const char *psz_filter )
  1210. {
  1211.     if( media != NULL )
  1212.     {
  1213.         vlm_message_t *p_msg = vlm_MessageSimpleNew( "show" );
  1214.         if( p_msg )
  1215.             vlm_MessageAdd( p_msg, vlm_ShowMedia( media ) );
  1216.         return p_msg;
  1217.     }
  1218.     else if( schedule != NULL )
  1219.     {
  1220.         int i;
  1221.         vlm_message_t *msg;
  1222.         vlm_message_t *msg_schedule;
  1223.         vlm_message_t *msg_child;
  1224.         char buffer[100];
  1225.         msg = vlm_MessageSimpleNew( "show" );
  1226.         msg_schedule =
  1227.             vlm_MessageAdd( msg, vlm_MessageSimpleNew( schedule->psz_name ) );
  1228.         vlm_MessageAdd( msg_schedule, vlm_MessageNew("type", "schedule") );
  1229.         vlm_MessageAdd( msg_schedule,
  1230.                         vlm_MessageNew( "enabled", schedule->b_enabled ?
  1231.                                         "yes" : "no" ) );
  1232.         if( schedule->i_date != 0 )
  1233.         {
  1234.             struct tm date;
  1235.             time_t i_time = (time_t)( schedule->i_date / 1000000 );
  1236.             char *psz_date;
  1237.             localtime_r( &i_time, &date);
  1238.             if( asprintf( &psz_date, "%d/%d/%d-%d:%d:%d",
  1239.                           date.tm_year + 1900, date.tm_mon + 1, date.tm_mday,
  1240.                           date.tm_hour, date.tm_min, date.tm_sec ) != -1 )
  1241.             {
  1242.                  vlm_MessageAdd( msg_schedule,
  1243.                                  vlm_MessageNew( "date", "%s", psz_date ) );
  1244.                  free( psz_date );
  1245.             }
  1246.         }
  1247.         else
  1248.             vlm_MessageAdd( msg_schedule, vlm_MessageNew("date", "now") );
  1249.         if( schedule->i_period != 0 )
  1250.         {
  1251.             time_t i_time = (time_t) ( schedule->i_period / 1000000 );
  1252.             struct tm date;
  1253.             date.tm_sec = (int)( i_time % 60 );
  1254.             i_time = i_time / 60;
  1255.             date.tm_min = (int)( i_time % 60 );
  1256.             i_time = i_time / 60;
  1257.             date.tm_hour = (int)( i_time % 24 );
  1258.             i_time = i_time / 24;
  1259.             date.tm_mday = (int)( i_time % 30 );
  1260.             i_time = i_time / 30;
  1261.             /* okay, okay, months are not always 30 days long */
  1262.             date.tm_mon = (int)( i_time % 12 );
  1263.             i_time = i_time / 12;
  1264.             date.tm_year = (int)i_time;
  1265.             sprintf( buffer, "%d/%d/%d-%d:%d:%d", date.tm_year, date.tm_mon,
  1266.                      date.tm_mday, date.tm_hour, date.tm_min, date.tm_sec);
  1267.             vlm_MessageAdd( msg_schedule, vlm_MessageNew("period", "%s", buffer) );
  1268.         }
  1269.         else
  1270.             vlm_MessageAdd( msg_schedule, vlm_MessageNew("period", "0") );
  1271.         sprintf( buffer, "%d", schedule->i_repeat );
  1272.         vlm_MessageAdd( msg_schedule, vlm_MessageNew( "repeat", "%s", buffer ) );
  1273.         msg_child =
  1274.             vlm_MessageAdd( msg_schedule, vlm_MessageSimpleNew("commands" ) );
  1275.         for( i = 0; i < schedule->i_command; i++ )
  1276.         {
  1277.            vlm_MessageAdd( msg_child,
  1278.                            vlm_MessageSimpleNew( schedule->command[i] ) );
  1279.         }
  1280.         return msg;
  1281.     }
  1282.     else if( psz_filter && !strcmp( psz_filter, "media" ) )
  1283.     {
  1284.         vlm_message_t *p_msg;
  1285.         vlm_message_t *p_msg_child;
  1286.         int i_vod = 0, i_broadcast = 0;
  1287.         int i;
  1288.         char *psz_count;
  1289.         for( i = 0; i < vlm->i_media; i++ )
  1290.         {
  1291.             if( vlm->media[i]->cfg.b_vod )
  1292.                 i_vod++;
  1293.             else
  1294.                 i_broadcast++;
  1295.         }
  1296.         if( asprintf( &psz_count, "( %d broadcast - %d vod )", i_broadcast,
  1297.                       i_vod) == -1 )
  1298.             return NULL;
  1299.         p_msg = vlm_MessageSimpleNew( "show" );
  1300.         p_msg_child = vlm_MessageAdd( p_msg, vlm_MessageNew( "media", "%s",
  1301.                                                              psz_count ) );
  1302.         free( psz_count );
  1303.         for( i = 0; i < vlm->i_media; i++ )
  1304.             vlm_MessageAdd( p_msg_child, vlm_ShowMedia( vlm->media[i] ) );
  1305.         return p_msg;
  1306.     }
  1307.     else if( psz_filter && !strcmp( psz_filter, "schedule" ) )
  1308.     {
  1309.         int i;
  1310.         vlm_message_t *msg;
  1311.         vlm_message_t *msg_child;
  1312.         msg = vlm_MessageSimpleNew( "show" );
  1313.         msg_child = vlm_MessageAdd( msg, vlm_MessageSimpleNew( "schedule" ) );
  1314.         for( i = 0; i < vlm->i_schedule; i++ )
  1315.         {
  1316.             vlm_schedule_sys_t *s = vlm->schedule[i];
  1317.             vlm_message_t *msg_schedule;
  1318.             mtime_t i_time, i_next_date;
  1319.             msg_schedule = vlm_MessageAdd( msg_child,
  1320.                                            vlm_MessageSimpleNew( s->psz_name ) );
  1321.             vlm_MessageAdd( msg_schedule,
  1322.                             vlm_MessageNew( "enabled", s->b_enabled ?
  1323.                                             "yes" : "no" ) );
  1324.             /* calculate next date */
  1325.             i_time = vlm_Date();
  1326.             i_next_date = s->i_date;
  1327.             if( s->i_period != 0 )
  1328.             {
  1329.                 int j = 0;
  1330.                 while( s->i_date + j * s->i_period <= i_time &&
  1331.                        s->i_repeat > j )
  1332.                 {
  1333.                     j++;
  1334.                 }
  1335.                 i_next_date = s->i_date + j * s->i_period;
  1336.             }
  1337.             if( i_next_date > i_time )
  1338.             {
  1339.                 time_t i_date = (time_t) (i_next_date / 1000000) ;
  1340. #if !defined( UNDER_CE )
  1341. #ifdef HAVE_CTIME_R
  1342.                 char psz_date[500];
  1343.                 ctime_r( &i_date, psz_date );
  1344. #else
  1345.                 char *psz_date = ctime( &i_date );
  1346. #endif
  1347.                 vlm_MessageAdd( msg_schedule,
  1348.                                 vlm_MessageNew( "next launch", "%s", psz_date ) );
  1349. #endif
  1350.             }
  1351.         }
  1352.         return msg;
  1353.     }
  1354.     else if( ( psz_filter == NULL ) && ( media == NULL ) && ( schedule == NULL ) )
  1355.     {
  1356.         vlm_message_t *show1 = vlm_Show( vlm, NULL, NULL, "media" );
  1357.         vlm_message_t *show2 = vlm_Show( vlm, NULL, NULL, "schedule" );
  1358.         vlm_MessageAdd( show1, show2->child[0] );
  1359.         /* We must destroy the parent node "show" of show2
  1360.          * and not the children */
  1361.         free( show2->psz_name );
  1362.         free( show2 );
  1363.         return show1;
  1364.     }
  1365.     else
  1366.     {
  1367.         return vlm_MessageSimpleNew( "show" );
  1368.     }
  1369. }
  1370. /*****************************************************************************
  1371.  * Config handling functions
  1372.  *****************************************************************************/
  1373. static int Load( vlm_t *vlm, char *file )
  1374. {
  1375.     char *pf = file;
  1376.     int  i_line = 1;
  1377.     while( *pf != '' )
  1378.     {
  1379.         vlm_message_t *message = NULL;
  1380.         int i_end = 0;
  1381.         while( pf[i_end] != 'n' && pf[i_end] != '' && pf[i_end] != 'r' )
  1382.         {
  1383.             i_end++;
  1384.         }
  1385.         if( pf[i_end] == 'r' || pf[i_end] == 'n' )
  1386.         {
  1387.             pf[i_end] = '';
  1388.             i_end++;
  1389.             if( pf[i_end] == 'n' ) i_end++;
  1390.         }
  1391.         if( *pf && ExecuteCommand( vlm, pf, &message ) )
  1392.         {
  1393.             if( message )
  1394.             {
  1395.                 if( message->psz_value )
  1396.                     msg_Err( vlm, "Load error on line %d: %s: %s",
  1397.                              i_line, message->psz_name, message->psz_value );
  1398.                 vlm_MessageDelete( message );
  1399.             }
  1400.             return 1;
  1401.         }
  1402.         if( message ) vlm_MessageDelete( message );
  1403.         pf += i_end;
  1404.         i_line++;
  1405.     }
  1406.     return 0;
  1407. }
  1408. static char *Save( vlm_t *vlm )
  1409. {
  1410.     char *save = NULL;
  1411.     char psz_header[] = "n"
  1412.                         "# VLC media player VLM command batchn"
  1413.                         "# http://www.videolan.org/vlc/nn" ;
  1414.     char *p;
  1415.     int i,j;
  1416.     int i_length = strlen( psz_header );
  1417.     for( i = 0; i < vlm->i_media; i++ )
  1418.     {
  1419.         vlm_media_sys_t *media = vlm->media[i];
  1420.         vlm_media_t *p_cfg = &media->cfg;
  1421.         if( p_cfg->b_vod )
  1422.             i_length += strlen( "new * vod " ) + strlen(p_cfg->psz_name);
  1423.         else
  1424.             i_length += strlen( "new * broadcast " ) + strlen(p_cfg->psz_name);
  1425.         if( p_cfg->b_enabled == true )
  1426.             i_length += strlen( "enabled" );
  1427.         else
  1428.             i_length += strlen( "disabled" );
  1429.         if( !p_cfg->b_vod && p_cfg->broadcast.b_loop == true )
  1430.             i_length += strlen( " loopn" );
  1431.         else
  1432.             i_length += strlen( "n" );
  1433.         for( j = 0; j < p_cfg->i_input; j++ )
  1434.             i_length += strlen( "setup * input ""n" ) + strlen( p_cfg->psz_name ) + strlen( p_cfg->ppsz_input[j] );
  1435.         if( p_cfg->psz_output != NULL )
  1436.             i_length += strlen( "setup * output n" ) + strlen(p_cfg->psz_name) + strlen(p_cfg->psz_output);
  1437.         for( j = 0; j < p_cfg->i_option; j++ )
  1438.             i_length += strlen("setup * option n") + strlen(p_cfg->psz_name) + strlen(p_cfg->ppsz_option[j]);
  1439.         if( p_cfg->b_vod && p_cfg->vod.psz_mux )
  1440.             i_length += strlen("setup * mux n") + strlen(p_cfg->psz_name) + strlen(p_cfg->vod.psz_mux);
  1441.     }
  1442.     for( i = 0; i < vlm->i_schedule; i++ )
  1443.     {
  1444.         vlm_schedule_sys_t *schedule = vlm->schedule[i];
  1445.         i_length += strlen( "new  schedule " ) + strlen( schedule->psz_name );
  1446.         if( schedule->b_enabled == true )
  1447.         {
  1448.             i_length += strlen( "date //-:: enabledn" ) + 14;
  1449.         }
  1450.         else
  1451.         {
  1452.             i_length += strlen( "date //-:: disabledn" ) + 14;
  1453.         }
  1454.         if( schedule->i_period != 0 )
  1455.         {
  1456.             i_length += strlen( "setup  " ) + strlen( schedule->psz_name ) +
  1457.                 strlen( "period //-::n" ) + 14;
  1458.         }
  1459.         if( schedule->i_repeat >= 0 )
  1460.         {
  1461.             char buffer[12];
  1462.             sprintf( buffer, "%d", schedule->i_repeat );
  1463.             i_length += strlen( "setup  repeat n" ) +
  1464.                 strlen( schedule->psz_name ) + strlen( buffer );
  1465.         }
  1466.         else
  1467.         {
  1468.             i_length++;
  1469.         }
  1470.         for( j = 0; j < schedule->i_command; j++ )
  1471.         {
  1472.             i_length += strlen( "setup  append n" ) +
  1473.                 strlen( schedule->psz_name ) + strlen( schedule->command[j] );
  1474.         }
  1475.     }
  1476.     /* Don't forget the '' */
  1477.     i_length++;
  1478.     /* now we have the length of save */
  1479.     p = save = malloc( i_length );
  1480.     if( !save ) return NULL;
  1481.     *save = '';
  1482.     p += sprintf( p, "%s", psz_header );
  1483.     /* finally we can write in it */
  1484.     for( i = 0; i < vlm->i_media; i++ )
  1485.     {
  1486.         vlm_media_sys_t *media = vlm->media[i];
  1487.         vlm_media_t *p_cfg = &media->cfg;
  1488.         if( p_cfg->b_vod )
  1489.             p += sprintf( p, "new %s vod ", p_cfg->psz_name );
  1490.         else
  1491.             p += sprintf( p, "new %s broadcast ", p_cfg->psz_name );
  1492.         if( p_cfg->b_enabled )
  1493.             p += sprintf( p, "enabled" );
  1494.         else
  1495.             p += sprintf( p, "disabled" );
  1496.         if( !p_cfg->b_vod && p_cfg->broadcast.b_loop )
  1497.             p += sprintf( p, " loopn" );
  1498.         else
  1499.             p += sprintf( p, "n" );
  1500.         for( j = 0; j < p_cfg->i_input; j++ )
  1501.             p += sprintf( p, "setup %s input "%s"n", p_cfg->psz_name, p_cfg->ppsz_input[j] );
  1502.         if( p_cfg->psz_output )
  1503.             p += sprintf( p, "setup %s output %sn", p_cfg->psz_name, p_cfg->psz_output );
  1504.         for( j = 0; j < p_cfg->i_option; j++ )
  1505.             p += sprintf( p, "setup %s option %sn", p_cfg->psz_name, p_cfg->ppsz_option[j] );
  1506.         if( p_cfg->b_vod && p_cfg->vod.psz_mux )
  1507.             p += sprintf( p, "setup %s mux %sn", p_cfg->psz_name, p_cfg->vod.psz_mux );
  1508.     }
  1509.     /* and now, the schedule scripts */
  1510.     for( i = 0; i < vlm->i_schedule; i++ )
  1511.     {
  1512.         vlm_schedule_sys_t *schedule = vlm->schedule[i];
  1513.         struct tm date;
  1514.         time_t i_time = (time_t) ( schedule->i_date / 1000000 );
  1515.         localtime_r( &i_time, &date);
  1516.         p += sprintf( p, "new %s schedule ", schedule->psz_name);
  1517.         if( schedule->b_enabled == true )
  1518.         {
  1519.             p += sprintf( p, "date %d/%d/%d-%d:%d:%d enabledn",
  1520.                           date.tm_year + 1900, date.tm_mon + 1, date.tm_mday,
  1521.                           date.tm_hour, date.tm_min, date.tm_sec );
  1522.         }
  1523.         else
  1524.         {
  1525.             p += sprintf( p, "date %d/%d/%d-%d:%d:%d disabledn",
  1526.                           date.tm_year + 1900, date.tm_mon + 1, date.tm_mday,
  1527.                           date.tm_hour, date.tm_min, date.tm_sec);
  1528.         }
  1529.         if( schedule->i_period != 0 )
  1530.         {
  1531.             p += sprintf( p, "setup %s ", schedule->psz_name );
  1532.             i_time = (time_t) ( schedule->i_period / 1000000 );
  1533.             date.tm_sec = (int)( i_time % 60 );
  1534.             i_time = i_time / 60;
  1535.             date.tm_min = (int)( i_time % 60 );
  1536.             i_time = i_time / 60;
  1537.             date.tm_hour = (int)( i_time % 24 );
  1538.             i_time = i_time / 24;
  1539.             date.tm_mday = (int)( i_time % 30 );
  1540.             i_time = i_time / 30;
  1541.             /* okay, okay, months are not always 30 days long */
  1542.             date.tm_mon = (int)( i_time % 12 );
  1543.             i_time = i_time / 12;
  1544.             date.tm_year = (int)i_time;
  1545.             p += sprintf( p, "period %d/%d/%d-%d:%d:%dn",
  1546.                           date.tm_year, date.tm_mon, date.tm_mday,
  1547.                           date.tm_hour, date.tm_min, date.tm_sec);
  1548.         }
  1549.         if( schedule->i_repeat >= 0 )
  1550.         {
  1551.             p += sprintf( p, "setup %s repeat %dn",
  1552.                           schedule->psz_name, schedule->i_repeat );
  1553.         }
  1554.         else
  1555.         {
  1556.             p += sprintf( p, "n" );
  1557.         }
  1558.         for( j = 0; j < schedule->i_command; j++ )
  1559.         {
  1560.             p += sprintf( p, "setup %s append %sn",
  1561.                           schedule->psz_name, schedule->command[j] );
  1562.         }
  1563.     }
  1564.     return save;
  1565. }
  1566. #endif /* ENABLE_VLM */