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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * rpn.c : RPN evaluator for the HTTP Interface
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2006 the VideoLAN team
  5.  * $Id: 05c30cf4fec935c37eb780621302b20ed0549074 $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  8.  *          Laurent Aimar <fenrir@via.ecp.fr>
  9.  *          Christophe Massiot <massiot@via.ecp.fr>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  24.  *****************************************************************************/
  25. #ifdef HAVE_CONFIG_H
  26. # include "config.h"
  27. #endif
  28. #include "http.h"
  29. #include "vlc_url.h"
  30. #include "vlc_meta.h"
  31. #include "vlc_strings.h"
  32. static vlc_object_t *GetVLCObject( intf_thread_t *p_intf,
  33.                                    const char *psz_object,
  34.                                    bool *pb_need_release )
  35. {
  36.     intf_sys_t    *p_sys = p_intf->p_sys;
  37.     vlc_object_t *p_object = NULL;
  38.     *pb_need_release = false;
  39.     if( !strcmp( psz_object, "VLC_OBJECT_LIBVLC" ) )
  40.         p_object = VLC_OBJECT(p_intf->p_libvlc);
  41.     else if( !strcmp( psz_object, "VLC_OBJECT_PLAYLIST" ) )
  42.         p_object = VLC_OBJECT(p_sys->p_playlist);
  43.     else if( !strcmp( psz_object, "VLC_OBJECT_INPUT" ) )
  44.         p_object = VLC_OBJECT(p_sys->p_input);
  45.     else if( p_sys->p_input )
  46.     {
  47.         if( !strcmp( psz_object, "VLC_OBJECT_VOUT" ) )
  48.             p_object = VLC_OBJECT( input_GetVout( p_sys->p_input ) );
  49.         else if( !strcmp( psz_object, "VLC_OBJECT_AOUT" ) )
  50.             p_object = VLC_OBJECT( input_GetAout( p_sys->p_input ) );
  51.         if( p_object )
  52.             *pb_need_release = true;
  53.     }
  54.     else
  55.         msg_Warn( p_intf, "unknown object type (%s)", psz_object );
  56.     return p_object;
  57. }
  58. void SSInit( rpn_stack_t *st )
  59. {
  60.     st->i_stack = 0;
  61. }
  62. void SSClean( rpn_stack_t *st )
  63. {
  64.     while( st->i_stack > 0 )
  65.     {
  66.         free( st->stack[--st->i_stack] );
  67.     }
  68. }
  69. void SSPush( rpn_stack_t *st, const char *s )
  70. {
  71.     if( st->i_stack < STACK_MAX )
  72.     {
  73.         st->stack[st->i_stack++] = strdup( s );
  74.     }
  75. }
  76. char *SSPop( rpn_stack_t *st )
  77. {
  78.     if( st->i_stack <= 0 )
  79.     {
  80.         return strdup( "" );
  81.     }
  82.     else
  83.     {
  84.         return st->stack[--st->i_stack];
  85.     }
  86. }
  87. int SSPopN( rpn_stack_t *st, mvar_t  *vars )
  88. {
  89.     char *name;
  90.     char *end;
  91.     int  i;
  92.     name = SSPop( st );
  93.     i = strtol( name, &end, 0 );
  94.     if( end == name )
  95.     {
  96.         const char *value = mvar_GetValue( vars, name );
  97.         i = atoi( value );
  98.     }
  99.     free( name );
  100.     return( i );
  101. }
  102. void SSPushN( rpn_stack_t *st, int i )
  103. {
  104.     char v[12];
  105.     snprintf( v, sizeof (v), "%d", i );
  106.     SSPush( st, v );
  107. }
  108. void EvaluateRPN( intf_thread_t *p_intf, mvar_t  *vars,
  109.                       rpn_stack_t *st, char *exp )
  110. {
  111.     intf_sys_t    *p_sys = p_intf->p_sys;
  112.     while( exp != NULL && *exp != '' )
  113.     {
  114.         char *p, *s;
  115.         /* skip space */
  116.         while( *exp == ' ' )
  117.         {
  118.             exp++;
  119.         }
  120.         if( *exp == ''' )
  121.         {
  122.             /* extract string */
  123.             p = FirstWord( exp, exp );
  124.             SSPush( st, exp );
  125.             exp = p;
  126.             continue;
  127.         }
  128.         /* extract token */
  129.         p = FirstWord( exp, exp );
  130.         s = exp;
  131.         if( p == NULL )
  132.         {
  133.             exp += strlen( exp );
  134.         }
  135.         else
  136.         {
  137.             exp = p;
  138.         }
  139.         if( *s == '' )
  140.         {
  141.             break;
  142.         }
  143.         /* 1. Integer function */
  144.         if( !strcmp( s, "!" ) )
  145.         {
  146.             SSPushN( st, ~SSPopN( st, vars ) );
  147.         }
  148.         else if( !strcmp( s, "^" ) )
  149.         {
  150.             SSPushN( st, SSPopN( st, vars ) ^ SSPopN( st, vars ) );
  151.         }
  152.         else if( !strcmp( s, "&" ) )
  153.         {
  154.             SSPushN( st, SSPopN( st, vars ) & SSPopN( st, vars ) );
  155.         }
  156.         else if( !strcmp( s, "|" ) )
  157.         {
  158.             SSPushN( st, SSPopN( st, vars ) | SSPopN( st, vars ) );
  159.         }
  160.         else if( !strcmp( s, "+" ) )
  161.         {
  162.             SSPushN( st, SSPopN( st, vars ) + SSPopN( st, vars ) );
  163.         }
  164.         else if( !strcmp( s, "-" ) )
  165.         {
  166.             int j = SSPopN( st, vars );
  167.             int i = SSPopN( st, vars );
  168.             SSPushN( st, i - j );
  169.         }
  170.         else if( !strcmp( s, "*" ) )
  171.         {
  172.             SSPushN( st, SSPopN( st, vars ) * SSPopN( st, vars ) );
  173.         }
  174.         else if( !strcmp( s, "/" ) )
  175.         {
  176.             int i, j;
  177.             j = SSPopN( st, vars );
  178.             i = SSPopN( st, vars );
  179.             SSPushN( st, j != 0 ? i / j : 0 );
  180.         }
  181.         else if( !strcmp( s, "%" ) )
  182.         {
  183.             int i, j;
  184.             j = SSPopN( st, vars );
  185.             i = SSPopN( st, vars );
  186.             SSPushN( st, j != 0 ? i % j : 0 );
  187.         }
  188.         /* 2. integer tests */
  189.         else if( !strcmp( s, "=" ) )
  190.         {
  191.             SSPushN( st, SSPopN( st, vars ) == SSPopN( st, vars ) ? -1 : 0 );
  192.         }
  193.         else if( !strcmp( s, "!=" ) )
  194.         {
  195.             SSPushN( st, SSPopN( st, vars ) != SSPopN( st, vars ) ? -1 : 0 );
  196.         }
  197.         else if( !strcmp( s, "<" ) )
  198.         {
  199.             int j = SSPopN( st, vars );
  200.             int i = SSPopN( st, vars );
  201.             SSPushN( st, i < j ? -1 : 0 );
  202.         }
  203.         else if( !strcmp( s, ">" ) )
  204.         {
  205.             int j = SSPopN( st, vars );
  206.             int i = SSPopN( st, vars );
  207.             SSPushN( st, i > j ? -1 : 0 );
  208.         }
  209.         else if( !strcmp( s, "<=" ) )
  210.         {
  211.             int j = SSPopN( st, vars );
  212.             int i = SSPopN( st, vars );
  213.             SSPushN( st, i <= j ? -1 : 0 );
  214.         }
  215.         else if( !strcmp( s, ">=" ) )
  216.         {
  217.             int j = SSPopN( st, vars );
  218.             int i = SSPopN( st, vars );
  219.             SSPushN( st, i >= j ? -1 : 0 );
  220.         }
  221.         /* 3. string functions */
  222.         else if( !strcmp( s, "strcat" ) )
  223.         {
  224.             char *s2 = SSPop( st );
  225.             char *s1 = SSPop( st );
  226.             char *str = malloc( strlen( s1 ) + strlen( s2 ) + 1 );
  227.             strcpy( str, s1 );
  228.             strcat( str, s2 );
  229.             SSPush( st, str );
  230.             free( s1 );
  231.             free( s2 );
  232.             free( str );
  233.         }
  234.         else if( !strcmp( s, "strcmp" ) )
  235.         {
  236.             char *s2 = SSPop( st );
  237.             char *s1 = SSPop( st );
  238.             SSPushN( st, strcmp( s1, s2 ) );
  239.             free( s1 );
  240.             free( s2 );
  241.         }
  242.         else if( !strcmp( s, "strncmp" ) )
  243.         {
  244.             int n = SSPopN( st, vars );
  245.             char *s2 = SSPop( st );
  246.             char *s1 = SSPop( st );
  247.             SSPushN( st, strncmp( s1, s2 , n ) );
  248.             free( s1 );
  249.             free( s2 );
  250.         }
  251.         else if( !strcmp( s, "strsub" ) )
  252.         {
  253.             int n = SSPopN( st, vars );
  254.             int m = SSPopN( st, vars );
  255.             int i_len;
  256.             char *s = SSPop( st );
  257.             char *str;
  258.             if( n >= m )
  259.             {
  260.                 i_len = n - m + 1;
  261.             }
  262.             else
  263.             {
  264.                 i_len = 0;
  265.             }
  266.             str = malloc( i_len + 1 );
  267.             memcpy( str, s + m - 1, i_len );
  268.             str[ i_len ] = '';
  269.             SSPush( st, str );
  270.             free( s );
  271.             free( str );
  272.         }
  273.         else if( !strcmp( s, "strlen" ) )
  274.         {
  275.             char *str = SSPop( st );
  276.             SSPushN( st, strlen( str ) );
  277.             free( str );
  278.         }
  279.         else if( !strcmp( s, "str_replace" ) )
  280.         {
  281.             char *psz_to = SSPop( st );
  282.             char *psz_from = SSPop( st );
  283.             char *psz_in = SSPop( st );
  284.             char *psz_in_current = psz_in;
  285.             char *psz_out = malloc( strlen(psz_in) * strlen(psz_to) + 1 );
  286.             char *psz_out_current = psz_out;
  287.             while( (p = strstr( psz_in_current, psz_from )) != NULL )
  288.             {
  289.                 memcpy( psz_out_current, psz_in_current, p - psz_in_current );
  290.                 psz_out_current += p - psz_in_current;
  291.                 strcpy( psz_out_current, psz_to );
  292.                 psz_out_current += strlen(psz_to);
  293.                 psz_in_current = p + strlen(psz_from);
  294.             }
  295.             strcpy( psz_out_current, psz_in_current );
  296.             psz_out_current += strlen(psz_in_current);
  297.             *psz_out_current = '';
  298.             SSPush( st, psz_out );
  299.             free( psz_to );
  300.             free( psz_from );
  301.             free( psz_in );
  302.             free( psz_out );
  303.         }
  304.         else if( !strcmp( s, "url_extract" ) )
  305.         {
  306.             const char *url = mvar_GetValue( vars, "url_value" );
  307.             char *name = SSPop( st );
  308.             char *value = ExtractURIString( url, name );
  309.             if( value != NULL )
  310.             {
  311.                 decode_URI( value );
  312.                 SSPush( st, value );
  313.                 free( value );
  314.             }
  315.             else
  316.                 SSPush( st, "" );
  317.             free( name );
  318.         }
  319.         else if( !strcmp( s, "url_encode" ) )
  320.         {
  321.             char *url = SSPop( st );
  322.             char *value = vlc_UrlEncode( url );
  323.             free( url );
  324.             SSPush( st, value );
  325.             free( value );
  326.         }
  327.         else if( !strcmp( s, "xml_encode" )
  328.               || !strcmp( s, "htmlspecialchars" ) )
  329.         {
  330.             char *url = SSPop( st );
  331.             char *value = convert_xml_special_chars( url );
  332.             free( url );
  333.             SSPush( st, value );
  334.             free( value );
  335.         }
  336.         else if( !strcmp( s, "addslashes" ) )
  337.         {
  338.             char *psz_src = SSPop( st );
  339.             char *psz_dest;
  340.             char *str = psz_src;
  341.             p = psz_dest = malloc( strlen( str ) * 2 + 1 );
  342.             while( *str != '' )
  343.             {
  344.                 if( *str == '"' || *str == ''' || *str == '\' )
  345.                 {
  346.                     *p++ = '\';
  347.                 }
  348.                 *p++ = *str;
  349.                 str++;
  350.             }
  351.             *p = '';
  352.             SSPush( st, psz_dest );
  353.             free( psz_src );
  354.             free( psz_dest );
  355.         }
  356.         else if( !strcmp( s, "stripslashes" ) )
  357.         {
  358.             char *psz_src = SSPop( st );
  359.             char *psz_dest;
  360.             char *str = psz_src;
  361.             p = psz_dest = strdup( psz_src );
  362.             while( *str )
  363.             {
  364.                 if( *str == '\' && *(str + 1) )
  365.                 {
  366.                     str++;
  367.                 }
  368.                 *p++ = *str++;
  369.             }
  370.             *p = '';
  371.             SSPush( st, psz_dest );
  372.             free( psz_src );
  373.             free( psz_dest );
  374.         }
  375.         else if( !strcmp( s, "realpath" ) )
  376.         {
  377.             char *psz_src = SSPop( st );
  378.             char *psz_dir = RealPath( psz_src );
  379.             SSPush( st, psz_dir );
  380.             free( psz_src );
  381.             free( psz_dir );
  382.         }
  383.         /* 4. stack functions */
  384.         else if( !strcmp( s, "dup" ) )
  385.         {
  386.             char *str = SSPop( st );
  387.             SSPush( st, str );
  388.             SSPush( st, str );
  389.             free( str );
  390.         }
  391.         else if( !strcmp( s, "drop" ) )
  392.         {
  393.             char *str = SSPop( st );
  394.             free( str );
  395.         }
  396.         else if( !strcmp( s, "swap" ) )
  397.         {
  398.             char *s1 = SSPop( st );
  399.             char *s2 = SSPop( st );
  400.             SSPush( st, s1 );
  401.             SSPush( st, s2 );
  402.             free( s1 );
  403.             free( s2 );
  404.         }
  405.         else if( !strcmp( s, "flush" ) )
  406.         {
  407.             SSClean( st );
  408.             SSInit( st );
  409.         }
  410.         else if( !strcmp( s, "store" ) )
  411.         {
  412.             char *value = SSPop( st );
  413.             char *name  = SSPop( st );
  414.             mvar_PushNewVar( vars, name, value );
  415.             free( name );
  416.             free( value );
  417.         }
  418.         else if( !strcmp( s, "value" ) )
  419.         {
  420.             char *name  = SSPop( st );
  421.             const char *value = mvar_GetValue( vars, name );
  422.             SSPush( st, value );
  423.             free( name );
  424.         }
  425.         /* 5. player control */
  426.         else if( !strcmp( s, "vlc_play" ) )
  427.         {
  428.             int i_id = SSPopN( st, vars );
  429.             int i_ret;
  430.             playlist_Lock( p_sys->p_playlist );
  431.             i_ret = playlist_Control( p_sys->p_playlist, PLAYLIST_VIEWPLAY,
  432.                                       pl_Locked, NULL,
  433.                                       playlist_ItemGetById( p_sys->p_playlist,
  434.                                       i_id ) );
  435.             playlist_Unlock( p_sys->p_playlist );
  436.             msg_Dbg( p_intf, "requested playlist item: %i", i_id );
  437.             SSPushN( st, i_ret );
  438.         }
  439.         else if( !strcmp( s, "vlc_stop" ) )
  440.         {
  441.             playlist_Control( p_sys->p_playlist, PLAYLIST_STOP, pl_Unlocked );
  442.             msg_Dbg( p_intf, "requested playlist stop" );
  443.         }
  444.         else if( !strcmp( s, "vlc_pause" ) )
  445.         {
  446.             playlist_Control( p_sys->p_playlist, PLAYLIST_PAUSE, pl_Unlocked );
  447.             msg_Dbg( p_intf, "requested playlist pause" );
  448.         }
  449.         else if( !strcmp( s, "vlc_next" ) )
  450.         {
  451.             playlist_Control( p_sys->p_playlist, PLAYLIST_SKIP, pl_Unlocked, 1 );
  452.             msg_Dbg( p_intf, "requested playlist next" );
  453.         }
  454.         else if( !strcmp( s, "vlc_previous" ) )
  455.         {
  456.             playlist_Control( p_sys->p_playlist, PLAYLIST_SKIP, pl_Unlocked, -1 );
  457.             msg_Dbg( p_intf, "requested playlist previous" );
  458.         }
  459.         else if( !strcmp( s, "vlc_seek" ) )
  460.         {
  461.             char *psz_value = SSPop( st );
  462.             HandleSeek( p_intf, psz_value );
  463.             msg_Dbg( p_intf, "requested playlist seek: %s", psz_value );
  464.             free( psz_value );
  465.         }
  466.         else if( !strcmp( s, "vlc_var_type" )
  467.                   || !strcmp( s, "vlc_config_type" ) )
  468.         {
  469.             vlc_object_t *p_object;
  470.             const char *psz_type = NULL;
  471.             int i_type = 0;
  472.             if( !strcmp( s, "vlc_var_type" ) )
  473.             {
  474.                 char *psz_object = SSPop( st );
  475.                 char *psz_variable = SSPop( st );
  476.                 bool b_need_release;
  477.                 p_object = GetVLCObject( p_intf, psz_object, &b_need_release );
  478.                 if( p_object != NULL )
  479.                     i_type = var_Type( p_object, psz_variable );
  480.                 free( psz_variable );
  481.                 free( psz_object );
  482.                 if( b_need_release && p_object != NULL )
  483.                     vlc_object_release( p_object );
  484.             }
  485.             else
  486.             {
  487.                 char *psz_variable = SSPop( st );
  488.                 p_object = VLC_OBJECT(p_intf);
  489.                 i_type = config_GetType( p_object, psz_variable );
  490.                 free( psz_variable );
  491.             }
  492.             if( p_object != NULL )
  493.             {
  494.                 switch( i_type & VLC_VAR_TYPE )
  495.                 {
  496.                 case VLC_VAR_BOOL:
  497.                     psz_type = "VLC_VAR_BOOL";
  498.                     break;
  499.                 case VLC_VAR_INTEGER:
  500.                     psz_type = "VLC_VAR_INTEGER";
  501.                     break;
  502.                 case VLC_VAR_HOTKEY:
  503.                     psz_type = "VLC_VAR_HOTKEY";
  504.                     break;
  505.                 case VLC_VAR_STRING:
  506.                     psz_type = "VLC_VAR_STRING";
  507.                     break;
  508.                 case VLC_VAR_MODULE:
  509.                     psz_type = "VLC_VAR_MODULE";
  510.                     break;
  511.                 case VLC_VAR_FILE:
  512.                     psz_type = "VLC_VAR_FILE";
  513.                     break;
  514.                 case VLC_VAR_DIRECTORY:
  515.                     psz_type = "VLC_VAR_DIRECTORY";
  516.                     break;
  517.                 case VLC_VAR_VARIABLE:
  518.                     psz_type = "VLC_VAR_VARIABLE";
  519.                     break;
  520.                 case VLC_VAR_FLOAT:
  521.                     psz_type = "VLC_VAR_FLOAT";
  522.                     break;
  523.                 default:
  524.                     psz_type = "UNDEFINED";
  525.                 }
  526.             }
  527.             else
  528.                 psz_type = "INVALID";
  529.             SSPush( st, psz_type );
  530.         }
  531.         else if( !strcmp( s, "vlc_var_set" ) )
  532.         {
  533.             char *psz_object = SSPop( st );
  534.             char *psz_variable = SSPop( st );
  535.             bool b_need_release;
  536.             vlc_object_t *p_object = GetVLCObject( p_intf, psz_object,
  537.                                                    &b_need_release );
  538.             if( p_object != NULL )
  539.             {
  540.                 bool b_error = false;
  541.                 char *psz_value = NULL;
  542.                 vlc_value_t val;
  543.                 int i_type;
  544.                 i_type = var_Type( p_object, psz_variable );
  545.                 switch( i_type & VLC_VAR_TYPE )
  546.                 {
  547.                 case VLC_VAR_BOOL:
  548.                     val.b_bool = SSPopN( st, vars );
  549.                     msg_Dbg( p_intf, "requested %s var change: %s->%d",
  550.                              psz_object, psz_variable, val.b_bool );
  551.                     break;
  552.                 case VLC_VAR_INTEGER:
  553.                 case VLC_VAR_HOTKEY:
  554.                     val.i_int = SSPopN( st, vars );
  555.                     msg_Dbg( p_intf, "requested %s var change: %s->%d",
  556.                              psz_object, psz_variable, val.i_int );
  557.                     break;
  558.                 case VLC_VAR_STRING:
  559.                 case VLC_VAR_MODULE:
  560.                 case VLC_VAR_FILE:
  561.                 case VLC_VAR_DIRECTORY:
  562.                 case VLC_VAR_VARIABLE:
  563.                     val.psz_string = psz_value = SSPop( st );
  564.                     msg_Dbg( p_intf, "requested %s var change: %s->%s",
  565.                              psz_object, psz_variable, psz_value );
  566.                     break;
  567.                 case VLC_VAR_FLOAT:
  568.                     psz_value = SSPop( st );
  569.                     val.f_float = atof( psz_value );
  570.                     msg_Dbg( p_intf, "requested %s var change: %s->%f",
  571.                              psz_object, psz_variable, val.f_float );
  572.                     break;
  573.                 default:
  574.                     SSPopN( st, vars );
  575.                     msg_Warn( p_intf, "invalid %s variable type %d (%s)",
  576.                               psz_object, i_type & VLC_VAR_TYPE, psz_variable );
  577.                     b_error = true;
  578.                 }
  579.                 if( !b_error )
  580.                     var_Set( p_object, psz_variable, val );
  581.                 if( psz_value != NULL )
  582.                     free( psz_value );
  583.             }
  584.             else
  585.                 msg_Warn( p_intf, "vlc_var_set called without an object" );
  586.             free( psz_variable );
  587.             free( psz_object );
  588.             if( b_need_release && p_object != NULL )
  589.                 vlc_object_release( p_object );
  590.         }
  591.         else if( !strcmp( s, "vlc_var_get" ) )
  592.         {
  593.             char *psz_object = SSPop( st );
  594.             char *psz_variable = SSPop( st );
  595.             bool b_need_release;
  596.             vlc_object_t *p_object = GetVLCObject( p_intf, psz_object,
  597.                                                    &b_need_release );
  598.             if( p_object != NULL )
  599.             {
  600.                 vlc_value_t val;
  601.                 int i_type;
  602.                 i_type = var_Type( p_object, psz_variable );
  603.                 var_Get( p_object, psz_variable, &val );
  604.                 switch( i_type & VLC_VAR_TYPE )
  605.                 {
  606.                 case VLC_VAR_BOOL:
  607.                     SSPushN( st, val.b_bool );
  608.                     break;
  609.                 case VLC_VAR_INTEGER:
  610.                 case VLC_VAR_HOTKEY:
  611.                     SSPushN( st, val.i_int );
  612.                     break;
  613.                 case VLC_VAR_STRING:
  614.                 case VLC_VAR_MODULE:
  615.                 case VLC_VAR_FILE:
  616.                 case VLC_VAR_DIRECTORY:
  617.                 case VLC_VAR_VARIABLE:
  618.                     SSPush( st, val.psz_string );
  619.                     free( val.psz_string );
  620.                     break;
  621.                 case VLC_VAR_FLOAT:
  622.                 {
  623.                     char psz_value[20];
  624.                     lldiv_t value = lldiv( val.f_float * 1000000, 1000000 );
  625.                     snprintf( psz_value, sizeof(psz_value), "%lld.%06u",
  626.                                     value.quot, (unsigned int)value.rem );
  627.                     SSPush( st, psz_value );
  628.                     break;
  629.                 }
  630.                 default:
  631.                     msg_Warn( p_intf, "invalid %s variable type %d (%s)",
  632.                               psz_object, i_type & VLC_VAR_TYPE, psz_variable );
  633.                     SSPush( st, "" );
  634.                 }
  635.             }
  636.             else
  637.             {
  638.                 msg_Warn( p_intf, "vlc_var_get called without an object" );
  639.                 SSPush( st, "" );
  640.             }
  641.             free( psz_variable );
  642.             free( psz_object );
  643.             if( b_need_release && p_object != NULL )
  644.                 vlc_object_release( p_object );
  645.         }
  646.         else if( !strcmp( s, "vlc_object_exists" ) )
  647.         {
  648.             char *psz_object = SSPop( st );
  649.             bool b_need_release;
  650.             vlc_object_t *p_object = GetVLCObject( p_intf, psz_object,
  651.                                                    &b_need_release );
  652.             if( b_need_release && p_object != NULL )
  653.                 vlc_object_release( p_object );
  654.             if( p_object != NULL )
  655.                 SSPush( st, "1" );
  656.             else
  657.                 SSPush( st, "0" );
  658.         }
  659.         else if( !strcmp( s, "vlc_config_set" ) )
  660.         {
  661.             char *psz_variable = SSPop( st );
  662.             int i_type = config_GetType( p_intf, psz_variable );
  663.             switch( i_type & VLC_VAR_TYPE )
  664.             {
  665.             case VLC_VAR_BOOL:
  666.             case VLC_VAR_INTEGER:
  667.                 config_PutInt( p_intf, psz_variable, SSPopN( st, vars ) );
  668.                 break;
  669.             case VLC_VAR_STRING:
  670.             case VLC_VAR_MODULE:
  671.             case VLC_VAR_FILE:
  672.             case VLC_VAR_DIRECTORY:
  673.             {
  674.                 char *psz_string = SSPop( st );
  675.                 config_PutPsz( p_intf, psz_variable, psz_string );
  676.                 free( psz_string );
  677.                 break;
  678.             }
  679.             case VLC_VAR_FLOAT:
  680.             {
  681.                 char *psz_string = SSPop( st );
  682.                 config_PutFloat( p_intf, psz_variable, atof(psz_string) );
  683.                 free( psz_string );
  684.                 break;
  685.             }
  686.             default:
  687.                 msg_Warn( p_intf, "vlc_config_set called on unknown var (%s)",
  688.                           psz_variable );
  689.             }
  690.             free( psz_variable );
  691.         }
  692.         else if( !strcmp( s, "vlc_config_get" ) )
  693.         {
  694.             char *psz_variable = SSPop( st );
  695.             int i_type = config_GetType( p_intf, psz_variable );
  696.             switch( i_type & VLC_VAR_TYPE )
  697.             {
  698.             case VLC_VAR_BOOL:
  699.             case VLC_VAR_INTEGER:
  700.                 SSPushN( st, config_GetInt( p_intf, psz_variable ) );
  701.                 break;
  702.             case VLC_VAR_STRING:
  703.             case VLC_VAR_MODULE:
  704.             case VLC_VAR_FILE:
  705.             case VLC_VAR_DIRECTORY:
  706.             {
  707.                 char *psz_string = config_GetPsz( p_intf, psz_variable );
  708.                 SSPush( st, psz_string );
  709.                 free( psz_string );
  710.                 break;
  711.             }
  712.             case VLC_VAR_FLOAT:
  713.             {
  714.                 char psz_string[20];
  715.                 lldiv_t value = lldiv( config_GetFloat( p_intf, psz_variable )
  716.                                        * 1000000, 1000000 );
  717.                 snprintf( psz_string, sizeof(psz_string), "%lld.%06u",
  718.                           value.quot, (unsigned int)value.rem );
  719.                 SSPush( st, psz_string );
  720.                 break;
  721.             }
  722.             default:
  723.                 msg_Warn( p_intf, "vlc_config_get called on unknown var (%s)",
  724.                           psz_variable );
  725.                 SSPush( st, "" );
  726.             }
  727.             free( psz_variable );
  728.         }
  729.         else if( !strcmp( s, "vlc_config_save" ) )
  730.         {
  731.             char *psz_module = SSPop( st );
  732.             int i_result;
  733.             if( !*psz_module )
  734.             {
  735.                 free( psz_module );
  736.                 psz_module = NULL;
  737.             }
  738.             i_result = config_SaveConfigFile( p_intf, psz_module );
  739.             if( psz_module != NULL )
  740.                 free( psz_module );
  741.             SSPushN( st, i_result );
  742.         }
  743.         else if( !strcmp( s, "vlc_config_reset" ) )
  744.         {
  745.             config_ResetAll( p_intf );
  746.         }
  747.         /* 6. playlist functions */
  748.         else if( !strcmp( s, "playlist_add" ) )
  749.         {
  750.             char *psz_name = SSPop( st );
  751.             char *mrl = SSPop( st );
  752.             input_item_t *p_input;
  753.             int i_ret;
  754.             p_input = MRLParse( p_intf, mrl, psz_name );
  755.             char *psz_uri = input_item_GetURI( p_input );
  756.             if( !p_input || !psz_uri || !*psz_uri )
  757.             {
  758.                 i_ret = VLC_EGENERIC;
  759.                 msg_Dbg( p_intf, "invalid requested mrl: %s", mrl );
  760.             }
  761.             else
  762.             {
  763.                 i_ret = playlist_AddInput( p_sys->p_playlist, p_input,
  764.                                    PLAYLIST_APPEND, PLAYLIST_END, true,
  765.                                    pl_Unlocked );
  766.                 if( i_ret == VLC_SUCCESS )
  767.                 {
  768.                     playlist_item_t *p_item;
  769.                     msg_Dbg( p_intf, "requested mrl add: %s", mrl );
  770.                     playlist_Lock( p_sys->p_playlist );
  771.                     p_item = playlist_ItemGetByInput( p_sys->p_playlist,
  772.                                                       p_input );
  773.                     if( p_item )
  774.                         i_ret = p_item->i_id;
  775.                     playlist_Unlock( p_sys->p_playlist );
  776.                 }
  777.                 else
  778.                     msg_Warn( p_intf, "adding mrl %s failed", mrl );
  779.                 vlc_gc_decref( p_input );
  780.             }
  781.             free( psz_uri );
  782.             SSPushN( st, i_ret );
  783.             free( mrl );
  784.             free( psz_name );
  785.         }
  786.         else if( !strcmp( s, "playlist_empty" ) )
  787.         {
  788.             playlist_Clear( p_sys->p_playlist, pl_Unlocked );
  789.             msg_Dbg( p_intf, "requested playlist empty" );
  790.         }
  791.         else if( !strcmp( s, "playlist_delete" ) )
  792.         {
  793.             int i_id = SSPopN( st, vars );
  794.             playlist_Lock( p_sys->p_playlist );
  795.             playlist_item_t *p_item = playlist_ItemGetById( p_sys->p_playlist,
  796.                                                             i_id );
  797.             if( p_item )
  798.             {
  799.                 playlist_DeleteFromInput( p_sys->p_playlist,
  800.                                           p_item->p_input->i_id, pl_Locked );
  801.                 msg_Dbg( p_intf, "requested playlist delete: %d", i_id );
  802.             }
  803.             else
  804.             {
  805.                 msg_Dbg( p_intf, "couldn't find playlist item to delete (%d)",
  806.                          i_id );
  807.             }
  808.             playlist_Unlock( p_sys->p_playlist );
  809.         }
  810.         else if( !strcmp( s, "playlist_move" ) )
  811.         {
  812.             /*int i_newpos =*/ SSPopN( st, vars );
  813.             /*int i_pos =*/ SSPopN( st, vars );
  814.             /* FIXME FIXME TODO TODO XXX XXX
  815.             do not release before fixing this
  816.             if ( i_pos < i_newpos )
  817.             {
  818.                 playlist_Move( p_sys->p_playlist, i_pos, i_newpos + 1 );
  819.             }
  820.             else
  821.             {
  822.                 playlist_Move( p_sys->p_playlist, i_pos, i_newpos );
  823.             }
  824.             msg_Dbg( p_intf, "requested to move playlist item %d to %d",
  825.                      i_pos, i_newpos);
  826.                FIXME FIXME TODO TODO XXX XXX */
  827.             msg_Err( p_intf, "moving using indexes is obsolete. We need to update this function" );
  828.         }
  829.         else if( !strcmp( s, "playlist_sort" ) )
  830.         {
  831.             int i_order = SSPopN( st, vars );
  832.             int i_sort = SSPopN( st, vars );
  833.             i_order = i_order % 2;
  834.             i_sort = i_sort % 9;
  835.             /* FIXME FIXME TODO TODO XXX XXX
  836.             do not release before fixing this
  837.             playlist_RecursiveNodeSort(  p_sys->p_playlist,
  838.                                          p_sys->p_playlist->p_general,
  839.                                          i_sort, i_order );
  840.             msg_Dbg( p_intf, "requested sort playlist by : %d in order : %d",
  841.                      i_sort, i_order );
  842.                FIXME FIXME TODO TODO XXX XXX */
  843.             msg_Err( p_intf, "this needs to be fixed to use the new playlist framework" );
  844.         }
  845.         else if( !strcmp( s, "services_discovery_add" ) )
  846.         {
  847.             char *psz_sd = SSPop( st );
  848.             playlist_ServicesDiscoveryAdd( p_sys->p_playlist, psz_sd );
  849.             free( psz_sd );
  850.         }
  851.         else if( !strcmp( s, "services_discovery_remove" ) )
  852.         {
  853.             char *psz_sd = SSPop( st );
  854.             playlist_ServicesDiscoveryRemove( p_sys->p_playlist, psz_sd );
  855.             free( psz_sd );
  856.         }
  857.         else if( !strcmp( s, "services_discovery_is_loaded" ) )
  858.         {
  859.             char *psz_sd = SSPop( st );
  860.             SSPushN( st,
  861.             playlist_IsServicesDiscoveryLoaded( p_sys->p_playlist, psz_sd ) );
  862.             free( psz_sd );
  863.         }
  864.         else if( !strcmp( s, "vlc_volume_set" ) )
  865.         {
  866.             char *psz_vol = SSPop( st );
  867.             int i_value;
  868.             audio_volume_t i_volume;
  869.             aout_VolumeGet( p_intf, &i_volume );
  870.             if( psz_vol[0] == '+' )
  871.             {
  872.                 i_value = atoi( psz_vol );
  873.                 if( (i_volume + i_value) > AOUT_VOLUME_MAX )
  874.                     aout_VolumeSet( p_intf, AOUT_VOLUME_MAX );
  875.                 else
  876.                     aout_VolumeSet( p_intf, i_volume + i_value );
  877.             }
  878.             else if( psz_vol[0] == '-' )
  879.             {
  880.                 i_value = atoi( psz_vol );
  881.                 if( (i_volume + i_value) < AOUT_VOLUME_MIN )
  882.                     aout_VolumeSet( p_intf, AOUT_VOLUME_MIN );
  883.                 else
  884.                     aout_VolumeSet( p_intf, i_volume + i_value );
  885.             }
  886.             else if( strstr( psz_vol, "%") != NULL )
  887.             {
  888.                 i_value = atoi( psz_vol );
  889.                 if( i_value < 0 ) i_value = 0;
  890.                 if( i_value > 400 ) i_value = 400;
  891.                 aout_VolumeSet( p_intf, (i_value * (AOUT_VOLUME_MAX - AOUT_VOLUME_MIN))/400+AOUT_VOLUME_MIN);
  892.             }
  893.             else
  894.             {
  895.                 i_value = atoi( psz_vol );
  896.                 if( i_value > AOUT_VOLUME_MAX ) i_value = AOUT_VOLUME_MAX;
  897.                 if( i_value < AOUT_VOLUME_MIN ) i_value = AOUT_VOLUME_MIN;
  898.                 aout_VolumeSet( p_intf, i_value );
  899.             }
  900.             aout_VolumeGet( p_intf, &i_volume );
  901.             free( psz_vol );
  902.         }
  903.         else if( !strcmp( s, "vlc_get_meta" ) )
  904.         {
  905.             char *psz_meta = SSPop( st );
  906.             char *psz_val = NULL;
  907.             if( p_sys->p_input && input_GetItem(p_sys->p_input) )
  908.             {
  909. #define p_item input_GetItem( p_sys->p_input )
  910.                 if( !strcmp( psz_meta, "ARTIST" ) )
  911.                 {
  912.                     psz_val = input_item_GetArtist( p_item );
  913.                 }
  914.                 else if( !strcmp( psz_meta, "TITLE" ) )
  915.                 {
  916.                     psz_val = input_item_GetTitle( p_item );
  917.                     if( !psz_val )
  918.                         psz_val = input_item_GetName( p_item );
  919.                 }
  920.                 else if( !strcmp( psz_meta, "ALBUM" ) )
  921.                 {
  922.                     psz_val = input_item_GetAlbum( p_item );
  923.                 }
  924.                 else if( !strcmp( psz_meta, "GENRE" ) )
  925.                 {
  926.                     psz_val = input_item_GetGenre( p_item );
  927.                 }
  928.                 else if( !strcmp( psz_meta, "COPYRIGHT" ) )
  929.                 {
  930.                      psz_val = input_item_GetCopyright( p_item );
  931.                 }
  932.                 else if( !strcmp( psz_meta, "TRACK_NUMBER" ) )
  933.                 {
  934.                     psz_val = input_item_GetTrackNum( p_item );
  935.                 }
  936.                 else if( !strcmp( psz_meta, "DESCRIPTION" ) )
  937.                 {
  938.                     psz_val = input_item_GetDescription( p_item );
  939.                 }
  940.                 else if( !strcmp( psz_meta, "RATING" ) )
  941.                 {
  942.                     psz_val = input_item_GetRating( p_item );
  943.                 }
  944.                 else if( !strcmp( psz_meta, "DATE" ) )
  945.                 {
  946.                     psz_val = input_item_GetDate( p_item );
  947.                 }
  948.                 else if( !strcmp( psz_meta, "URL" ) )
  949.                 {
  950.                     psz_val = input_item_GetURL( p_item );
  951.                 }
  952.                 else if( !strcmp( psz_meta, "LANGUAGE" ) )
  953.                 {
  954.                     psz_val = input_item_GetLanguage( p_item );
  955.                 }
  956.                 else if( !strcmp( psz_meta, "NOW_PLAYING" ) )
  957.                 {
  958.                     psz_val = input_item_GetNowPlaying( p_item );
  959.                 }
  960.                 else if( !strcmp( psz_meta, "PUBLISHER" ) )
  961.                 {
  962.                     psz_val = input_item_GetPublisher( p_item );
  963.                 }
  964.                 else if( !strcmp( psz_meta, "ENCODED_BY" ) )
  965.                 {
  966.                     psz_val = input_item_GetEncodedBy( p_item );
  967.                 }
  968.                 else if( !strcmp( psz_meta, "ART_URL" ) )
  969.                 {
  970.                     psz_val = input_item_GetEncodedBy( p_item );
  971.                 }
  972.                 else if( !strcmp( psz_meta, "TRACK_ID" ) )
  973.                 {
  974.                     psz_val = input_item_GetTrackID( p_item );
  975.                 }
  976. #undef p_item
  977.             }
  978.             if( psz_val == NULL ) psz_val = strdup( "" );
  979.             SSPush( st, psz_val );
  980.             free( psz_meta );
  981.             free( psz_val );
  982.         }
  983. #ifdef ENABLE_VLM
  984.         else if( !strcmp( s, "vlm_command" ) || !strcmp( s, "vlm_cmd" ) )
  985.         {
  986.             char *psz_elt;
  987.             char *psz_cmd = strdup( "" );
  988.             char *psz_error;
  989.             vlm_message_t *vlm_answer;
  990.             /* make sure that we have a vlm object */
  991.             if( p_intf->p_sys->p_vlm == NULL )
  992.                 p_intf->p_sys->p_vlm = vlm_New( p_intf );
  993.             /* vlm command uses the ';' delimiter
  994.              * (else we can't know when to stop) */
  995.             while( strcmp( psz_elt = SSPop( st ), "" )
  996.                    && strcmp( psz_elt, ";" ) )
  997.             {
  998.                 char* psz_buf;
  999.                 if( asprintf( &psz_buf, "%s %s", psz_cmd, psz_elt ) == -1 )
  1000.                     psz_buf = NULL;
  1001.                 free( psz_cmd );
  1002.                 free( psz_elt );
  1003.                 psz_cmd = psz_buf;
  1004.             }
  1005.             msg_Dbg( p_intf, "executing vlm command: %s", psz_cmd );
  1006.             vlm_ExecuteCommand( p_intf->p_sys->p_vlm, psz_cmd, &vlm_answer );
  1007.             if( vlm_answer->psz_value == NULL )
  1008.             {
  1009.                 psz_error = strdup( "" );
  1010.             }
  1011.             else
  1012.             {
  1013.                 if( asprintf( &psz_error , "%s : %s" , vlm_answer->psz_name,
  1014.                               vlm_answer->psz_value ) == -1 )
  1015.                     psz_error = NULL;
  1016.             }
  1017.             mvar_AppendNewVar( vars, "vlm_error", psz_error );
  1018.             /* this is kind of a duplicate but we need to have the message
  1019.              * without the command name for the "export" command */
  1020.             mvar_AppendNewVar( vars, "vlm_value", vlm_answer->psz_value );
  1021.             vlm_MessageDelete( vlm_answer );
  1022.             free( psz_cmd );
  1023.             free( psz_error );
  1024.         }
  1025. #endif /* ENABLE_VLM */
  1026.         else if( !strcmp( s, "snapshot" ) )
  1027.         {
  1028.             if( p_sys->p_input )
  1029.             {
  1030.                 vout_thread_t *p_vout = input_GetVout( p_sys->p_input );
  1031.                 if( p_vout )
  1032.                 {
  1033.                     var_TriggerCallback( p_vout, "video-snapshot" );
  1034.                     vlc_object_release( p_vout );
  1035.                     msg_Dbg( p_intf, "requested snapshot" );
  1036.                 }
  1037.             }
  1038.             break;
  1039.         }
  1040.         else
  1041.         {
  1042.             SSPush( st, s );
  1043.         }
  1044.     }
  1045. }