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