http.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:96k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * http.c :  http mini-server ;)
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2004 VideoLAN
  5.  * $Id: http.c 9281 2004-11-11 12:45:53Z zorglub $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  8.  *          Laurent Aimar <fenrir@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. /* TODO:
  28.  * - clean up ?
  29.  * - doc ! (mouarf ;)
  30.  */
  31. #include <stdlib.h>
  32. #include <vlc/vlc.h>
  33. #include <vlc/intf.h>
  34. #include <vlc/aout.h>
  35. #include <vlc/vout.h> /* for fullscreen */
  36. #include "vlc_httpd.h"
  37. #include "vlc_vlm.h"
  38. #include "vlc_tls.h"
  39. #ifdef HAVE_SYS_STAT_H
  40. #   include <sys/stat.h>
  41. #endif
  42. #ifdef HAVE_ERRNO_H
  43. #   include <errno.h>
  44. #endif
  45. #ifdef HAVE_FCNTL_H
  46. #   include <fcntl.h>
  47. #endif
  48. #ifdef HAVE_UNISTD_H
  49. #   include <unistd.h>
  50. #elif defined( WIN32 ) && !defined( UNDER_CE )
  51. #   include <io.h>
  52. #endif
  53. #if (!defined( WIN32 ) || defined(__MINGW32__))
  54. /* Mingw has its own version of dirent */
  55. #   include <dirent.h>
  56. #endif
  57. /* stat() support for large files on win32 */
  58. #if defined( WIN32 ) && !defined( UNDER_CE )
  59. #   define stat _stati64
  60. #endif
  61. /*****************************************************************************
  62.  * Module descriptor
  63.  *****************************************************************************/
  64. static int  Open ( vlc_object_t * );
  65. static void Close( vlc_object_t * );
  66. #define HOST_TEXT N_( "Host address" )
  67. #define HOST_LONGTEXT N_( 
  68.     "You can set the address and port the http interface will bind to." )
  69. #define SRC_TEXT N_( "Source directory" )
  70. #define SRC_LONGTEXT N_( "Source directory" )
  71. #define CERT_TEXT N_( "Certificate file" )
  72. #define CERT_LONGTEXT N_( "HTTP interface x509 PEM certificate file " 
  73.                           "(enables SSL)" )
  74. #define KEY_TEXT N_( "Private key file" )
  75. #define KEY_LONGTEXT N_( "HTTP interface x509 PEM private key file" )
  76. #define CA_TEXT N_( "Root CA file" )
  77. #define CA_LONGTEXT N_( "HTTP interface x509 PEM trusted root CA " 
  78.                         "certificates file" )
  79. #define CRL_TEXT N_( "CRL file" )
  80. #define CRL_LONGTEXT N_( "HTTP interace Certificates Revocation List file" )
  81. vlc_module_begin();
  82.     set_description( _("HTTP remote control interface") );
  83.         add_string ( "http-host", NULL, NULL, HOST_TEXT, HOST_LONGTEXT, VLC_TRUE );
  84.         add_string ( "http-src",  NULL, NULL, SRC_TEXT,  SRC_LONGTEXT,  VLC_TRUE );
  85.         add_string ( "http-intf-cert", NULL, NULL, CERT_TEXT, CERT_LONGTEXT, VLC_TRUE );
  86.         add_string ( "http-intf-key",  NULL, NULL, KEY_TEXT,  KEY_LONGTEXT,  VLC_TRUE );
  87.         add_string ( "http-intf-ca",   NULL, NULL, CA_TEXT,   CA_LONGTEXT,   VLC_TRUE );
  88.         add_string ( "http-intf-crl",  NULL, NULL, CRL_TEXT,  CRL_LONGTEXT,  VLC_TRUE );
  89.     set_capability( "interface", 0 );
  90.     set_callbacks( Open, Close );
  91. vlc_module_end();
  92. /*****************************************************************************
  93.  * Local prototypes
  94.  *****************************************************************************/
  95. static void Run          ( intf_thread_t *p_intf );
  96. static int ParseDirectory( intf_thread_t *p_intf, char *psz_root,
  97.                            char *psz_dir );
  98. static int DirectoryCheck( char *psz_dir )
  99. {
  100.     DIR           *p_dir;
  101. #ifdef HAVE_SYS_STAT_H
  102.     struct stat   stat_info;
  103.     if( stat( psz_dir, &stat_info ) == -1 || !S_ISDIR( stat_info.st_mode ) )
  104.     {
  105.         return VLC_EGENERIC;
  106.     }
  107. #endif
  108.     if( ( p_dir = opendir( psz_dir ) ) == NULL )
  109.     {
  110.         return VLC_EGENERIC;
  111.     }
  112.     closedir( p_dir );
  113.     return VLC_SUCCESS;
  114. }
  115. static int  HttpCallback( httpd_file_sys_t *p_args,
  116.                           httpd_file_t *,
  117.                           uint8_t *p_request,
  118.                           uint8_t **pp_data, int *pi_data );
  119. static char *uri_extract_value( char *psz_uri, const char *psz_name,
  120.                                 char *psz_value, int i_value_max );
  121. static int uri_test_param( char *psz_uri, const char *psz_name );
  122. static void uri_decode_url_encoded( char *psz );
  123. static char *Find_end_MRL( char *psz );
  124. static playlist_item_t * parse_MRL( intf_thread_t * , char *psz );
  125. /*****************************************************************************
  126.  *
  127.  *****************************************************************************/
  128. typedef struct mvar_s
  129. {
  130.     char *name;
  131.     char *value;
  132.     int           i_field;
  133.     struct mvar_s **field;
  134. } mvar_t;
  135. #define STACK_MAX 100
  136. typedef struct
  137. {
  138.     char *stack[STACK_MAX];
  139.     int  i_stack;
  140. } rpn_stack_t;
  141. struct httpd_file_sys_t
  142. {
  143.     intf_thread_t    *p_intf;
  144.     httpd_file_t     *p_file;
  145.     httpd_redirect_t *p_redir;
  146.     char          *file;
  147.     char          *name;
  148.     vlc_bool_t    b_html;
  149.     /* inited for each access */
  150.     rpn_stack_t   stack;
  151.     mvar_t        *vars;
  152. };
  153. struct intf_sys_t
  154. {
  155.     httpd_host_t        *p_httpd_host;
  156.     int                 i_files;
  157.     httpd_file_sys_t    **pp_files;
  158.     playlist_t          *p_playlist;
  159.     input_thread_t      *p_input;
  160.     vlm_t               *p_vlm;
  161. };
  162. /*****************************************************************************
  163.  * Activate: initialize and create stuff
  164.  *****************************************************************************/
  165. static int Open( vlc_object_t *p_this )
  166. {
  167.     intf_thread_t *p_intf = (intf_thread_t*)p_this;
  168.     intf_sys_t    *p_sys;
  169.     char          *psz_host;
  170.     char          *psz_address = "";
  171.     const char    *psz_cert;
  172.     int           i_port       = 0;
  173.     char          *psz_src;
  174.     tls_server_t  *p_tls;
  175.     psz_host = config_GetPsz( p_intf, "http-host" );
  176.     if( psz_host )
  177.     {
  178.         char *psz_parser;
  179.         psz_address = psz_host;
  180.         psz_parser = strchr( psz_host, ':' );
  181.         if( psz_parser )
  182.         {
  183.             *psz_parser++ = '';
  184.             i_port = atoi( psz_parser );
  185.         }
  186.     }
  187.     p_intf->p_sys = p_sys = malloc( sizeof( intf_sys_t ) );
  188.     if( !p_intf->p_sys )
  189.     {
  190.         return( VLC_ENOMEM );
  191.     }
  192.     p_sys->p_playlist = NULL;
  193.     p_sys->p_input    = NULL;
  194.     p_sys->p_vlm      = NULL;
  195.     psz_cert = config_GetPsz( p_intf, "http-intf-cert" );
  196.     if ( psz_cert != NULL )
  197.     {
  198.         const char *psz_pem;
  199.         msg_Dbg( p_intf, "enablind TLS for HTTP interface (cert file: %s)",
  200.                  psz_cert );
  201.         psz_pem = config_GetPsz( p_intf, "http-intf-key" );
  202.         p_tls = tls_ServerCreate( p_this, psz_cert, psz_pem );
  203.         if ( p_tls == NULL )
  204.         {
  205.             msg_Err( p_intf, "TLS initialization error" );
  206.             free( p_sys );
  207.             return VLC_EGENERIC;
  208.         }
  209.         psz_pem = config_GetPsz( p_intf, "http-intf-ca" );
  210.         if ( ( psz_pem != NULL) && tls_ServerAddCA( p_tls, psz_pem ) )
  211.         {
  212.             msg_Err( p_intf, "TLS CA error" );
  213.             tls_ServerDelete( p_tls );
  214.             free( p_sys );
  215.             return VLC_EGENERIC;
  216.         }
  217.         psz_pem = config_GetPsz( p_intf, "http-intf-crl" );
  218.         if ( ( psz_pem != NULL) && tls_ServerAddCRL( p_tls, psz_pem ) )
  219.         {
  220.             msg_Err( p_intf, "TLS CRL error" );
  221.             tls_ServerDelete( p_tls );
  222.             free( p_sys );
  223.             return VLC_EGENERIC;
  224.         }
  225.         if( i_port <= 0 )
  226.             i_port = 8443;
  227.     }
  228.     else
  229.     {
  230.         p_tls = NULL;
  231.         if( i_port <= 0 )
  232.             i_port= 8080;
  233.     }
  234.     msg_Dbg( p_intf, "base %s:%d", psz_address, i_port );
  235.     p_sys->p_httpd_host = httpd_TLSHostNew( VLC_OBJECT(p_intf), psz_address,
  236.                                             i_port, p_tls );
  237.     if( p_sys->p_httpd_host == NULL )
  238.     {
  239.         msg_Err( p_intf, "cannot listen on %s:%d", psz_address, i_port );
  240.         if ( p_tls != NULL )
  241.             tls_ServerDelete( p_tls );
  242.         free( p_sys );
  243.         return VLC_EGENERIC;
  244.     }
  245.     if( psz_host )
  246.     {
  247.         free( psz_host );
  248.     }
  249.     p_sys->i_files  = 0;
  250.     p_sys->pp_files = NULL;
  251. #if defined(SYS_DARWIN) || defined(SYS_BEOS) || 
  252.         ( defined(WIN32) && !defined(UNDER_CE ) )
  253.     if ( ( psz_src = config_GetPsz( p_intf, "http-src" )) == NULL )
  254.     {
  255.         char * psz_vlcpath = p_intf->p_libvlc->psz_vlcpath;
  256.         psz_src = malloc( strlen(psz_vlcpath) + strlen("/share/http" ) + 1 );
  257.         if( !psz_src )
  258.         {
  259.             return VLC_ENOMEM;
  260.         }
  261. #if defined(WIN32)
  262.         sprintf( psz_src, "%s/http", psz_vlcpath);
  263. #else
  264.         sprintf( psz_src, "%s/share/http", psz_vlcpath);
  265. #endif
  266.     }
  267. #else
  268.     psz_src = config_GetPsz( p_intf, "http-src" );
  269.     if( !psz_src || *psz_src == '' )
  270.     {
  271.         if( !DirectoryCheck( "share/http" ) )
  272.         {
  273.             psz_src = strdup( "share/http" );
  274.         }
  275.         else if( !DirectoryCheck( DATA_PATH "/http" ) )
  276.         {
  277.             psz_src = strdup( DATA_PATH "/http" );
  278.         }
  279.     }
  280. #endif
  281.     if( !psz_src || *psz_src == '' )
  282.     {
  283.         msg_Err( p_intf, "invalid src dir" );
  284.         goto failed;
  285.     }
  286.     /* remove trainling  or / */
  287.     if( psz_src[strlen( psz_src ) - 1] == '\' ||
  288.         psz_src[strlen( psz_src ) - 1] == '/' )
  289.     {
  290.         psz_src[strlen( psz_src ) - 1] = '';
  291.     }
  292.     ParseDirectory( p_intf, psz_src, psz_src );
  293.     if( p_sys->i_files <= 0 )
  294.     {
  295.         msg_Err( p_intf, "cannot find any files (%s)", psz_src );
  296.         goto failed;
  297.     }
  298.     p_intf->pf_run = Run;
  299.     free( psz_src );
  300.     return VLC_SUCCESS;
  301. failed:
  302.     if( psz_src ) free( psz_src );
  303.     if( p_sys->pp_files )
  304.     {
  305.         free( p_sys->pp_files );
  306.     }
  307.     httpd_HostDelete( p_sys->p_httpd_host );
  308.     free( p_sys );
  309.     return VLC_EGENERIC;
  310. }
  311. /*****************************************************************************
  312.  * CloseIntf: destroy interface
  313.  *****************************************************************************/
  314. void Close ( vlc_object_t *p_this )
  315. {
  316.     intf_thread_t *p_intf = (intf_thread_t *)p_this;
  317.     intf_sys_t    *p_sys = p_intf->p_sys;
  318.     int i;
  319.     if( p_sys->p_vlm )
  320.     {
  321.         vlm_Delete( p_sys->p_vlm );
  322.     }
  323.     for( i = 0; i < p_sys->i_files; i++ )
  324.     {
  325.        httpd_FileDelete( p_sys->pp_files[i]->p_file );
  326.        if( p_sys->pp_files[i]->p_redir )
  327.        {
  328.            httpd_RedirectDelete( p_sys->pp_files[i]->p_redir );
  329.        }
  330.        free( p_sys->pp_files[i]->file );
  331.        free( p_sys->pp_files[i]->name );
  332.        free( p_sys->pp_files[i] );
  333.     }
  334.     if( p_sys->pp_files )
  335.     {
  336.         free( p_sys->pp_files );
  337.     }
  338.     httpd_HostDelete( p_sys->p_httpd_host );
  339.     free( p_sys );
  340. }
  341. /*****************************************************************************
  342.  * Run: http interface thread
  343.  *****************************************************************************/
  344. static void Run( intf_thread_t *p_intf )
  345. {
  346.     intf_sys_t     *p_sys = p_intf->p_sys;
  347.     while( !p_intf->b_die )
  348.     {
  349.         /* get the playlist */
  350.         if( p_sys->p_playlist == NULL )
  351.         {
  352.             p_sys->p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
  353.         }
  354.         /* Manage the input part */
  355.         if( p_sys->p_input == NULL )
  356.         {
  357.             if( p_sys->p_playlist )
  358.             {
  359.                 p_sys->p_input =
  360.                     vlc_object_find( p_sys->p_playlist,
  361.                                      VLC_OBJECT_INPUT,
  362.                                      FIND_CHILD );
  363.             }
  364.         }
  365.         else if( p_sys->p_input->b_dead )
  366.         {
  367.             vlc_object_release( p_sys->p_input );
  368.             p_sys->p_input = NULL;
  369.         }
  370.         /* Wait a bit */
  371.         msleep( INTF_IDLE_SLEEP );
  372.     }
  373.     if( p_sys->p_input )
  374.     {
  375.         vlc_object_release( p_sys->p_input );
  376.         p_sys->p_input = NULL;
  377.     }
  378.     if( p_sys->p_playlist )
  379.     {
  380.         vlc_object_release( p_sys->p_playlist );
  381.         p_sys->p_playlist = NULL;
  382.     }
  383. }
  384. /*****************************************************************************
  385.  * Local functions
  386.  *****************************************************************************/
  387. #define MAX_DIR_SIZE 10240
  388. /****************************************************************************
  389.  * FileToUrl: create a good name for an url from filename
  390.  ****************************************************************************/
  391. static char *FileToUrl( char *name )
  392. {
  393.     char *url, *p;
  394.     url = p = malloc( strlen( name ) + 1 );
  395.     if( !url || !p )
  396.     {
  397.         return NULL;
  398.     }
  399. #ifdef WIN32
  400.     while( *name == '\' || *name == '/' )
  401. #else
  402.     while( *name == '/' )
  403. #endif
  404.     {
  405.         name++;
  406.     }
  407.     *p++ = '/';
  408.     strcpy( p, name );
  409. #ifdef WIN32
  410.     /* convert '\' into '/' */
  411.     name = p;
  412.     while( *name )
  413.     {
  414.         if( *name == '\' )
  415.         {
  416.             *p++ = '/';
  417.         }
  418.         name++;
  419.     }
  420. #endif
  421.     /* index.* -> / */
  422.     if( ( p = strrchr( url, '/' ) ) != NULL )
  423.     {
  424.         if( !strncmp( p, "/index.", 7 ) )
  425.         {
  426.             p[1] = '';
  427.         }
  428.     }
  429.     return url;
  430. }
  431. /****************************************************************************
  432.  * ParseDirectory: parse recursively a directory, adding each file
  433.  ****************************************************************************/
  434. static int ParseDirectory( intf_thread_t *p_intf, char *psz_root,
  435.                            char *psz_dir )
  436. {
  437.     intf_sys_t     *p_sys = p_intf->p_sys;
  438.     char           dir[MAX_DIR_SIZE];
  439. #ifdef HAVE_SYS_STAT_H
  440.     struct stat   stat_info;
  441. #endif
  442.     DIR           *p_dir;
  443.     struct dirent *p_dir_content;
  444.     FILE          *file;
  445.     char          *user = NULL;
  446.     char          *password = NULL;
  447. #ifdef HAVE_SYS_STAT_H
  448.     if( stat( psz_dir, &stat_info ) == -1 || !S_ISDIR( stat_info.st_mode ) )
  449.     {
  450.         return VLC_EGENERIC;
  451.     }
  452. #endif
  453.     if( ( p_dir = opendir( psz_dir ) ) == NULL )
  454.     {
  455.         msg_Err( p_intf, "cannot open dir (%s)", psz_dir );
  456.         return VLC_EGENERIC;
  457.     }
  458.     msg_Dbg( p_intf, "dir=%s", psz_dir );
  459.     sprintf( dir, "%s/.access", psz_dir );
  460.     if( ( file = fopen( dir, "r" ) ) != NULL )
  461.     {
  462.         char line[1024];
  463.         int  i_size;
  464.         msg_Dbg( p_intf, "find .access in dir=%s", psz_dir );
  465.         i_size = fread( line, 1, 1023, file );
  466.         if( i_size > 0 )
  467.         {
  468.             char *p;
  469.             while( i_size > 0 && ( line[i_size-1] == 'n' ||
  470.                    line[i_size-1] == 'r' ) )
  471.             {
  472.                 i_size--;
  473.             }
  474.             line[i_size] = '';
  475.             p = strchr( line, ':' );
  476.             if( p )
  477.             {
  478.                 *p++ = '';
  479.                 user = strdup( line );
  480.                 password = strdup( p );
  481.             }
  482.         }
  483.         msg_Dbg( p_intf, "using user=%s password=%s (read=%d)",
  484.                  user, password, i_size );
  485.         fclose( file );
  486.     }
  487.     for( ;; )
  488.     {
  489.         /* parse psz_src dir */
  490.         if( ( p_dir_content = readdir( p_dir ) ) == NULL )
  491.         {
  492.             break;
  493.         }
  494.         if( p_dir_content->d_name[0] == '.' )
  495.         {
  496.             continue;
  497.         }
  498.         sprintf( dir, "%s/%s", psz_dir, p_dir_content->d_name );
  499.         if( ParseDirectory( p_intf, psz_root, dir ) )
  500.         {
  501.             httpd_file_sys_t *f = malloc( sizeof( httpd_file_sys_t ) );
  502.             f->p_intf  = p_intf;
  503.             f->p_file = NULL;
  504.             f->p_redir = NULL;
  505.             f->file = strdup( dir );
  506.             f->name = FileToUrl( &dir[strlen( psz_root )] );
  507.             f->b_html = strstr( &dir[strlen( psz_root )], ".htm" ) ? VLC_TRUE : VLC_FALSE;
  508.             if( !f->name )
  509.             {
  510.                 msg_Err( p_intf , "unable to parse directory" );
  511.                 closedir( p_dir );
  512.                 free( f );
  513.                 return( VLC_ENOMEM );
  514.             }
  515.             msg_Dbg( p_intf, "file=%s (url=%s)",
  516.                      f->file, f->name );
  517.             f->p_file = httpd_FileNew( p_sys->p_httpd_host,
  518.                                        f->name, f->b_html ? "text/html" : NULL,
  519.                                        user, password,
  520.                                        HttpCallback, f );
  521.             if( f->p_file )
  522.             {
  523.                 TAB_APPEND( p_sys->i_files, p_sys->pp_files, f );
  524.             }
  525.             /* For rep/ add a redir from rep to rep/ */
  526.             if( f && f->name[strlen(f->name) - 1] == '/' )
  527.             {
  528.                 char *psz_redir = strdup( f->name );
  529.                 psz_redir[strlen( psz_redir ) - 1] = '';
  530.                 msg_Dbg( p_intf, "redir=%s -> %s", psz_redir, f->name );
  531.                 f->p_redir = httpd_RedirectNew( p_sys->p_httpd_host, f->name, psz_redir );
  532.                 free( psz_redir );
  533.             }
  534.         }
  535.     }
  536.     if( user )
  537.     {
  538.         free( user );
  539.     }
  540.     if( password )
  541.     {
  542.         free( password );
  543.     }
  544.     closedir( p_dir );
  545.     return VLC_SUCCESS;
  546. }
  547. /****************************************************************************
  548.  * var and set handling
  549.  ****************************************************************************/
  550. static mvar_t *mvar_New( char *name, char *value )
  551. {
  552.     mvar_t *v = malloc( sizeof( mvar_t ) );
  553.     if( !v ) return NULL;
  554.     v->name = strdup( name );
  555.     v->value = strdup( value ? value : "" );
  556.     v->i_field = 0;
  557.     v->field = malloc( sizeof( mvar_t * ) );
  558.     v->field[0] = NULL;
  559.     return v;
  560. }
  561. static void mvar_Delete( mvar_t *v )
  562. {
  563.     int i;
  564.     free( v->name );
  565.     free( v->value );
  566.     for( i = 0; i < v->i_field; i++ )
  567.     {
  568.         mvar_Delete( v->field[i] );
  569.     }
  570.     free( v->field );
  571.     free( v );
  572. }
  573. static void mvar_AppendVar( mvar_t *v, mvar_t *f )
  574. {
  575.     v->field = realloc( v->field, sizeof( mvar_t * ) * ( v->i_field + 2 ) );
  576.     v->field[v->i_field] = f;
  577.     v->i_field++;
  578. }
  579. static mvar_t *mvar_Duplicate( mvar_t *v )
  580. {
  581.     int i;
  582.     mvar_t *n;
  583.     n = mvar_New( v->name, v->value );
  584.     for( i = 0; i < v->i_field; i++ )
  585.     {
  586.         mvar_AppendVar( n, mvar_Duplicate( v->field[i] ) );
  587.     }
  588.     return n;
  589. }
  590. static void mvar_PushVar( mvar_t *v, mvar_t *f )
  591. {
  592.     v->field = realloc( v->field, sizeof( mvar_t * ) * ( v->i_field + 2 ) );
  593.     if( v->i_field > 0 )
  594.     {
  595.         memmove( &v->field[1], &v->field[0], sizeof( mvar_t * ) * v->i_field );
  596.     }
  597.     v->field[0] = f;
  598.     v->i_field++;
  599. }
  600. static void mvar_RemoveVar( mvar_t *v, mvar_t *f )
  601. {
  602.     int i;
  603.     for( i = 0; i < v->i_field; i++ )
  604.     {
  605.         if( v->field[i] == f )
  606.         {
  607.             break;
  608.         }
  609.     }
  610.     if( i >= v->i_field )
  611.     {
  612.         return;
  613.     }
  614.     if( i + 1 < v->i_field )
  615.     {
  616.         memmove( &v->field[i], &v->field[i+1], sizeof( mvar_t * ) * ( v->i_field - i - 1 ) );
  617.     }
  618.     v->i_field--;
  619.     /* FIXME should do a realloc */
  620. }
  621. static mvar_t *mvar_GetVar( mvar_t *s, char *name )
  622. {
  623.     int i;
  624.     char base[512], *field, *p;
  625.     int  i_index;
  626.     /* format: name[index].field */
  627.     field = strchr( name, '.' );
  628.     if( field )
  629.     {
  630.         int i = field - name;
  631.         strncpy( base, name, i );
  632.         base[i] = '';
  633.         field++;
  634.     }
  635.     else
  636.     {
  637.         strcpy( base, name );
  638.     }
  639.     if( ( p = strchr( base, '[' ) ) )
  640.     {
  641.         *p++ = '';
  642.         sscanf( p, "%d]", &i_index );
  643.         if( i_index < 0 )
  644.         {
  645.             return NULL;
  646.         }
  647.     }
  648.     else
  649.     {
  650.         i_index = 0;
  651.     }
  652.     for( i = 0; i < s->i_field; i++ )
  653.     {
  654.         if( !strcmp( s->field[i]->name, base ) )
  655.         {
  656.             if( i_index > 0 )
  657.             {
  658.                 i_index--;
  659.             }
  660.             else
  661.             {
  662.                 if( field )
  663.                 {
  664.                     return mvar_GetVar( s->field[i], field );
  665.                 }
  666.                 else
  667.                 {
  668.                     return s->field[i];
  669.                 }
  670.             }
  671.         }
  672.     }
  673.     return NULL;
  674. }
  675. static char *mvar_GetValue( mvar_t *v, char *field )
  676. {
  677.     if( *field == '' )
  678.     {
  679.         return v->value;
  680.     }
  681.     else
  682.     {
  683.         mvar_t *f = mvar_GetVar( v, field );
  684.         if( f )
  685.         {
  686.             return f->value;
  687.         }
  688.         else
  689.         {
  690.             return field;
  691.         }
  692.     }
  693. }
  694. static void mvar_PushNewVar( mvar_t *vars, char *name, char *value )
  695. {
  696.     mvar_t *f = mvar_New( name, value );
  697.     mvar_PushVar( vars, f );
  698. }
  699. static void mvar_AppendNewVar( mvar_t *vars, char *name, char *value )
  700. {
  701.     mvar_t *f = mvar_New( name, value );
  702.     mvar_AppendVar( vars, f );
  703. }
  704. /* arg= start[:stop[:step]],.. */
  705. static mvar_t *mvar_IntegerSetNew( char *name, char *arg )
  706. {
  707.     char *dup = strdup( arg );
  708.     char *str = dup;
  709.     mvar_t *s = mvar_New( name, "set" );
  710.     fprintf( stderr," mvar_IntegerSetNew: name=`%s' arg=`%s'n", name, str );
  711.     while( str )
  712.     {
  713.         char *p;
  714.         int  i_start,i_stop,i_step;
  715.         int  i_match;
  716.         p = strchr( str, ',' );
  717.         if( p )
  718.         {
  719.             *p++ = '';
  720.         }
  721.         i_step = 0;
  722.         i_match = sscanf( str, "%d:%d:%d", &i_start, &i_stop, &i_step );
  723.         fprintf( stderr," mvar_IntegerSetNew: m=%d start=%d stop=%d step=%dn", i_match, i_start, i_stop, i_step );
  724.         if( i_match == 1 )
  725.         {
  726.             i_stop = i_start;
  727.             i_step = 1;
  728.         }
  729.         else if( i_match == 2 )
  730.         {
  731.             i_step = i_start < i_stop ? 1 : -1;
  732.         }
  733.         if( i_match >= 1 )
  734.         {
  735.             int i;
  736.             if( ( i_start < i_stop && i_step > 0 ) ||
  737.                 ( i_start > i_stop && i_step < 0 ) )
  738.             {
  739.                 for( i = i_start; ; i += i_step )
  740.                 {
  741.                     char   value[512];
  742.                     if( ( i_step > 0 && i > i_stop ) ||
  743.                         ( i_step < 0 && i < i_stop ) )
  744.                     {
  745.                         break;
  746.                     }
  747.                     fprintf( stderr," mvar_IntegerSetNew: adding %dn", i );
  748.                     sprintf( value, "%d", i );
  749.                     mvar_PushNewVar( s, name, value );
  750.                 }
  751.             }
  752.         }
  753.         str = p;
  754.     }
  755.     free( dup );
  756.     return s;
  757. }
  758. static mvar_t *mvar_PlaylistSetNew( char *name, playlist_t *p_pl )
  759. {
  760.     mvar_t *s = mvar_New( name, "set" );
  761.     int    i;
  762.     fprintf( stderr," mvar_PlaylistSetNew: name=`%s'n", name );
  763.     vlc_mutex_lock( &p_pl->object_lock );
  764.     for( i = 0; i < p_pl->i_size; i++ )
  765.     {
  766.         mvar_t *itm = mvar_New( name, "set" );
  767.         char   value[512];
  768.         sprintf( value, "%d", i == p_pl->i_index ? 1 : 0 );
  769.         mvar_AppendNewVar( itm, "current", value );
  770.         sprintf( value, "%d", i );
  771.         mvar_AppendNewVar( itm, "index", value );
  772.         mvar_AppendNewVar( itm, "name", p_pl->pp_items[i]->input.psz_name );
  773.         mvar_AppendNewVar( itm, "uri", p_pl->pp_items[i]->input.psz_uri );
  774.         sprintf( value, "%d", p_pl->pp_items[i]->i_group );
  775.         mvar_AppendNewVar( itm, "group", value );
  776.         mvar_AppendVar( s, itm );
  777.     }
  778.     vlc_mutex_unlock( &p_pl->object_lock );
  779.     return s;
  780. }
  781. static mvar_t *mvar_InfoSetNew( char *name, input_thread_t *p_input )
  782. {
  783.     mvar_t *s = mvar_New( name, "set" );
  784.     int i, j;
  785.     fprintf( stderr," mvar_InfoSetNew: name=`%s'n", name );
  786.     if( p_input == NULL )
  787.     {
  788.         return s;
  789.     }
  790.     vlc_mutex_lock( &p_input->input.p_item->lock );
  791.     for ( i = 0; i < p_input->input.p_item->i_categories; i++ )
  792.     {
  793.         info_category_t *p_category = p_input->input.p_item->pp_categories[i];
  794.         mvar_t *cat  = mvar_New( name, "set" );
  795.         mvar_t *iset = mvar_New( "info", "set" );
  796.         mvar_AppendNewVar( cat, "name", p_category->psz_name );
  797.         mvar_AppendVar( cat, iset );
  798.         for ( j = 0; j < p_category->i_infos; j++ )
  799.         {
  800.             info_t *p_info = p_category->pp_infos[j];
  801.             mvar_t *info = mvar_New( "info", "" );
  802.             msg_Dbg( p_input, "adding info name=%s value=%s",
  803.                      p_info->psz_name, p_info->psz_value );
  804.             mvar_AppendNewVar( info, "name",  p_info->psz_name );
  805.             mvar_AppendNewVar( info, "value", p_info->psz_value );
  806.             mvar_AppendVar( iset, info );
  807.         }
  808.         mvar_AppendVar( s, cat );
  809.     }
  810.     vlc_mutex_unlock( &p_input->input.p_item->lock );
  811.     return s;
  812. }
  813. #if 0
  814. static mvar_t *mvar_HttpdInfoSetNew( char *name, httpd_t *p_httpd, int i_type )
  815. {
  816.     mvar_t       *s = mvar_New( name, "set" );
  817.     httpd_info_t info;
  818.     int          i;
  819.     fprintf( stderr," mvar_HttpdInfoSetNew: name=`%s'n", name );
  820.     if( !p_httpd->pf_control( p_httpd, i_type, &info, NULL ) )
  821.     {
  822.         for( i= 0; i < info.i_count; )
  823.         {
  824.             mvar_t *inf;
  825.             inf = mvar_New( name, "set" );
  826.             do
  827.             {
  828.                 /* fprintf( stderr," mvar_HttpdInfoSetNew: append name=`%s' value=`%s'n",
  829.                             info.info[i].psz_name, info.info[i].psz_value ); */
  830.                 mvar_AppendNewVar( inf,
  831.                                    info.info[i].psz_name,
  832.                                    info.info[i].psz_value );
  833.                 i++;
  834.             } while( i < info.i_count && strcmp( info.info[i].psz_name, "id" ) );
  835.             mvar_AppendVar( s, inf );
  836.         }
  837.     }
  838.     /* free mem */
  839.     for( i = 0; i < info.i_count; i++ )
  840.     {
  841.         free( info.info[i].psz_name );
  842.         free( info.info[i].psz_value );
  843.     }
  844.     if( info.i_count > 0 )
  845.     {
  846.         free( info.info );
  847.     }
  848.     return s;
  849. }
  850. #endif
  851. static mvar_t *mvar_FileSetNew( char *name, char *psz_dir )
  852. {
  853.     mvar_t *s = mvar_New( name, "set" );
  854.     char           tmp[MAX_DIR_SIZE], *p, *src;
  855. #ifdef HAVE_SYS_STAT_H
  856.     struct stat   stat_info;
  857. #endif
  858.     DIR           *p_dir;
  859.     struct dirent *p_dir_content;
  860.     char          sep;
  861.     /* convert all / to native separator */
  862. #if defined( WIN32 )
  863.     while( (p = strchr( psz_dir, '/' )) )
  864.     {
  865.         *p = '\';
  866.     }
  867.     sep = '\';
  868. #else
  869.     sep = '/';
  870. #endif
  871.     /* remove trailling separator */
  872.     while( strlen( psz_dir ) > 1 &&
  873. #if defined( WIN32 )
  874.            !( strlen(psz_dir)==3 && psz_dir[1]==':' && psz_dir[2]==sep ) &&
  875. #endif
  876.            psz_dir[strlen( psz_dir ) -1 ] == sep )
  877.     {
  878.         psz_dir[strlen( psz_dir ) -1 ]  ='';
  879.     }
  880.     /* remove double separator */
  881.     for( p = src = psz_dir; *src != ''; src++, p++ )
  882.     {
  883.         if( src[0] == sep && src[1] == sep )
  884.         {
  885.             src++;
  886.         }
  887.         *p = *src;
  888.     }
  889.     *p = '';
  890.     if( *psz_dir == '' )
  891.     {
  892.         return s;
  893.     }
  894.     /* first fix all .. dir */
  895.     p = src = psz_dir;
  896.     while( *src )
  897.     {
  898.         if( src[0] == '.' && src[1] == '.' )
  899.         {
  900.             src += 2;
  901.             if( p <= &psz_dir[1] )
  902.             {
  903.                 continue;
  904.             }
  905.             p -= 2;
  906.             while( p > &psz_dir[1] && *p != sep )
  907.             {
  908.                 p--;
  909.             }
  910.         }
  911.         else if( *src == sep )
  912.         {
  913.             if( p > psz_dir && p[-1] == sep )
  914.             {
  915.                 src++;
  916.             }
  917.             else
  918.             {
  919.                 *p++ = *src++;
  920.             }
  921.         }
  922.         else
  923.         {
  924.             do
  925.             {
  926.                 *p++ = *src++;
  927.             } while( *src && *src != sep );
  928.         }
  929.     }
  930.     *p = '';
  931.     fprintf( stderr," mvar_FileSetNew: name=`%s' dir=`%s'n", name, psz_dir );
  932. #ifdef HAVE_SYS_STAT_H
  933.     if( stat( psz_dir, &stat_info ) == -1 || !S_ISDIR( stat_info.st_mode ) )
  934.     {
  935.         return s;
  936.     }
  937. #endif
  938.     if( ( p_dir = opendir( psz_dir ) ) == NULL )
  939.     {
  940.         fprintf( stderr, "cannot open dir (%s)", psz_dir );
  941.         return s;
  942.     }
  943.     /* remove traling / or  */
  944.     for( p = &psz_dir[strlen( psz_dir) - 1];
  945.          p >= psz_dir && ( *p =='/' || *p =='\' ); p-- )
  946.     {
  947.         *p = '';
  948.     }
  949.     for( ;; )
  950.     {
  951.         mvar_t *f;
  952.         /* parse psz_src dir */
  953.         if( ( p_dir_content = readdir( p_dir ) ) == NULL )
  954.         {
  955.             break;
  956.         }
  957.         if( !strcmp( p_dir_content->d_name, "." ) )
  958.         {
  959.             continue;
  960.         }
  961.         sprintf( tmp, "%s/%s", psz_dir, p_dir_content->d_name );
  962. #ifdef HAVE_SYS_STAT_H
  963.         if( stat( tmp, &stat_info ) == -1 )
  964.         {
  965.             continue;
  966.         }
  967. #endif
  968.         f = mvar_New( name, "set" );
  969.         mvar_AppendNewVar( f, "name", tmp );
  970. #ifdef HAVE_SYS_STAT_H
  971.         if( S_ISDIR( stat_info.st_mode ) )
  972.         {
  973.             mvar_AppendNewVar( f, "type", "directory" );
  974.         }
  975.         else if( S_ISREG( stat_info.st_mode ) )
  976.         {
  977.             mvar_AppendNewVar( f, "type", "file" );
  978.         }
  979.         else
  980.         {
  981.             mvar_AppendNewVar( f, "type", "unknown" );
  982.         }
  983.         sprintf( tmp, I64Fd, (int64_t)stat_info.st_size );
  984.         mvar_AppendNewVar( f, "size", tmp );
  985.         /* FIXME memory leak FIXME */
  986. #ifdef HAVE_CTIME_R
  987.         ctime_r( &stat_info.st_mtime, tmp );
  988.         mvar_AppendNewVar( f, "date", tmp );
  989. #else
  990.         mvar_AppendNewVar( f, "date", ctime( &stat_info.st_mtime ) );
  991. #endif
  992. #else
  993.         mvar_AppendNewVar( f, "type", "unknown" );
  994.         mvar_AppendNewVar( f, "size", "unknown" );
  995.         mvar_AppendNewVar( f, "date", "unknown" );
  996. #endif
  997.         mvar_AppendVar( s, f );
  998.     }
  999.     return s;
  1000. }
  1001. static mvar_t *mvar_VlmSetNew( char *name, vlm_t *vlm )
  1002. {
  1003.     mvar_t        *s = mvar_New( name, "set" );
  1004.     vlm_message_t *msg;
  1005.     int    i;
  1006.     /* fprintf( stderr," mvar_VlmSetNew: name=`%s'n", name ); */
  1007.     if( vlm == NULL ) return s;
  1008.     if( vlm_ExecuteCommand( vlm, "show", &msg ) )
  1009.     {
  1010.         return s;
  1011.     }
  1012.     for( i = 0; i < msg->i_child; i++ )
  1013.     {
  1014.         /* Over media, schedule */
  1015.         vlm_message_t *ch = msg->child[i];
  1016.         int j;
  1017.         for( j = 0; j < ch->i_child; j++ )
  1018.         {
  1019.             /* Over name */
  1020.             vlm_message_t *el = ch->child[j];
  1021.             vlm_message_t *inf, *desc;
  1022.             mvar_t        *set;
  1023.             char          psz[500];
  1024.             int k;
  1025.             sprintf( psz, "show %s", el->psz_name );
  1026.             if( vlm_ExecuteCommand( vlm, psz, &inf ) )
  1027.                 continue;
  1028.             desc = inf->child[0];
  1029.             /* Add a node with name and info */
  1030.             set = mvar_New( name, "set" );
  1031.             mvar_AppendNewVar( set, "name", el->psz_name );
  1032.             /* fprintf( stderr, "#### name=%sn", el->psz_name ); */
  1033.             for( k = 0; k < desc->i_child; k++ )
  1034.             {
  1035.                 vlm_message_t *ch = desc->child[k];
  1036.                 if( ch->i_child > 0 )
  1037.                 {
  1038.                     int c;
  1039.                     mvar_t *n = mvar_New( ch->psz_name, "set" );
  1040.                     /* fprintf( stderr, "        child=%s [%d]n", ch->psz_name, ch->i_child ); */
  1041.                     for( c = 0; c < ch->i_child; c++ )
  1042.                     {
  1043.                         mvar_t *in = mvar_New( ch->psz_name, ch->child[c]->psz_name );
  1044.                         mvar_AppendVar( n, in );
  1045.                         /* fprintf( stderr, "            sub=%sn", ch->child[c]->psz_name );*/
  1046.                     }
  1047.                     mvar_AppendVar( set, n );
  1048.                 }
  1049.                 else
  1050.                 {
  1051.                     /* fprintf( stderr, "        child=%s->%sn", ch->psz_name, ch->psz_value ); */
  1052.                     mvar_AppendNewVar( set, ch->psz_name, ch->psz_value );
  1053.                 }
  1054.             }
  1055.             vlm_MessageDelete( inf );
  1056.             mvar_AppendVar( s, set );
  1057.         }
  1058.     }
  1059.     vlm_MessageDelete( msg );
  1060.     return s;
  1061. }
  1062. static void SSInit( rpn_stack_t * );
  1063. static void SSClean( rpn_stack_t * );
  1064. static void EvaluateRPN( mvar_t  *, rpn_stack_t *, char * );
  1065. static void SSPush  ( rpn_stack_t *, char * );
  1066. static char *SSPop  ( rpn_stack_t * );
  1067. static void SSPushN ( rpn_stack_t *, int );
  1068. static int  SSPopN  ( rpn_stack_t *, mvar_t  * );
  1069. /****************************************************************************
  1070.  * Macro handling
  1071.  ****************************************************************************/
  1072. typedef struct
  1073. {
  1074.     char *id;
  1075.     char *param1;
  1076.     char *param2;
  1077. } macro_t;
  1078. static int FileLoad( FILE *f, uint8_t **pp_data, int *pi_data )
  1079. {
  1080.     int i_read;
  1081.     /* just load the file */
  1082.     *pi_data = 0;
  1083.     *pp_data = malloc( 1025 );  /* +1 for  */
  1084.     while( ( i_read = fread( &(*pp_data)[*pi_data], 1, 1024, f ) ) == 1024 )
  1085.     {
  1086.         *pi_data += 1024;
  1087.         *pp_data = realloc( *pp_data, *pi_data  + 1025 );
  1088.     }
  1089.     if( i_read > 0 )
  1090.     {
  1091.         *pi_data += i_read;
  1092.     }
  1093.     (*pp_data)[*pi_data] = '';
  1094.     return VLC_SUCCESS;
  1095. }
  1096. static int MacroParse( macro_t *m, uint8_t *psz_src )
  1097. {
  1098.     uint8_t *dup = strdup( psz_src );
  1099.     uint8_t *src = dup;
  1100.     uint8_t *p;
  1101.     int     i_skip;
  1102. #define EXTRACT( name, l ) 
  1103.         src += l;    
  1104.         p = strchr( src, '"' );             
  1105.         if( p )                             
  1106.         {                                   
  1107.             *p++ = '';                    
  1108.         }                                   
  1109.         m->name = strdup( src );            
  1110.         if( !p )                            
  1111.         {                                   
  1112.             break;                          
  1113.         }                                   
  1114.         src = p;
  1115.     /* init m */
  1116.     m->id = NULL;
  1117.     m->param1 = NULL;
  1118.     m->param2 = NULL;
  1119.     /* parse */
  1120.     src += 4;
  1121.     while( *src )
  1122.     {
  1123.         while( *src == ' ')
  1124.         {
  1125.             src++;
  1126.         }
  1127.         if( !strncmp( src, "id="", 4 ) )
  1128.         {
  1129.             EXTRACT( id, 4 );
  1130.         }
  1131.         else if( !strncmp( src, "param1="", 8 ) )
  1132.         {
  1133.             EXTRACT( param1, 8 );
  1134.         }
  1135.         else if( !strncmp( src, "param2="", 8 ) )
  1136.         {
  1137.             EXTRACT( param2, 8 );
  1138.         }
  1139.         else
  1140.         {
  1141.             break;
  1142.         }
  1143.     }
  1144.     if( strstr( src, "/>" ) )
  1145.     {
  1146.         src = strstr( src, "/>" ) + 2;
  1147.     }
  1148.     else
  1149.     {
  1150.         src += strlen( src );
  1151.     }
  1152.     if( m->id == NULL )
  1153.     {
  1154.         m->id = strdup( "" );
  1155.     }
  1156.     if( m->param1 == NULL )
  1157.     {
  1158.         m->param1 = strdup( "" );
  1159.     }
  1160.     if( m->param2 == NULL )
  1161.     {
  1162.         m->param2 = strdup( "" );
  1163.     }
  1164.     i_skip = src - dup;
  1165.     free( dup );
  1166.     return i_skip;
  1167. #undef EXTRACT
  1168. }
  1169. static void MacroClean( macro_t *m )
  1170. {
  1171.     free( m->id );
  1172.     free( m->param1 );
  1173.     free( m->param2 );
  1174. }
  1175. enum macroType
  1176. {
  1177.     MVLC_UNKNOWN = 0,
  1178.     MVLC_CONTROL,
  1179.         MVLC_PLAY,
  1180.         MVLC_STOP,
  1181.         MVLC_PAUSE,
  1182.         MVLC_NEXT,
  1183.         MVLC_PREVIOUS,
  1184.         MVLC_ADD,
  1185.         MVLC_DEL,
  1186.         MVLC_EMPTY,
  1187.         MVLC_SEEK,
  1188.         MVLC_KEEP,
  1189.         MVLC_SORT,
  1190.         MVLC_MOVE,
  1191.         MVLC_VOLUME,
  1192.         MVLC_FULLSCREEN,
  1193.         MVLC_CLOSE,
  1194.         MVLC_SHUTDOWN,
  1195.         MVLC_VLM_NEW,
  1196.         MVLC_VLM_SETUP,
  1197.         MVLC_VLM_DEL,
  1198.         MVLC_VLM_PLAY,
  1199.         MVLC_VLM_PAUSE,
  1200.         MVLC_VLM_STOP,
  1201.         MVLC_VLM_SEEK,
  1202.         MVLC_VLM_LOAD,
  1203.         MVLC_VLM_SAVE,
  1204.     MVLC_FOREACH,
  1205.     MVLC_IF,
  1206.     MVLC_RPN,
  1207.     MVLC_ELSE,
  1208.     MVLC_END,
  1209.     MVLC_GET,
  1210.     MVLC_SET,
  1211.         MVLC_INT,
  1212.         MVLC_FLOAT,
  1213.         MVLC_STRING,
  1214.     MVLC_VALUE
  1215. };
  1216. static struct
  1217. {
  1218.     char *psz_name;
  1219.     int  i_type;
  1220. }
  1221. StrToMacroTypeTab [] =
  1222. {
  1223.     { "control",    MVLC_CONTROL },
  1224.         /* player control */
  1225.         { "play",           MVLC_PLAY },
  1226.         { "stop",           MVLC_STOP },
  1227.         { "pause",          MVLC_PAUSE },
  1228.         { "next",           MVLC_NEXT },
  1229.         { "previous",       MVLC_PREVIOUS },
  1230.         { "seek",           MVLC_SEEK },
  1231.         { "keep",           MVLC_KEEP },
  1232.         { "fullscreen",     MVLC_FULLSCREEN },
  1233.         { "volume",         MVLC_VOLUME },
  1234.         /* playlist management */
  1235.         { "add",            MVLC_ADD },
  1236.         { "delete",         MVLC_DEL },
  1237.         { "empty",          MVLC_EMPTY },
  1238.         { "sort",           MVLC_SORT },
  1239.         { "move",           MVLC_MOVE },
  1240.         /* admin control */
  1241.         { "close",          MVLC_CLOSE },
  1242.         { "shutdown",       MVLC_SHUTDOWN },
  1243.         /* vlm control */
  1244.         { "vlm_new",        MVLC_VLM_NEW },
  1245.         { "vlm_setup",      MVLC_VLM_SETUP },
  1246.         { "vlm_del",        MVLC_VLM_DEL },
  1247.         { "vlm_play",       MVLC_VLM_PLAY },
  1248.         { "vlm_pause",      MVLC_VLM_PAUSE },
  1249.         { "vlm_stop",       MVLC_VLM_STOP },
  1250.         { "vlm_seek",       MVLC_VLM_SEEK },
  1251.         { "vlm_load",       MVLC_VLM_LOAD },
  1252.         { "vlm_save",       MVLC_VLM_SAVE },
  1253.     { "rpn",        MVLC_RPN },
  1254.     { "foreach",    MVLC_FOREACH },
  1255.     { "value",      MVLC_VALUE },
  1256.     { "if",         MVLC_IF },
  1257.     { "else",       MVLC_ELSE },
  1258.     { "end",        MVLC_END },
  1259.     { "get",         MVLC_GET },
  1260.     { "set",         MVLC_SET },
  1261.         { "int",            MVLC_INT },
  1262.         { "float",          MVLC_FLOAT },
  1263.         { "string",         MVLC_STRING },
  1264.     /* end */
  1265.     { NULL,         MVLC_UNKNOWN }
  1266. };
  1267. static int StrToMacroType( char *name )
  1268. {
  1269.     int i;
  1270.     if( !name || *name == '')
  1271.     {
  1272.         return MVLC_UNKNOWN;
  1273.     }
  1274.     for( i = 0; StrToMacroTypeTab[i].psz_name != NULL; i++ )
  1275.     {
  1276.         if( !strcmp( name, StrToMacroTypeTab[i].psz_name ) )
  1277.         {
  1278.             return StrToMacroTypeTab[i].i_type;
  1279.         }
  1280.     }
  1281.     return MVLC_UNKNOWN;
  1282. }
  1283. static void MacroDo( httpd_file_sys_t *p_args,
  1284.                      macro_t *m,
  1285.                      uint8_t *p_request, int i_request,
  1286.                      uint8_t **pp_data,  int *pi_data,
  1287.                      uint8_t **pp_dst )
  1288. {
  1289.     intf_thread_t  *p_intf = p_args->p_intf;
  1290.     intf_sys_t     *p_sys = p_args->p_intf->p_sys;
  1291.     char control[512];
  1292. #define ALLOC( l ) 
  1293.     {               
  1294.         int __i__ = *pp_dst - *pp_data; 
  1295.         *pi_data += (l);                  
  1296.         *pp_data = realloc( *pp_data, *pi_data );   
  1297.         *pp_dst = (*pp_data) + __i__;   
  1298.     }
  1299. #define PRINT( str ) 
  1300.     ALLOC( strlen( str ) + 1 ); 
  1301.     *pp_dst += sprintf( *pp_dst, str );
  1302. #define PRINTS( str, s ) 
  1303.     ALLOC( strlen( str ) + strlen( s ) + 1 ); 
  1304.     { 
  1305.         char * psz_cur = *pp_dst; 
  1306.         *pp_dst += sprintf( *pp_dst, str, s ); 
  1307.         while( psz_cur && *psz_cur ) 
  1308.         {  
  1309.             /* Prevent script injection */ 
  1310.             if( *psz_cur == '<' ) *psz_cur = '*'; 
  1311.             if( *psz_cur == '>' ) *psz_cur = '*'; 
  1312.             psz_cur++ ; 
  1313.         } 
  1314.     }
  1315.     switch( StrToMacroType( m->id ) )
  1316.     {
  1317.         case MVLC_CONTROL:
  1318.             if( i_request <= 0 )
  1319.             {
  1320.                 break;
  1321.             }
  1322.             uri_extract_value( p_request, "control", control, 512 );
  1323.             if( *m->param1 && !strstr( m->param1, control ) )
  1324.             {
  1325.                 msg_Warn( p_intf, "unauthorized control=%s", control );
  1326.                 break;
  1327.             }
  1328.             switch( StrToMacroType( control ) )
  1329.             {
  1330.                 case MVLC_PLAY:
  1331.                 {
  1332.                     int i_item;
  1333.                     char item[512];
  1334.                     uri_extract_value( p_request, "item", item, 512 );
  1335.                     i_item = atoi( item );
  1336.                     playlist_Command( p_sys->p_playlist, PLAYLIST_GOTO, i_item );
  1337.                     msg_Dbg( p_intf, "requested playlist item: %i", i_item );
  1338.                     break;
  1339.                 }
  1340.                 case MVLC_STOP:
  1341.                     playlist_Command( p_sys->p_playlist, PLAYLIST_STOP, 0 );
  1342.                     msg_Dbg( p_intf, "requested playlist stop" );
  1343.                     break;
  1344.                 case MVLC_PAUSE:
  1345.                     playlist_Command( p_sys->p_playlist, PLAYLIST_PAUSE, 0 );
  1346.                     msg_Dbg( p_intf, "requested playlist pause" );
  1347.                     break;
  1348.                 case MVLC_NEXT:
  1349.                     playlist_Command( p_sys->p_playlist, PLAYLIST_GOTO,
  1350.                                       p_sys->p_playlist->i_index + 1 );
  1351.                     msg_Dbg( p_intf, "requested playlist next" );
  1352.                     break;
  1353.                 case MVLC_PREVIOUS:
  1354.                     playlist_Command( p_sys->p_playlist, PLAYLIST_GOTO,
  1355.                                       p_sys->p_playlist->i_index - 1 );
  1356.                     msg_Dbg( p_intf, "requested playlist next" );
  1357.                     break;
  1358.                 case MVLC_FULLSCREEN:
  1359.                 {
  1360.                     if( p_sys->p_input )
  1361.                     {
  1362.                         vout_thread_t *p_vout;
  1363.                         p_vout = vlc_object_find( p_sys->p_input,
  1364.                                                   VLC_OBJECT_VOUT, FIND_CHILD );
  1365.                         if( p_vout )
  1366.                         {
  1367.                             p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;
  1368.                             vlc_object_release( p_vout );
  1369.                             msg_Dbg( p_intf, "requested fullscreen toggle" );
  1370.                         }
  1371.                     }
  1372.                 }
  1373.                 break;
  1374.                 case MVLC_SEEK:
  1375.                 {
  1376.                     vlc_value_t val;
  1377.                     char value[30];
  1378.                     char * p_value;
  1379.                     int i_stock = 0;
  1380.                     uint64_t i_length;
  1381.                     int i_value = 0;
  1382.                     int i_relative = 0;
  1383. #define POSITION_ABSOLUTE 12
  1384. #define POSITION_REL_FOR 13
  1385. #define POSITION_REL_BACK 11
  1386. #define TIME_ABSOLUTE 0
  1387. #define TIME_REL_FOR 1
  1388. #define TIME_REL_BACK -1
  1389.                     if( p_sys->p_input )
  1390.                     {
  1391.                         uri_extract_value( p_request, "seek_value", value, 20 );
  1392.                         uri_decode_url_encoded( value );
  1393.                         p_value = value;
  1394.                         var_Get( p_sys->p_input, "length", &val);
  1395.                         i_length = val.i_time;
  1396.                         while( p_value[0] != '' )
  1397.                         {
  1398.                             switch(p_value[0])
  1399.                             {
  1400.                                 case '+':
  1401.                                 {
  1402.                                     i_relative = TIME_REL_FOR;
  1403.                                     p_value++;
  1404.                                     break;
  1405.                                 }
  1406.                                 case '-':
  1407.                                 {
  1408.                                     i_relative = TIME_REL_BACK;
  1409.                                     p_value++;
  1410.                                     break;
  1411.                                 }
  1412.                                 case '0': case '1': case '2': case '3': case '4':
  1413.                                 case '5': case '6': case '7': case '8': case '9':
  1414.                                 {
  1415.                                     i_stock = strtol( p_value , &p_value , 10 );
  1416.                                     break;
  1417.                                 }
  1418.                                 case '%': /* for percentage ie position */
  1419.                                 {
  1420.                                     i_relative += POSITION_ABSOLUTE;
  1421.                                     i_value = i_stock;
  1422.                                     i_stock = 0;
  1423.                                     p_value[0] = '';
  1424.                                     break;
  1425.                                 }
  1426.                                 case ':':
  1427.                                 {
  1428.                                     i_value = 60 * (i_value + i_stock) ;
  1429.                                     i_stock = 0;
  1430.                                     p_value++;
  1431.                                     break;
  1432.                                 }
  1433.                                 case 'h': case 'H': /* hours */
  1434.                                 {
  1435.                                     i_value += 3600 * i_stock;
  1436.                                     i_stock = 0;
  1437.                                     /* other characters which are not numbers are not important */
  1438.                                     while( ((p_value[0] < '0') || (p_value[0] > '9')) && (p_value[0] != '') )
  1439.                                     {
  1440.                                         p_value++;
  1441.                                     }
  1442.                                     break;
  1443.                                 }
  1444.                                 case 'm': case 'M': case ''': /* minutes */
  1445.                                 {
  1446.                                     i_value += 60 * i_stock;
  1447.                                     i_stock = 0;
  1448.                                     p_value++;
  1449.                                     while( ((p_value[0] < '0') || (p_value[0] > '9')) && (p_value[0] != '') )
  1450.                                     {
  1451.                                         p_value++;
  1452.                                     }
  1453.                                     break;
  1454.                                 }
  1455.                                 case 's': case 'S': case '"':  /* seconds */
  1456.                                 {
  1457.                                     i_value += i_stock;
  1458.                                     i_stock = 0;
  1459.                                     while( ((p_value[0] < '0') || (p_value[0] > '9')) && (p_value[0] != '') )
  1460.                                     {
  1461.                                         p_value++;
  1462.                                     }
  1463.                                     break;
  1464.                                 }
  1465.                                 default:
  1466.                                 {
  1467.                                     p_value++;
  1468.                                     break;
  1469.                                 }
  1470.                             }
  1471.                         }
  1472.                         /* if there is no known symbol, I consider it as seconds. Otherwise, i_stock = 0 */
  1473.                         i_value += i_stock;
  1474.                         switch(i_relative)
  1475.                         {
  1476.                             case TIME_ABSOLUTE:
  1477.                             {
  1478.                                 if( (uint64_t)( i_value ) * 1000000 <= i_length )
  1479.                                     val.i_time = (uint64_t)( i_value ) * 1000000;
  1480.                                 else
  1481.                                     val.i_time = i_length;
  1482.                                 var_Set( p_sys->p_input, "time", val );
  1483.                                 msg_Dbg( p_intf, "requested seek position: %dsec", i_value );
  1484.                                 break;
  1485.                             }
  1486.                             case TIME_REL_FOR:
  1487.                             {
  1488.                                 var_Get( p_sys->p_input, "time", &val );
  1489.                                 if( (uint64_t)( i_value ) * 1000000 + val.i_time <= i_length )
  1490.                                 {
  1491.                                     val.i_time = ((uint64_t)( i_value ) * 1000000) + val.i_time;
  1492.                                 } else
  1493.                                 {
  1494.                                     val.i_time = i_length;
  1495.                                 }
  1496.                                 var_Set( p_sys->p_input, "time", val );
  1497.                                 msg_Dbg( p_intf, "requested seek position forward: %dsec", i_value );
  1498.                                 break;
  1499.                             }
  1500.                             case TIME_REL_BACK:
  1501.                             {
  1502.                                 var_Get( p_sys->p_input, "time", &val );
  1503.                                 if( (int64_t)( i_value ) * 1000000 > val.i_time )
  1504.                                 {
  1505.                                     val.i_time = 0;
  1506.                                 } else
  1507.                                 {
  1508.                                     val.i_time = val.i_time - ((uint64_t)( i_value ) * 1000000);
  1509.                                 }
  1510.                                 var_Set( p_sys->p_input, "time", val );
  1511.                                 msg_Dbg( p_intf, "requested seek position backward: %dsec", i_value );
  1512.                                 break;
  1513.                             }
  1514.                             case POSITION_ABSOLUTE:
  1515.                             {
  1516.                                 val.f_float = __MIN( __MAX( ((float) i_value ) / 100.0 , 0.0 ) , 100.0 );
  1517.                                 var_Set( p_sys->p_input, "position", val );
  1518.                                 msg_Dbg( p_intf, "requested seek percent: %d", i_value );
  1519.                                 break;
  1520.                             }
  1521.                             case POSITION_REL_FOR:
  1522.                             {
  1523.                                 var_Get( p_sys->p_input, "position", &val );
  1524.                                 val.f_float += __MIN( __MAX( ((float) i_value ) / 100.0 , 0.0 ) , 100.0 );
  1525.                                 var_Set( p_sys->p_input, "position", val );
  1526.                                 msg_Dbg( p_intf, "requested seek percent forward: %d", i_value );
  1527.                                 break;
  1528.                             }
  1529.                             case POSITION_REL_BACK:
  1530.                             {
  1531.                                 var_Get( p_sys->p_input, "position", &val );
  1532.                                 val.f_float -= __MIN( __MAX( ((float) i_value ) / 100.0 , 0.0 ) , 100.0 );
  1533.                                 var_Set( p_sys->p_input, "position", val );
  1534.                                 msg_Dbg( p_intf, "requested seek percent backward: %d", i_value );
  1535.                                 break;
  1536.                             }
  1537.                             default:
  1538.                             {
  1539.                                 msg_Dbg( p_intf, "requested seek: what the f*** is going on here ?" );
  1540.                                 break;
  1541.                             }
  1542.                         }
  1543.                     }
  1544. #undef POSITION_ABSOLUTE
  1545. #undef POSITION_REL_FOR
  1546. #undef POSITION_REL_BACK
  1547. #undef TIME_ABSOLUTE
  1548. #undef TIME_REL_FOR
  1549. #undef TIME_REL_BACK
  1550.                     break;
  1551.                 }
  1552.                 case MVLC_VOLUME:
  1553.                 {
  1554.                     char vol[8];
  1555.                     audio_volume_t i_volume;
  1556.                     int i_value;
  1557.                     uri_extract_value( p_request, "value", vol, 8 );
  1558.                     aout_VolumeGet( p_intf, &i_volume );
  1559.                     uri_decode_url_encoded( vol );
  1560.                     if( vol[0] == '+' )
  1561.                     {
  1562.                         i_value = atoi( vol + 1 );
  1563.                         if( (i_volume + i_value) > AOUT_VOLUME_MAX )
  1564.                         {
  1565.                             aout_VolumeSet( p_intf , AOUT_VOLUME_MAX );
  1566.                             msg_Dbg( p_intf, "requested volume set: max" );
  1567.                         } else
  1568.                         {
  1569.                             aout_VolumeSet( p_intf , (i_volume + i_value) );
  1570.                             msg_Dbg( p_intf, "requested volume set: +%i", (i_volume + i_value) );
  1571.                         }
  1572.                     } else
  1573.                     if( vol[0] == '-' )
  1574.                     {
  1575.                         i_value = atoi( vol + 1 );
  1576.                         if( (i_volume - i_value) < AOUT_VOLUME_MIN )
  1577.                         {
  1578.                             aout_VolumeSet( p_intf , AOUT_VOLUME_MIN );
  1579.                             msg_Dbg( p_intf, "requested volume set: min" );
  1580.                         } else
  1581.                         {
  1582.                             aout_VolumeSet( p_intf , (i_volume - i_value) );
  1583.                             msg_Dbg( p_intf, "requested volume set: -%i", (i_volume - i_value) );
  1584.                         }
  1585.                     } else
  1586.                     if( strstr(vol, "%") != NULL )
  1587.                     {
  1588.                         i_value = atoi( vol );
  1589.                         if( (i_value <= 100) && (i_value>=0) ){
  1590.                             aout_VolumeSet( p_intf, (i_value * (AOUT_VOLUME_MAX - AOUT_VOLUME_MIN))/100+AOUT_VOLUME_MIN);
  1591.                             msg_Dbg( p_intf, "requested volume set: %i%%", atoi( vol ));
  1592.                         }
  1593.                     } else
  1594.                     {
  1595.                         i_value = atoi( vol );
  1596.                         if( ( i_value <= AOUT_VOLUME_MAX ) && ( i_value >= AOUT_VOLUME_MIN ) )
  1597.                         {
  1598.                             aout_VolumeSet( p_intf , atoi( vol ) );
  1599.                             msg_Dbg( p_intf, "requested volume set: %i", atoi( vol ) );
  1600.                         }
  1601.                     }
  1602.                     break;
  1603.                 }
  1604.                 /* playlist management */
  1605.                 case MVLC_ADD:
  1606.                 {
  1607.                     char mrl[512];
  1608.                     playlist_item_t * p_item;
  1609.                     uri_extract_value( p_request, "mrl", mrl, 512 );
  1610.                     uri_decode_url_encoded( mrl );
  1611.                     p_item = parse_MRL( p_intf, mrl );
  1612.                     if( !p_item || !p_item->input.psz_uri ||
  1613.                         !*p_item->input.psz_uri )
  1614.                     {
  1615.                         msg_Dbg( p_intf, "invalid requested mrl: %s", mrl );
  1616.                     } else
  1617.                     {
  1618.                         playlist_AddItem( p_sys->p_playlist , p_item ,
  1619.                                           PLAYLIST_APPEND, PLAYLIST_END );
  1620.                         msg_Dbg( p_intf, "requested mrl add: %s", mrl );
  1621.                     }
  1622.                     break;
  1623.                 }
  1624.                 case MVLC_DEL:
  1625.                 {
  1626.                     int i_item, *p_items = NULL, i_nb_items = 0;
  1627.                     char item[512], *p_parser = p_request;
  1628.                     /* Get the list of items to delete */
  1629.                     while( (p_parser =
  1630.                             uri_extract_value( p_parser, "item", item, 512 )) )
  1631.                     {
  1632.                         if( !*item ) continue;
  1633.                         i_item = atoi( item );
  1634.                         p_items = realloc( p_items, (i_nb_items + 1) *
  1635.                                            sizeof(int) );
  1636.                         p_items[i_nb_items] = i_item;
  1637.                         i_nb_items++;
  1638.                     }
  1639.                     /* The items need to be deleted from in reversed order */
  1640.                     if( i_nb_items )
  1641.                     {
  1642.                         int i;
  1643.                         for( i = 0; i < i_nb_items; i++ )
  1644.                         {
  1645.                             int j, i_index = 0;
  1646.                             for( j = 0; j < i_nb_items; j++ )
  1647.                             {
  1648.                                 if( p_items[j] > p_items[i_index] )
  1649.                                     i_index = j;
  1650.                             }
  1651.                             playlist_Delete( p_sys->p_playlist,
  1652.                                              p_items[i_index] );
  1653.                             msg_Dbg( p_intf, "requested playlist delete: %d",
  1654.                                      p_items[i_index] );
  1655.                             p_items[i_index] = -1;
  1656.                         }
  1657.                     }
  1658.                     if( p_items ) free( p_items );
  1659.                     break;
  1660.                 }
  1661.                 case MVLC_KEEP:
  1662.                 {
  1663.                     int i_item, *p_items = NULL, i_nb_items = 0;
  1664.                     char item[512], *p_parser = p_request;
  1665.                     int i,j;
  1666.                     /* Get the list of items to keep */
  1667.                     while( (p_parser =
  1668.                             uri_extract_value( p_parser, "item", item, 512 )) )
  1669.                     {
  1670.                         if( !*item ) continue;
  1671.                         i_item = atoi( item );
  1672.                         p_items = realloc( p_items, (i_nb_items + 1) *
  1673.                                            sizeof(int) );
  1674.                         p_items[i_nb_items] = i_item;
  1675.                         i_nb_items++;
  1676.                     }
  1677.                     /* The items need to be deleted from in reversed order */
  1678.                     for( i = p_sys->p_playlist->i_size - 1; i >= 0 ; i-- )
  1679.                     {
  1680.                         /* Check if the item is in the keep list */
  1681.                         for( j = 0 ; j < i_nb_items ; j++ )
  1682.                         {
  1683.                             if( p_items[j] == i ) break;
  1684.                         }
  1685.                         if( j == i_nb_items )
  1686.                         {
  1687.                             playlist_Delete( p_sys->p_playlist, i );
  1688.                             msg_Dbg( p_intf, "requested playlist delete: %d",
  1689.                                      i );
  1690.                         }
  1691.                     }
  1692.                     if( p_items ) free( p_items );
  1693.                     break;
  1694.                 }
  1695.                 case MVLC_EMPTY:
  1696.                 {
  1697.                     while( p_sys->p_playlist->i_size > 0 )
  1698.                     {
  1699.                         playlist_Delete( p_sys->p_playlist, 0 );
  1700.                     }
  1701.                     msg_Dbg( p_intf, "requested playlist empty" );
  1702.                     break;
  1703.                 }
  1704.                 case MVLC_SORT:
  1705.                 {
  1706.                     char type[12];
  1707.                     char order[2];
  1708.                     int i_order;
  1709.                     uri_extract_value( p_request, "type", type, 12 );
  1710.                     uri_extract_value( p_request, "order", order, 2 );
  1711.                     if( order[0] == '0' ) i_order = ORDER_NORMAL;
  1712.                     else i_order = ORDER_REVERSE;
  1713.                     if( !strcmp( type , "title" ) )
  1714.                     {
  1715.                         playlist_SortTitle( p_sys->p_playlist , i_order );
  1716.                         msg_Dbg( p_intf, "requested playlist sort by title (%d)" , i_order );
  1717.                     } else if( !strcmp( type , "group" ) )
  1718.                     {
  1719.                         playlist_SortGroup( p_sys->p_playlist , i_order );
  1720.                         msg_Dbg( p_intf, "requested playlist sort by group (%d)" , i_order );
  1721.                     } else if( !strcmp( type , "author" ) )
  1722.                     {
  1723.                         playlist_SortAuthor( p_sys->p_playlist , i_order );
  1724.                         msg_Dbg( p_intf, "requested playlist sort by author (%d)" , i_order );
  1725.                     } else if( !strcmp( type , "shuffle" ) )
  1726.                     {
  1727.                         playlist_Sort( p_sys->p_playlist , SORT_RANDOM, ORDER_NORMAL );
  1728.                         msg_Dbg( p_intf, "requested playlist shuffle");
  1729.                     } 
  1730.                     break;
  1731.                 }
  1732.                 case MVLC_MOVE:
  1733.                 {
  1734.                     char psz_pos[6];
  1735.                     char psz_newpos[6];
  1736.                     int i_pos;
  1737.                     int i_newpos;
  1738.                     uri_extract_value( p_request, "psz_pos", psz_pos, 6 );
  1739.                     uri_extract_value( p_request, "psz_newpos", psz_newpos, 6 );
  1740.                     i_pos = atoi( psz_pos );
  1741.                     i_newpos = atoi( psz_newpos );
  1742.                     if ( i_pos < i_newpos )
  1743.                     {
  1744.                         playlist_Move( p_sys->p_playlist, i_pos, i_newpos + 1 );
  1745.                     } else {
  1746.                         playlist_Move( p_sys->p_playlist, i_pos, i_newpos );
  1747.                     }
  1748.                     msg_Dbg( p_intf, "requested move playlist item %d to %d", i_pos, i_newpos);
  1749.                     break;
  1750.                 }
  1751.                 /* admin function */
  1752.                 case MVLC_CLOSE:
  1753.                 {
  1754.                     char id[512];
  1755.                     uri_extract_value( p_request, "id", id, 512 );
  1756.                     msg_Dbg( p_intf, "requested close id=%s", id );
  1757. #if 0
  1758.                     if( p_sys->p_httpd->pf_control( p_sys->p_httpd, HTTPD_SET_CLOSE, id, NULL ) )
  1759.                     {
  1760.                         msg_Warn( p_intf, "close failed for id=%s", id );
  1761.                     }
  1762. #endif
  1763.                     break;
  1764.                 }
  1765.                 case MVLC_SHUTDOWN:
  1766.                 {
  1767.                     msg_Dbg( p_intf, "requested shutdown" );
  1768.                     p_intf->p_vlc->b_die = VLC_TRUE;
  1769.                     break;
  1770.                 }
  1771.                 /* vlm */
  1772.                 case MVLC_VLM_NEW:
  1773.                 case MVLC_VLM_SETUP:
  1774.                 {
  1775.                     static const char *vlm_properties[11] =
  1776.                     {
  1777.                         /* no args */
  1778.                         "enabled", "disabled", "loop", "unloop",
  1779.                         /* args required */
  1780.                         "input", "output", "option", "date", "period", "repeat", "append",
  1781.                     };
  1782.                     vlm_message_t *vlm_answer;
  1783.                     char name[512];
  1784.                     char *psz = malloc( strlen( p_request ) + 1000 );
  1785.                     char *p = psz;
  1786.                     char *vlm_error;
  1787.                     int i;
  1788.                     if( p_intf->p_sys->p_vlm == NULL )
  1789.                         p_intf->p_sys->p_vlm = vlm_New( p_intf );
  1790.                     if( p_intf->p_sys->p_vlm == NULL ) break;
  1791.                     uri_extract_value( p_request, "name", name, 512 );
  1792.                     if( StrToMacroType( control ) == MVLC_VLM_NEW )
  1793.                     {
  1794.                         char type[20];
  1795.                         uri_extract_value( p_request, "type", type, 20 );
  1796.                         p += sprintf( psz, "new %s %s", name, type );
  1797.                     }
  1798.                     else
  1799.                     {
  1800.                         p += sprintf( psz, "setup %s", name );
  1801.                     }
  1802.                     /* Parse the request */
  1803.                     for( i = 0; i < 11; i++ )
  1804.                     {
  1805.                         char val[512];
  1806.                         uri_extract_value( p_request, vlm_properties[i], val, 512 );
  1807.                         uri_decode_url_encoded( val );
  1808.                         if( strlen( val ) > 0 && i >= 4 )
  1809.                         {
  1810.                             p += sprintf( p, " %s %s", vlm_properties[i], val );
  1811.                         }
  1812.                         else if( uri_test_param( p_request, vlm_properties[i] ) && i < 4 )
  1813.                         {
  1814.                             p += sprintf( p, " %s", vlm_properties[i] );
  1815.                         }
  1816.                     }
  1817.                     fprintf( stderr, "vlm_ExecuteCommand: %sn", psz );
  1818.                     vlm_ExecuteCommand( p_intf->p_sys->p_vlm, psz, &vlm_answer );
  1819.                     if( vlm_answer->psz_value == NULL ) /* there is no error */
  1820.                     {
  1821.                         vlm_error = strdup( "" );
  1822.                     }
  1823.                     else
  1824.                     {
  1825.                         vlm_error = malloc( strlen(vlm_answer->psz_name) +
  1826.                                             strlen(vlm_answer->psz_value) +
  1827.                                             strlen( " : ") + 1 );
  1828.                         sprintf( vlm_error , "%s : %s" , vlm_answer->psz_name,
  1829.                                                          vlm_answer->psz_value );
  1830.                     }
  1831.                     mvar_AppendNewVar( p_args->vars, "vlm_error", vlm_error );
  1832.                     vlm_MessageDelete( vlm_answer );
  1833.                     free( vlm_error );
  1834.                     free( psz );
  1835.                     break;
  1836.                 }
  1837.                 case MVLC_VLM_DEL:
  1838.                 {
  1839.                     vlm_message_t *vlm_answer;
  1840.                     char name[512];
  1841.                     char psz[512+10];
  1842.                     if( p_intf->p_sys->p_vlm == NULL )
  1843.                         p_intf->p_sys->p_vlm = vlm_New( p_intf );
  1844.                     if( p_intf->p_sys->p_vlm == NULL ) break;
  1845.                     uri_extract_value( p_request, "name", name, 512 );
  1846.                     sprintf( psz, "del %s", name );
  1847.                     vlm_ExecuteCommand( p_intf->p_sys->p_vlm, psz, &vlm_answer );
  1848.                     /* FIXME do a vlm_answer -> var stack conversion */
  1849.                     vlm_MessageDelete( vlm_answer );
  1850.                     break;
  1851.                 }
  1852.                 case MVLC_VLM_PLAY:
  1853.                 case MVLC_VLM_PAUSE:
  1854.                 case MVLC_VLM_STOP:
  1855.                 case MVLC_VLM_SEEK:
  1856.                 {
  1857.                     vlm_message_t *vlm_answer;
  1858.                     char name[512];
  1859.                     char psz[512+10];
  1860.                     if( p_intf->p_sys->p_vlm == NULL )
  1861.                         p_intf->p_sys->p_vlm = vlm_New( p_intf );
  1862.                     if( p_intf->p_sys->p_vlm == NULL ) break;
  1863.                     uri_extract_value( p_request, "name", name, 512 );
  1864.                     if( StrToMacroType( control ) == MVLC_VLM_PLAY )
  1865.                         sprintf( psz, "control %s play", name );
  1866.                     else if( StrToMacroType( control ) == MVLC_VLM_PAUSE )
  1867.                         sprintf( psz, "control %s pause", name );
  1868.                     else if( StrToMacroType( control ) == MVLC_VLM_STOP )
  1869.                         sprintf( psz, "control %s stop", name );
  1870.                     else if( StrToMacroType( control ) == MVLC_VLM_SEEK )
  1871.                     {
  1872.                         char percent[20];
  1873.                         uri_extract_value( p_request, "percent", percent, 512 );
  1874.                         sprintf( psz, "control %s seek %s", name, percent );
  1875.                     }
  1876.                     vlm_ExecuteCommand( p_intf->p_sys->p_vlm, psz, &vlm_answer );
  1877.                     /* FIXME do a vlm_answer -> var stack conversion */
  1878.                     vlm_MessageDelete( vlm_answer );
  1879.                     break;
  1880.                 }
  1881.                 case MVLC_VLM_LOAD:
  1882.                 case MVLC_VLM_SAVE:
  1883.                 {
  1884.                     vlm_message_t *vlm_answer;
  1885.                     char file[512];
  1886.                     char psz[512];
  1887.                     if( p_intf->p_sys->p_vlm == NULL )
  1888.                         p_intf->p_sys->p_vlm = vlm_New( p_intf );
  1889.                     if( p_intf->p_sys->p_vlm == NULL ) break;
  1890.                     uri_extract_value( p_request, "file", file, 512 );
  1891.                     uri_decode_url_encoded( file );
  1892.                     if( StrToMacroType( control ) == MVLC_VLM_LOAD )
  1893.                         sprintf( psz, "load %s", file );
  1894.                     else
  1895.                         sprintf( psz, "save %s", file );
  1896.                     vlm_ExecuteCommand( p_intf->p_sys->p_vlm, psz, &vlm_answer );
  1897.                     /* FIXME do a vlm_answer -> var stack conversion */
  1898.                     vlm_MessageDelete( vlm_answer );
  1899.                     break;
  1900.                 }
  1901.                 default:
  1902.                     if( *control )
  1903.                     {
  1904.                         PRINTS( "<!-- control param(%s) unsuported -->", control );
  1905.                     }
  1906.                     break;
  1907.             }
  1908.             break;
  1909.         case MVLC_SET:
  1910.         {
  1911.             char    value[512];
  1912.             int     i;
  1913.             float   f;
  1914.             if( i_request <= 0 ||
  1915.                 *m->param1  == '' ||
  1916.                 strstr( p_request, m->param1 ) == NULL )
  1917.             {
  1918.                 break;
  1919.             }
  1920.             uri_extract_value( p_request, m->param1,  value, 512 );
  1921.             uri_decode_url_encoded( value );
  1922.             switch( StrToMacroType( m->param2 ) )
  1923.             {
  1924.                 case MVLC_INT:
  1925.                     i = atoi( value );
  1926.                     config_PutInt( p_intf, m->param1, i );
  1927.                     break;
  1928.                 case MVLC_FLOAT:
  1929.                     f = atof( value );
  1930.                     config_PutFloat( p_intf, m->param1, f );
  1931.                     break;
  1932.                 case MVLC_STRING:
  1933.                     config_PutPsz( p_intf, m->param1, value );
  1934.                     break;
  1935.                 default:
  1936.                     PRINTS( "<!-- invalid type(%s) in set -->", m->param2 )
  1937.             }
  1938.             break;
  1939.         }
  1940.         case MVLC_GET:
  1941.         {
  1942.             char    value[512];
  1943.             int     i;
  1944.             float   f;
  1945.             char    *psz;
  1946.             if( *m->param1  == '' )
  1947.             {
  1948.                 break;
  1949.             }
  1950.             switch( StrToMacroType( m->param2 ) )
  1951.             {
  1952.                 case MVLC_INT:
  1953.                     i = config_GetInt( p_intf, m->param1 );
  1954.                     sprintf( value, "%i", i );
  1955.                     break;
  1956.                 case MVLC_FLOAT:
  1957.                     f = config_GetFloat( p_intf, m->param1 );
  1958.                     sprintf( value, "%f", f );
  1959.                     break;
  1960.                 case MVLC_STRING:
  1961.                     psz = config_GetPsz( p_intf, m->param1 );
  1962.                     sprintf( value, "%s", psz ? psz : "" );
  1963.                     if( psz ) free( psz );
  1964.                     break;
  1965.                 default:
  1966.                     sprintf( value, "invalid type(%s) in set", m->param2 );
  1967.                     break;
  1968.             }
  1969.             msg_Dbg( p_intf, "get name=%s value=%s type=%s", m->param1, value, m->param2 );
  1970.             PRINTS( "%s", value );
  1971.             break;
  1972.         }
  1973.         case MVLC_VALUE:
  1974.         {
  1975.             char *s, *v;
  1976.             if( m->param1 )
  1977.             {
  1978.                 EvaluateRPN( p_args->vars, &p_args->stack, m->param1 );
  1979.                 s = SSPop( &p_args->stack );
  1980.                 v = mvar_GetValue( p_args->vars, s );
  1981.             }
  1982.             else
  1983.             {
  1984.                 v = s = SSPop( &p_args->stack );
  1985.             }
  1986.             PRINTS( "%s", v );
  1987.             free( s );
  1988.             break;
  1989.         }
  1990.         case MVLC_RPN:
  1991.             EvaluateRPN( p_args->vars, &p_args->stack, m->param1 );
  1992.             break;
  1993.         case MVLC_UNKNOWN:
  1994.         default:
  1995.             PRINTS( "<!-- invalid macro id=`%s' -->", m->id );
  1996.             msg_Dbg( p_intf, "invalid macro id=`%s'", m->id );
  1997.             break;
  1998.     }
  1999. #undef PRINTS
  2000. #undef PRINT
  2001. #undef ALLOC
  2002. }
  2003. static uint8_t *MacroSearch( uint8_t *src, uint8_t *end, int i_mvlc, vlc_bool_t b_after )
  2004. {
  2005.     int     i_id;
  2006.     int     i_level = 0;
  2007.     while( src < end )
  2008.     {
  2009.         if( src + 4 < end  && !strncmp( src, "<vlc", 4 ) )
  2010.         {
  2011.             int i_skip;
  2012.             macro_t m;
  2013.             i_skip = MacroParse( &m, src );
  2014.             i_id = StrToMacroType( m.id );
  2015.             switch( i_id )
  2016.             {
  2017.                 case MVLC_IF:
  2018.                 case MVLC_FOREACH:
  2019.                     i_level++;
  2020.                     break;
  2021.                 case MVLC_END:
  2022.                     i_level--;
  2023.                     break;
  2024.                 default:
  2025.                     break;
  2026.             }
  2027.             MacroClean( &m );
  2028.             if( ( i_mvlc == MVLC_END && i_level == -1 ) ||
  2029.                 ( i_mvlc != MVLC_END && i_level == 0 && i_mvlc == i_id ) )
  2030.             {
  2031.                 return src + ( b_after ? i_skip : 0 );
  2032.             }
  2033.             else if( i_level < 0 )
  2034.             {
  2035.                 return NULL;
  2036.             }
  2037.             src += i_skip;
  2038.         }
  2039.         else
  2040.         {
  2041.             src++;
  2042.         }
  2043.     }
  2044.     return NULL;
  2045. }
  2046. static void Execute( httpd_file_sys_t *p_args,
  2047.                      uint8_t *p_request, int i_request,
  2048.                      uint8_t **pp_data, int *pi_data,
  2049.                      uint8_t **pp_dst,
  2050.                      uint8_t *_src, uint8_t *_end )
  2051. {
  2052.     intf_thread_t  *p_intf = p_args->p_intf;
  2053.     uint8_t *src, *dup, *end;
  2054.     uint8_t *dst = *pp_dst;
  2055.     src = dup = malloc( _end - _src + 1 );
  2056.     end = src +( _end - _src );
  2057.     memcpy( src, _src, _end - _src );
  2058.     *end = '';
  2059.     /* we parse searching <vlc */
  2060.     while( src < end )
  2061.     {
  2062.         uint8_t *p;
  2063.         int i_copy;
  2064.         p = strstr( src, "<vlc" );
  2065.         if( p < end && p == src )
  2066.         {
  2067.             macro_t m;
  2068.             src += MacroParse( &m, src );
  2069.             //msg_Dbg( p_intf, "macro_id=%s", m.id );
  2070.             switch( StrToMacroType( m.id ) )
  2071.             {
  2072.                 case MVLC_IF:
  2073.                 {
  2074.                     vlc_bool_t i_test;
  2075.                     uint8_t    *endif;
  2076.                     EvaluateRPN( p_args->vars, &p_args->stack, m.param1 );
  2077.                     if( SSPopN( &p_args->stack, p_args->vars ) )
  2078.                     {
  2079.                         i_test = 1;
  2080.                     }
  2081.                     else
  2082.                     {
  2083.                         i_test = 0;
  2084.                     }
  2085.                     endif = MacroSearch( src, end, MVLC_END, VLC_TRUE );
  2086.                     if( i_test == 0 )
  2087.                     {
  2088.                         uint8_t *start = MacroSearch( src, endif, MVLC_ELSE, VLC_TRUE );
  2089.                         if( start )
  2090.                         {
  2091.                             uint8_t *stop  = MacroSearch( start, endif, MVLC_END, VLC_FALSE );
  2092.                             if( stop )
  2093.                             {
  2094.                                 Execute( p_args, p_request, i_request, pp_data, pi_data, &dst, start, stop );
  2095.                             }
  2096.                         }
  2097.                     }
  2098.                     else if( i_test == 1 )
  2099.                     {
  2100.                         uint8_t *stop;
  2101.                         if( ( stop = MacroSearch( src, endif, MVLC_ELSE, VLC_FALSE ) ) == NULL )
  2102.                         {
  2103.                             stop = MacroSearch( src, endif, MVLC_END, VLC_FALSE );
  2104.                         }
  2105.                         if( stop )
  2106.                         {
  2107.                             Execute( p_args, p_request, i_request, pp_data, pi_data, &dst, src, stop );
  2108.                         }
  2109.                     }
  2110.                     src = endif;
  2111.                     break;
  2112.                 }
  2113.                 case MVLC_FOREACH:
  2114.                 {
  2115.                     uint8_t *endfor = MacroSearch( src, end, MVLC_END, VLC_TRUE );
  2116.                     uint8_t *start = src;
  2117.                     uint8_t *stop = MacroSearch( src, end, MVLC_END, VLC_FALSE );
  2118.                     if( stop )
  2119.                     {
  2120.                         mvar_t *index;
  2121.                         int    i_idx;
  2122.                         mvar_t *v;
  2123.                         if( !strcmp( m.param2, "integer" ) )
  2124.                         {
  2125.                             char *arg = SSPop( &p_args->stack );
  2126.                             index = mvar_IntegerSetNew( m.param1, arg );
  2127.                             free( arg );
  2128.                         }
  2129.                         else if( !strcmp( m.param2, "directory" ) )
  2130.                         {
  2131.                             char *arg = SSPop( &p_args->stack );
  2132.                             index = mvar_FileSetNew( m.param1, arg );
  2133.                             free( arg );
  2134.                         }
  2135.                         else if( !strcmp( m.param2, "playlist" ) )
  2136.                         {
  2137.                             index = mvar_PlaylistSetNew( m.param1, p_intf->p_sys->p_playlist );
  2138.                         }
  2139.                         else if( !strcmp( m.param2, "information" ) )
  2140.                         {
  2141.                             index = mvar_InfoSetNew( m.param1, p_intf->p_sys->p_input );
  2142.                         }
  2143.                         else if( !strcmp( m.param2, "vlm" ) )
  2144.                         {
  2145.                             if( p_intf->p_sys->p_vlm == NULL )
  2146.                                 p_intf->p_sys->p_vlm = vlm_New( p_intf );
  2147.                             index = mvar_VlmSetNew( m.param1, p_intf->p_sys->p_vlm );
  2148.                         }
  2149. #if 0
  2150.                         else if( !strcmp( m.param2, "hosts" ) )
  2151.                         {
  2152.                             index = mvar_HttpdInfoSetNew( m.param1, p_intf->p_sys->p_httpd, HTTPD_GET_HOSTS );
  2153.                         }
  2154.                         else if( !strcmp( m.param2, "urls" ) )
  2155.                         {
  2156.                             index = mvar_HttpdInfoSetNew( m.param1, p_intf->p_sys->p_httpd, HTTPD_GET_URLS );
  2157.                         }
  2158.                         else if( !strcmp( m.param2, "connections" ) )
  2159.                         {
  2160.                             index = mvar_HttpdInfoSetNew(m.param1, p_intf->p_sys->p_httpd, HTTPD_GET_CONNECTIONS);
  2161.                         }
  2162. #endif
  2163.                         else if( ( v = mvar_GetVar( p_args->vars, m.param2 ) ) )
  2164.                         {
  2165.                             index = mvar_Duplicate( v );
  2166.                         }
  2167.                         else
  2168.                         {
  2169.                             msg_Dbg( p_intf, "invalid index constructor (%s)", m.param2 );
  2170.                             src = endfor;
  2171.                             break;
  2172.                         }
  2173.                         for( i_idx = 0; i_idx < index->i_field; i_idx++ )
  2174.                         {
  2175.                             mvar_t *f = mvar_Duplicate( index->field[i_idx] );
  2176.                             //msg_Dbg( p_intf, "foreach field[%d] name=%s value=%s", i_idx, f->name, f->value );
  2177.                             free( f->name );
  2178.                             f->name = strdup( m.param1 );
  2179.                             mvar_PushVar( p_args->vars, f );
  2180.                             Execute( p_args, p_request, i_request, pp_data, pi_data, &dst, start, stop );
  2181.                             mvar_RemoveVar( p_args->vars, f );
  2182.                             mvar_Delete( f );
  2183.                         }
  2184.                         mvar_Delete( index );
  2185.                         src = endfor;
  2186.                     }
  2187.                     break;
  2188.                 }
  2189.                 default:
  2190.                     MacroDo( p_args, &m, p_request, i_request, pp_data, pi_data, &dst );
  2191.                     break;
  2192.             }
  2193.             MacroClean( &m );
  2194.             continue;
  2195.         }
  2196.         i_copy =   ( (p == NULL || p > end ) ? end : p  ) - src;
  2197.         if( i_copy > 0 )
  2198.         {
  2199.             int i_index = dst - *pp_data;
  2200.             *pi_data += i_copy;
  2201.             *pp_data = realloc( *pp_data, *pi_data );
  2202.             dst = (*pp_data) + i_index;
  2203.             memcpy( dst, src, i_copy );
  2204.             dst += i_copy;
  2205.             src += i_copy;
  2206.         }
  2207.     }
  2208.     *pp_dst = dst;
  2209.     free( dup );
  2210. }
  2211. /****************************************************************************
  2212.  * HttpCallback:
  2213.  ****************************************************************************
  2214.  * a file with b_html is parsed and all "macro" replaced
  2215.  * <vlc id="macro name" [param1="" [param2=""]] />
  2216.  * valid id are
  2217.  *
  2218.  ****************************************************************************/
  2219. static int  HttpCallback( httpd_file_sys_t *p_args,
  2220.                           httpd_file_t *p_file,
  2221.                           uint8_t *p_request,
  2222.                           uint8_t **pp_data, int *pi_data )
  2223. {
  2224.     int i_request = p_request ? strlen( p_request ) : 0;
  2225.     char *p;
  2226.     FILE *f;
  2227.     if( ( f = fopen( p_args->file, "r" ) ) == NULL )
  2228.     {
  2229.         p = *pp_data = malloc( 10240 );
  2230.         if( !p )
  2231.         {
  2232.                 return VLC_EGENERIC;
  2233.         }
  2234.         p += sprintf( p, "<html>n" );
  2235.         p += sprintf( p, "<head>n" );
  2236.         p += sprintf( p, "<title>Error loading %s</title>n", p_args->file );
  2237.         p += sprintf( p, "</head>n" );
  2238.         p += sprintf( p, "<body>n" );
  2239.         p += sprintf( p, "<h1><center>Error loading %s for %s</center></h1>n", p_args->file, p_args->name );
  2240.         p += sprintf( p, "<hr />n" );
  2241.         p += sprintf( p, "<a href="http://www.videolan.org/">VideoLAN</a>n" );
  2242.         p += sprintf( p, "</body>n" );
  2243.         p += sprintf( p, "</html>n" );
  2244.         *pi_data = strlen( *pp_data );
  2245.         return VLC_SUCCESS;
  2246.     }
  2247.     if( !p_args->b_html )
  2248.     {
  2249.         FileLoad( f, pp_data, pi_data );
  2250.     }
  2251.     else
  2252.     {
  2253.         int  i_buffer;
  2254.         uint8_t *p_buffer;
  2255.         uint8_t *dst;
  2256.         vlc_value_t val;
  2257.         char position[4]; /* percentage */
  2258.         char time[12]; /* in seconds */
  2259.         char length[12]; /* in seconds */
  2260.         audio_volume_t i_volume;
  2261.         char volume[5];
  2262.         char state[8];
  2263.  
  2264. #define p_sys p_args->p_intf->p_sys
  2265.         if( p_sys->p_input )
  2266.         {
  2267.             var_Get( p_sys->p_input, "position", &val);
  2268.             sprintf( position, "%d" , (int)((val.f_float) * 100.0));
  2269.             var_Get( p_sys->p_input, "time", &val);
  2270.             sprintf( time, "%d" , (int)(val.i_time / 1000000) );
  2271.             var_Get( p_sys->p_input, "length", &val);
  2272.             sprintf( length, "%d" , (int)(val.i_time / 1000000) );
  2273.             var_Get( p_sys->p_input, "state", &val );
  2274.             if( val.i_int == PLAYING_S )
  2275.             {
  2276.                 sprintf( state, "playing" );
  2277.             } else if( val.i_int == PAUSE_S )
  2278.             {
  2279.                 sprintf( state, "paused" );
  2280.             } else
  2281.             {
  2282.                 sprintf( state, "stop" );
  2283.             }
  2284.         } else
  2285.         {
  2286.             sprintf( position, "%d", 0 );
  2287.             sprintf( time, "%d", 0 );
  2288.             sprintf( length, "%d", 0 );
  2289.             sprintf( state, "stop" );
  2290.         }
  2291. #undef p_sys
  2292.         aout_VolumeGet( p_args->p_intf , &i_volume );
  2293.         sprintf( volume , "%d" , (int)i_volume );
  2294.         p_args->vars = mvar_New( "variables", "" );
  2295.         mvar_AppendNewVar( p_args->vars, "url_param", i_request > 0 ? "1" : "0" );
  2296.         mvar_AppendNewVar( p_args->vars, "url_value", p_request );
  2297.         mvar_AppendNewVar( p_args->vars, "version",   VERSION_MESSAGE );
  2298.         mvar_AppendNewVar( p_args->vars, "copyright", COPYRIGHT_MESSAGE );
  2299.         mvar_AppendNewVar( p_args->vars, "stream_position", position );
  2300.         mvar_AppendNewVar( p_args->vars, "stream_time", time );
  2301.         mvar_AppendNewVar( p_args->vars, "stream_length", length );
  2302.         mvar_AppendNewVar( p_args->vars, "volume", volume );
  2303.         mvar_AppendNewVar( p_args->vars, "stream_state", state );
  2304.         SSInit( &p_args->stack );
  2305.         /* first we load in a temporary buffer */
  2306.         FileLoad( f, &p_buffer, &i_buffer );
  2307.         /* allocate output */
  2308.         *pi_data = i_buffer + 1000;
  2309.         dst = *pp_data = malloc( *pi_data );
  2310.         /* we parse executing all  <vlc /> macros */
  2311.         Execute( p_args, p_request, i_request, pp_data, pi_data, &dst, &p_buffer[0], &p_buffer[i_buffer] );
  2312.         *dst     = '';
  2313.         *pi_data = dst - *pp_data;
  2314.         SSClean( &p_args->stack );
  2315.         mvar_Delete( p_args->vars );
  2316.         free( p_buffer );
  2317.     }
  2318.     fclose( f );
  2319.     return VLC_SUCCESS;
  2320. }
  2321. /****************************************************************************
  2322.  * uri parser
  2323.  ****************************************************************************/
  2324. static int uri_test_param( char *psz_uri, const char *psz_name )
  2325. {
  2326.     char *p = psz_uri;
  2327.     while( (p = strstr( p, psz_name )) )
  2328.     {
  2329.         /* Verify that we are dealing with a post/get argument */
  2330.         if( p == psz_uri || *(p - 1) == '&' || *(p - 1) == 'n' )
  2331.         {
  2332.             return VLC_TRUE;
  2333.         }
  2334.         p++;
  2335.     }
  2336.     return VLC_FALSE;
  2337. }
  2338. static char *uri_extract_value( char *psz_uri, const char *psz_name,
  2339.                                 char *psz_value, int i_value_max )
  2340. {
  2341.     char *p = psz_uri;
  2342.     while( (p = strstr( p, psz_name )) )
  2343.     {
  2344.         /* Verify that we are dealing with a post/get argument */
  2345.         if( p == psz_uri || *(p - 1) == '&' || *(p - 1) == 'n' )
  2346.             break;
  2347.         p++;
  2348.     }
  2349.     if( p )
  2350.     {
  2351.         int i_len;
  2352.         p += strlen( psz_name );
  2353.         if( *p == '=' ) p++;
  2354.         if( strchr( p, '&' ) )
  2355.         {
  2356.             i_len = strchr( p, '&' ) - p;
  2357.         }
  2358.         else
  2359.         {
  2360.             /* for POST method */
  2361.             if( strchr( p, 'n' ) )
  2362.             {
  2363.                 i_len = strchr( p, 'n' ) - p;
  2364.                 if( i_len && *(p+i_len-1) == 'r' ) i_len--;
  2365.             }
  2366.             else
  2367.             {
  2368.                 i_len = strlen( p );
  2369.             }
  2370.         }
  2371.         i_len = __MIN( i_value_max - 1, i_len );
  2372.         if( i_len > 0 )
  2373.         {
  2374.             strncpy( psz_value, p, i_len );
  2375.             psz_value[i_len] = '';
  2376.         }
  2377.         else
  2378.         {
  2379.             strncpy( psz_value, "", i_value_max );
  2380.         }
  2381.         p += i_len;
  2382.     }
  2383.     else
  2384.     {
  2385.         strncpy( psz_value, "", i_value_max );
  2386.     }
  2387.     return p;
  2388. }
  2389. static void uri_decode_url_encoded( char *psz )
  2390. {
  2391.     char *dup = strdup( psz );
  2392.     char *p = dup;
  2393.     while( *p )
  2394.     {
  2395.         if( *p == '%' )
  2396.         {
  2397.             char val[3];
  2398.             p++;
  2399.             if( !*p )
  2400.             {
  2401.                 break;
  2402.             }
  2403.             val[0] = *p++;
  2404.             val[1] = *p++;
  2405.             val[2] = '';
  2406.             *psz++ = strtol( val, NULL, 16 );
  2407.         }
  2408.         else if( *p == '+' )
  2409.         {
  2410.             *psz++ = ' ';
  2411.             p++;
  2412.         }
  2413.         else
  2414.         {
  2415.             *psz++ = *p++;
  2416.         }
  2417.     }
  2418.     *psz++  ='';
  2419.     free( dup );
  2420. }
  2421. /****************************************************************************
  2422.  * Light RPN evaluator
  2423.  ****************************************************************************/
  2424. static void SSInit( rpn_stack_t *st )
  2425. {
  2426.     st->i_stack = 0;
  2427. }
  2428. static void SSClean( rpn_stack_t *st )
  2429. {
  2430.     while( st->i_stack > 0 )
  2431.     {
  2432.         free( st->stack[--st->i_stack] );
  2433.     }
  2434. }
  2435. static void SSPush( rpn_stack_t *st, char *s )
  2436. {
  2437.     if( st->i_stack < STACK_MAX )
  2438.     {
  2439.         st->stack[st->i_stack++] = strdup( s );
  2440.     }
  2441. }
  2442. static char * SSPop( rpn_stack_t *st )
  2443. {
  2444.     if( st->i_stack <= 0 )
  2445.     {
  2446.         return strdup( "" );
  2447.     }
  2448.     else
  2449.     {
  2450.         return st->stack[--st->i_stack];
  2451.     }
  2452. }
  2453. static int SSPopN( rpn_stack_t *st, mvar_t  *vars )
  2454. {
  2455.     char *name;
  2456.     char *value;
  2457.     char *end;
  2458.     int  i;
  2459.     name = SSPop( st );
  2460.     i = strtol( name, &end, 0 );
  2461.     if( end == name )
  2462.     {
  2463.         value = mvar_GetValue( vars, name );
  2464.         i = atoi( value );
  2465.     }
  2466.     free( name );
  2467.     return( i );
  2468. }
  2469. static void SSPushN( rpn_stack_t *st, int i )
  2470. {
  2471.     char v[512];
  2472.     sprintf( v, "%d", i );
  2473.     SSPush( st, v );
  2474. }
  2475. static void  EvaluateRPN( mvar_t  *vars, rpn_stack_t *st, char *exp )
  2476. {
  2477.     for( ;; )
  2478.     {
  2479.         char s[100], *p;
  2480.         /* skip spcae */
  2481.         while( *exp == ' ' )
  2482.         {
  2483.             exp++;
  2484.         }
  2485.         if( *exp == ''' )
  2486.         {
  2487.             /* extract string */
  2488.             p = &s[0];
  2489.             exp++;
  2490.             while( *exp && *exp != ''' )
  2491.             {
  2492.                 *p++ = *exp++;
  2493.             }
  2494.             *p = '';
  2495.             exp++;
  2496.             SSPush( st, s );
  2497.             continue;
  2498.         }
  2499.         /* extract token */
  2500.         p = strchr( exp, ' ' );
  2501.         if( !p )
  2502.         {
  2503.             strcpy( s, exp );
  2504.             exp += strlen( exp );
  2505.         }
  2506.         else
  2507.         {
  2508.             int i = p -exp;
  2509.             strncpy( s, exp, i );
  2510.             s[i] = '';
  2511.             exp = p + 1;
  2512.         }
  2513.         if( *s == '' )
  2514.         {
  2515.             break;
  2516.         }
  2517.         /* 1. Integer function */
  2518.         if( !strcmp( s, "!" ) )
  2519.         {
  2520.             SSPushN( st, ~SSPopN( st, vars ) );
  2521.         }
  2522.         else if( !strcmp( s, "^" ) )
  2523.         {
  2524.             SSPushN( st, SSPopN( st, vars ) ^ SSPopN( st, vars ) );
  2525.         }
  2526.         else if( !strcmp( s, "&" ) )
  2527.         {
  2528.             SSPushN( st, SSPopN( st, vars ) & SSPopN( st, vars ) );
  2529.         }
  2530.         else if( !strcmp( s, "|" ) )
  2531.         {
  2532.             SSPushN( st, SSPopN( st, vars ) | SSPopN( st, vars ) );
  2533.         }
  2534.         else if( !strcmp( s, "+" ) )
  2535.         {
  2536.             SSPushN( st, SSPopN( st, vars ) + SSPopN( st, vars ) );
  2537.         }
  2538.         else if( !strcmp( s, "-" ) )
  2539.         {
  2540.             int j = SSPopN( st, vars );
  2541.             int i = SSPopN( st, vars );
  2542.             SSPushN( st, i - j );
  2543.         }
  2544.         else if( !strcmp( s, "*" ) )
  2545.         {
  2546.             SSPushN( st, SSPopN( st, vars ) * SSPopN( st, vars ) );
  2547.         }
  2548.         else if( !strcmp( s, "/" ) )
  2549.         {
  2550.             int i, j;
  2551.             j = SSPopN( st, vars );
  2552.             i = SSPopN( st, vars );
  2553.             SSPushN( st, j != 0 ? i / j : 0 );
  2554.         }
  2555.         else if( !strcmp( s, "%" ) )
  2556.         {
  2557.             int i, j;
  2558.             j = SSPopN( st, vars );
  2559.             i = SSPopN( st, vars );
  2560.             SSPushN( st, j != 0 ? i % j : 0 );
  2561.         }
  2562.         /* 2. integer tests */
  2563.         else if( !strcmp( s, "=" ) )
  2564.         {
  2565.             SSPushN( st, SSPopN( st, vars ) == SSPopN( st, vars ) ? -1 : 0 );
  2566.         }
  2567.         else if( !strcmp( s, "<" ) )
  2568.         {
  2569.             int j = SSPopN( st, vars );
  2570.             int i = SSPopN( st, vars );
  2571.             SSPushN( st, i < j ? -1 : 0 );
  2572.         }
  2573.         else if( !strcmp( s, ">" ) )
  2574.         {
  2575.             int j = SSPopN( st, vars );
  2576.             int i = SSPopN( st, vars );
  2577.             SSPushN( st, i > j ? -1 : 0 );
  2578.         }
  2579.         else if( !strcmp( s, "<=" ) )
  2580.         {
  2581.             int j = SSPopN( st, vars );
  2582.             int i = SSPopN( st, vars );
  2583.             SSPushN( st, i <= j ? -1 : 0 );
  2584.         }
  2585.         else if( !strcmp( s, ">=" ) )
  2586.         {
  2587.             int j = SSPopN( st, vars );
  2588.             int i = SSPopN( st, vars );
  2589.             SSPushN( st, i >= j ? -1 : 0 );
  2590.         }
  2591.         /* 3. string functions */
  2592.         else if( !strcmp( s, "strcat" ) )
  2593.         {
  2594.             char *s2 = SSPop( st );
  2595.             char *s1 = SSPop( st );
  2596.             char *str = malloc( strlen( s1 ) + strlen( s2 ) + 1 );
  2597.             strcpy( str, s1 );
  2598.             strcat( str, s2 );
  2599.             SSPush( st, str );
  2600.             free( s1 );
  2601.             free( s2 );
  2602.             free( str );
  2603.         }
  2604.         else if( !strcmp( s, "strcmp" ) )
  2605.         {
  2606.             char *s2 = SSPop( st );
  2607.             char *s1 = SSPop( st );
  2608.             SSPushN( st, strcmp( s1, s2 ) );
  2609.             free( s1 );
  2610.             free( s2 );
  2611.         }
  2612.         else if( !strcmp( s, "strncmp" ) )
  2613.         {
  2614.             int n = SSPopN( st, vars );
  2615.             char *s2 = SSPop( st );
  2616.             char *s1 = SSPop( st );
  2617.             SSPushN( st, strncmp( s1, s2 , n ) );
  2618.             free( s1 );
  2619.             free( s2 );
  2620.         }
  2621.         else if( !strcmp( s, "strsub" ) )
  2622.         {
  2623.             int n = SSPopN( st, vars );
  2624.             int m = SSPopN( st, vars );
  2625.             int i_len;
  2626.             char *s = SSPop( st );
  2627.             char *str;
  2628.             if( n >= m )
  2629.             {
  2630.                 i_len = n - m + 1;
  2631.             }
  2632.             else
  2633.             {
  2634.                 i_len = 0;
  2635.             }
  2636.             str = malloc( i_len + 1 );
  2637.             memcpy( str, s + m - 1, i_len );
  2638.             str[ i_len ] = '';
  2639.             SSPush( st, str );
  2640.             free( s );
  2641.             free( str );
  2642.         }
  2643.        else if( !strcmp( s, "strlen" ) )
  2644.         {
  2645.             char *str = SSPop( st );
  2646.             SSPushN( st, strlen( str ) );
  2647.             free( str );
  2648.         }
  2649.         /* 4. stack functions */
  2650.         else if( !strcmp( s, "dup" ) )
  2651.         {
  2652.             char *str = SSPop( st );
  2653.             SSPush( st, str );
  2654.             SSPush( st, str );
  2655.             free( str );
  2656.         }
  2657.         else if( !strcmp( s, "drop" ) )
  2658.         {
  2659.             char *str = SSPop( st );
  2660.             free( str );
  2661.         }
  2662.         else if( !strcmp( s, "swap" ) )
  2663.         {
  2664.             char *s1 = SSPop( st );
  2665.             char *s2 = SSPop( st );
  2666.             SSPush( st, s1 );
  2667.             SSPush( st, s2 );
  2668.             free( s1 );
  2669.             free( s2 );
  2670.         }
  2671.         else if( !strcmp( s, "flush" ) )
  2672.         {
  2673.             SSClean( st );
  2674.             SSInit( st );
  2675.         }
  2676.         else if( !strcmp( s, "store" ) )
  2677.         {
  2678.             char *value = SSPop( st );
  2679.             char *name  = SSPop( st );
  2680.             mvar_PushNewVar( vars, name, value );
  2681.             free( name );
  2682.             free( value );
  2683.         }
  2684.         else if( !strcmp( s, "value" ) )
  2685.         {
  2686.             char *name  = SSPop( st );
  2687.             char *value = mvar_GetValue( vars, name );
  2688.             SSPush( st, value );
  2689.             free( name );
  2690.         }
  2691.         else if( !strcmp( s, "url_extract" ) )
  2692.         {
  2693.             char *url = mvar_GetValue( vars, "url_value" );
  2694.             char *name = SSPop( st );
  2695.             char value[512];
  2696.             uri_extract_value( url, name, value, 512 );
  2697.             uri_decode_url_encoded( value );
  2698.             SSPush( st, value );
  2699.         }
  2700.         else
  2701.         {
  2702.             SSPush( st, s );
  2703.         }
  2704.     }
  2705. }
  2706. /**********************************************************************
  2707.  * Find_end_MRL: Find the end of the sentence :
  2708.  * this function parses the string psz and find the end of the item
  2709.  * and/or option with detecting the " and ' problems.
  2710.  * returns NULL if an error is detected, otherwise, returns a pointer
  2711.  * of the end of the sentence (after the last character)
  2712.  **********************************************************************/
  2713. static char *Find_end_MRL( char *psz )
  2714. {
  2715.     char *s_sent = psz;
  2716.     switch( *s_sent )
  2717.     {
  2718.         case '"':
  2719.         {
  2720.             s_sent++;
  2721.             while( ( *s_sent != '"' ) && ( *s_sent != '' ) )
  2722.             {
  2723.                 if( *s_sent == ''' )
  2724.                 {
  2725.                     s_sent = Find_end_MRL( s_sent );
  2726.                     if( s_sent == NULL )
  2727.                     {
  2728.                         return NULL;
  2729.                     }
  2730.                 } else
  2731.                 {
  2732.                     s_sent++;
  2733.                 }
  2734.             }
  2735.             if( *s_sent == '"' )
  2736.             {
  2737.                 s_sent++;
  2738.                 return s_sent;
  2739.             } else  /* *s_sent == '' , which means the number of " is incorrect */
  2740.             {
  2741.                 return NULL;
  2742.             }
  2743.             break;
  2744.         }
  2745.         case ''':
  2746.         {
  2747.             s_sent++;
  2748.             while( ( *s_sent != ''' ) && ( *s_sent != '' ) )
  2749.             {
  2750.                 if( *s_sent == '"' )
  2751.                 {
  2752.                     s_sent = Find_end_MRL( s_sent );
  2753.                     if( s_sent == NULL )
  2754.                     {
  2755.                         return NULL;
  2756.                     }
  2757.                 } else
  2758.                 {
  2759.                     s_sent++;
  2760.                 }
  2761.             }
  2762.             if( *s_sent == ''' )
  2763.             {
  2764.                 s_sent++;
  2765.                 return s_sent;
  2766.             } else  /* *s_sent == '' , which means the number of ' is incorrect */
  2767.             {
  2768.                 return NULL;
  2769.             }
  2770.             break;
  2771.         }
  2772.         default: /* now we can look for spaces */
  2773.         {
  2774.             while( ( *s_sent != ' ' ) && ( *s_sent != '' ) )
  2775.             {
  2776.                 if( ( *s_sent == ''' ) || ( *s_sent == '"' ) )
  2777.                 {
  2778.                     s_sent = Find_end_MRL( s_sent );
  2779.                 } else
  2780.                 {
  2781.                     s_sent++;
  2782.                 }
  2783.             }
  2784.             return s_sent;
  2785.         }
  2786.     }
  2787. }
  2788. /**********************************************************************
  2789.  * parse_MRL: parse the MRL, find the mrl string and the options,
  2790.  * create an item with all information in it, and return the item.
  2791.  * return NULL if there is an error.
  2792.  **********************************************************************/
  2793. playlist_item_t * parse_MRL( intf_thread_t *p_intf, char *psz )
  2794. {
  2795.     char **ppsz_options = NULL;
  2796.     char *mrl;
  2797.     char *s_mrl = psz;
  2798.     int i_error = 0;
  2799.     char *s_temp;
  2800.     int i = 0;
  2801.     int i_options = 0;
  2802.     playlist_item_t * p_item = NULL;
  2803.     /* In case there is spaces before the mrl */
  2804.     while( ( *s_mrl == ' ' ) && ( *s_mrl != '' ) )
  2805.     {
  2806.         s_mrl++;
  2807.     }
  2808.     /* extract the mrl */
  2809.     s_temp = strstr( s_mrl , " :" );
  2810.     if( s_temp == NULL )
  2811.     {
  2812.         s_temp = s_mrl + strlen( s_mrl );
  2813.     } else
  2814.     {
  2815.         while( (*s_temp == ' ') && (s_temp != s_mrl ) )
  2816.         {
  2817.             s_temp--;
  2818.         }
  2819.         s_temp++;
  2820.     }
  2821.     /* if the mrl is between " or ', we must remove them */
  2822.     if( (*s_mrl == ''') || (*s_mrl == '"') )
  2823.     {
  2824.         mrl = (char *)malloc( (s_temp - s_mrl - 1) * sizeof( char ) );
  2825.         strncpy( mrl , (s_mrl + 1) , s_temp - s_mrl - 2 );
  2826.         mrl[ s_temp - s_mrl - 2 ] = '';
  2827.     } else
  2828.     {
  2829.         mrl = (char *)malloc( (s_temp - s_mrl + 1) * sizeof( char ) );
  2830.         strncpy( mrl , s_mrl , s_temp - s_mrl );
  2831.         mrl[ s_temp - s_mrl ] = '';
  2832.     }
  2833.     s_mrl = s_temp;
  2834.     /* now we can take care of the options */
  2835.     while( (*s_mrl != '') && (i_error == 0) )
  2836.     {
  2837.         switch( *s_mrl )
  2838.         {
  2839.             case ' ':
  2840.             {
  2841.                 s_mrl++;
  2842.                 break;
  2843.             }
  2844.             case ':': /* an option */
  2845.             {
  2846.                 s_temp = Find_end_MRL( s_mrl );
  2847.                 if( s_temp == NULL )
  2848.                 {
  2849.                     i_error = 1;
  2850.                 }
  2851.                 else
  2852.                 {
  2853.                     i_options++;
  2854.                     ppsz_options = realloc( ppsz_options , i_options *
  2855.                                             sizeof(char *) );
  2856.                     ppsz_options[ i_options - 1 ] =
  2857.                         malloc( (s_temp - s_mrl + 1) * sizeof(char) );
  2858.                     strncpy( ppsz_options[ i_options - 1 ] , s_mrl ,
  2859.                              s_temp - s_mrl );
  2860.                     /* don't forget to finish the string with a '' */
  2861.                     (ppsz_options[ i_options - 1 ])[ s_temp - s_mrl ] = '';
  2862.                     s_mrl = s_temp;
  2863.                 }
  2864.                 break;
  2865.             }
  2866.             default:
  2867.             {
  2868.                 i_error = 1;
  2869.                 break;
  2870.             }
  2871.         }
  2872.     }
  2873.     if( i_error != 0 )
  2874.     {
  2875.         free( mrl );
  2876.     }
  2877.     else
  2878.     {
  2879.         /* now create an item */
  2880.         p_item = playlist_ItemNew( p_intf, mrl, mrl);
  2881.         for( i = 0 ; i< i_options ; i++ )
  2882.         {
  2883.             playlist_ItemAddOption( p_item, ppsz_options[i] );
  2884.         }
  2885.     }
  2886.     for( i = 0 ; i < i_options ; i++ )
  2887.     {
  2888.         free( ppsz_options[i] );
  2889.     }
  2890.     free( ppsz_options );
  2891.     return p_item;
  2892. }