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