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