]> git.sesse.net Git - vlc/blob - modules/control/rc.c
Merge commit 'origin/1.0-bugfix'
[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                 /* Get. */
1149                 var_Get( p_input, "chapter", &val );
1150                 int i_chapter_count = var_CountChoices( p_input, "chapter" );
1151                 msg_rc( "Currently playing chapter %d/%d.", val.i_int,
1152                         i_chapter_count );
1153             }
1154         }
1155         else if( !strcmp( psz_cmd, "chapter_n" ) )
1156             var_SetVoid( p_input, "next-chapter" );
1157         else if( !strcmp( psz_cmd, "chapter_p" ) )
1158             var_SetVoid( p_input, "prev-chapter" );
1159         vlc_object_release( p_input );
1160         return VLC_SUCCESS;
1161     }
1162     else if( !strcmp( psz_cmd, "title" ) ||
1163              !strcmp( psz_cmd, "title_n" ) ||
1164              !strcmp( psz_cmd, "title_p" ) )
1165     {
1166         if( !strcmp( psz_cmd, "title" ) )
1167         {
1168             if ( *newval.psz_string )
1169             {
1170                 /* Set. */
1171                 val.i_int = atoi( newval.psz_string );
1172                 var_Set( p_input, "title", val );
1173             }
1174             else
1175             {
1176                 /* Get. */
1177                 var_Get( p_input, "title", &val );
1178                 int i_title_count = var_CountChoices( p_input, "title" );
1179                 msg_rc( "Currently playing title %d/%d.", val.i_int,
1180                         i_title_count );
1181             }
1182         }
1183         else if( !strcmp( psz_cmd, "title_n" ) )
1184             var_SetVoid( p_input, "next-title" );
1185         else if( !strcmp( psz_cmd, "title_p" ) )
1186             var_SetVoid( p_input, "prev-title" );
1187
1188         vlc_object_release( p_input );
1189         return VLC_SUCCESS;
1190     }
1191     else if(    !strcmp( psz_cmd, "atrack" )
1192              || !strcmp( psz_cmd, "vtrack" )
1193              || !strcmp( psz_cmd, "strack" ) )
1194     {
1195         const char *psz_variable;
1196         vlc_value_t val_name;
1197         int i_error;
1198
1199         if( !strcmp( psz_cmd, "atrack" ) )
1200         {
1201             psz_variable = "audio-es";
1202         }
1203         else if( !strcmp( psz_cmd, "vtrack" ) )
1204         {
1205             psz_variable = "video-es";
1206         }
1207         else
1208         {
1209             psz_variable = "spu-es";
1210         }
1211
1212         /* Get the descriptive name of the variable */
1213         var_Change( p_input, psz_variable, VLC_VAR_GETTEXT,
1214                      &val_name, NULL );
1215         if( !val_name.psz_string ) val_name.psz_string = strdup(psz_variable);
1216
1217         if( newval.psz_string && *newval.psz_string )
1218         {
1219             /* set */
1220             vlc_value_t val;
1221             val.i_int = atoi( newval.psz_string );
1222
1223             i_error = var_Set( p_input, psz_variable, val );
1224         }
1225         else
1226         {
1227             /* get */
1228             vlc_value_t val, text;
1229             int i, i_value;
1230
1231             if ( var_Get( p_input, psz_variable, &val ) < 0 )
1232             {
1233                 vlc_object_release( p_input );
1234                 return VLC_EGENERIC;
1235             }
1236             i_value = val.i_int;
1237
1238             if ( var_Change( p_input, psz_variable,
1239                              VLC_VAR_GETLIST, &val, &text ) < 0 )
1240             {
1241                 vlc_object_release( p_input );
1242                 return VLC_EGENERIC;
1243             }
1244
1245             msg_rc( "+----[ %s ]", val_name.psz_string );
1246             for ( i = 0; i < val.p_list->i_count; i++ )
1247             {
1248                 if ( i_value == val.p_list->p_values[i].i_int )
1249                     msg_rc( "| %i - %s *", val.p_list->p_values[i].i_int,
1250                             text.p_list->p_values[i].psz_string );
1251                 else
1252                     msg_rc( "| %i - %s", val.p_list->p_values[i].i_int,
1253                             text.p_list->p_values[i].psz_string );
1254             }
1255             var_FreeList( &val, &text );
1256             msg_rc( "+----[ end of %s ]", val_name.psz_string );
1257
1258             free( val_name.psz_string );
1259
1260             i_error = VLC_SUCCESS;
1261         }
1262         vlc_object_release( p_input );
1263         return i_error;
1264     }
1265
1266     /* Never reached. */
1267     vlc_object_release( p_input );
1268     return VLC_EGENERIC;
1269 }
1270
1271 static void print_playlist( intf_thread_t *p_intf, playlist_item_t *p_item, int i_level )
1272 {
1273     int i;
1274     char psz_buffer[MSTRTIME_MAX_SIZE];
1275     for( i = 0; i< p_item->i_children; i++ )
1276     {
1277         if( p_item->pp_children[i]->p_input->i_duration != -1 )
1278         {
1279             secstotimestr( psz_buffer, p_item->pp_children[i]->p_input->i_duration / 1000000 );
1280             msg_rc( "|%*s- %s (%s)", 2 * i_level, "", p_item->pp_children[i]->p_input->psz_name, psz_buffer );
1281         }
1282         else
1283             msg_rc( "|%*s- %s", 2 * i_level, "", p_item->pp_children[i]->p_input->psz_name );
1284
1285         if( p_item->pp_children[i]->i_children >= 0 )
1286             print_playlist( p_intf, p_item->pp_children[i], i_level + 1 );
1287     }
1288 }
1289
1290 static int Playlist( vlc_object_t *p_this, char const *psz_cmd,
1291                      vlc_value_t oldval, vlc_value_t newval, void *p_data )
1292 {
1293     VLC_UNUSED(oldval); VLC_UNUSED(p_data);
1294     vlc_value_t val;
1295
1296     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1297     playlist_t *p_playlist = pl_Hold( p_this );
1298     input_thread_t * p_input = playlist_CurrentInput( p_playlist );
1299
1300     if( p_input )
1301     {
1302         var_Get( p_input, "state", &val );
1303         vlc_object_release( p_input );
1304
1305         if( val.i_int == PAUSE_S )
1306         {
1307             msg_rc( _("Type 'menu select' or 'pause' to continue.") );
1308             pl_Release( p_this );
1309             return VLC_EGENERIC;
1310         }
1311     }
1312
1313     /* Parse commands that require a playlist */
1314     if( !strcmp( psz_cmd, "prev" ) )
1315     {
1316         playlist_Prev( p_playlist );
1317     }
1318     else if( !strcmp( psz_cmd, "next" ) )
1319     {
1320         playlist_Next( p_playlist );
1321     }
1322     else if( !strcmp( psz_cmd, "play" ) )
1323     {
1324         msg_Warn( p_playlist, "play" );
1325         playlist_Play( p_playlist );
1326     }
1327     else if( !strcmp( psz_cmd, "repeat" ) )
1328     {
1329         bool b_update = true;
1330
1331         var_Get( p_playlist, "repeat", &val );
1332
1333         if( strlen( newval.psz_string ) > 0 )
1334         {
1335             if ( ( !strncmp( newval.psz_string, "on", 2 ) && ( val.b_bool == true ) ) ||
1336                  ( !strncmp( newval.psz_string, "off", 3 ) && ( val.b_bool == false ) ) )
1337             {
1338                 b_update = false;
1339             }
1340         }
1341
1342         if ( b_update )
1343         {
1344             val.b_bool = !val.b_bool;
1345             var_Set( p_playlist, "repeat", val );
1346         }
1347         msg_rc( "Setting repeat to %d", val.b_bool );
1348     }
1349     else if( !strcmp( psz_cmd, "loop" ) )
1350     {
1351         bool b_update = true;
1352
1353         var_Get( p_playlist, "loop", &val );
1354
1355         if( strlen( newval.psz_string ) > 0 )
1356         {
1357             if ( ( !strncmp( newval.psz_string, "on", 2 ) && ( val.b_bool == true ) ) ||
1358                  ( !strncmp( newval.psz_string, "off", 3 ) && ( val.b_bool == false ) ) )
1359             {
1360                 b_update = false;
1361             }
1362         }
1363
1364         if ( b_update )
1365         {
1366             val.b_bool = !val.b_bool;
1367             var_Set( p_playlist, "loop", val );
1368         }
1369         msg_rc( "Setting loop to %d", val.b_bool );
1370     }
1371     else if( !strcmp( psz_cmd, "random" ) )
1372     {
1373         bool b_update = true;
1374
1375         var_Get( p_playlist, "random", &val );
1376
1377         if( strlen( newval.psz_string ) > 0 )
1378         {
1379             if ( ( !strncmp( newval.psz_string, "on", 2 ) && ( val.b_bool == true ) ) ||
1380                  ( !strncmp( newval.psz_string, "off", 3 ) && ( val.b_bool == false ) ) )
1381             {
1382                 b_update = false;
1383             }
1384         }
1385
1386         if ( b_update )
1387         {
1388             val.b_bool = !val.b_bool;
1389             var_Set( p_playlist, "random", val );
1390         }
1391         msg_rc( "Setting random to %d", val.b_bool );
1392     }
1393     else if (!strcmp( psz_cmd, "goto" ) )
1394     {
1395         int i_pos = atoi( newval.psz_string );
1396         /* The playlist stores 2 times the same item: onelevel & category */
1397         int i_size = p_playlist->items.i_size / 2;
1398
1399         if( i_pos <= 0 )
1400             msg_rc( _("Error: `goto' needs an argument greater than zero.") );
1401         else if( i_pos <= i_size )
1402         {
1403             playlist_item_t *p_item, *p_parent;
1404             p_item = p_parent = p_playlist->items.p_elems[i_pos*2-1];
1405             while( p_parent->p_parent )
1406                 p_parent = p_parent->p_parent;
1407             playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, pl_Unlocked,
1408                     p_parent, p_item );
1409         }
1410         else
1411             msg_rc( _("Playlist has only %d elements"), i_size );
1412     }
1413     else if( !strcmp( psz_cmd, "stop" ) )
1414     {
1415         playlist_Stop( p_playlist );
1416     }
1417     else if( !strcmp( psz_cmd, "clear" ) )
1418     {
1419         playlist_Stop( p_playlist );
1420         playlist_Clear( p_playlist, pl_Unlocked );
1421     }
1422     else if( !strcmp( psz_cmd, "add" ) &&
1423              newval.psz_string && *newval.psz_string )
1424     {
1425         input_item_t *p_item = parse_MRL( p_intf, newval.psz_string );
1426
1427         if( p_item )
1428         {
1429             msg_rc( "Trying to add %s to playlist.", newval.psz_string );
1430             int i_ret =playlist_AddInput( p_playlist, p_item,
1431                      PLAYLIST_GO|PLAYLIST_APPEND, PLAYLIST_END, true,
1432                      pl_Unlocked );
1433             vlc_gc_decref( p_item );
1434             if( i_ret != VLC_SUCCESS )
1435             {
1436                 return VLC_EGENERIC;
1437             }
1438         }
1439     }
1440     else if( !strcmp( psz_cmd, "enqueue" ) &&
1441              newval.psz_string && *newval.psz_string )
1442     {
1443         input_item_t *p_item = parse_MRL( p_intf, newval.psz_string );
1444
1445         if( p_item )
1446         {
1447             msg_rc( "trying to enqueue %s to playlist", newval.psz_string );
1448             if( playlist_AddInput( p_playlist, p_item,
1449                                PLAYLIST_APPEND, PLAYLIST_END, true,
1450                                pl_Unlocked ) != VLC_SUCCESS )
1451             {
1452                 return VLC_EGENERIC;
1453             }
1454         }
1455     }
1456     else if( !strcmp( psz_cmd, "playlist" ) )
1457     {
1458         msg_rc( "+----[ Playlist ]" );
1459         print_playlist( p_intf, p_playlist->p_root_category, 0 );
1460         msg_rc( "+----[ End of playlist ]" );
1461     }
1462
1463     else if( !strcmp( psz_cmd, "sort" ))
1464     {
1465         playlist_RecursiveNodeSort( p_playlist, p_playlist->p_root_onelevel,
1466                                     SORT_ARTIST, ORDER_NORMAL );
1467     }
1468     else if( !strcmp( psz_cmd, "status" ) )
1469     {
1470         input_thread_t * p_input = playlist_CurrentInput( p_playlist );
1471         if( p_input )
1472         {
1473             /* Replay the current state of the system. */
1474             char *psz_uri =
1475                     input_item_GetURI( input_GetItem( p_input ) );
1476             msg_rc( STATUS_CHANGE "( new input: %s )", psz_uri );
1477             free( psz_uri );
1478             msg_rc( STATUS_CHANGE "( audio volume: %d )",
1479                     config_GetInt( p_intf, "volume" ));
1480
1481             PL_LOCK;
1482             switch( playlist_Status(p_playlist) )
1483             {
1484                 case PLAYLIST_STOPPED:
1485                     msg_rc( STATUS_CHANGE "( stop state: 5 )" );
1486                     break;
1487                 case PLAYLIST_RUNNING:
1488                     msg_rc( STATUS_CHANGE "( play state: 3 )" );
1489                     break;
1490                 case PLAYLIST_PAUSED:
1491                     msg_rc( STATUS_CHANGE "( pause state: 4 )" );
1492                     break;
1493                 default:
1494                     msg_rc( STATUS_CHANGE "( unknown state: -1 )" );
1495                     break;
1496             }
1497             PL_UNLOCK;
1498             vlc_object_release( p_input );
1499         }
1500     }
1501
1502     /*
1503      * sanity check
1504      */
1505     else
1506     {
1507         msg_rc( "unknown command!" );
1508     }
1509
1510     pl_Release( p_this );
1511     return VLC_SUCCESS;
1512 }
1513
1514 static int Quit( vlc_object_t *p_this, char const *psz_cmd,
1515                  vlc_value_t oldval, vlc_value_t newval, void *p_data )
1516 {
1517     VLC_UNUSED(p_data); VLC_UNUSED(psz_cmd);
1518     VLC_UNUSED(oldval); VLC_UNUSED(newval);
1519
1520     libvlc_Quit( p_this->p_libvlc );
1521     return VLC_SUCCESS;
1522 }
1523
1524 static int Intf( vlc_object_t *p_this, char const *psz_cmd,
1525                  vlc_value_t oldval, vlc_value_t newval, void *p_data )
1526 {
1527     VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval); VLC_UNUSED(p_data);
1528
1529     return intf_Create( p_this->p_libvlc, newval.psz_string );
1530 }
1531
1532 static int Volume( 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_intf = (intf_thread_t*)p_this;
1537     input_thread_t *p_input = NULL;
1538     int i_error = VLC_EGENERIC;
1539
1540     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
1541     if( !p_input )
1542         return VLC_ENOOBJ;
1543
1544     if( p_input )
1545     {
1546         vlc_value_t val;
1547
1548         var_Get( p_input, "state", &val );
1549         if( val.i_int == PAUSE_S )
1550         {
1551             msg_rc( _("Type 'menu select' or 'pause' to continue.") );
1552             vlc_object_release( p_input );
1553             return VLC_EGENERIC;
1554         }
1555         vlc_object_release( p_input );
1556     }
1557
1558     if ( *newval.psz_string )
1559     {
1560         /* Set. */
1561         audio_volume_t i_volume = atoi( newval.psz_string );
1562         if ( (i_volume > (audio_volume_t)AOUT_VOLUME_MAX) )
1563         {
1564             msg_rc( "Volume must be in the range %d-%d.", AOUT_VOLUME_MIN,
1565                     AOUT_VOLUME_MAX );
1566             i_error = VLC_EBADVAR;
1567         }
1568         else
1569         {
1570             if( i_volume == AOUT_VOLUME_MIN )
1571             {
1572                 vlc_value_t keyval;
1573
1574                 keyval.i_int = config_GetInt( p_intf, "key-vol-mute" );
1575                 var_Set( p_intf->p_libvlc, "key-pressed", keyval );
1576             }
1577             i_error = aout_VolumeSet( p_this, i_volume );
1578             osd_Volume( p_this );
1579             msg_rc( STATUS_CHANGE "( audio volume: %d )", i_volume );
1580         }
1581     }
1582     else
1583     {
1584         /* Get. */
1585         audio_volume_t i_volume;
1586         if ( aout_VolumeGet( p_this, &i_volume ) < 0 )
1587         {
1588             i_error = VLC_EGENERIC;
1589         }
1590         else
1591         {
1592             msg_rc( STATUS_CHANGE "( audio volume: %d )", i_volume );
1593             i_error = VLC_SUCCESS;
1594         }
1595     }
1596
1597     return i_error;
1598 }
1599
1600 static int VolumeMove( vlc_object_t *p_this, char const *psz_cmd,
1601                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
1602 {
1603     VLC_UNUSED(oldval); VLC_UNUSED(p_data);
1604     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1605     audio_volume_t i_volume;
1606     input_thread_t *p_input = NULL;
1607     int i_nb_steps = atoi(newval.psz_string);
1608     int i_error = VLC_SUCCESS;
1609     int i_volume_step = 0;
1610
1611     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
1612     if( !p_input )
1613         return VLC_ENOOBJ;
1614
1615     if( p_input )
1616     {
1617         vlc_value_t val;
1618
1619         var_Get( p_input, "state", &val );
1620         if( val.i_int == PAUSE_S )
1621         {
1622             msg_rc( _("Type 'menu select' or 'pause' to continue.") );
1623             vlc_object_release( p_input );
1624             return VLC_EGENERIC;
1625         }
1626         vlc_object_release( p_input );
1627     }
1628
1629     i_volume_step = config_GetInt( p_intf->p_libvlc, "volume-step" );
1630     if ( i_nb_steps <= 0 || i_nb_steps > (AOUT_VOLUME_MAX/i_volume_step) )
1631     {
1632         i_nb_steps = 1;
1633     }
1634
1635     if ( !strcmp(psz_cmd, "volup") )
1636     {
1637         if ( aout_VolumeUp( p_this, i_nb_steps, &i_volume ) < 0 )
1638             i_error = VLC_EGENERIC;
1639     }
1640     else
1641     {
1642         if ( aout_VolumeDown( p_this, i_nb_steps, &i_volume ) < 0 )
1643             i_error = VLC_EGENERIC;
1644     }
1645     osd_Volume( p_this );
1646
1647     if ( !i_error ) msg_rc( STATUS_CHANGE "( audio volume: %d )", i_volume );
1648     return i_error;
1649 }
1650
1651
1652 static int VideoConfig( vlc_object_t *p_this, char const *psz_cmd,
1653                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
1654 {
1655     VLC_UNUSED(oldval); VLC_UNUSED(p_data);
1656     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1657     input_thread_t *p_input = NULL;
1658     vout_thread_t * p_vout;
1659     const char * psz_variable = NULL;
1660     int i_error;
1661
1662     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
1663     if( !p_input )
1664         return VLC_ENOOBJ;
1665
1666     p_vout = vlc_object_find( p_input, VLC_OBJECT_VOUT, FIND_CHILD );
1667     vlc_object_release( p_input );
1668     if( !p_vout )
1669         return VLC_ENOOBJ;
1670
1671     if( !strcmp( psz_cmd, "vcrop" ) )
1672     {
1673         psz_variable = "crop";
1674     }
1675     else if( !strcmp( psz_cmd, "vratio" ) )
1676     {
1677         psz_variable = "aspect-ratio";
1678     }
1679     else if( !strcmp( psz_cmd, "vzoom" ) )
1680     {
1681         psz_variable = "zoom";
1682     }
1683     else if( !strcmp( psz_cmd, "snapshot" ) )
1684     {
1685         psz_variable = "video-snapshot";
1686     }
1687     else
1688         /* This case can't happen */
1689         assert( 0 );
1690
1691     if( newval.psz_string && *newval.psz_string )
1692     {
1693         /* set */
1694         if( !strcmp( psz_variable, "zoom" ) )
1695         {
1696             vlc_value_t val;
1697             val.f_float = atof( newval.psz_string );
1698             i_error = var_Set( p_vout, psz_variable, val );
1699         }
1700         else
1701         {
1702             i_error = var_Set( p_vout, psz_variable, newval );
1703         }
1704     }
1705     else if( !strcmp( psz_cmd, "snapshot" ) )
1706     {
1707         vlc_value_t val;
1708         val.b_bool = true;
1709         i_error = var_Set( p_vout, psz_variable, val );
1710     }
1711     else
1712     {
1713         /* get */
1714         vlc_value_t val_name;
1715         vlc_value_t val, text;
1716         int i;
1717         float f_value = 0.;
1718         char *psz_value = NULL;
1719
1720         if ( var_Get( p_vout, psz_variable, &val ) < 0 )
1721         {
1722             vlc_object_release( p_vout );
1723             return VLC_EGENERIC;
1724         }
1725         if( !strcmp( psz_variable, "zoom" ) )
1726         {
1727             f_value = val.f_float;
1728         }
1729         else
1730         {
1731             psz_value = strdup( val.psz_string );
1732         }
1733
1734         if ( var_Change( p_vout, psz_variable,
1735                          VLC_VAR_GETLIST, &val, &text ) < 0 )
1736         {
1737             vlc_object_release( p_vout );
1738             free( psz_value );
1739             return VLC_EGENERIC;
1740         }
1741
1742         /* Get the descriptive name of the variable */
1743         var_Change( p_vout, psz_variable, VLC_VAR_GETTEXT,
1744                     &val_name, NULL );
1745         if( !val_name.psz_string ) val_name.psz_string = strdup(psz_variable);
1746
1747         msg_rc( "+----[ %s ]", val_name.psz_string );
1748         if( !strcmp( psz_variable, "zoom" ) )
1749         {
1750             for ( i = 0; i < val.p_list->i_count; i++ )
1751             {
1752                 if ( f_value == val.p_list->p_values[i].f_float )
1753                     msg_rc( "| %f - %s *", val.p_list->p_values[i].f_float,
1754                             text.p_list->p_values[i].psz_string );
1755                 else
1756                     msg_rc( "| %f - %s", val.p_list->p_values[i].f_float,
1757                             text.p_list->p_values[i].psz_string );
1758             }
1759         }
1760         else
1761         {
1762             for ( i = 0; i < val.p_list->i_count; i++ )
1763             {
1764                 if ( !strcmp( psz_value, val.p_list->p_values[i].psz_string ) )
1765                     msg_rc( "| %s - %s *", val.p_list->p_values[i].psz_string,
1766                             text.p_list->p_values[i].psz_string );
1767                 else
1768                     msg_rc( "| %s - %s", val.p_list->p_values[i].psz_string,
1769                             text.p_list->p_values[i].psz_string );
1770             }
1771             free( psz_value );
1772         }
1773         var_FreeList( &val, &text );
1774         msg_rc( "+----[ end of %s ]", val_name.psz_string );
1775
1776         free( val_name.psz_string );
1777
1778         i_error = VLC_SUCCESS;
1779     }
1780     vlc_object_release( p_vout );
1781     return i_error;
1782 }
1783
1784 static int AudioConfig( vlc_object_t *p_this, char const *psz_cmd,
1785                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
1786 {
1787     VLC_UNUSED(oldval); VLC_UNUSED(p_data);
1788     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1789     input_thread_t *p_input = NULL;
1790     aout_instance_t * p_aout;
1791     const char * psz_variable;
1792     vlc_value_t val_name;
1793     int i_error;
1794
1795     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
1796     if( !p_input )
1797         return VLC_ENOOBJ;
1798
1799     if( p_input )
1800     {
1801         vlc_value_t val;
1802
1803         var_Get( p_input, "state", &val );
1804         if( val.i_int == PAUSE_S )
1805         {
1806             msg_rc( _("Type 'menu select' or 'pause' to continue.") );
1807             vlc_object_release( p_input );
1808             return VLC_EGENERIC;
1809         }
1810         vlc_object_release( p_input );
1811     }
1812
1813     p_aout = vlc_object_find( p_this, VLC_OBJECT_AOUT, FIND_ANYWHERE );
1814     if ( p_aout == NULL ) return VLC_ENOOBJ;
1815
1816     if ( !strcmp( psz_cmd, "adev" ) )
1817     {
1818         psz_variable = "audio-device";
1819     }
1820     else
1821     {
1822         psz_variable = "audio-channels";
1823     }
1824
1825     /* Get the descriptive name of the variable */
1826     var_Change( (vlc_object_t *)p_aout, psz_variable, VLC_VAR_GETTEXT,
1827                  &val_name, NULL );
1828     if( !val_name.psz_string ) val_name.psz_string = strdup(psz_variable);
1829
1830     if ( !*newval.psz_string )
1831     {
1832         /* Retrieve all registered ***. */
1833         vlc_value_t val, text;
1834         int i, i_value;
1835
1836         if ( var_Get( (vlc_object_t *)p_aout, psz_variable, &val ) < 0 )
1837         {
1838             vlc_object_release( (vlc_object_t *)p_aout );
1839             return VLC_EGENERIC;
1840         }
1841         i_value = val.i_int;
1842
1843         if ( var_Change( (vlc_object_t *)p_aout, psz_variable,
1844                          VLC_VAR_GETLIST, &val, &text ) < 0 )
1845         {
1846             vlc_object_release( (vlc_object_t *)p_aout );
1847             return VLC_EGENERIC;
1848         }
1849
1850         msg_rc( "+----[ %s ]", val_name.psz_string );
1851         for ( i = 0; i < val.p_list->i_count; i++ )
1852         {
1853             if ( i_value == val.p_list->p_values[i].i_int )
1854                 msg_rc( "| %i - %s *", val.p_list->p_values[i].i_int,
1855                         text.p_list->p_values[i].psz_string );
1856             else
1857                 msg_rc( "| %i - %s", val.p_list->p_values[i].i_int,
1858                         text.p_list->p_values[i].psz_string );
1859         }
1860         var_FreeList( &val, &text );
1861         msg_rc( "+----[ end of %s ]", val_name.psz_string );
1862
1863         free( val_name.psz_string );
1864         i_error = VLC_SUCCESS;
1865     }
1866     else
1867     {
1868         vlc_value_t val;
1869         val.i_int = atoi( newval.psz_string );
1870
1871         i_error = var_Set( (vlc_object_t *)p_aout, psz_variable, val );
1872     }
1873     vlc_object_release( (vlc_object_t *)p_aout );
1874
1875     return i_error;
1876 }
1877
1878 /* OSD menu commands */
1879 static int Menu( vlc_object_t *p_this, char const *psz_cmd,
1880     vlc_value_t oldval, vlc_value_t newval, void *p_data )
1881 {
1882     VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval); VLC_UNUSED(p_data);
1883     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1884     playlist_t    *p_playlist = NULL;
1885     int i_error = VLC_SUCCESS;
1886     vlc_value_t val;
1887
1888     if ( !*newval.psz_string )
1889     {
1890         msg_rc( _("Please provide one of the following parameters:") );
1891         msg_rc( "[on|off|up|down|left|right|select]" );
1892         return VLC_EGENERIC;
1893     }
1894
1895     p_playlist = pl_Hold( p_this );
1896     input_thread_t * p_input = playlist_CurrentInput( p_playlist );
1897
1898     if( p_input )
1899     {
1900         var_Get( p_input, "state", &val );
1901         vlc_object_release( p_input );
1902
1903         if( ( val.i_int == PAUSE_S ) &&
1904             ( strcmp( newval.psz_string, "select" ) != 0 ) )
1905         {
1906             msg_rc( _("Type 'menu select' or 'pause' to continue.") );
1907             pl_Release( p_this );
1908             return VLC_EGENERIC;
1909         }
1910     }
1911     pl_Release( p_this );
1912
1913     val.psz_string = strdup( newval.psz_string );
1914     if( !val.psz_string )
1915         return VLC_ENOMEM;
1916     if( !strcmp( val.psz_string, "on" ) || !strcmp( val.psz_string, "show" ))
1917         osd_MenuShow( p_this );
1918     else if( !strcmp( val.psz_string, "off" )
1919           || !strcmp( val.psz_string, "hide" ) )
1920         osd_MenuHide( p_this );
1921     else if( !strcmp( val.psz_string, "up" ) )
1922         osd_MenuUp( p_this );
1923     else if( !strcmp( val.psz_string, "down" ) )
1924         osd_MenuDown( p_this );
1925     else if( !strcmp( val.psz_string, "left" ) )
1926         osd_MenuPrev( p_this );
1927     else if( !strcmp( val.psz_string, "right" ) )
1928         osd_MenuNext( p_this );
1929     else if( !strcmp( val.psz_string, "select" ) )
1930         osd_MenuActivate( p_this );
1931     else
1932     {
1933         msg_rc( _("Please provide one of the following parameters:") );
1934         msg_rc( "[on|off|up|down|left|right|select]" );
1935         i_error = VLC_EGENERIC;
1936     }
1937
1938     free( val.psz_string );
1939     return i_error;
1940 }
1941
1942 static int Statistics ( vlc_object_t *p_this, char const *psz_cmd,
1943     vlc_value_t oldval, vlc_value_t newval, void *p_data )
1944 {
1945     VLC_UNUSED(oldval); VLC_UNUSED(newval); VLC_UNUSED(p_data);
1946     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1947     input_thread_t *p_input = NULL;
1948     int i_error;
1949
1950     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
1951     if( !p_input )
1952         return VLC_ENOOBJ;
1953
1954     if( !strcmp( psz_cmd, "stats" ) )
1955     {
1956         vlc_mutex_lock( &input_GetItem(p_input)->lock );
1957         updateStatistics( p_intf, input_GetItem(p_input) );
1958         vlc_mutex_unlock( &input_GetItem(p_input)->lock );
1959     }
1960     /*
1961      * sanity check
1962      */
1963     else
1964     {
1965         msg_rc(_("Unknown command!") );
1966     }
1967
1968     vlc_object_release( p_input );
1969     i_error = VLC_SUCCESS;
1970     return i_error;
1971 }
1972
1973 static int updateStatistics( intf_thread_t *p_intf, input_item_t *p_item )
1974 {
1975     if( !p_item ) return VLC_EGENERIC;
1976
1977     vlc_mutex_lock( &p_item->p_stats->lock );
1978     msg_rc( "+----[ begin of statistical info ]" );
1979
1980     /* Input */
1981     msg_rc(_("+-[Incoming]"));
1982     msg_rc(_("| input bytes read : %8.0f kB"),
1983             (float)(p_item->p_stats->i_read_bytes)/1000 );
1984     msg_rc(_("| input bitrate    :   %6.0f kb/s"),
1985             (float)(p_item->p_stats->f_input_bitrate)*8000 );
1986     msg_rc(_("| demux bytes read : %8.0f kB"),
1987             (float)(p_item->p_stats->i_demux_read_bytes)/1000 );
1988     msg_rc(_("| demux bitrate    :   %6.0f kb/s"),
1989             (float)(p_item->p_stats->f_demux_bitrate)*8000 );
1990     msg_rc("|");
1991     /* Video */
1992     msg_rc(_("+-[Video Decoding]"));
1993     msg_rc(_("| video decoded    :    %5i"),
1994             p_item->p_stats->i_decoded_video );
1995     msg_rc(_("| frames displayed :    %5i"),
1996             p_item->p_stats->i_displayed_pictures );
1997     msg_rc(_("| frames lost      :    %5i"),
1998             p_item->p_stats->i_lost_pictures );
1999     msg_rc("|");
2000     /* Audio*/
2001     msg_rc(_("+-[Audio Decoding]"));
2002     msg_rc(_("| audio decoded    :    %5i"),
2003             p_item->p_stats->i_decoded_audio );
2004     msg_rc(_("| buffers played   :    %5i"),
2005             p_item->p_stats->i_played_abuffers );
2006     msg_rc(_("| buffers lost     :    %5i"),
2007             p_item->p_stats->i_lost_abuffers );
2008     msg_rc("|");
2009     /* Sout */
2010     msg_rc(_("+-[Streaming]"));
2011     msg_rc(_("| packets sent     :    %5i"), p_item->p_stats->i_sent_packets );
2012     msg_rc(_("| bytes sent       : %8.0f kB"),
2013             (float)(p_item->p_stats->i_sent_bytes)/1000 );
2014     msg_rc(_("| sending bitrate  :   %6.0f kb/s"),
2015             (float)(p_item->p_stats->f_send_bitrate*8)*1000 );
2016     msg_rc("|");
2017     msg_rc( "+----[ end of statistical info ]" );
2018     vlc_mutex_unlock( &p_item->p_stats->lock );
2019
2020     return VLC_SUCCESS;
2021 }
2022
2023 #ifdef WIN32
2024 bool ReadWin32( intf_thread_t *p_intf, char *p_buffer, int *pi_size )
2025 {
2026     INPUT_RECORD input_record;
2027     DWORD i_dw;
2028
2029     /* On Win32, select() only works on socket descriptors */
2030     while( WaitForSingleObject( p_intf->p_sys->hConsoleIn,
2031                                 INTF_IDLE_SLEEP/1000 ) == WAIT_OBJECT_0 )
2032     {
2033         while( vlc_object_alive( p_intf ) && *pi_size < MAX_LINE_LENGTH &&
2034                ReadConsoleInput( p_intf->p_sys->hConsoleIn, &input_record,
2035                                  1, &i_dw ) )
2036         {
2037             if( input_record.EventType != KEY_EVENT ||
2038                 !input_record.Event.KeyEvent.bKeyDown ||
2039                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_SHIFT ||
2040                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_CONTROL||
2041                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_MENU ||
2042                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_CAPITAL )
2043             {
2044                 /* nothing interesting */
2045                 continue;
2046             }
2047
2048             p_buffer[ *pi_size ] = input_record.Event.KeyEvent.uChar.AsciiChar;
2049
2050             /* Echo out the command */
2051             putc( p_buffer[ *pi_size ], stdout );
2052
2053             /* Handle special keys */
2054             if( p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
2055             {
2056                 putc( '\n', stdout );
2057                 break;
2058             }
2059             switch( p_buffer[ *pi_size ] )
2060             {
2061             case '\b':
2062                 if( *pi_size )
2063                 {
2064                     *pi_size -= 2;
2065                     putc( ' ', stdout );
2066                     putc( '\b', stdout );
2067                 }
2068                 break;
2069             case '\r':
2070                 (*pi_size) --;
2071                 break;
2072             }
2073
2074             (*pi_size)++;
2075         }
2076
2077         if( *pi_size == MAX_LINE_LENGTH ||
2078             p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
2079         {
2080             p_buffer[ *pi_size ] = 0;
2081             return true;
2082         }
2083     }
2084
2085     return false;
2086 }
2087 #endif
2088
2089 bool ReadCommand( intf_thread_t *p_intf, char *p_buffer, int *pi_size )
2090 {
2091     int i_read = 0;
2092
2093 #ifdef WIN32
2094     if( p_intf->p_sys->i_socket == -1 && !p_intf->p_sys->b_quiet )
2095         return ReadWin32( p_intf, p_buffer, pi_size );
2096     else if( p_intf->p_sys->i_socket == -1 )
2097     {
2098         msleep( INTF_IDLE_SLEEP );
2099         return false;
2100     }
2101 #endif
2102
2103     while( vlc_object_alive( p_intf ) && *pi_size < MAX_LINE_LENGTH &&
2104            (i_read = net_Read( p_intf, p_intf->p_sys->i_socket == -1 ?
2105                        0 /*STDIN_FILENO*/ : p_intf->p_sys->i_socket, NULL,
2106                   (uint8_t *)p_buffer + *pi_size, 1, false ) ) > 0 )
2107     {
2108         if( p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
2109             break;
2110
2111         (*pi_size)++;
2112     }
2113
2114     /* Connection closed */
2115     if( i_read <= 0 )
2116     {
2117         if( p_intf->p_sys->i_socket != -1 )
2118         {
2119             net_Close( p_intf->p_sys->i_socket );
2120             p_intf->p_sys->i_socket = -1;
2121         }
2122         else
2123         {
2124             /* Standard input closed: exit */
2125             vlc_value_t empty;
2126             Quit( VLC_OBJECT(p_intf), NULL, empty, empty, NULL );
2127         }
2128
2129         p_buffer[ *pi_size ] = 0;
2130         return true;
2131     }
2132
2133     if( *pi_size == MAX_LINE_LENGTH ||
2134         p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
2135     {
2136         p_buffer[ *pi_size ] = 0;
2137         return true;
2138     }
2139
2140     return false;
2141 }
2142
2143 /*****************************************************************************
2144  * parse_MRL: build a input item from a full mrl
2145  *****************************************************************************
2146  * MRL format: "simplified-mrl [:option-name[=option-value]]"
2147  * We don't check for '"' or '\'', we just assume that a ':' that follows a
2148  * space is a new option. Should be good enough for our purpose.
2149  *****************************************************************************/
2150 static input_item_t *parse_MRL( intf_thread_t *p_intf, char *psz_mrl )
2151 {
2152 #define SKIPSPACE( p ) { while( *p == ' ' || *p == '\t' ) p++; }
2153 #define SKIPTRAILINGSPACE( p, d ) \
2154     { char *e=d; while( e > p && (*(e-1)==' ' || *(e-1)=='\t') ){e--;*e=0;} }
2155
2156     input_item_t *p_item = NULL;
2157     char *psz_item = NULL, *psz_item_mrl = NULL, *psz_orig;
2158     char **ppsz_options = NULL;
2159     int i, i_options = 0;
2160
2161     if( !psz_mrl ) return 0;
2162
2163     psz_mrl = psz_orig = strdup( psz_mrl );
2164     while( *psz_mrl )
2165     {
2166         SKIPSPACE( psz_mrl );
2167         psz_item = psz_mrl;
2168
2169         for( ; *psz_mrl; psz_mrl++ )
2170         {
2171             if( (*psz_mrl == ' ' || *psz_mrl == '\t') && psz_mrl[1] == ':' )
2172             {
2173                 /* We have a complete item */
2174                 break;
2175             }
2176             if( (*psz_mrl == ' ' || *psz_mrl == '\t') &&
2177                 (psz_mrl[1] == '"' || psz_mrl[1] == '\'') && psz_mrl[2] == ':')
2178             {
2179                 /* We have a complete item */
2180                 break;
2181             }
2182         }
2183
2184         if( *psz_mrl ) { *psz_mrl = 0; psz_mrl++; }
2185         SKIPTRAILINGSPACE( psz_item, psz_item + strlen( psz_item ) );
2186
2187         /* Remove '"' and '\'' if necessary */
2188         if( *psz_item == '"' && psz_item[strlen(psz_item)-1] == '"' )
2189         { psz_item++; psz_item[strlen(psz_item)-1] = 0; }
2190         if( *psz_item == '\'' && psz_item[strlen(psz_item)-1] == '\'' )
2191         { psz_item++; psz_item[strlen(psz_item)-1] = 0; }
2192
2193         if( !psz_item_mrl ) psz_item_mrl = psz_item;
2194         else if( *psz_item )
2195         {
2196             i_options++;
2197             ppsz_options = realloc( ppsz_options, i_options * sizeof(char *) );
2198             ppsz_options[i_options - 1] = &psz_item[1];
2199         }
2200
2201         if( *psz_mrl ) SKIPSPACE( psz_mrl );
2202     }
2203
2204     /* Now create a playlist item */
2205     if( psz_item_mrl )
2206     {
2207         p_item = input_item_New( p_intf, psz_item_mrl, NULL );
2208         for( i = 0; i < i_options; i++ )
2209         {
2210             input_item_AddOption( p_item, ppsz_options[i], VLC_INPUT_OPTION_TRUSTED );
2211         }
2212     }
2213
2214     if( i_options ) free( ppsz_options );
2215     free( psz_orig );
2216
2217     return p_item;
2218 }