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