]> git.sesse.net Git - vlc/blob - modules/control/rc.c
More libvlc_global presumed abuse
[vlc] / modules / control / rc.c
1 /*****************************************************************************
2  * rc.c : remote control stdin/stdout module for vlc
3  *****************************************************************************
4  * Copyright (C) 2004 - 2005 the VideoLAN team
5  * $Id$
6  *
7  * Author: Peter Surda <shurdeek@panorama.sth.ac.at>
8  *         Jean-Paul Saman <jpsaman #_at_# m2x _replaceWith#dot_ nl>
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <vlc/vlc.h>
29
30 #include <stdlib.h>                                      /* malloc(), free() */
31 #include <string.h>
32
33 #include <errno.h>                                                 /* ENOMEM */
34 #include <stdio.h>
35 #include <ctype.h>
36 #include <signal.h>
37
38 #include <vlc_interface.h>
39 #include <vlc_aout.h>
40 #include <vlc_vout.h>
41 #include <vlc_osd.h>
42 #include <vlc_playlist.h>
43 #include <vlc_update.h>
44
45 #ifdef HAVE_UNISTD_H
46 #    include <unistd.h>
47 #endif
48
49 #ifdef HAVE_SYS_TIME_H
50 #    include <sys/time.h>
51 #endif
52 #include <sys/types.h>
53
54 #include <vlc_network.h>
55 #include "vlc_url.h"
56
57 #include <vlc_charset.h>
58
59 #if defined(AF_UNIX) && !defined(AF_LOCAL)
60 #    define AF_LOCAL AF_UNIX
61 #endif
62
63 #if defined(AF_LOCAL) && ! defined(WIN32)
64 #    include <sys/un.h>
65 #endif
66
67 #define MAX_LINE_LENGTH 256
68 #define STATUS_CHANGE "status change: "
69
70 /*****************************************************************************
71  * Local prototypes
72  *****************************************************************************/
73 static int  Activate     ( vlc_object_t * );
74 static void Deactivate   ( vlc_object_t * );
75 static void Run          ( intf_thread_t * );
76
77 static void Help         ( intf_thread_t *, vlc_bool_t );
78 static void RegisterCallbacks( intf_thread_t * );
79
80 static vlc_bool_t ReadCommand( intf_thread_t *, char *, int * );
81
82 static input_item_t *parse_MRL( intf_thread_t *, char * );
83
84 static int  Input        ( vlc_object_t *, char const *,
85                            vlc_value_t, vlc_value_t, void * );
86 static int  Playlist     ( vlc_object_t *, char const *,
87                            vlc_value_t, vlc_value_t, void * );
88 static int  Quit         ( vlc_object_t *, char const *,
89                            vlc_value_t, vlc_value_t, void * );
90 static int  Intf         ( vlc_object_t *, char const *,
91                            vlc_value_t, vlc_value_t, void * );
92 static int  Volume       ( vlc_object_t *, char const *,
93                            vlc_value_t, vlc_value_t, void * );
94 static int  VolumeMove   ( vlc_object_t *, char const *,
95                            vlc_value_t, vlc_value_t, void * );
96 static int  VideoConfig  ( vlc_object_t *, char const *,
97                            vlc_value_t, vlc_value_t, void * );
98 static int  AudioConfig  ( vlc_object_t *, char const *,
99                            vlc_value_t, vlc_value_t, void * );
100 static int  Menu         ( vlc_object_t *, char const *,
101                            vlc_value_t, vlc_value_t, void * );
102 static void checkUpdates( intf_thread_t *p_intf, char *psz_arg );
103
104 /* Status Callbacks */
105 static int TimeOffsetChanged( vlc_object_t *, char const *,
106                               vlc_value_t, vlc_value_t , void * );
107 static int VolumeChanged    ( vlc_object_t *, char const *,
108                               vlc_value_t, vlc_value_t, void * );
109 static int StateChanged     ( vlc_object_t *, char const *,
110                               vlc_value_t, vlc_value_t, void * );
111 static int RateChanged      ( vlc_object_t *, char const *,
112                               vlc_value_t, vlc_value_t, void * );
113
114 struct intf_sys_t
115 {
116     int *pi_socket_listen;
117     int i_socket;
118     char *psz_unix_path;
119
120     /* status changes */
121     vlc_mutex_t       status_lock;
122     playlist_status_t i_last_state;
123
124 #ifdef WIN32
125     HANDLE hConsoleIn;
126     vlc_bool_t b_quiet;
127 #endif
128 };
129
130 #ifdef HAVE_VARIADIC_MACROS
131 #   define msg_rc( psz_format, args... ) \
132       __msg_rc( p_intf, psz_format, ## args )
133 #endif
134
135 static void __msg_rc( intf_thread_t *p_intf, const char *psz_fmt, ... )
136 {
137     va_list args;
138     va_start( args, psz_fmt );
139
140     if( p_intf->p_sys->i_socket == -1 )
141     {
142         utf8_vfprintf( stdout, psz_fmt, args );
143         printf( "\r\n" );
144     }
145     else
146     {
147         net_vaPrintf( p_intf, p_intf->p_sys->i_socket, NULL, psz_fmt, args );
148         net_Write( p_intf, p_intf->p_sys->i_socket, NULL, (uint8_t*)"\r\n", 2 );
149     }
150     va_end( args );
151 }
152
153 /*****************************************************************************
154  * Module descriptor
155  *****************************************************************************/
156 #define POS_TEXT N_("Show stream position")
157 #define POS_LONGTEXT N_("Show the current position in seconds within the " \
158                         "stream from time to time." )
159
160 #define TTY_TEXT N_("Fake TTY")
161 #define TTY_LONGTEXT N_("Force the rc module to use stdin as if it was a TTY.")
162
163 #define UNIX_TEXT N_("UNIX socket command input")
164 #define UNIX_LONGTEXT N_("Accept commands over a Unix socket rather than " \
165                          "stdin." )
166
167 #define HOST_TEXT N_("TCP command input")
168 #define HOST_LONGTEXT N_("Accept commands over a socket rather than stdin. " \
169             "You can set the address and port the interface will bind to." )
170
171 #ifdef WIN32
172 #define QUIET_TEXT N_("Do not open a DOS command box interface")
173 #define QUIET_LONGTEXT N_( \
174     "By default the rc interface plugin will start a DOS command box. " \
175     "Enabling the quiet mode will not bring this command box but can also " \
176     "be pretty annoying when you want to stop VLC and no video window is " \
177     "open." )
178 #endif
179
180 vlc_module_begin();
181     set_shortname( _("RC"));
182     set_category( CAT_INTERFACE );
183     set_subcategory( SUBCAT_INTERFACE_MAIN );
184     set_description( _("Remote control interface") );
185     add_bool( "rc-show-pos", 0, NULL, POS_TEXT, POS_LONGTEXT, VLC_TRUE );
186
187 #ifdef WIN32
188     add_bool( "rc-quiet", 0, NULL, QUIET_TEXT, QUIET_LONGTEXT, VLC_FALSE );
189 #else
190 #if defined (HAVE_ISATTY)
191     add_bool( "rc-fake-tty", 0, NULL, TTY_TEXT, TTY_LONGTEXT, VLC_TRUE );
192 #endif
193     add_string( "rc-unix", 0, NULL, UNIX_TEXT, UNIX_LONGTEXT, VLC_TRUE );
194 #endif
195     add_string( "rc-host", 0, NULL, HOST_TEXT, HOST_LONGTEXT, VLC_TRUE );
196
197     set_capability( "interface", 20 );
198     set_callbacks( Activate, Deactivate );
199 vlc_module_end();
200
201 /*****************************************************************************
202  * Activate: initialize and create stuff
203  *****************************************************************************/
204 static int Activate( vlc_object_t *p_this )
205 {
206     intf_thread_t *p_intf = (intf_thread_t*)p_this;
207     char *psz_host, *psz_unix_path;
208     int  *pi_socket = NULL;
209
210 #ifndef WIN32
211 #if defined(HAVE_ISATTY)
212     /* Check that stdin is a TTY */
213     if( !config_GetInt( p_intf, "rc-fake-tty" ) && !isatty( 0 ) )
214     {
215         msg_Warn( p_intf, "fd 0 is not a TTY" );
216         return VLC_EGENERIC;
217     }
218 #endif
219
220     psz_unix_path = config_GetPsz( p_intf, "rc-unix" );
221     if( psz_unix_path )
222     {
223         int i_socket;
224
225 #ifndef AF_LOCAL
226         msg_Warn( p_intf, "your OS doesn't support filesystem sockets" );
227         free( psz_unix_path );
228         return VLC_EGENERIC;
229 #else
230         struct sockaddr_un addr;
231
232         memset( &addr, 0, sizeof(struct sockaddr_un) );
233
234         msg_Dbg( p_intf, "trying UNIX socket" );
235
236         if( (i_socket = socket( AF_LOCAL, SOCK_STREAM, 0 ) ) < 0 )
237         {
238             msg_Warn( p_intf, "can't open socket: %s", strerror(errno) );
239             free( psz_unix_path );
240             return VLC_EGENERIC;
241         }
242
243         addr.sun_family = AF_LOCAL;
244         strncpy( addr.sun_path, psz_unix_path, sizeof( addr.sun_path ) );
245         addr.sun_path[sizeof( addr.sun_path ) - 1] = '\0';
246
247         if (bind (i_socket, (struct sockaddr *)&addr, sizeof (addr))
248          && (errno == EADDRINUSE)
249          && connect (i_socket, (struct sockaddr *)&addr, sizeof (addr))
250          && (errno == ECONNREFUSED))
251         {
252             msg_Info (p_intf, "Removing dead UNIX socket: %s", psz_unix_path);
253             unlink (psz_unix_path);
254
255             if (bind (i_socket, (struct sockaddr *)&addr, sizeof (addr)))
256             {
257                 msg_Err (p_intf, "cannot bind UNIX socket at %s: %s",
258                          psz_unix_path, strerror (errno));
259                 free (psz_unix_path);
260                 net_Close (i_socket);
261                 return VLC_EGENERIC;
262             }
263         }
264
265         if( listen( i_socket, 1 ) )
266         {
267             msg_Warn( p_intf, "can't listen on socket: %s", strerror(errno));
268             free( psz_unix_path );
269             net_Close( i_socket );
270             return VLC_EGENERIC;
271         }
272
273         /* FIXME: we need a core function to merge listening sockets sets */
274         pi_socket = calloc( 2, sizeof( int ) );
275         if( pi_socket == NULL )
276         {
277             free( psz_unix_path );
278             net_Close( i_socket );
279             return VLC_ENOMEM;
280         }
281         pi_socket[0] = i_socket;
282         pi_socket[1] = -1;
283 #endif /* AF_LOCAL */
284     }
285 #endif /* !WIN32 */
286
287     if( ( pi_socket == NULL ) &&
288         ( psz_host = config_GetPsz( p_intf, "rc-host" ) ) != NULL )
289     {
290         vlc_url_t url;
291
292         vlc_UrlParse( &url, psz_host, 0 );
293
294         msg_Dbg( p_intf, "base: %s, port: %d", url.psz_host, url.i_port );
295
296         pi_socket = net_ListenTCP(p_this, url.psz_host, url.i_port);
297         if( pi_socket == NULL )
298         {
299             msg_Warn( p_intf, "can't listen to %s port %i",
300                       url.psz_host, url.i_port );
301             vlc_UrlClean( &url );
302             free( psz_host );
303             return VLC_EGENERIC;
304         }
305
306         vlc_UrlClean( &url );
307         free( psz_host );
308     }
309
310     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
311     if( !p_intf->p_sys )
312     {
313         msg_Err( p_intf, "no memory" );
314         return VLC_ENOMEM;
315     }
316
317     p_intf->p_sys->pi_socket_listen = pi_socket;
318     p_intf->p_sys->i_socket = -1;
319     p_intf->p_sys->psz_unix_path = psz_unix_path;
320     vlc_mutex_init( p_intf, &p_intf->p_sys->status_lock );
321     p_intf->p_sys->i_last_state = PLAYLIST_STOPPED;
322
323     /* Non-buffered stdout */
324     setvbuf( stdout, (char *)NULL, _IOLBF, 0 );
325
326     p_intf->pf_run = Run;
327
328 #ifdef WIN32
329     p_intf->p_sys->b_quiet = config_GetInt( p_intf, "rc-quiet" );
330     if( !p_intf->p_sys->b_quiet ) { CONSOLE_INTRO_MSG; }
331 #else
332     CONSOLE_INTRO_MSG;
333 #endif
334
335     msg_rc( _("Remote control interface initialized. Type `help' for help.") );
336     return VLC_SUCCESS;
337 }
338
339 /*****************************************************************************
340  * Deactivate: uninitialize and cleanup
341  *****************************************************************************/
342 static void Deactivate( vlc_object_t *p_this )
343 {
344     intf_thread_t *p_intf = (intf_thread_t*)p_this;
345
346     net_ListenClose( p_intf->p_sys->pi_socket_listen );
347     if( p_intf->p_sys->i_socket != -1 )
348         net_Close( p_intf->p_sys->i_socket );
349     if( p_intf->p_sys->psz_unix_path != NULL )
350     {
351 #if defined(AF_LOCAL) && !defined(WIN32)
352         unlink( p_intf->p_sys->psz_unix_path );
353 #endif
354         free( p_intf->p_sys->psz_unix_path );
355     }
356     vlc_mutex_destroy( &p_intf->p_sys->status_lock );
357     free( p_intf->p_sys );
358 }
359
360 /*****************************************************************************
361  * RegisterCallbacks: Register callbacks to dynamic variables
362  *****************************************************************************/
363 static void RegisterCallbacks( intf_thread_t *p_intf )
364 {
365     /* Register commands that will be cleaned up upon object destruction */
366 #define ADD( name, type, target )                                   \
367     var_Create( p_intf, name, VLC_VAR_ ## type | VLC_VAR_ISCOMMAND ); \
368     var_AddCallback( p_intf, name, target, NULL );
369     ADD( "quit", VOID, Quit )
370     ADD( "intf", STRING, Intf )
371
372     ADD( "add", STRING, Playlist )
373     ADD( "repeat", STRING, Playlist )
374     ADD( "loop", STRING, Playlist )
375     ADD( "enqueue", STRING, Playlist )
376     ADD( "playlist", VOID, Playlist )
377     ADD( "sort", VOID, Playlist )
378     ADD( "play", VOID, Playlist )
379     ADD( "stop", VOID, Playlist )
380     ADD( "clear", VOID, Playlist )
381     ADD( "prev", VOID, Playlist )
382     ADD( "next", VOID, Playlist )
383     ADD( "goto", INTEGER, Playlist )
384     ADD( "status", INTEGER, Playlist )
385
386     /* OSD menu commands */
387     ADD(  "menu", STRING, Menu )
388
389     /* DVD commands */
390     ADD( "pause", VOID, Input )
391     ADD( "seek", INTEGER, Input )
392     ADD( "title", STRING, Input )
393     ADD( "title_n", VOID, Input )
394     ADD( "title_p", VOID, Input )
395     ADD( "chapter", STRING, Input )
396     ADD( "chapter_n", VOID, Input )
397     ADD( "chapter_p", VOID, Input )
398
399     ADD( "fastforward", VOID, Input )
400     ADD( "rewind", VOID, Input )
401     ADD( "faster", VOID, Input )
402     ADD( "slower", VOID, Input )
403     ADD( "normal", VOID, Input )
404
405     ADD( "atrack", STRING, Input )
406     ADD( "vtrack", STRING, Input )
407     ADD( "strack", STRING, Input )
408
409     /* video commands */
410     ADD( "vratio", STRING, VideoConfig )
411     ADD( "vcrop", STRING, VideoConfig )
412     ADD( "vzoom", STRING, VideoConfig )
413
414     /* audio commands */
415     ADD( "volume", STRING, Volume )
416     ADD( "volup", STRING, VolumeMove )
417     ADD( "voldown", STRING, VolumeMove )
418     ADD( "adev", STRING, AudioConfig )
419     ADD( "achan", STRING, AudioConfig )
420
421 #undef ADD
422 }
423
424 /*****************************************************************************
425  * Run: rc thread
426  *****************************************************************************
427  * This part of the interface is in a separate thread so that we can call
428  * exec() from within it without annoying the rest of the program.
429  *****************************************************************************/
430 static void Run( intf_thread_t *p_intf )
431 {
432     input_thread_t * p_input;
433     playlist_t *     p_playlist;
434
435     char       p_buffer[ MAX_LINE_LENGTH + 1 ];
436     vlc_bool_t b_showpos = config_GetInt( p_intf, "rc-show-pos" );
437     vlc_bool_t b_longhelp = VLC_FALSE;
438
439     int        i_size = 0;
440     int        i_oldpos = 0;
441     int        i_newpos;
442
443     p_buffer[0] = 0;
444     p_input = NULL;
445     p_playlist = NULL;
446
447     /* Register commands that will be cleaned up upon object destruction */
448     RegisterCallbacks( p_intf );
449
450     /* status callbacks */
451     /* Listen to audio volume updates */
452     var_AddCallback( p_intf->p_libvlc, "volume-change", VolumeChanged, p_intf );
453
454 #ifdef WIN32
455     /* Get the file descriptor of the console input */
456     p_intf->p_sys->hConsoleIn = GetStdHandle(STD_INPUT_HANDLE);
457     if( p_intf->p_sys->hConsoleIn == INVALID_HANDLE_VALUE )
458     {
459         msg_Err( p_intf, "couldn't find user input handle" );
460         vlc_object_kill( p_intf );
461     }
462 #endif
463
464     while( !intf_ShouldDie( p_intf ) )
465     {
466         char *psz_cmd, *psz_arg;
467         vlc_bool_t b_complete;
468
469         if( p_intf->p_sys->pi_socket_listen != NULL &&
470             p_intf->p_sys->i_socket == -1 )
471         {
472             p_intf->p_sys->i_socket =
473                 net_Accept( p_intf, p_intf->p_sys->pi_socket_listen,
474                             INTF_IDLE_SLEEP );
475             if( p_intf->p_sys->i_socket == -1 ) continue;
476         }
477
478         b_complete = ReadCommand( p_intf, p_buffer, &i_size );
479
480         /* Manage the input part */
481         if( p_input == NULL )
482         {
483             if( p_playlist )
484             {
485                 p_input = vlc_object_find( p_playlist, VLC_OBJECT_INPUT,
486                                                        FIND_CHILD );
487             }
488             else
489             {
490                 p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT,
491                                                    FIND_ANYWHERE );
492                 if( p_input )
493                 {
494                     p_playlist = vlc_object_find( p_input, VLC_OBJECT_PLAYLIST,
495                                                            FIND_PARENT );
496                 }
497             }
498             /* New input has been registered */
499             if( p_input )
500             {
501                 if( !p_input->b_dead || !p_input->b_die )
502                 {
503                     msg_rc( STATUS_CHANGE "( new input: %s )",
504                             input_GetItem(p_input)->psz_uri );
505                     msg_rc( STATUS_CHANGE "( audio volume: %d )",
506                             config_GetInt( p_intf, "volume" ));
507                 }
508                 var_AddCallback( p_input, "state", StateChanged, p_intf );
509                 var_AddCallback( p_input, "rate-faster", RateChanged, p_intf );
510                 var_AddCallback( p_input, "rate-slower", RateChanged, p_intf );
511                 var_AddCallback( p_input, "rate", RateChanged, p_intf );
512                 var_AddCallback( p_input, "time-offset", TimeOffsetChanged,
513                                  p_intf );
514             }
515         }
516         else if( p_input->b_dead )
517         {
518             var_DelCallback( p_input, "state", StateChanged, p_intf );
519             var_DelCallback( p_input, "rate-faster", RateChanged, p_intf );
520             var_DelCallback( p_input, "rate-slower", RateChanged, p_intf );
521             var_DelCallback( p_input, "rate", RateChanged, p_intf );
522             var_DelCallback( p_input, "time-offset", TimeOffsetChanged,
523                              p_intf );
524             vlc_object_release( p_input );
525             p_input = NULL;
526
527             if( p_playlist )
528             {
529                 vlc_mutex_lock( &p_playlist->object_lock );
530                 p_intf->p_sys->i_last_state = (int) PLAYLIST_STOPPED;
531                 msg_rc( STATUS_CHANGE "( stop state: 0 )" );
532                 vlc_mutex_unlock( &p_playlist->object_lock );
533             }
534         }
535
536         if( (p_input != NULL) && !p_input->b_dead && !p_input->b_die &&
537             (p_playlist != NULL) )
538         {
539             vlc_mutex_lock( &p_playlist->object_lock );
540             if( (p_intf->p_sys->i_last_state != p_playlist->status.i_status) &&
541                 (p_playlist->status.i_status == PLAYLIST_STOPPED) )
542             {
543                 p_intf->p_sys->i_last_state = PLAYLIST_STOPPED;
544                 msg_rc( STATUS_CHANGE "( stop state: 0 )" );
545             }
546             else if(
547                 (p_intf->p_sys->i_last_state != p_playlist->status.i_status) &&
548                 (p_playlist->status.i_status == PLAYLIST_RUNNING) )
549             {
550                 p_intf->p_sys->i_last_state = p_playlist->status.i_status;
551                 msg_rc( STATUS_CHANGE "( play state: 1 )" );
552             }
553             else if(
554                 (p_intf->p_sys->i_last_state != p_playlist->status.i_status) &&
555                 (p_playlist->status.i_status == PLAYLIST_PAUSED) )
556             {
557                 p_intf->p_sys->i_last_state = p_playlist->status.i_status;
558                 msg_rc( STATUS_CHANGE "( pause state: 2 )" );
559             }
560             vlc_mutex_unlock( &p_playlist->object_lock );
561         }
562
563         if( p_input && b_showpos )
564         {
565             i_newpos = 100 * var_GetFloat( p_input, "position" );
566             if( i_oldpos != i_newpos )
567             {
568                 i_oldpos = i_newpos;
569                 msg_rc( "pos: %d%%", i_newpos );
570             }
571         }
572
573         /* Is there something to do? */
574         if( !b_complete ) continue;
575
576
577         /* Skip heading spaces */
578         psz_cmd = p_buffer;
579         while( *psz_cmd == ' ' )
580         {
581             psz_cmd++;
582         }
583
584         /* Split psz_cmd at the first space and make sure that
585          * psz_arg is valid */
586         psz_arg = strchr( psz_cmd, ' ' );
587         if( psz_arg )
588         {
589             *psz_arg++ = 0;
590             while( *psz_arg == ' ' )
591             {
592                 psz_arg++;
593             }
594         }
595         else
596         {
597             psz_arg = "";
598         }
599
600         /* module specfic commands: @<module name> <command> <args...> */
601         if( *psz_cmd == '@' && *psz_arg )
602         {
603             /* Parse miscellaneous commands */
604             char *psz_alias = psz_cmd + 1;
605             char *psz_mycmd = strdup( psz_arg );
606             char *psz_myarg = strchr( psz_mycmd, ' ' );
607             char *psz_msg;
608
609             if( !psz_myarg )
610             {
611                 msg_rc( "Not enough parameters." );
612             }
613             else
614             {
615                 *psz_myarg = '\0';
616                 psz_myarg ++;
617
618                 var_Command( p_intf, psz_alias, psz_mycmd, psz_myarg,
619                              &psz_msg );
620
621                 if( psz_msg )
622                 {
623                     msg_rc( psz_msg );
624                     free( psz_msg );
625                 }
626             }
627             free( psz_mycmd );
628         }
629         /* If the user typed a registered local command, try it */
630         else if( var_Type( p_intf, psz_cmd ) & VLC_VAR_ISCOMMAND )
631         {
632             vlc_value_t val;
633             int i_ret;
634
635             val.psz_string = psz_arg;
636             i_ret = var_Set( p_intf, psz_cmd, val );
637             msg_rc( "%s: returned %i (%s)",
638                     psz_cmd, i_ret, vlc_error( i_ret ) );
639         }
640         /* Or maybe it's a global command */
641         else if( var_Type( p_intf->p_libvlc, psz_cmd ) & VLC_VAR_ISCOMMAND )
642         {
643             vlc_value_t val;
644             int i_ret;
645
646             val.psz_string = psz_arg;
647             /* FIXME: it's a global command, but we should pass the
648              * local object as an argument, not p_intf->p_libvlc. */
649             i_ret = var_Set( p_intf->p_libvlc, psz_cmd, val );
650             if( i_ret != 0 )
651             {
652                 msg_rc( "%s: returned %i (%s)",
653                          psz_cmd, i_ret, vlc_error( i_ret ) );
654             }
655         }
656         else if( !strcmp( psz_cmd, "logout" ) )
657         {
658             /* Close connection */
659             if( p_intf->p_sys->i_socket != -1 )
660             {
661                 net_Close( p_intf->p_sys->i_socket );
662             }
663             p_intf->p_sys->i_socket = -1;
664         }
665         else if( !strcmp( psz_cmd, "info" ) )
666         {
667             if( p_input )
668             {
669                 int i, j;
670                 vlc_mutex_lock( &input_GetItem(p_input)->lock );
671                 for ( i = 0; i < input_GetItem(p_input)->i_categories; i++ )
672                 {
673                     info_category_t *p_category = input_GetItem(p_input)
674                                                         ->pp_categories[i];
675
676                     msg_rc( "+----[ %s ]", p_category->psz_name );
677                     msg_rc( "| " );
678                     for ( j = 0; j < p_category->i_infos; j++ )
679                     {
680                         info_t *p_info = p_category->pp_infos[j];
681                         msg_rc( "| %s: %s", p_info->psz_name,
682                                 p_info->psz_value );
683                     }
684                     msg_rc( "| " );
685                 }
686                 msg_rc( "+----[ end of stream info ]" );
687                 vlc_mutex_unlock( &input_GetItem(p_input)->lock );
688             }
689             else
690             {
691                 msg_rc( "no input" );
692             }
693         }
694         else if( !strcmp( psz_cmd, "is_playing" ) )
695         {
696             if( ! p_input )
697             {
698                 msg_rc( "0" );
699             }
700             else
701             {
702                 msg_rc( "1" );
703             }
704         }
705         else if( !strcmp( psz_cmd, "get_time" ) )
706         {
707             if( ! p_input )
708             {
709                 msg_rc("0");
710             }
711             else
712             {
713                 vlc_value_t time;
714                 var_Get( p_input, "time", &time );
715                 msg_rc( "%i", time.i_time / 1000000);
716             }
717         }
718         else if( !strcmp( psz_cmd, "get_length" ) )
719         {
720             if( ! p_input )
721             {
722                 msg_rc("0");
723             }
724             else
725             {
726                 vlc_value_t time;
727                 var_Get( p_input, "length", &time );
728                 msg_rc( "%i", time.i_time / 1000000);
729             }
730         }
731         else if( !strcmp( psz_cmd, "get_title" ) )
732         {
733             if( ! p_input )
734             {
735                 msg_rc("");
736             }
737             else
738             {
739                 msg_rc( "%s", input_GetItem(p_input)->psz_name );
740             }
741         }
742         else if( !strcmp( psz_cmd, "longhelp" ) || !strncmp( psz_cmd, "h", 1 )
743                  || !strncmp( psz_cmd, "H", 1 ) || !strncmp( psz_cmd, "?", 1 ) )
744         {
745             if( !strcmp( psz_cmd, "longhelp" ) || !strncmp( psz_cmd, "H", 1 ) )
746                  b_longhelp = VLC_TRUE;
747             else b_longhelp = VLC_FALSE;
748
749             Help( p_intf, b_longhelp );
750         }
751         else if( !strcmp( psz_cmd, "check-updates" ) )
752         {
753             checkUpdates( p_intf, psz_arg );
754         }
755         else if( !strcmp( psz_cmd, "key" ) || !strcmp( psz_cmd, "hotkey" ) )
756         {
757             var_SetInteger( p_intf->p_libvlc, "key-pressed",
758                             config_GetInt( p_intf, psz_arg ) );
759         }
760         else switch( psz_cmd[0] )
761         {
762         case 'f':
763         case 'F':
764             if( p_input )
765             {
766                 vout_thread_t *p_vout;
767                 p_vout = vlc_object_find( p_input,
768                                           VLC_OBJECT_VOUT, FIND_CHILD );
769
770                 if( p_vout )
771                 {
772                     vlc_value_t val;
773                     vlc_bool_t b_update = VLC_FALSE;
774                     var_Get( p_vout, "fullscreen", &val );
775                     val.b_bool = !val.b_bool;
776                     if( !strncmp( psz_arg, "on", 2 )
777                         && ( val.b_bool == VLC_TRUE ) )
778                     {
779                         b_update = VLC_TRUE;
780                         val.b_bool = VLC_TRUE;
781                     }
782                     else if( !strncmp( psz_arg, "off", 3 )
783                              && ( val.b_bool == VLC_FALSE ) )
784                     {
785                         b_update = VLC_TRUE;
786                         val.b_bool = VLC_FALSE;
787                     }
788                     else if( strncmp( psz_arg, "off", 3 )
789                              && strncmp( psz_arg, "on", 2 ) )
790                         b_update = VLC_TRUE;
791                     if( b_update ) var_Set( p_vout, "fullscreen", val );
792                     vlc_object_release( p_vout );
793                 }
794             }
795             break;
796
797         case 's':
798         case 'S':
799             ;
800             break;
801
802         case '\0':
803             /* Ignore empty lines */
804             break;
805
806         default:
807             msg_rc(_("Unknown command `%s'. Type `help' for help."), psz_cmd);
808             break;
809         }
810
811         /* Command processed */
812         i_size = 0; p_buffer[0] = 0;
813     }
814
815     msg_rc( STATUS_CHANGE "( stop state: 0 )" );
816     msg_rc( STATUS_CHANGE "( quit )" );
817
818     if( p_input )
819     {
820         var_DelCallback( p_input, "state", StateChanged, p_intf );
821         var_DelCallback( p_input, "rate-faster", RateChanged, p_intf );
822         var_DelCallback( p_input, "rate-slower", RateChanged, p_intf );
823         var_DelCallback( p_input, "rate", RateChanged, p_intf );
824         var_DelCallback( p_input, "time-offset", TimeOffsetChanged, p_intf );
825         vlc_object_release( p_input );
826         p_input = NULL;
827     }
828
829     if( p_playlist )
830     {
831         vlc_object_release( p_playlist );
832         p_playlist = NULL;
833     }
834
835     var_DelCallback( p_intf->p_libvlc, "volume-change", VolumeChanged, p_intf );
836 }
837
838 static void Help( intf_thread_t *p_intf, vlc_bool_t b_longhelp)
839 {
840     msg_rc(_("+----[ Remote control commands ]"));
841     msg_rc(  "| ");
842     msg_rc(_("| add XYZ  . . . . . . . . . . . . add XYZ to playlist"));
843     msg_rc(_("| enqueue XYZ  . . . . . . . . . queue XYZ to playlist"));
844     msg_rc(_("| playlist . . . . .  show items currently in playlist"));
845     msg_rc(_("| play . . . . . . . . . . . . . . . . . . play stream"));
846     msg_rc(_("| stop . . . . . . . . . . . . . . . . . . stop stream"));
847     msg_rc(_("| next . . . . . . . . . . . . . .  next playlist item"));
848     msg_rc(_("| prev . . . . . . . . . . . .  previous playlist item"));
849     msg_rc(_("| goto . . . . . . . . . . . . . .  goto item at index"));
850     msg_rc(_("| repeat [on|off] . . . .  toggle playlist item repeat"));
851     msg_rc(_("| loop [on|off] . . . . . .  toggle playlist item loop"));
852     msg_rc(_("| clear . . . . . . . . . . . . .   clear the playlist"));
853     msg_rc(_("| status . . . . . . . . . . . current playlist status"));
854     msg_rc(_("| title [X]  . . . . . . set/get title in current item"));
855     msg_rc(_("| title_n  . . . . . . . .  next title in current item"));
856     msg_rc(_("| title_p  . . . . . .  previous title in current item"));
857     msg_rc(_("| chapter [X]  . . . . set/get chapter in current item"));
858     msg_rc(_("| chapter_n  . . . . . .  next chapter in current item"));
859     msg_rc(_("| chapter_p  . . . .  previous chapter in current item"));
860     msg_rc(  "| ");
861     msg_rc(_("| seek X . . . seek in seconds, for instance `seek 12'"));
862     msg_rc(_("| pause  . . . . . . . . . . . . . . . .  toggle pause"));
863     msg_rc(_("| fastforward  . . . . . . . .  .  set to maximum rate"));
864     msg_rc(_("| rewind  . . . . . . . . . . . .  set to minimum rate"));
865     msg_rc(_("| faster . . . . . . . . . .  faster playing of stream"));
866     msg_rc(_("| slower . . . . . . . . . .  slower playing of stream"));
867     msg_rc(_("| normal . . . . . . . . . .  normal playing of stream"));
868     msg_rc(_("| f [on|off] . . . . . . . . . . . . toggle fullscreen"));
869     msg_rc(_("| info . . . . .  information about the current stream"));
870     msg_rc(_("| get_time . . seconds elapsed since stream's beginning"));
871     msg_rc(_("| is_playing . . . .  1 if a stream plays, 0 otherwise"));
872     msg_rc(_("| get_title . . . . .  the title of the current stream"));
873     msg_rc(_("| get_length . . . .  the length of the current stream"));
874     msg_rc(  "| ");
875     msg_rc(_("| volume [X] . . . . . . . . . .  set/get audio volume"));
876     msg_rc(_("| volup [X]  . . . . . . .  raise audio volume X steps"));
877     msg_rc(_("| voldown [X]  . . . . . .  lower audio volume X steps"));
878     msg_rc(_("| adev [X] . . . . . . . . . . .  set/get audio device"));
879     msg_rc(_("| achan [X]. . . . . . . . . .  set/get audio channels"));
880     msg_rc(_("| atrack [X] . . . . . . . . . . . set/get audio track"));
881     msg_rc(_("| vtrack [X] . . . . . . . . . . . set/get video track"));
882     msg_rc(_("| vratio [X]  . . . . . . . set/get video aspect ratio"));
883     msg_rc(_("| vcrop [X]  . . . . . . . . . . .  set/get video crop"));
884     msg_rc(_("| vzoom [X]  . . . . . . . . . . .  set/get video zoom"));
885     msg_rc(_("| strack [X] . . . . . . . . . set/get subtitles track"));
886     msg_rc(_("| key [hotkey name] . . . . . .  simulate hotkey press"));
887     msg_rc(_("| menu . . [on|off|up|down|left|right|select] use menu"));
888     msg_rc(  "| ");
889
890     if (b_longhelp)
891     {
892         msg_rc(_("| @name marq-marquee  STRING  . . overlay STRING in video"));
893         msg_rc(_("| @name marq-x X . . . . . . . . . . . .offset from left"));
894         msg_rc(_("| @name marq-y Y . . . . . . . . . . . . offset from top"));
895         msg_rc(_("| @name marq-position #. . .  .relative position control"));
896         msg_rc(_("| @name marq-color # . . . . . . . . . . font color, RGB"));
897         msg_rc(_("| @name marq-opacity # . . . . . . . . . . . . . opacity"));
898         msg_rc(_("| @name marq-timeout T. . . . . . . . . . timeout, in ms"));
899         msg_rc(_("| @name marq-size # . . . . . . . . font size, in pixels"));
900         msg_rc(  "| ");
901         msg_rc(_("| @name logo-file STRING . . .the overlay file path/name"));
902         msg_rc(_("| @name logo-x X . . . . . . . . . . . .offset from left"));
903         msg_rc(_("| @name logo-y Y . . . . . . . . . . . . offset from top"));
904         msg_rc(_("| @name logo-position #. . . . . . . . relative position"));
905         msg_rc(_("| @name logo-transparency #. . . . . . . . .transparency"));
906         msg_rc(  "| ");
907         msg_rc(_("| @name mosaic-alpha # . . . . . . . . . . . . . . alpha"));
908         msg_rc(_("| @name mosaic-height #. . . . . . . . . . . . . .height"));
909         msg_rc(_("| @name mosaic-width # . . . . . . . . . . . . . . width"));
910         msg_rc(_("| @name mosaic-xoffset # . . . .top left corner position"));
911         msg_rc(_("| @name mosaic-yoffset # . . . .top left corner position"));
912         msg_rc(_("| @name mosaic-offsets x,y(,x,y)*. . . . list of offsets"));
913         msg_rc(_("| @name mosaic-align 0..2,4..6,8..10. . .mosaic alignment"));
914         msg_rc(_("| @name mosaic-vborder # . . . . . . . . vertical border"));
915         msg_rc(_("| @name mosaic-hborder # . . . . . . . horizontal border"));
916         msg_rc(_("| @name mosaic-position {0=auto,1=fixed} . . . .position"));
917         msg_rc(_("| @name mosaic-rows #. . . . . . . . . . .number of rows"));
918         msg_rc(_("| @name mosaic-cols #. . . . . . . . . . .number of cols"));
919         msg_rc(_("| @name mosaic-order id(,id)* . . . . order of pictures "));
920         msg_rc(_("| @name mosaic-keep-aspect-ratio {0,1} . . .aspect ratio"));
921         msg_rc(  "| ");
922         msg_rc(_("| check-updates [newer] [equal] [older]\n"
923                  "|               [undef] [info] [source] [binary] [plugin]"));
924         msg_rc(  "| ");
925     }
926     msg_rc(_("| help . . . . . . . . . . . . . . . this help message"));
927     msg_rc(_("| longhelp . . . . . . . . . . . a longer help message"));
928     msg_rc(_("| logout . . . . . . .  exit (if in socket connection)"));
929     msg_rc(_("| quit . . . . . . . . . . . . . . . . . . .  quit vlc"));
930     msg_rc(  "| ");
931     msg_rc(_("+----[ end of help ]"));
932 }
933
934 /********************************************************************
935  * Status callback routines
936  ********************************************************************/
937 static int TimeOffsetChanged( vlc_object_t *p_this, char const *psz_cmd,
938     vlc_value_t oldval, vlc_value_t newval, void *p_data )
939 {
940     intf_thread_t *p_intf = (intf_thread_t*)p_data;
941     input_thread_t *p_input = NULL;
942
943     vlc_mutex_lock( &p_intf->p_sys->status_lock );
944     p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_ANYWHERE );
945     if( p_input )
946     {
947         msg_rc( STATUS_CHANGE "( time-offset: %d )",
948                 var_GetInteger( p_input, "time-offset" ) );
949         vlc_object_release( p_input );
950     }
951     vlc_mutex_unlock( &p_intf->p_sys->status_lock );
952     return VLC_SUCCESS;
953 }
954
955 static int VolumeChanged( vlc_object_t *p_this, char const *psz_cmd,
956     vlc_value_t oldval, vlc_value_t newval, void *p_data )
957 {
958     intf_thread_t *p_intf = (intf_thread_t*)p_data;
959
960     vlc_mutex_lock( &p_intf->p_sys->status_lock );
961     msg_rc( STATUS_CHANGE "( audio volume: %d )",
962             config_GetInt( p_this, "volume") );
963     vlc_mutex_unlock( &p_intf->p_sys->status_lock );
964     return VLC_SUCCESS;
965 }
966
967 static int StateChanged( vlc_object_t *p_this, char const *psz_cmd,
968     vlc_value_t oldval, vlc_value_t newval, void *p_data )
969 {
970     intf_thread_t *p_intf = (intf_thread_t*)p_data;
971     playlist_t    *p_playlist = NULL;
972     input_thread_t *p_input = NULL;
973
974     vlc_mutex_lock( &p_intf->p_sys->status_lock );
975     p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_ANYWHERE );
976     if( p_input )
977     {
978         p_playlist = vlc_object_find( p_input, VLC_OBJECT_PLAYLIST, FIND_PARENT );
979         if( p_playlist )
980         {
981             char cmd[5] = "";
982             switch( p_playlist->status.i_status )
983             {
984             case PLAYLIST_STOPPED:
985                 strncpy( &cmd[0], "stop", 4);
986                 cmd[4] = '\0';
987                 break;
988             case PLAYLIST_RUNNING:
989                 strncpy( &cmd[0], "play", 4);
990                 cmd[4] = '\0';
991                 break;
992             case PLAYLIST_PAUSED:
993                 strncpy( &cmd[0], "pause", 5);
994                 cmd[5] = '\0';
995                 break;
996             } /* var_GetInteger( p_input, "state" )  */
997             msg_rc( STATUS_CHANGE "( %s state: %d )", &cmd[0], newval.i_int );
998             vlc_object_release( p_playlist );
999         }
1000         vlc_object_release( p_input );
1001     }
1002     vlc_mutex_unlock( &p_intf->p_sys->status_lock );
1003     return VLC_SUCCESS;
1004 }
1005
1006 static int RateChanged( vlc_object_t *p_this, char const *psz_cmd,
1007     vlc_value_t oldval, vlc_value_t newval, void *p_data )
1008 {
1009     intf_thread_t *p_intf = (intf_thread_t*)p_data;
1010     input_thread_t *p_input = NULL;
1011
1012     vlc_mutex_lock( &p_intf->p_sys->status_lock );
1013     p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_ANYWHERE );
1014     if( p_input )
1015     {
1016         msg_rc( STATUS_CHANGE "( new rate: %d )",
1017                 var_GetInteger( p_input, "rate" ) );
1018         vlc_object_release( p_input );
1019     }
1020     vlc_mutex_unlock( &p_intf->p_sys->status_lock );
1021     return VLC_SUCCESS;
1022 }
1023
1024 /********************************************************************
1025  * Command routines
1026  ********************************************************************/
1027 static int Input( vlc_object_t *p_this, char const *psz_cmd,
1028                   vlc_value_t oldval, vlc_value_t newval, void *p_data )
1029 {
1030     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1031     input_thread_t *p_input;
1032     vlc_value_t     val;
1033
1034     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
1035     if( !p_input ) return VLC_ENOOBJ;
1036
1037     var_Get( p_input, "state", &val );
1038     if( ( ( val.i_int == PAUSE_S ) || ( val.i_int == PLAYLIST_PAUSED ) ) &&
1039         ( strcmp( psz_cmd, "pause" ) != 0 ) )
1040     {
1041         msg_rc( _("Press menu select or pause to continue.") );
1042         vlc_object_release( p_input );
1043         return VLC_EGENERIC;
1044     }
1045
1046     /* Parse commands that only require an input */
1047     if( !strcmp( psz_cmd, "pause" ) )
1048     {
1049         val.i_int = config_GetInt( p_intf, "key-play-pause" );
1050         var_Set( p_intf->p_libvlc, "key-pressed", val );
1051         vlc_object_release( p_input );
1052         return VLC_SUCCESS;
1053     }
1054     else if( !strcmp( psz_cmd, "seek" ) )
1055     {
1056         if( strlen( newval.psz_string ) > 0 &&
1057             newval.psz_string[strlen( newval.psz_string ) - 1] == '%' )
1058         {
1059             val.f_float = (float)atof( newval.psz_string ) / 100.0;
1060             var_Set( p_input, "position", val );
1061         }
1062         else
1063         {
1064             val.i_time = ((int64_t)atoi( newval.psz_string )) * 1000000;
1065             var_Set( p_input, "time", val );
1066         }
1067         vlc_object_release( p_input );
1068         return VLC_SUCCESS;
1069     }
1070     else if ( !strcmp( psz_cmd, "fastforward" ) )
1071     {
1072         val.i_int = config_GetInt( p_intf, "key-jump+extrashort" );
1073         var_Set( p_intf->p_libvlc, "key-pressed", val );
1074         vlc_object_release( p_input );
1075         return VLC_SUCCESS;
1076     }
1077     else if ( !strcmp( psz_cmd, "rewind" ) )
1078     {
1079         val.i_int = config_GetInt( p_intf, "key-jump-extrashort" );
1080         var_Set( p_intf->p_libvlc, "key-pressed", val );
1081         vlc_object_release( p_input );
1082         return VLC_SUCCESS;
1083     }
1084     else if ( !strcmp( psz_cmd, "faster" ) )
1085     {
1086         val.b_bool = VLC_TRUE;
1087         var_Set( p_input, "rate-faster", val );
1088         vlc_object_release( p_input );
1089         return VLC_SUCCESS;
1090     }
1091     else if ( !strcmp( psz_cmd, "slower" ) )
1092     {
1093         val.b_bool = VLC_TRUE;
1094         var_Set( p_input, "rate-slower", val );
1095         vlc_object_release( p_input );
1096         return VLC_SUCCESS;
1097     }
1098     else if ( !strcmp( psz_cmd, "normal" ) )
1099     {
1100         val.i_int = INPUT_RATE_DEFAULT;
1101         var_Set( p_input, "rate", val );
1102         vlc_object_release( p_input );
1103         return VLC_SUCCESS;
1104     }
1105     else if( !strcmp( psz_cmd, "chapter" ) ||
1106              !strcmp( psz_cmd, "chapter_n" ) ||
1107              !strcmp( psz_cmd, "chapter_p" ) )
1108     {
1109         if( !strcmp( psz_cmd, "chapter" ) )
1110         {
1111             if ( *newval.psz_string )
1112             {
1113                 /* Set. */
1114                 val.i_int = atoi( newval.psz_string );
1115                 var_Set( p_input, "chapter", val );
1116             }
1117             else
1118             {
1119                 vlc_value_t val_list;
1120
1121                 /* Get. */
1122                 var_Get( p_input, "chapter", &val );
1123                 var_Change( p_input, "chapter", VLC_VAR_GETCHOICES,
1124                             &val_list, NULL );
1125                 msg_rc( "Currently playing chapter %d/%d.",
1126                         val.i_int, val_list.p_list->i_count );
1127                 var_Change( p_this, "chapter", VLC_VAR_FREELIST,
1128                             &val_list, NULL );
1129             }
1130         }
1131         else if( !strcmp( psz_cmd, "chapter_n" ) )
1132         {
1133             val.b_bool = VLC_TRUE;
1134             var_Set( p_input, "next-chapter", val );
1135         }
1136         else if( !strcmp( psz_cmd, "chapter_p" ) )
1137         {
1138             val.b_bool = VLC_TRUE;
1139             var_Set( p_input, "prev-chapter", val );
1140         }
1141         vlc_object_release( p_input );
1142         return VLC_SUCCESS;
1143     }
1144     else if( !strcmp( psz_cmd, "title" ) ||
1145              !strcmp( psz_cmd, "title_n" ) ||
1146              !strcmp( psz_cmd, "title_p" ) )
1147     {
1148         if( !strcmp( psz_cmd, "title" ) )
1149         {
1150             if ( *newval.psz_string )
1151             {
1152                 /* Set. */
1153                 val.i_int = atoi( newval.psz_string );
1154                 var_Set( p_input, "title", val );
1155             }
1156             else
1157             {
1158                 vlc_value_t val_list;
1159
1160                 /* Get. */
1161                 var_Get( p_input, "title", &val );
1162                 var_Change( p_input, "title", VLC_VAR_GETCHOICES,
1163                             &val_list, NULL );
1164                 msg_rc( "Currently playing title %d/%d.",
1165                         val.i_int, val_list.p_list->i_count );
1166                 var_Change( p_this, "title", VLC_VAR_FREELIST,
1167                             &val_list, NULL );
1168             }
1169         }
1170         else if( !strcmp( psz_cmd, "title_n" ) )
1171         {
1172             val.b_bool = VLC_TRUE;
1173             var_Set( p_input, "next-title", val );
1174         }
1175         else if( !strcmp( psz_cmd, "title_p" ) )
1176         {
1177             val.b_bool = VLC_TRUE;
1178             var_Set( p_input, "prev-title", val );
1179         }
1180
1181         vlc_object_release( p_input );
1182         return VLC_SUCCESS;
1183     }
1184     else if(    !strcmp( psz_cmd, "atrack" )
1185              || !strcmp( psz_cmd, "vtrack" )
1186              || !strcmp( psz_cmd, "strack" ) )
1187     {
1188         const char *psz_variable;
1189         vlc_value_t val_name;
1190         int i_error;
1191
1192         if( !strcmp( psz_cmd, "atrack" ) )
1193         {
1194             psz_variable = "audio-es";
1195         }
1196         else if( !strcmp( psz_cmd, "vtrack" ) )
1197         {
1198             psz_variable = "video-es";
1199         }
1200         else
1201         {
1202             psz_variable = "spu-es";
1203         }
1204
1205         /* Get the descriptive name of the variable */
1206         var_Change( p_input, psz_variable, VLC_VAR_GETTEXT,
1207                      &val_name, NULL );
1208         if( !val_name.psz_string ) val_name.psz_string = strdup(psz_variable);
1209
1210         if( newval.psz_string && *newval.psz_string )
1211         {
1212             /* set */
1213             vlc_value_t val;
1214             val.i_int = atoi( newval.psz_string );
1215
1216             i_error = var_Set( p_input, psz_variable, val );
1217         }
1218         else
1219         {
1220             /* get */
1221             vlc_value_t val, text;
1222             int i, i_value;
1223
1224             if ( var_Get( p_input, psz_variable, &val ) < 0 )
1225             {
1226                 vlc_object_release( p_input );
1227                 return VLC_EGENERIC;
1228             }
1229             i_value = val.i_int;
1230
1231             if ( var_Change( p_input, psz_variable,
1232                              VLC_VAR_GETLIST, &val, &text ) < 0 )
1233             {
1234                 vlc_object_release( p_input );
1235                 return VLC_EGENERIC;
1236             }
1237
1238             msg_rc( "+----[ %s ]", val_name.psz_string );
1239             for ( i = 0; i < val.p_list->i_count; i++ )
1240             {
1241                 if ( i_value == val.p_list->p_values[i].i_int )
1242                     msg_rc( "| %i - %s *", val.p_list->p_values[i].i_int,
1243                             text.p_list->p_values[i].psz_string );
1244                 else
1245                     msg_rc( "| %i - %s", val.p_list->p_values[i].i_int,
1246                             text.p_list->p_values[i].psz_string );
1247             }
1248             var_Change( p_input, psz_variable, VLC_VAR_FREELIST,
1249                         &val, &text );
1250             msg_rc( "+----[ end of %s ]", val_name.psz_string );
1251
1252             if( val_name.psz_string ) free( val_name.psz_string );
1253
1254             i_error = VLC_SUCCESS;
1255         }
1256         vlc_object_release( p_input );
1257         return i_error;
1258     }
1259
1260     /* Never reached. */
1261     vlc_object_release( p_input );
1262     return VLC_EGENERIC;
1263 }
1264
1265 static int Playlist( vlc_object_t *p_this, char const *psz_cmd,
1266                      vlc_value_t oldval, vlc_value_t newval, void *p_data )
1267 {
1268     vlc_value_t val;
1269
1270     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1271     playlist_t *p_playlist = pl_Yield( p_this );
1272
1273     PL_LOCK;
1274     if( p_playlist->p_input )
1275     {
1276         var_Get( p_playlist->p_input, "state", &val );
1277         if( ( val.i_int == PAUSE_S ) || ( val.i_int == PLAYLIST_PAUSED ) )
1278         {
1279             msg_rc( _("Type 'menu select' or 'pause' to continue.") );
1280             vlc_object_release( p_playlist );
1281             PL_UNLOCK;
1282             return VLC_EGENERIC;
1283         }
1284     }
1285     PL_UNLOCK;
1286
1287     /* Parse commands that require a playlist */
1288     if( !strcmp( psz_cmd, "prev" ) )
1289     {
1290         playlist_Prev( p_playlist );
1291     }
1292     else if( !strcmp( psz_cmd, "next" ) )
1293     {
1294         playlist_Next( p_playlist );
1295     }
1296     else if( !strcmp( psz_cmd, "play" ) )
1297     {
1298         msg_Warn( p_playlist, "play" );
1299         playlist_Play( p_playlist );
1300     }
1301     else if( !strcmp( psz_cmd, "repeat" ) )
1302     {
1303         vlc_bool_t b_update = VLC_TRUE;
1304
1305         var_Get( p_playlist, "repeat", &val );
1306
1307         if( strlen( newval.psz_string ) > 0 )
1308         {
1309             if ( ( !strncmp( newval.psz_string, "on", 2 ) && ( val.b_bool == VLC_TRUE ) ) ||
1310                  ( !strncmp( newval.psz_string, "off", 3 ) && ( val.b_bool == VLC_FALSE ) ) )
1311             {
1312                 b_update = VLC_FALSE;
1313             }
1314         }
1315
1316         if ( b_update )
1317         {
1318             val.b_bool = !val.b_bool;
1319             var_Set( p_playlist, "repeat", val );
1320         }
1321         msg_rc( "Setting repeat to %d", val.b_bool );
1322     }
1323     else if( !strcmp( psz_cmd, "loop" ) )
1324     {
1325         vlc_bool_t b_update = VLC_TRUE;
1326
1327         var_Get( p_playlist, "loop", &val );
1328
1329         if( strlen( newval.psz_string ) > 0 )
1330         {
1331             if ( ( !strncmp( newval.psz_string, "on", 2 ) && ( val.b_bool == VLC_TRUE ) ) ||
1332                  ( !strncmp( newval.psz_string, "off", 3 ) && ( val.b_bool == VLC_FALSE ) ) )
1333             {
1334                 b_update = VLC_FALSE;
1335             }
1336         }
1337
1338         if ( b_update )
1339         {
1340             val.b_bool = !val.b_bool;
1341             var_Set( p_playlist, "loop", val );
1342         }
1343         msg_rc( "Setting loop to %d", val.b_bool );
1344     }
1345     else if (!strcmp( psz_cmd, "goto" ) )
1346     {
1347         msg_rc( _("goto is deprecated" ) );
1348         msg_Err( p_playlist, "goto is deprecated" );
1349     }
1350     else if( !strcmp( psz_cmd, "stop" ) )
1351     {
1352         playlist_Stop( p_playlist );
1353     }
1354     else if( !strcmp( psz_cmd, "clear" ) )
1355     {
1356         playlist_Stop( p_playlist );
1357         playlist_Clear( p_playlist, VLC_FALSE );
1358     }
1359     else if( !strcmp( psz_cmd, "add" ) &&
1360              newval.psz_string && *newval.psz_string )
1361     {
1362         input_item_t *p_item = parse_MRL( p_intf, newval.psz_string );
1363
1364         if( p_item )
1365         {
1366             msg_rc( "Trying to add %s to playlist.", newval.psz_string );
1367             playlist_AddInput( p_playlist, p_item,
1368                      PLAYLIST_GO|PLAYLIST_APPEND, PLAYLIST_END, VLC_TRUE,
1369                      VLC_FALSE );
1370         }
1371     }
1372     else if( !strcmp( psz_cmd, "enqueue" ) &&
1373              newval.psz_string && *newval.psz_string )
1374     {
1375         input_item_t *p_item = parse_MRL( p_intf, newval.psz_string );
1376
1377         if( p_item )
1378         {
1379             msg_rc( "trying to enqueue %s to playlist", newval.psz_string );
1380             playlist_AddInput( p_playlist, p_item,
1381                                PLAYLIST_APPEND, PLAYLIST_END, VLC_TRUE,
1382                                VLC_FALSE);
1383         }
1384     }
1385     else if( !strcmp( psz_cmd, "playlist" ) )
1386     {
1387         msg_Dbg( p_playlist, "Dumping category" );
1388         playlist_NodeDump( p_playlist, p_playlist->p_root_category, 0 );
1389         msg_Dbg( p_playlist, "Dumping Onelevel" );
1390         playlist_NodeDump( p_playlist, p_playlist->p_root_onelevel, 0 );
1391     }
1392     else if( !strcmp( psz_cmd, "sort" ))
1393     {
1394         playlist_RecursiveNodeSort( p_playlist, p_playlist->p_root_onelevel,
1395                                     SORT_ARTIST, ORDER_NORMAL );
1396     }
1397     else if( !strcmp( psz_cmd, "status" ) )
1398     {
1399         if( p_playlist->p_input )
1400         {
1401             /* Replay the current state of the system. */
1402             msg_rc( STATUS_CHANGE "( new input: %s )",
1403                     input_GetItem(p_playlist->p_input)->psz_uri );
1404             msg_rc( STATUS_CHANGE "( audio volume: %d )",
1405                     config_GetInt( p_intf, "volume" ));
1406
1407             vlc_mutex_lock( &p_playlist->object_lock );
1408             switch( p_playlist->status.i_status )
1409             {
1410                 case PLAYLIST_STOPPED:
1411                     msg_rc( STATUS_CHANGE "( stop state: 0 )" );
1412                     break;
1413                 case PLAYLIST_RUNNING:
1414                     msg_rc( STATUS_CHANGE "( play state: 1 )" );
1415                     break;
1416                 case PLAYLIST_PAUSED:
1417                     msg_rc( STATUS_CHANGE "( pause state: 2 )" );
1418                     break;
1419                 default:
1420                     msg_rc( STATUS_CHANGE "( state unknown )" );
1421                     break;
1422             }
1423             vlc_mutex_unlock( &p_playlist->object_lock );
1424         }
1425     }
1426
1427     /*
1428      * sanity check
1429      */
1430     else
1431     {
1432         msg_rc( "unknown command!" );
1433     }
1434
1435     vlc_object_release( p_playlist );
1436     return VLC_SUCCESS;
1437 }
1438
1439 static int Quit( vlc_object_t *p_this, char const *psz_cmd,
1440                  vlc_value_t oldval, vlc_value_t newval, void *p_data )
1441 {
1442     playlist_t *p_playlist;
1443
1444     p_playlist = vlc_object_find( p_this, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
1445     if( p_playlist )
1446     {
1447         playlist_Stop( p_playlist );
1448         vlc_object_release( p_playlist );
1449     }
1450     vlc_object_kill( p_this->p_libvlc );
1451     return VLC_SUCCESS;
1452 }
1453
1454 static int Intf( vlc_object_t *p_this, char const *psz_cmd,
1455                  vlc_value_t oldval, vlc_value_t newval, void *p_data )
1456 {
1457     intf_thread_t *p_newintf = NULL;
1458
1459     p_newintf = intf_Create( p_this->p_libvlc, newval.psz_string, 0, NULL );
1460     if( p_newintf )
1461     {
1462         p_newintf->b_block = VLC_FALSE;
1463         if( intf_RunThread( p_newintf ) )
1464         {
1465             vlc_object_detach( p_newintf );
1466             intf_Destroy( p_newintf );
1467         }
1468     }
1469
1470     return VLC_SUCCESS;
1471 }
1472
1473 static int Volume( vlc_object_t *p_this, char const *psz_cmd,
1474                    vlc_value_t oldval, vlc_value_t newval, void *p_data )
1475 {
1476     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1477     input_thread_t *p_input = NULL;
1478     int i_error = VLC_EGENERIC;
1479
1480     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
1481     if( !p_input )
1482         return VLC_ENOOBJ;
1483
1484     if( p_input )
1485     {
1486         vlc_value_t val;
1487
1488         var_Get( p_input, "state", &val );
1489         if( ( val.i_int == PAUSE_S ) || ( val.i_int == PLAYLIST_PAUSED ) )
1490         {
1491             msg_rc( _("Type 'menu select' or 'pause' to continue.") );
1492             vlc_object_release( p_input );
1493             return VLC_EGENERIC;
1494         }
1495         vlc_object_release( p_input );
1496     }
1497
1498     if ( *newval.psz_string )
1499     {
1500         /* Set. */
1501         audio_volume_t i_volume = atoi( newval.psz_string );
1502         if ( (i_volume > (audio_volume_t)AOUT_VOLUME_MAX) )
1503         {
1504             msg_rc( "Volume must be in the range %d-%d.", AOUT_VOLUME_MIN,
1505                     AOUT_VOLUME_MAX );
1506             i_error = VLC_EBADVAR;
1507         }
1508         else
1509         {
1510             if( i_volume == AOUT_VOLUME_MIN )
1511             {
1512                 vlc_value_t keyval;
1513
1514                 keyval.i_int = config_GetInt( p_intf, "key-vol-mute" );
1515                 var_Set( p_intf->p_libvlc, "key-pressed", keyval );
1516             }
1517             i_error = aout_VolumeSet( p_this, i_volume );
1518             osd_Volume( p_this );
1519             msg_rc( STATUS_CHANGE "( audio volume: %d )", i_volume );
1520         }
1521     }
1522     else
1523     {
1524         /* Get. */
1525         audio_volume_t i_volume;
1526         if ( aout_VolumeGet( p_this, &i_volume ) < 0 )
1527         {
1528             i_error = VLC_EGENERIC;
1529         }
1530         else
1531         {
1532             msg_rc( STATUS_CHANGE "( audio volume: %d )", i_volume );
1533             i_error = VLC_SUCCESS;
1534         }
1535     }
1536
1537     return i_error;
1538 }
1539
1540 static int VolumeMove( vlc_object_t *p_this, char const *psz_cmd,
1541                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
1542 {
1543     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1544     audio_volume_t i_volume;
1545     input_thread_t *p_input = NULL;
1546     int i_nb_steps = atoi(newval.psz_string);
1547     int i_error = VLC_SUCCESS;
1548     int i_volume_step = 0;
1549
1550     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
1551     if( !p_input )
1552         return VLC_ENOOBJ;
1553
1554     if( p_input )
1555     {
1556         vlc_value_t val;
1557
1558         var_Get( p_input, "state", &val );
1559         if( ( val.i_int == PAUSE_S ) || ( val.i_int == PLAYLIST_PAUSED ) )
1560         {
1561             msg_rc( _("Type 'menu select' or 'pause' to continue.") );
1562             vlc_object_release( p_input );
1563             return VLC_EGENERIC;
1564         }
1565         vlc_object_release( p_input );
1566     }
1567
1568     i_volume_step = config_GetInt( p_intf->p_libvlc, "volume-step" );
1569     if ( i_nb_steps <= 0 || i_nb_steps > (AOUT_VOLUME_MAX/i_volume_step) )
1570     {
1571         i_nb_steps = 1;
1572     }
1573
1574     if ( !strcmp(psz_cmd, "volup") )
1575     {
1576         if ( aout_VolumeUp( p_this, i_nb_steps, &i_volume ) < 0 )
1577             i_error = VLC_EGENERIC;
1578     }
1579     else
1580     {
1581         if ( aout_VolumeDown( p_this, i_nb_steps, &i_volume ) < 0 )
1582             i_error = VLC_EGENERIC;
1583     }
1584     osd_Volume( p_this );
1585
1586     if ( !i_error ) msg_rc( STATUS_CHANGE "( audio volume: %d )", i_volume );
1587     return i_error;
1588 }
1589
1590
1591 static int VideoConfig( vlc_object_t *p_this, char const *psz_cmd,
1592                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
1593 {
1594     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1595     input_thread_t *p_input = NULL;
1596     vout_thread_t * p_vout;
1597     const char * psz_variable;
1598     vlc_value_t val_name;
1599     int i_error;
1600
1601     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
1602     if( !p_input )
1603         return VLC_ENOOBJ;
1604
1605     p_vout = vlc_object_find( p_input, VLC_OBJECT_VOUT, FIND_CHILD );
1606     vlc_object_release( p_input );
1607     if( !p_vout )
1608         return VLC_ENOOBJ;
1609
1610     if( !strcmp( psz_cmd, "vcrop" ) )
1611     {
1612         psz_variable = "crop";
1613     }
1614     else if( !strcmp( psz_cmd, "vratio" ) )
1615     {
1616         psz_variable = "aspect-ratio";
1617     }
1618     else /* if( !strcmp( psz_cmd, "vzoom" ) ) */
1619     {
1620         psz_variable = "zoom";
1621     }
1622
1623
1624     /* Get the descriptive name of the variable */
1625     var_Change( p_vout, psz_variable, VLC_VAR_GETTEXT,
1626                  &val_name, NULL );
1627     if( !val_name.psz_string ) val_name.psz_string = strdup(psz_variable);
1628
1629     if( newval.psz_string && *newval.psz_string )
1630     {
1631         /* set */
1632         if( !strcmp( psz_variable, "zoom" ) )
1633         {
1634             vlc_value_t val;
1635             val.f_float = atof( newval.psz_string );
1636             i_error = var_Set( p_vout, psz_variable, val );
1637         }
1638         else
1639         {
1640             i_error = var_Set( p_vout, psz_variable, newval );
1641         }
1642     }
1643     else
1644     {
1645         /* get */
1646         vlc_value_t val, text;
1647         int i;
1648         float f_value = 0.;
1649         char *psz_value = NULL;
1650
1651         if ( var_Get( p_vout, psz_variable, &val ) < 0 )
1652         {
1653             vlc_object_release( p_vout );
1654             return VLC_EGENERIC;
1655         }
1656         if( !strcmp( psz_variable, "zoom" ) )
1657         {
1658             f_value = val.f_float;
1659         }
1660         else
1661         {
1662             psz_value = strdup( val.psz_string );
1663         }
1664
1665         if ( var_Change( p_vout, psz_variable,
1666                          VLC_VAR_GETLIST, &val, &text ) < 0 )
1667         {
1668             vlc_object_release( p_vout );
1669             return VLC_EGENERIC;
1670         }
1671
1672         msg_rc( "+----[ %s ]", val_name.psz_string );
1673         if( !strcmp( psz_variable, "zoom" ) )
1674         {
1675             for ( i = 0; i < val.p_list->i_count; i++ )
1676             {
1677                 if ( f_value == val.p_list->p_values[i].f_float )
1678                     msg_rc( "| %f - %s *", val.p_list->p_values[i].f_float,
1679                             text.p_list->p_values[i].psz_string );
1680                 else
1681                     msg_rc( "| %f - %s", val.p_list->p_values[i].f_float,
1682                             text.p_list->p_values[i].psz_string );
1683             }
1684         }
1685         else
1686         {
1687             for ( i = 0; i < val.p_list->i_count; i++ )
1688             {
1689                 if ( !strcmp( psz_value, val.p_list->p_values[i].psz_string ) )
1690                     msg_rc( "| %s - %s *", val.p_list->p_values[i].psz_string,
1691                             text.p_list->p_values[i].psz_string );
1692                 else
1693                     msg_rc( "| %s - %s", val.p_list->p_values[i].psz_string,
1694                             text.p_list->p_values[i].psz_string );
1695             }
1696             free( psz_value );
1697         }
1698         var_Change( p_vout, psz_variable, VLC_VAR_FREELIST,
1699                     &val, &text );
1700         msg_rc( "+----[ end of %s ]", val_name.psz_string );
1701
1702         if( val_name.psz_string ) free( val_name.psz_string );
1703
1704         i_error = VLC_SUCCESS;
1705     }
1706     vlc_object_release( p_vout );
1707     return i_error;
1708 }
1709
1710 static int AudioConfig( vlc_object_t *p_this, char const *psz_cmd,
1711                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
1712 {
1713     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1714     input_thread_t *p_input = NULL;
1715     aout_instance_t * p_aout;
1716     const char * psz_variable;
1717     vlc_value_t val_name;
1718     int i_error;
1719
1720     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
1721     if( !p_input )
1722         return VLC_ENOOBJ;
1723
1724     if( p_input )
1725     {
1726         vlc_value_t val;
1727
1728         var_Get( p_input, "state", &val );
1729         if( ( val.i_int == PAUSE_S ) || ( val.i_int == PLAYLIST_PAUSED ) )        {
1730             msg_rc( _("Type 'menu select' or 'pause' to continue.") );
1731             vlc_object_release( p_input );
1732             return VLC_EGENERIC;
1733         }
1734         vlc_object_release( p_input );
1735     }
1736
1737     p_aout = vlc_object_find( p_this, VLC_OBJECT_AOUT, FIND_ANYWHERE );
1738     if ( p_aout == NULL ) return VLC_ENOOBJ;
1739
1740     if ( !strcmp( psz_cmd, "adev" ) )
1741     {
1742         psz_variable = "audio-device";
1743     }
1744     else
1745     {
1746         psz_variable = "audio-channels";
1747     }
1748
1749     /* Get the descriptive name of the variable */
1750     var_Change( (vlc_object_t *)p_aout, psz_variable, VLC_VAR_GETTEXT,
1751                  &val_name, NULL );
1752     if( !val_name.psz_string ) val_name.psz_string = strdup(psz_variable);
1753
1754     if ( !*newval.psz_string )
1755     {
1756         /* Retrieve all registered ***. */
1757         vlc_value_t val, text;
1758         int i, i_value;
1759
1760         if ( var_Get( (vlc_object_t *)p_aout, psz_variable, &val ) < 0 )
1761         {
1762             vlc_object_release( (vlc_object_t *)p_aout );
1763             return VLC_EGENERIC;
1764         }
1765         i_value = val.i_int;
1766
1767         if ( var_Change( (vlc_object_t *)p_aout, psz_variable,
1768                          VLC_VAR_GETLIST, &val, &text ) < 0 )
1769         {
1770             vlc_object_release( (vlc_object_t *)p_aout );
1771             return VLC_EGENERIC;
1772         }
1773
1774         msg_rc( "+----[ %s ]", val_name.psz_string );
1775         for ( i = 0; i < val.p_list->i_count; i++ )
1776         {
1777             if ( i_value == val.p_list->p_values[i].i_int )
1778                 msg_rc( "| %i - %s *", val.p_list->p_values[i].i_int,
1779                         text.p_list->p_values[i].psz_string );
1780             else
1781                 msg_rc( "| %i - %s", val.p_list->p_values[i].i_int,
1782                         text.p_list->p_values[i].psz_string );
1783         }
1784         var_Change( (vlc_object_t *)p_aout, psz_variable, VLC_VAR_FREELIST,
1785                     &val, &text );
1786         msg_rc( "+----[ end of %s ]", val_name.psz_string );
1787
1788         if( val_name.psz_string ) free( val_name.psz_string );
1789         i_error = VLC_SUCCESS;
1790     }
1791     else
1792     {
1793         vlc_value_t val;
1794         val.i_int = atoi( newval.psz_string );
1795
1796         i_error = var_Set( (vlc_object_t *)p_aout, psz_variable, val );
1797     }
1798     vlc_object_release( (vlc_object_t *)p_aout );
1799
1800     return i_error;
1801 }
1802
1803 /* OSD menu commands */
1804 static int Menu( vlc_object_t *p_this, char const *psz_cmd,
1805     vlc_value_t oldval, vlc_value_t newval, void *p_data )
1806 {
1807     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1808     playlist_t    *p_playlist = NULL;
1809     vlc_value_t val;
1810     int i_error = VLC_EGENERIC;
1811
1812     if ( !*newval.psz_string )
1813     {
1814         msg_rc( _("Please provide one of the following parameters:") );
1815         msg_rc( "[on|off|up|down|left|right|select]" );
1816         return i_error;
1817     }
1818
1819     p_playlist = vlc_object_find( p_this, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
1820     if( !p_playlist )
1821         return VLC_ENOOBJ;
1822
1823     if( p_playlist->p_input )
1824     {
1825         var_Get( p_playlist->p_input, "state", &val );
1826         if( ( ( val.i_int == PAUSE_S ) || ( val.i_int == PLAYLIST_PAUSED ) ) &&
1827             ( strcmp( newval.psz_string, "select" ) != 0 ) )
1828         {
1829             msg_rc( _("Type 'menu select' or 'pause' to continue.") );
1830             vlc_object_release( p_playlist );
1831             return VLC_EGENERIC;
1832         }
1833     }
1834     vlc_object_release( p_playlist );
1835
1836     val.psz_string = strdup( newval.psz_string );
1837     if( !strcmp( val.psz_string, "on" ) || !strcmp( val.psz_string, "show" ))
1838         osd_MenuShow( p_this );
1839     else if( !strcmp( val.psz_string, "off" ) || !strcmp( val.psz_string, "hide" ) )
1840         osd_MenuHide( p_this );
1841     else if( !strcmp( val.psz_string, "up" ) )
1842         osd_MenuUp( p_this );
1843     else if( !strcmp( val.psz_string, "down" ) )
1844         osd_MenuDown( p_this );
1845     else if( !strcmp( val.psz_string, "left" ) )
1846         osd_MenuPrev( p_this );
1847     else if( !strcmp( val.psz_string, "right" ) )
1848         osd_MenuNext( p_this );
1849     else if( !strcmp( val.psz_string, "select" ) )
1850         osd_MenuActivate( p_this );
1851     else
1852     {
1853         msg_rc( _("Please provide one of the following parameters:") );
1854         msg_rc( "[on|off|up|down|left|right|select]" );
1855         if( val.psz_string ) free( val.psz_string );
1856             return i_error;
1857     }
1858
1859     i_error = VLC_SUCCESS;
1860     if( val.psz_string ) free( val.psz_string );
1861     return i_error;
1862 }
1863
1864 #ifdef WIN32
1865 vlc_bool_t ReadWin32( intf_thread_t *p_intf, char *p_buffer, int *pi_size )
1866 {
1867     INPUT_RECORD input_record;
1868     DWORD i_dw;
1869
1870     /* On Win32, select() only works on socket descriptors */
1871     while( WaitForSingleObject( p_intf->p_sys->hConsoleIn,
1872                                 INTF_IDLE_SLEEP/1000 ) == WAIT_OBJECT_0 )
1873     {
1874         while( !intf_ShouldDie( p_intf ) && *pi_size < MAX_LINE_LENGTH &&
1875                ReadConsoleInput( p_intf->p_sys->hConsoleIn, &input_record,
1876                                  1, &i_dw ) )
1877         {
1878             if( input_record.EventType != KEY_EVENT ||
1879                 !input_record.Event.KeyEvent.bKeyDown ||
1880                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_SHIFT ||
1881                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_CONTROL||
1882                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_MENU ||
1883                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_CAPITAL )
1884             {
1885                 /* nothing interesting */
1886                 continue;
1887             }
1888
1889             p_buffer[ *pi_size ] = input_record.Event.KeyEvent.uChar.AsciiChar;
1890
1891             /* Echo out the command */
1892             putc( p_buffer[ *pi_size ], stdout );
1893
1894             /* Handle special keys */
1895             if( p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
1896             {
1897                 putc( '\n', stdout );
1898                 break;
1899             }
1900             switch( p_buffer[ *pi_size ] )
1901             {
1902             case '\b':
1903                 if( *pi_size )
1904                 {
1905                     *pi_size -= 2;
1906                     putc( ' ', stdout );
1907                     putc( '\b', stdout );
1908                 }
1909                 break;
1910             case '\r':
1911                 (*pi_size) --;
1912                 break;
1913             }
1914
1915             (*pi_size)++;
1916         }
1917
1918         if( *pi_size == MAX_LINE_LENGTH ||
1919             p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
1920         {
1921             p_buffer[ *pi_size ] = 0;
1922             return VLC_TRUE;
1923         }
1924     }
1925
1926     return VLC_FALSE;
1927 }
1928 #endif
1929
1930 vlc_bool_t ReadCommand( intf_thread_t *p_intf, char *p_buffer, int *pi_size )
1931 {
1932     int i_read = 0;
1933
1934 #ifdef WIN32
1935     if( p_intf->p_sys->i_socket == -1 && !p_intf->p_sys->b_quiet )
1936         return ReadWin32( p_intf, p_buffer, pi_size );
1937     else if( p_intf->p_sys->i_socket == -1 )
1938     {
1939         msleep( INTF_IDLE_SLEEP );
1940         return VLC_FALSE;
1941     }
1942 #endif
1943
1944     while( !intf_ShouldDie( p_intf ) && *pi_size < MAX_LINE_LENGTH &&
1945            (i_read = net_Read( p_intf, p_intf->p_sys->i_socket == -1 ?
1946                        0 /*STDIN_FILENO*/ : p_intf->p_sys->i_socket, NULL,
1947                   (uint8_t *)p_buffer + *pi_size, 1, VLC_FALSE ) ) > 0 )
1948     {
1949         if( p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
1950             break;
1951
1952         (*pi_size)++;
1953     }
1954
1955     /* Connection closed */
1956     if( i_read <= 0 )
1957     {
1958         if( p_intf->p_sys->i_socket != -1 )
1959         {
1960             net_Close( p_intf->p_sys->i_socket );
1961             p_intf->p_sys->i_socket = -1;
1962         }
1963         else
1964             /* Standard input closed: exit */
1965             vlc_object_kill( p_intf );
1966
1967         p_buffer[ *pi_size ] = 0;
1968         return VLC_TRUE;
1969     }
1970
1971     if( *pi_size == MAX_LINE_LENGTH ||
1972         p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
1973     {
1974         p_buffer[ *pi_size ] = 0;
1975         return VLC_TRUE;
1976     }
1977
1978     return VLC_FALSE;
1979 }
1980
1981 /*****************************************************************************
1982  * parse_MRL: build a input item from a full mrl
1983  *****************************************************************************
1984  * MRL format: "simplified-mrl [:option-name[=option-value]]"
1985  * We don't check for '"' or '\'', we just assume that a ':' that follows a
1986  * space is a new option. Should be good enough for our purpose.
1987  *****************************************************************************/
1988 static input_item_t *parse_MRL( intf_thread_t *p_intf, char *psz_mrl )
1989 {
1990 #define SKIPSPACE( p ) { while( *p && ( *p == ' ' || *p == '\t' ) ) p++; }
1991 #define SKIPTRAILINGSPACE( p, d ) \
1992     { char *e=d; while( e > p && (*(e-1)==' ' || *(e-1)=='\t') ){e--;*e=0;} }
1993
1994     input_item_t *p_item = NULL;
1995     char *psz_item = NULL, *psz_item_mrl = NULL, *psz_orig;
1996     char **ppsz_options = NULL;
1997     int i, i_options = 0;
1998
1999     if( !psz_mrl ) return 0;
2000
2001     psz_mrl = psz_orig = strdup( psz_mrl );
2002     while( *psz_mrl )
2003     {
2004         SKIPSPACE( psz_mrl );
2005         psz_item = psz_mrl;
2006
2007         for( ; *psz_mrl; psz_mrl++ )
2008         {
2009             if( (*psz_mrl == ' ' || *psz_mrl == '\t') && psz_mrl[1] == ':' )
2010             {
2011                 /* We have a complete item */
2012                 break;
2013             }
2014             if( (*psz_mrl == ' ' || *psz_mrl == '\t') &&
2015                 (psz_mrl[1] == '"' || psz_mrl[1] == '\'') && psz_mrl[2] == ':')
2016             {
2017                 /* We have a complete item */
2018                 break;
2019             }
2020         }
2021
2022         if( *psz_mrl ) { *psz_mrl = 0; psz_mrl++; }
2023         SKIPTRAILINGSPACE( psz_item, psz_item + strlen( psz_item ) );
2024
2025         /* Remove '"' and '\'' if necessary */
2026         if( *psz_item == '"' && psz_item[strlen(psz_item)-1] == '"' )
2027         { psz_item++; psz_item[strlen(psz_item)-1] = 0; }
2028         if( *psz_item == '\'' && psz_item[strlen(psz_item)-1] == '\'' )
2029         { psz_item++; psz_item[strlen(psz_item)-1] = 0; }
2030
2031         if( !psz_item_mrl ) psz_item_mrl = psz_item;
2032         else if( *psz_item )
2033         {
2034             i_options++;
2035             ppsz_options = realloc( ppsz_options, i_options * sizeof(char *) );
2036             ppsz_options[i_options - 1] = &psz_item[1];
2037         }
2038
2039         if( *psz_mrl ) SKIPSPACE( psz_mrl );
2040     }
2041
2042     /* Now create a playlist item */
2043     if( psz_item_mrl )
2044     {
2045         p_item = input_ItemNew( p_intf, psz_item_mrl, NULL );
2046         for( i = 0; i < i_options; i++ )
2047         {
2048             input_ItemAddOption( p_item, ppsz_options[i] );
2049         }
2050     }
2051
2052     if( i_options ) free( ppsz_options );
2053     free( psz_orig );
2054
2055     return p_item;
2056 }
2057
2058 /*****************************************************************************
2059  * checkUpdates : check for updates
2060  ****************************************************************************/
2061 static void checkUpdates( intf_thread_t *p_intf, char *psz_arg )
2062 {
2063     update_iterator_t *p_uit;
2064     update_t *p_u = update_New( p_intf );
2065     if( p_u == NULL ) return;
2066     p_uit = update_iterator_New( p_u );
2067     if( p_uit )
2068     {
2069         int s = 0, t = 0;
2070
2071         if( strstr( psz_arg, "newer" ) )
2072             s |= UPDATE_RELEASE_STATUS_NEWER;
2073         if( strstr( psz_arg, "equal" ) )
2074             s |= UPDATE_RELEASE_STATUS_EQUAL;
2075         if( strstr( psz_arg, "older" ) )
2076             s |= UPDATE_RELEASE_STATUS_OLDER;
2077         if( s ) p_uit->i_rs = s;
2078         else p_uit->i_rs = UPDATE_RELEASE_STATUS_NEWER;
2079
2080         if( strstr( psz_arg, "undef" ) )
2081             t |= UPDATE_FILE_TYPE_UNDEF;
2082         if( strstr( psz_arg, "info" ) )
2083             t |= UPDATE_FILE_TYPE_INFO;
2084         if( strstr( psz_arg, "source" ) )
2085             t |= UPDATE_FILE_TYPE_SOURCE;
2086         if( strstr( psz_arg, "binary" ) )
2087             t |= UPDATE_FILE_TYPE_BINARY;
2088         if( strstr( psz_arg, "plugin" ) )
2089             t |= UPDATE_FILE_TYPE_PLUGIN;
2090         if( t ) p_uit->i_t = t;
2091
2092         update_Check( p_u, VLC_FALSE );
2093         update_iterator_Action( p_uit, UPDATE_MIRROR );
2094         msg_rc( "\nUsing mirror: %s (%s) [%s]",
2095                 p_uit->mirror.psz_name,
2096                 p_uit->mirror.psz_location,
2097                 p_uit->mirror.psz_type );
2098         while( (s = update_iterator_Action( p_uit, UPDATE_FILE )) != UPDATE_FAIL )
2099         {
2100             char *psz_tmp;
2101             if( s & UPDATE_RELEASE )
2102             {
2103                 switch( p_uit->release.i_status )
2104                 {
2105                     case UPDATE_RELEASE_STATUS_OLDER:
2106                         psz_tmp = strdup( "older" );
2107                         break;
2108                     case UPDATE_RELEASE_STATUS_EQUAL:
2109                         psz_tmp = strdup( "equal" );
2110                         break;
2111                     case UPDATE_RELEASE_STATUS_NEWER:
2112                         psz_tmp = strdup( "newer" );
2113                         break;
2114                     default:
2115                         psz_tmp = strdup( "?!?" );
2116                         break;
2117                 }
2118                 msg_rc( "\n+----[ VLC %s %s (%s) ] ",
2119                         p_uit->release.psz_version,
2120                         p_uit->release.psz_svn_revision,
2121                         psz_tmp );
2122                 free( psz_tmp );
2123             }
2124             switch( p_uit->file.i_type )
2125             {
2126                 case UPDATE_FILE_TYPE_UNDEF:
2127                     psz_tmp = strdup( "undef" );
2128                     break;
2129                 case UPDATE_FILE_TYPE_INFO:
2130                     psz_tmp = strdup( "info" );
2131                     break;
2132                 case UPDATE_FILE_TYPE_SOURCE:
2133                     psz_tmp = strdup( "source" );
2134                     break;
2135                 case UPDATE_FILE_TYPE_BINARY:
2136                     psz_tmp = strdup( "binary" );
2137                     break;
2138                 case UPDATE_FILE_TYPE_PLUGIN:
2139                     psz_tmp = strdup( "plugin" );
2140                     break;
2141                 default:
2142                     psz_tmp = strdup( "?!?" );
2143                     break;
2144             }
2145             msg_rc( "| %s (%s)", p_uit->file.psz_description, psz_tmp );
2146             free( psz_tmp );
2147             if( p_uit->file.l_size )
2148             {
2149                 if( p_uit->file.l_size > 1024 * 1024 * 1024 )
2150                     asprintf( &psz_tmp, "(%ld GB)",
2151                               p_uit->file.l_size / (1024*1024*1024) );
2152                 if( p_uit->file.l_size > 1024 * 1024 )
2153                     asprintf( &psz_tmp, "(%ld MB)",
2154                               p_uit->file.l_size / (1024*1024) );
2155                 else if( p_uit->file.l_size > 1024 )
2156                     asprintf( &psz_tmp, "(%ld kB)",
2157                               p_uit->file.l_size / 1024 );
2158                 else
2159                     asprintf( &psz_tmp, "(%ld B)", p_uit->file.l_size );
2160             }
2161             else
2162             {
2163                 psz_tmp = strdup( "" );
2164             }
2165             msg_rc( "| %s %s", p_uit->file.psz_url, psz_tmp );
2166             msg_rc( "+----" );
2167             free( psz_tmp );
2168         }
2169         msg_rc( "" );
2170         update_iterator_Delete( p_uit );
2171     }
2172     update_Delete( p_u );
2173 }