]> git.sesse.net Git - vlc/blob - modules/control/rc.c
We don't need the update system with the rc interface.
[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 int Playlist( vlc_object_t *p_this, char const *psz_cmd,
1272                      vlc_value_t oldval, vlc_value_t newval, void *p_data )
1273 {
1274     VLC_UNUSED(oldval); VLC_UNUSED(p_data);
1275     vlc_value_t val;
1276
1277     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1278     playlist_t *p_playlist = pl_Yield( p_this );
1279
1280     PL_LOCK;
1281     if( p_playlist->p_input )
1282     {
1283         var_Get( p_playlist->p_input, "state", &val );
1284         if( ( val.i_int == PAUSE_S ) || ( val.i_int == PLAYLIST_PAUSED ) )
1285         {
1286             msg_rc( _("Type 'menu select' or 'pause' to continue.") );
1287             vlc_object_release( p_playlist );
1288             PL_UNLOCK;
1289             return VLC_EGENERIC;
1290         }
1291     }
1292     PL_UNLOCK;
1293
1294     /* Parse commands that require a playlist */
1295     if( !strcmp( psz_cmd, "prev" ) )
1296     {
1297         playlist_Prev( p_playlist );
1298     }
1299     else if( !strcmp( psz_cmd, "next" ) )
1300     {
1301         playlist_Next( p_playlist );
1302     }
1303     else if( !strcmp( psz_cmd, "play" ) )
1304     {
1305         msg_Warn( p_playlist, "play" );
1306         playlist_Play( p_playlist );
1307     }
1308     else if( !strcmp( psz_cmd, "repeat" ) )
1309     {
1310         vlc_bool_t b_update = VLC_TRUE;
1311
1312         var_Get( p_playlist, "repeat", &val );
1313
1314         if( strlen( newval.psz_string ) > 0 )
1315         {
1316             if ( ( !strncmp( newval.psz_string, "on", 2 ) && ( val.b_bool == VLC_TRUE ) ) ||
1317                  ( !strncmp( newval.psz_string, "off", 3 ) && ( val.b_bool == VLC_FALSE ) ) )
1318             {
1319                 b_update = VLC_FALSE;
1320             }
1321         }
1322
1323         if ( b_update )
1324         {
1325             val.b_bool = !val.b_bool;
1326             var_Set( p_playlist, "repeat", val );
1327         }
1328         msg_rc( "Setting repeat to %d", val.b_bool );
1329     }
1330     else if( !strcmp( psz_cmd, "loop" ) )
1331     {
1332         vlc_bool_t b_update = VLC_TRUE;
1333
1334         var_Get( p_playlist, "loop", &val );
1335
1336         if( strlen( newval.psz_string ) > 0 )
1337         {
1338             if ( ( !strncmp( newval.psz_string, "on", 2 ) && ( val.b_bool == VLC_TRUE ) ) ||
1339                  ( !strncmp( newval.psz_string, "off", 3 ) && ( val.b_bool == VLC_FALSE ) ) )
1340             {
1341                 b_update = VLC_FALSE;
1342             }
1343         }
1344
1345         if ( b_update )
1346         {
1347             val.b_bool = !val.b_bool;
1348             var_Set( p_playlist, "loop", val );
1349         }
1350         msg_rc( "Setting loop to %d", val.b_bool );
1351     }
1352     else if( !strcmp( psz_cmd, "random" ) )
1353     {
1354         vlc_bool_t b_update = VLC_TRUE;
1355
1356         var_Get( p_playlist, "random", &val );
1357
1358         if( strlen( newval.psz_string ) > 0 )
1359         {
1360             if ( ( !strncmp( newval.psz_string, "on", 2 ) && ( val.b_bool == VLC_TRUE ) ) ||
1361                  ( !strncmp( newval.psz_string, "off", 3 ) && ( val.b_bool == VLC_FALSE ) ) )
1362             {
1363                 b_update = VLC_FALSE;
1364             }
1365         }
1366
1367         if ( b_update )
1368         {
1369             val.b_bool = !val.b_bool;
1370             var_Set( p_playlist, "random", val );
1371         }
1372         msg_rc( "Setting random to %d", val.b_bool );
1373     }
1374     else if (!strcmp( psz_cmd, "goto" ) )
1375     {
1376         int i_pos = atoi( newval.psz_string );
1377         /* The playlist stores 2 times the same item: onelevel & category */
1378         int i_size = p_playlist->items.i_size / 2;
1379
1380         if( i_pos <= 0 )
1381             msg_rc( _("Error: `goto' needs an argument greater than zero.") );
1382         else if( i_pos <= i_size )
1383         {
1384             playlist_item_t *p_item, *p_parent;
1385             p_item = p_parent = p_playlist->items.p_elems[i_pos*2-1];
1386             while( p_parent->p_parent )
1387                 p_parent = p_parent->p_parent;
1388             playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, VLC_TRUE,
1389                     p_parent, p_item );
1390         }
1391         else
1392             msg_rc( _("Playlist has only %d elements"), i_size );
1393     }
1394     else if( !strcmp( psz_cmd, "stop" ) )
1395     {
1396         playlist_Stop( p_playlist );
1397     }
1398     else if( !strcmp( psz_cmd, "clear" ) )
1399     {
1400         playlist_Stop( p_playlist );
1401         playlist_Clear( p_playlist, VLC_FALSE );
1402     }
1403     else if( !strcmp( psz_cmd, "add" ) &&
1404              newval.psz_string && *newval.psz_string )
1405     {
1406         input_item_t *p_item = parse_MRL( p_intf, newval.psz_string );
1407
1408         if( p_item )
1409         {
1410             msg_rc( "Trying to add %s to playlist.", newval.psz_string );
1411             if( playlist_AddInput( p_playlist, p_item,
1412                      PLAYLIST_GO|PLAYLIST_APPEND, PLAYLIST_END, VLC_TRUE,
1413                      VLC_FALSE ) != VLC_SUCCESS )
1414             {
1415                 return VLC_EGENERIC;
1416             }
1417         }
1418     }
1419     else if( !strcmp( psz_cmd, "enqueue" ) &&
1420              newval.psz_string && *newval.psz_string )
1421     {
1422         input_item_t *p_item = parse_MRL( p_intf, newval.psz_string );
1423
1424         if( p_item )
1425         {
1426             msg_rc( "trying to enqueue %s to playlist", newval.psz_string );
1427             if( playlist_AddInput( p_playlist, p_item,
1428                                PLAYLIST_APPEND, PLAYLIST_END, VLC_TRUE,
1429                                VLC_FALSE ) != VLC_SUCCESS )
1430             {
1431                 return VLC_EGENERIC;
1432             }
1433         }
1434     }
1435     else if( !strcmp( psz_cmd, "playlist" ) )
1436     {
1437         msg_Dbg( p_playlist, "Dumping category" );
1438         playlist_NodeDump( p_playlist, p_playlist->p_root_category, 0 );
1439         msg_Dbg( p_playlist, "Dumping Onelevel" );
1440         playlist_NodeDump( p_playlist, p_playlist->p_root_onelevel, 0 );
1441     }
1442     else if( !strcmp( psz_cmd, "sort" ))
1443     {
1444         playlist_RecursiveNodeSort( p_playlist, p_playlist->p_root_onelevel,
1445                                     SORT_ARTIST, ORDER_NORMAL );
1446     }
1447     else if( !strcmp( psz_cmd, "status" ) )
1448     {
1449         if( p_playlist->p_input )
1450         {
1451             /* Replay the current state of the system. */
1452             char *psz_uri =
1453                     input_item_GetURI( input_GetItem( p_playlist->p_input ) );
1454             msg_rc( STATUS_CHANGE "( new input: %s )", psz_uri );
1455             free( psz_uri );
1456             msg_rc( STATUS_CHANGE "( audio volume: %d )",
1457                     config_GetInt( p_intf, "volume" ));
1458
1459             PL_LOCK;
1460             switch( p_playlist->status.i_status )
1461             {
1462                 case PLAYLIST_STOPPED:
1463                     msg_rc( STATUS_CHANGE "( stop state: 0 )" );
1464                     break;
1465                 case PLAYLIST_RUNNING:
1466                     msg_rc( STATUS_CHANGE "( play state: 1 )" );
1467                     break;
1468                 case PLAYLIST_PAUSED:
1469                     msg_rc( STATUS_CHANGE "( pause state: 2 )" );
1470                     break;
1471                 default:
1472                     msg_rc( STATUS_CHANGE "( state unknown )" );
1473                     break;
1474             }
1475             PL_UNLOCK;
1476         }
1477     }
1478
1479     /*
1480      * sanity check
1481      */
1482     else
1483     {
1484         msg_rc( "unknown command!" );
1485     }
1486
1487     vlc_object_release( p_playlist );
1488     return VLC_SUCCESS;
1489 }
1490
1491 static int Quit( vlc_object_t *p_this, char const *psz_cmd,
1492                  vlc_value_t oldval, vlc_value_t newval, void *p_data )
1493 {
1494     VLC_UNUSED(p_data); VLC_UNUSED(psz_cmd);
1495     VLC_UNUSED(oldval); VLC_UNUSED(newval);
1496     playlist_t *p_playlist;
1497
1498     p_playlist = vlc_object_find( p_this, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
1499     if( p_playlist )
1500     {
1501         playlist_Stop( p_playlist );
1502         vlc_object_release( p_playlist );
1503     }
1504     vlc_object_kill( p_this->p_libvlc );
1505     return VLC_SUCCESS;
1506 }
1507
1508 static int Intf( vlc_object_t *p_this, char const *psz_cmd,
1509                  vlc_value_t oldval, vlc_value_t newval, void *p_data )
1510 {
1511     VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval); VLC_UNUSED(p_data);
1512     intf_thread_t *p_newintf = NULL;
1513
1514     p_newintf = intf_Create( p_this->p_libvlc, newval.psz_string, 0, NULL );
1515     if( p_newintf )
1516     {
1517         if( intf_RunThread( p_newintf ) )
1518         {
1519             vlc_object_detach( p_newintf );
1520             intf_Destroy( p_newintf );
1521         }
1522     }
1523
1524     return VLC_SUCCESS;
1525 }
1526
1527 static int Volume( vlc_object_t *p_this, char const *psz_cmd,
1528                    vlc_value_t oldval, vlc_value_t newval, void *p_data )
1529 {
1530     VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval); VLC_UNUSED(p_data);
1531     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1532     input_thread_t *p_input = NULL;
1533     int i_error = VLC_EGENERIC;
1534
1535     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
1536     if( !p_input )
1537         return VLC_ENOOBJ;
1538
1539     if( p_input )
1540     {
1541         vlc_value_t val;
1542
1543         var_Get( p_input, "state", &val );
1544         if( ( val.i_int == PAUSE_S ) || ( val.i_int == PLAYLIST_PAUSED ) )
1545         {
1546             msg_rc( _("Type 'menu select' or 'pause' to continue.") );
1547             vlc_object_release( p_input );
1548             return VLC_EGENERIC;
1549         }
1550         vlc_object_release( p_input );
1551     }
1552
1553     if ( *newval.psz_string )
1554     {
1555         /* Set. */
1556         audio_volume_t i_volume = atoi( newval.psz_string );
1557         if ( (i_volume > (audio_volume_t)AOUT_VOLUME_MAX) )
1558         {
1559             msg_rc( "Volume must be in the range %d-%d.", AOUT_VOLUME_MIN,
1560                     AOUT_VOLUME_MAX );
1561             i_error = VLC_EBADVAR;
1562         }
1563         else
1564         {
1565             if( i_volume == AOUT_VOLUME_MIN )
1566             {
1567                 vlc_value_t keyval;
1568
1569                 keyval.i_int = config_GetInt( p_intf, "key-vol-mute" );
1570                 var_Set( p_intf->p_libvlc, "key-pressed", keyval );
1571             }
1572             i_error = aout_VolumeSet( p_this, i_volume );
1573             osd_Volume( p_this );
1574             msg_rc( STATUS_CHANGE "( audio volume: %d )", i_volume );
1575         }
1576     }
1577     else
1578     {
1579         /* Get. */
1580         audio_volume_t i_volume;
1581         if ( aout_VolumeGet( p_this, &i_volume ) < 0 )
1582         {
1583             i_error = VLC_EGENERIC;
1584         }
1585         else
1586         {
1587             msg_rc( STATUS_CHANGE "( audio volume: %d )", i_volume );
1588             i_error = VLC_SUCCESS;
1589         }
1590     }
1591
1592     return i_error;
1593 }
1594
1595 static int VolumeMove( vlc_object_t *p_this, char const *psz_cmd,
1596                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
1597 {
1598     VLC_UNUSED(oldval); VLC_UNUSED(p_data);
1599     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1600     audio_volume_t i_volume;
1601     input_thread_t *p_input = NULL;
1602     int i_nb_steps = atoi(newval.psz_string);
1603     int i_error = VLC_SUCCESS;
1604     int i_volume_step = 0;
1605
1606     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
1607     if( !p_input )
1608         return VLC_ENOOBJ;
1609
1610     if( p_input )
1611     {
1612         vlc_value_t val;
1613
1614         var_Get( p_input, "state", &val );
1615         if( ( val.i_int == PAUSE_S ) || ( val.i_int == PLAYLIST_PAUSED ) )
1616         {
1617             msg_rc( _("Type 'menu select' or 'pause' to continue.") );
1618             vlc_object_release( p_input );
1619             return VLC_EGENERIC;
1620         }
1621         vlc_object_release( p_input );
1622     }
1623
1624     i_volume_step = config_GetInt( p_intf->p_libvlc, "volume-step" );
1625     if ( i_nb_steps <= 0 || i_nb_steps > (AOUT_VOLUME_MAX/i_volume_step) )
1626     {
1627         i_nb_steps = 1;
1628     }
1629
1630     if ( !strcmp(psz_cmd, "volup") )
1631     {
1632         if ( aout_VolumeUp( p_this, i_nb_steps, &i_volume ) < 0 )
1633             i_error = VLC_EGENERIC;
1634     }
1635     else
1636     {
1637         if ( aout_VolumeDown( p_this, i_nb_steps, &i_volume ) < 0 )
1638             i_error = VLC_EGENERIC;
1639     }
1640     osd_Volume( p_this );
1641
1642     if ( !i_error ) msg_rc( STATUS_CHANGE "( audio volume: %d )", i_volume );
1643     return i_error;
1644 }
1645
1646
1647 static int VideoConfig( vlc_object_t *p_this, char const *psz_cmd,
1648                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
1649 {
1650     VLC_UNUSED(oldval); VLC_UNUSED(p_data);
1651     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1652     input_thread_t *p_input = NULL;
1653     vout_thread_t * p_vout;
1654     const char * psz_variable = NULL;
1655     int i_error;
1656
1657     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
1658     if( !p_input )
1659         return VLC_ENOOBJ;
1660
1661     p_vout = vlc_object_find( p_input, VLC_OBJECT_VOUT, FIND_CHILD );
1662     vlc_object_release( p_input );
1663     if( !p_vout )
1664         return VLC_ENOOBJ;
1665
1666     if( !strcmp( psz_cmd, "vcrop" ) )
1667     {
1668         psz_variable = "crop";
1669     }
1670     else if( !strcmp( psz_cmd, "vratio" ) )
1671     {
1672         psz_variable = "aspect-ratio";
1673     }
1674     else if( !strcmp( psz_cmd, "vzoom" ) )
1675     {
1676         psz_variable = "zoom";
1677     }
1678     else if( !strcmp( psz_cmd, "snapshot" ) )
1679     {
1680         psz_variable = "video-snapshot";
1681     }
1682
1683     if( newval.psz_string && *newval.psz_string )
1684     {
1685         /* set */
1686         if( !strcmp( psz_variable, "zoom" ) )
1687         {
1688             vlc_value_t val;
1689             val.f_float = atof( newval.psz_string );
1690             i_error = var_Set( p_vout, psz_variable, val );
1691         }
1692         else
1693         {
1694             i_error = var_Set( p_vout, psz_variable, newval );
1695         }
1696     }
1697     else  if( !strcmp( psz_cmd, "snapshot" ) )
1698     {
1699         i_error = var_Set( p_vout, psz_variable, newval );
1700     }
1701     else
1702     {
1703         /* get */
1704         vlc_value_t val_name;
1705         vlc_value_t val, text;
1706         int i;
1707         float f_value = 0.;
1708         char *psz_value = NULL;
1709
1710         if ( var_Get( p_vout, psz_variable, &val ) < 0 )
1711         {
1712             vlc_object_release( p_vout );
1713             return VLC_EGENERIC;
1714         }
1715         if( !strcmp( psz_variable, "zoom" ) )
1716         {
1717             f_value = val.f_float;
1718         }
1719         else
1720         {
1721             psz_value = strdup( val.psz_string );
1722         }
1723
1724         if ( var_Change( p_vout, psz_variable,
1725                          VLC_VAR_GETLIST, &val, &text ) < 0 )
1726         {
1727             vlc_object_release( p_vout );
1728             return VLC_EGENERIC;
1729         }
1730
1731         /* Get the descriptive name of the variable */
1732         var_Change( p_vout, psz_variable, VLC_VAR_GETTEXT,
1733                     &val_name, NULL );
1734         if( !val_name.psz_string ) val_name.psz_string = strdup(psz_variable);
1735
1736         msg_rc( "+----[ %s ]", val_name.psz_string );
1737         if( !strcmp( psz_variable, "zoom" ) )
1738         {
1739             for ( i = 0; i < val.p_list->i_count; i++ )
1740             {
1741                 if ( f_value == val.p_list->p_values[i].f_float )
1742                     msg_rc( "| %f - %s *", val.p_list->p_values[i].f_float,
1743                             text.p_list->p_values[i].psz_string );
1744                 else
1745                     msg_rc( "| %f - %s", val.p_list->p_values[i].f_float,
1746                             text.p_list->p_values[i].psz_string );
1747             }
1748         }
1749         else
1750         {
1751             for ( i = 0; i < val.p_list->i_count; i++ )
1752             {
1753                 if ( !strcmp( psz_value, val.p_list->p_values[i].psz_string ) )
1754                     msg_rc( "| %s - %s *", val.p_list->p_values[i].psz_string,
1755                             text.p_list->p_values[i].psz_string );
1756                 else
1757                     msg_rc( "| %s - %s", val.p_list->p_values[i].psz_string,
1758                             text.p_list->p_values[i].psz_string );
1759             }
1760             free( psz_value );
1761         }
1762         var_Change( p_vout, psz_variable, VLC_VAR_FREELIST,
1763                     &val, &text );
1764         msg_rc( "+----[ end of %s ]", val_name.psz_string );
1765
1766         free( val_name.psz_string );
1767
1768         i_error = VLC_SUCCESS;
1769     }
1770     vlc_object_release( p_vout );
1771     return i_error;
1772 }
1773
1774 static int AudioConfig( vlc_object_t *p_this, char const *psz_cmd,
1775                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
1776 {
1777     VLC_UNUSED(oldval); VLC_UNUSED(p_data);
1778     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1779     input_thread_t *p_input = NULL;
1780     aout_instance_t * p_aout;
1781     const char * psz_variable;
1782     vlc_value_t val_name;
1783     int i_error;
1784
1785     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
1786     if( !p_input )
1787         return VLC_ENOOBJ;
1788
1789     if( p_input )
1790     {
1791         vlc_value_t val;
1792
1793         var_Get( p_input, "state", &val );
1794         if( ( val.i_int == PAUSE_S ) || ( val.i_int == PLAYLIST_PAUSED ) )        {
1795             msg_rc( _("Type 'menu select' or 'pause' to continue.") );
1796             vlc_object_release( p_input );
1797             return VLC_EGENERIC;
1798         }
1799         vlc_object_release( p_input );
1800     }
1801
1802     p_aout = vlc_object_find( p_this, VLC_OBJECT_AOUT, FIND_ANYWHERE );
1803     if ( p_aout == NULL ) return VLC_ENOOBJ;
1804
1805     if ( !strcmp( psz_cmd, "adev" ) )
1806     {
1807         psz_variable = "audio-device";
1808     }
1809     else
1810     {
1811         psz_variable = "audio-channels";
1812     }
1813
1814     /* Get the descriptive name of the variable */
1815     var_Change( (vlc_object_t *)p_aout, psz_variable, VLC_VAR_GETTEXT,
1816                  &val_name, NULL );
1817     if( !val_name.psz_string ) val_name.psz_string = strdup(psz_variable);
1818
1819     if ( !*newval.psz_string )
1820     {
1821         /* Retrieve all registered ***. */
1822         vlc_value_t val, text;
1823         int i, i_value;
1824
1825         if ( var_Get( (vlc_object_t *)p_aout, psz_variable, &val ) < 0 )
1826         {
1827             vlc_object_release( (vlc_object_t *)p_aout );
1828             return VLC_EGENERIC;
1829         }
1830         i_value = val.i_int;
1831
1832         if ( var_Change( (vlc_object_t *)p_aout, psz_variable,
1833                          VLC_VAR_GETLIST, &val, &text ) < 0 )
1834         {
1835             vlc_object_release( (vlc_object_t *)p_aout );
1836             return VLC_EGENERIC;
1837         }
1838
1839         msg_rc( "+----[ %s ]", val_name.psz_string );
1840         for ( i = 0; i < val.p_list->i_count; i++ )
1841         {
1842             if ( i_value == val.p_list->p_values[i].i_int )
1843                 msg_rc( "| %i - %s *", val.p_list->p_values[i].i_int,
1844                         text.p_list->p_values[i].psz_string );
1845             else
1846                 msg_rc( "| %i - %s", val.p_list->p_values[i].i_int,
1847                         text.p_list->p_values[i].psz_string );
1848         }
1849         var_Change( (vlc_object_t *)p_aout, psz_variable, VLC_VAR_FREELIST,
1850                     &val, &text );
1851         msg_rc( "+----[ end of %s ]", val_name.psz_string );
1852
1853         free( val_name.psz_string );
1854         i_error = VLC_SUCCESS;
1855     }
1856     else
1857     {
1858         vlc_value_t val;
1859         val.i_int = atoi( newval.psz_string );
1860
1861         i_error = var_Set( (vlc_object_t *)p_aout, psz_variable, val );
1862     }
1863     vlc_object_release( (vlc_object_t *)p_aout );
1864
1865     return i_error;
1866 }
1867
1868 /* OSD menu commands */
1869 static int Menu( vlc_object_t *p_this, char const *psz_cmd,
1870     vlc_value_t oldval, vlc_value_t newval, void *p_data )
1871 {
1872     VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval); VLC_UNUSED(p_data);
1873     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1874     playlist_t    *p_playlist = NULL;
1875     vlc_value_t val;
1876     int i_error = VLC_EGENERIC;
1877
1878     if ( !*newval.psz_string )
1879     {
1880         msg_rc( _("Please provide one of the following parameters:") );
1881         msg_rc( "[on|off|up|down|left|right|select]" );
1882         return i_error;
1883     }
1884
1885     p_playlist = vlc_object_find( p_this, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
1886     if( !p_playlist )
1887         return VLC_ENOOBJ;
1888
1889     if( p_playlist->p_input )
1890     {
1891         var_Get( p_playlist->p_input, "state", &val );
1892         if( ( ( val.i_int == PAUSE_S ) || ( val.i_int == PLAYLIST_PAUSED ) ) &&
1893             ( strcmp( newval.psz_string, "select" ) != 0 ) )
1894         {
1895             msg_rc( _("Type 'menu select' or 'pause' to continue.") );
1896             vlc_object_release( p_playlist );
1897             return VLC_EGENERIC;
1898         }
1899     }
1900     vlc_object_release( p_playlist );
1901
1902     val.psz_string = strdup( newval.psz_string );
1903     if( !strcmp( val.psz_string, "on" ) || !strcmp( val.psz_string, "show" ))
1904         osd_MenuShow( p_this );
1905     else if( !strcmp( val.psz_string, "off" ) || !strcmp( val.psz_string, "hide" ) )
1906         osd_MenuHide( p_this );
1907     else if( !strcmp( val.psz_string, "up" ) )
1908         osd_MenuUp( p_this );
1909     else if( !strcmp( val.psz_string, "down" ) )
1910         osd_MenuDown( p_this );
1911     else if( !strcmp( val.psz_string, "left" ) )
1912         osd_MenuPrev( p_this );
1913     else if( !strcmp( val.psz_string, "right" ) )
1914         osd_MenuNext( p_this );
1915     else if( !strcmp( val.psz_string, "select" ) )
1916         osd_MenuActivate( p_this );
1917     else
1918     {
1919         msg_rc( _("Please provide one of the following parameters:") );
1920         msg_rc( "[on|off|up|down|left|right|select]" );
1921         free( val.psz_string );
1922         return i_error;
1923     }
1924
1925     i_error = VLC_SUCCESS;
1926     free( val.psz_string );
1927     return i_error;
1928 }
1929
1930 static int Statistics ( vlc_object_t *p_this, char const *psz_cmd,
1931     vlc_value_t oldval, vlc_value_t newval, void *p_data )
1932 {
1933     VLC_UNUSED(oldval); VLC_UNUSED(newval); VLC_UNUSED(p_data);
1934     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1935     input_thread_t *p_input = NULL;
1936     int i_error;
1937
1938     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
1939     if( !p_input )
1940         return VLC_ENOOBJ;
1941
1942     if( !strcmp( psz_cmd, "stats" ) )
1943     {
1944         vlc_mutex_lock( &input_GetItem(p_input)->lock );
1945         updateStatistics( p_intf, input_GetItem(p_input) );
1946         vlc_mutex_unlock( &input_GetItem(p_input)->lock );
1947     }
1948     /*
1949      * sanity check
1950      */
1951     else
1952     {
1953         msg_rc(_("Unknown command!") );
1954     }
1955
1956     vlc_object_release( p_input );
1957     i_error = VLC_SUCCESS;
1958     return i_error;
1959 }
1960
1961 static int updateStatistics( intf_thread_t *p_intf, input_item_t *p_item )
1962 {
1963     if( !p_item ) return VLC_EGENERIC;
1964
1965     vlc_mutex_lock( &p_item->p_stats->lock );
1966     msg_rc( "+----[ begin of statistical info ]" );
1967
1968     /* Input */
1969     msg_rc(_("+-[Incoming]"));
1970     msg_rc(_("| input bytes read : %8.0f kB"),
1971             (float)(p_item->p_stats->i_read_bytes)/1000 );
1972     msg_rc(_("| input bitrate    :   %6.0f kb/s"),
1973             (float)(p_item->p_stats->f_input_bitrate)*8000 );
1974     msg_rc(_("| demux bytes read : %8.0f kB"),
1975             (float)(p_item->p_stats->i_demux_read_bytes)/1000 );
1976     msg_rc(_("| demux bitrate    :   %6.0f kb/s"),
1977             (float)(p_item->p_stats->f_demux_bitrate)*8000 );
1978     msg_rc("|");
1979     /* Video */
1980     msg_rc(_("+-[Video Decoding]"));
1981     msg_rc(_("| video decoded    :    %5i"),
1982             p_item->p_stats->i_decoded_video );
1983     msg_rc(_("| frames displayed :    %5i"),
1984             p_item->p_stats->i_displayed_pictures );
1985     msg_rc(_("| frames lost      :    %5i"),
1986             p_item->p_stats->i_lost_pictures );
1987     msg_rc("|");
1988     /* Audio*/
1989     msg_rc(_("+-[Audio Decoding]"));
1990     msg_rc(_("| audio decoded    :    %5i"),
1991             p_item->p_stats->i_decoded_audio );
1992     msg_rc(_("| buffers played   :    %5i"),
1993             p_item->p_stats->i_played_abuffers );
1994     msg_rc(_("| buffers lost     :    %5i"),
1995             p_item->p_stats->i_lost_abuffers );
1996     msg_rc("|");
1997     /* Sout */
1998     msg_rc(_("+-[Streaming]"));
1999     msg_rc(_("| packets sent     :    %5i"), p_item->p_stats->i_sent_packets );
2000     msg_rc(_("| bytes sent       : %8.0f kB"),
2001             (float)(p_item->p_stats->i_sent_bytes)/1000 );
2002     msg_rc(_("| sending bitrate  :   %6.0f kb/s"),
2003             (float)(p_item->p_stats->f_send_bitrate*8)*1000 );
2004     msg_rc("|");
2005     msg_rc( "+----[ end of statistical info ]" );
2006     vlc_mutex_unlock( &p_item->p_stats->lock );
2007
2008     return VLC_SUCCESS;
2009 }
2010
2011 #ifdef WIN32
2012 vlc_bool_t ReadWin32( intf_thread_t *p_intf, char *p_buffer, int *pi_size )
2013 {
2014     INPUT_RECORD input_record;
2015     DWORD i_dw;
2016
2017     /* On Win32, select() only works on socket descriptors */
2018     while( WaitForSingleObject( p_intf->p_sys->hConsoleIn,
2019                                 INTF_IDLE_SLEEP/1000 ) == WAIT_OBJECT_0 )
2020     {
2021         while( !intf_ShouldDie( p_intf ) && *pi_size < MAX_LINE_LENGTH &&
2022                ReadConsoleInput( p_intf->p_sys->hConsoleIn, &input_record,
2023                                  1, &i_dw ) )
2024         {
2025             if( input_record.EventType != KEY_EVENT ||
2026                 !input_record.Event.KeyEvent.bKeyDown ||
2027                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_SHIFT ||
2028                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_CONTROL||
2029                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_MENU ||
2030                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_CAPITAL )
2031             {
2032                 /* nothing interesting */
2033                 continue;
2034             }
2035
2036             p_buffer[ *pi_size ] = input_record.Event.KeyEvent.uChar.AsciiChar;
2037
2038             /* Echo out the command */
2039             putc( p_buffer[ *pi_size ], stdout );
2040
2041             /* Handle special keys */
2042             if( p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
2043             {
2044                 putc( '\n', stdout );
2045                 break;
2046             }
2047             switch( p_buffer[ *pi_size ] )
2048             {
2049             case '\b':
2050                 if( *pi_size )
2051                 {
2052                     *pi_size -= 2;
2053                     putc( ' ', stdout );
2054                     putc( '\b', stdout );
2055                 }
2056                 break;
2057             case '\r':
2058                 (*pi_size) --;
2059                 break;
2060             }
2061
2062             (*pi_size)++;
2063         }
2064
2065         if( *pi_size == MAX_LINE_LENGTH ||
2066             p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
2067         {
2068             p_buffer[ *pi_size ] = 0;
2069             return VLC_TRUE;
2070         }
2071     }
2072
2073     return VLC_FALSE;
2074 }
2075 #endif
2076
2077 vlc_bool_t ReadCommand( intf_thread_t *p_intf, char *p_buffer, int *pi_size )
2078 {
2079     int i_read = 0;
2080
2081 #ifdef WIN32
2082     if( p_intf->p_sys->i_socket == -1 && !p_intf->p_sys->b_quiet )
2083         return ReadWin32( p_intf, p_buffer, pi_size );
2084     else if( p_intf->p_sys->i_socket == -1 )
2085     {
2086         msleep( INTF_IDLE_SLEEP );
2087         return VLC_FALSE;
2088     }
2089 #endif
2090
2091     while( !intf_ShouldDie( p_intf ) && *pi_size < MAX_LINE_LENGTH &&
2092            (i_read = net_Read( p_intf, p_intf->p_sys->i_socket == -1 ?
2093                        0 /*STDIN_FILENO*/ : p_intf->p_sys->i_socket, NULL,
2094                   (uint8_t *)p_buffer + *pi_size, 1, VLC_FALSE ) ) > 0 )
2095     {
2096         if( p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
2097             break;
2098
2099         (*pi_size)++;
2100     }
2101
2102     /* Connection closed */
2103     if( i_read <= 0 )
2104     {
2105         if( p_intf->p_sys->i_socket != -1 )
2106         {
2107             net_Close( p_intf->p_sys->i_socket );
2108             p_intf->p_sys->i_socket = -1;
2109         }
2110         else
2111         {
2112             /* Standard input closed: exit */
2113             vlc_value_t empty;
2114             Quit( p_intf, NULL, empty, empty, NULL );
2115         }
2116
2117         p_buffer[ *pi_size ] = 0;
2118         return VLC_TRUE;
2119     }
2120
2121     if( *pi_size == MAX_LINE_LENGTH ||
2122         p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
2123     {
2124         p_buffer[ *pi_size ] = 0;
2125         return VLC_TRUE;
2126     }
2127
2128     return VLC_FALSE;
2129 }
2130
2131 /*****************************************************************************
2132  * parse_MRL: build a input item from a full mrl
2133  *****************************************************************************
2134  * MRL format: "simplified-mrl [:option-name[=option-value]]"
2135  * We don't check for '"' or '\'', we just assume that a ':' that follows a
2136  * space is a new option. Should be good enough for our purpose.
2137  *****************************************************************************/
2138 static input_item_t *parse_MRL( intf_thread_t *p_intf, char *psz_mrl )
2139 {
2140 #define SKIPSPACE( p ) { while( *p == ' ' || *p == '\t' ) p++; }
2141 #define SKIPTRAILINGSPACE( p, d ) \
2142     { char *e=d; while( e > p && (*(e-1)==' ' || *(e-1)=='\t') ){e--;*e=0;} }
2143
2144     input_item_t *p_item = NULL;
2145     char *psz_item = NULL, *psz_item_mrl = NULL, *psz_orig;
2146     char **ppsz_options = NULL;
2147     int i, i_options = 0;
2148
2149     if( !psz_mrl ) return 0;
2150
2151     psz_mrl = psz_orig = strdup( psz_mrl );
2152     while( *psz_mrl )
2153     {
2154         SKIPSPACE( psz_mrl );
2155         psz_item = psz_mrl;
2156
2157         for( ; *psz_mrl; psz_mrl++ )
2158         {
2159             if( (*psz_mrl == ' ' || *psz_mrl == '\t') && psz_mrl[1] == ':' )
2160             {
2161                 /* We have a complete item */
2162                 break;
2163             }
2164             if( (*psz_mrl == ' ' || *psz_mrl == '\t') &&
2165                 (psz_mrl[1] == '"' || psz_mrl[1] == '\'') && psz_mrl[2] == ':')
2166             {
2167                 /* We have a complete item */
2168                 break;
2169             }
2170         }
2171
2172         if( *psz_mrl ) { *psz_mrl = 0; psz_mrl++; }
2173         SKIPTRAILINGSPACE( psz_item, psz_item + strlen( psz_item ) );
2174
2175         /* Remove '"' and '\'' if necessary */
2176         if( *psz_item == '"' && psz_item[strlen(psz_item)-1] == '"' )
2177         { psz_item++; psz_item[strlen(psz_item)-1] = 0; }
2178         if( *psz_item == '\'' && psz_item[strlen(psz_item)-1] == '\'' )
2179         { psz_item++; psz_item[strlen(psz_item)-1] = 0; }
2180
2181         if( !psz_item_mrl ) psz_item_mrl = psz_item;
2182         else if( *psz_item )
2183         {
2184             i_options++;
2185             ppsz_options = realloc( ppsz_options, i_options * sizeof(char *) );
2186             ppsz_options[i_options - 1] = &psz_item[1];
2187         }
2188
2189         if( *psz_mrl ) SKIPSPACE( psz_mrl );
2190     }
2191
2192     /* Now create a playlist item */
2193     if( psz_item_mrl )
2194     {
2195         p_item = input_ItemNew( p_intf, psz_item_mrl, NULL );
2196         for( i = 0; i < i_options; i++ )
2197         {
2198             input_ItemAddOption( p_item, ppsz_options[i] );
2199         }
2200     }
2201
2202     if( i_options ) free( ppsz_options );
2203     free( psz_orig );
2204
2205     return p_item;
2206 }