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