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