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