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