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