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