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