]> git.sesse.net Git - vlc/blob - modules/control/rc.c
freetype and rc extensions. i_font_color and i_font_opacity added to subpictures...
[vlc] / modules / control / rc.c
1 /*****************************************************************************
2  * rc.c : remote control stdin/stdout module for vlc
3  *****************************************************************************
4  * Copyright (C) 2004 - 2005 VideoLAN
5  * $Id$
6  *
7  * Author: Peter Surda <shurdeek@panorama.sth.ac.at>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <string.h>
29
30 #include <errno.h>                                                 /* ENOMEM */
31 #include <stdio.h>
32 #include <ctype.h>
33 #include <signal.h>
34
35 #include <vlc/vlc.h>
36 #include <vlc/intf.h>
37 #include <vlc/aout.h>
38 #include <vlc/vout.h>
39
40 #ifdef HAVE_UNISTD_H
41 #    include <unistd.h>
42 #endif
43
44 #ifdef HAVE_SYS_TIME_H
45 #    include <sys/time.h>
46 #endif
47 #include <sys/types.h>
48
49 #include "vlc_error.h"
50 #include "network.h"
51
52 #if defined(PF_UNIX) && !defined(PF_LOCAL)
53 #    define PF_LOCAL PF_UNIX
54 #endif
55 #if defined(AF_UNIX) && !defined(AF_LOCAL)
56 #    define AF_LOCAL AF_UNIX
57 #endif
58
59 #ifdef PF_LOCAL
60 #    include <sys/un.h>
61 #endif
62
63 #define MAX_LINE_LENGTH 256
64
65 /*****************************************************************************
66  * Local prototypes
67  *****************************************************************************/
68 static int  Activate     ( vlc_object_t * );
69 static void Deactivate   ( vlc_object_t * );
70 static void Run          ( intf_thread_t * );
71
72 static vlc_bool_t ReadCommand( intf_thread_t *, char *, int * );
73
74 static playlist_item_t *parse_MRL( intf_thread_t *, char * );
75
76 static int  Input        ( vlc_object_t *, char const *,
77                            vlc_value_t, vlc_value_t, void * );
78 static int  Playlist     ( vlc_object_t *, char const *,
79                            vlc_value_t, vlc_value_t, void * );
80 static int  Other        ( vlc_object_t *, char const *,
81                            vlc_value_t, vlc_value_t, void * );
82 static int  Quit         ( vlc_object_t *, char const *,
83                            vlc_value_t, vlc_value_t, void * );
84 static int  Intf         ( vlc_object_t *, char const *,
85                            vlc_value_t, vlc_value_t, void * );
86 static int  Volume       ( vlc_object_t *, char const *,
87                            vlc_value_t, vlc_value_t, void * );
88 static int  VolumeMove   ( vlc_object_t *, char const *,
89                            vlc_value_t, vlc_value_t, void * );
90 static int  AudioConfig  ( vlc_object_t *, char const *,
91                            vlc_value_t, vlc_value_t, void * );
92
93 struct intf_sys_t
94 {
95     int i_socket_listen;
96     int i_socket;
97     char *psz_unix_path;
98     vlc_bool_t b_extend;
99
100 #ifdef WIN32
101     HANDLE hConsoleIn;
102     vlc_bool_t b_quiet;
103 #endif
104 };
105
106 #ifdef HAVE_VARIADIC_MACROS
107 #   define msg_rc( psz_format, args... ) \
108       __msg_rc( p_intf, psz_format, ## args )
109 #endif
110
111 void __msg_rc( intf_thread_t *p_intf, const char *psz_fmt, ... )
112 {
113     va_list args;
114     va_start( args, psz_fmt );
115     if( p_intf->p_sys->i_socket == -1 ) vprintf( psz_fmt, args );
116     else
117     { net_vaPrintf( p_intf, p_intf->p_sys->i_socket, NULL, psz_fmt, args );
118       net_Printf( VLC_OBJECT(p_intf), p_intf->p_sys->i_socket, NULL, "\r" ); }
119     va_end( args );
120 }
121
122 /*****************************************************************************
123  * Module descriptor
124  *****************************************************************************/
125 #define POS_TEXT N_("Show stream position")
126 #define POS_LONGTEXT N_("Show the current position in seconds within the " \
127                         "stream from time to time." )
128
129 #define TTY_TEXT N_("Fake TTY")
130 #define TTY_LONGTEXT N_("Force the rc module to use stdin as if it was a TTY.")
131
132 #define UNIX_TEXT N_("UNIX socket command input")
133 #define UNIX_LONGTEXT N_("Accept commands over a Unix socket rather than " \
134                          "stdin." )
135
136 #define HOST_TEXT N_("TCP command input")
137 #define HOST_LONGTEXT N_("Accept commands over a socket rather than stdin. " \
138             "You can set the address and port the interface will bind to." )
139 #define EXTEND_TEXT N_("Extended help")
140 #define EXTEND_LONGTEXT N_("List additional commands.")
141
142 #ifdef WIN32
143 #define QUIET_TEXT N_("Do not open a DOS command box interface")
144 #define QUIET_LONGTEXT N_( \
145     "By default the rc interface plugin will start a DOS command box. " \
146     "Enabling the quiet mode will not bring this command box but can also " \
147     "be pretty annoying when you want to stop VLC and no video window is " \
148     "open." )
149 #endif
150
151 vlc_module_begin();
152     set_category( CAT_INTERFACE );
153     set_subcategory( SUBCAT_INTERFACE_GENERAL );
154     set_description( _("Remote control interface") );
155     add_bool( "rc-show-pos", 0, NULL, POS_TEXT, POS_LONGTEXT, VLC_TRUE );
156 #ifdef HAVE_ISATTY
157     add_bool( "rc-fake-tty", 0, NULL, TTY_TEXT, TTY_LONGTEXT, VLC_TRUE );
158 #endif
159     add_string( "rc-unix", 0, NULL, UNIX_TEXT, UNIX_LONGTEXT, VLC_TRUE );
160     add_string( "rc-host", 0, NULL, HOST_TEXT, HOST_LONGTEXT, VLC_TRUE );
161
162 #ifdef WIN32
163     add_bool( "rc-quiet", 0, NULL, QUIET_TEXT, QUIET_LONGTEXT, VLC_FALSE );
164 #endif
165     add_bool( "rc-extend", 0, NULL, EXTEND_TEXT, EXTEND_LONGTEXT, VLC_FALSE );
166
167     set_capability( "interface", 20 );
168     set_callbacks( Activate, Deactivate );
169 vlc_module_end();
170
171 /*****************************************************************************
172  * Activate: initialize and create stuff
173  *****************************************************************************/
174 static int Activate( vlc_object_t *p_this )
175 {
176     intf_thread_t *p_intf = (intf_thread_t*)p_this;
177     playlist_t *p_playlist;
178     char *psz_host, *psz_unix_path;
179     int i_socket = -1;
180
181 #if defined(HAVE_ISATTY) && !defined(WIN32)
182     /* Check that stdin is a TTY */
183     if( !config_GetInt( p_intf, "rc-fake-tty" ) && !isatty( 0 ) )
184     {
185         msg_Warn( p_intf, "fd 0 is not a TTY" );
186         return VLC_EGENERIC;
187     }
188 #endif
189
190     psz_unix_path = config_GetPsz( p_intf, "rc-unix" );
191     if( psz_unix_path )
192     {
193 #ifndef PF_LOCAL
194         msg_Warn( p_intf, "your OS doesn't support filesystem sockets" );
195         free( psz_unix_path );
196         return VLC_EGENERIC;
197 #else
198         struct sockaddr_un addr;
199         int i_ret;
200
201         memset( &addr, 0, sizeof(struct sockaddr_un) );
202
203         msg_Dbg( p_intf, "trying UNIX socket" );
204
205         if( (i_socket = socket( PF_LOCAL, SOCK_STREAM, 0 ) ) < 0 )
206         {
207             msg_Warn( p_intf, "can't open socket: %s", strerror(errno) );
208             free( psz_unix_path );
209             return VLC_EGENERIC;
210         }
211
212         addr.sun_family = AF_LOCAL;
213         strncpy( addr.sun_path, psz_unix_path, sizeof( addr.sun_path ) );
214         addr.sun_path[sizeof( addr.sun_path ) - 1] = '\0';
215
216         if( (i_ret = bind( i_socket, (struct sockaddr*)&addr,
217                            sizeof(struct sockaddr_un) ) ) < 0 )
218         {
219             msg_Warn( p_intf, "couldn't bind socket to address: %s",
220                       strerror(errno) );
221             free( psz_unix_path );
222             net_Close( i_socket );
223             return VLC_EGENERIC;
224         }
225
226         if( ( i_ret = listen( i_socket, 1 ) ) < 0 )
227         {
228             msg_Warn( p_intf, "can't listen on socket: %s", strerror(errno));
229             free( psz_unix_path );
230             net_Close( i_socket );
231             return VLC_EGENERIC;
232         }
233 #endif
234     }
235
236     if( ( i_socket == -1) &&
237         ( psz_host = config_GetPsz( p_intf, "rc-host" ) ) != NULL )
238     {
239         vlc_url_t url;
240
241         vlc_UrlParse( &url, psz_host, 0 );
242
243         msg_Dbg( p_intf, "base %s port %d", url.psz_host, url.i_port );
244
245         if( (i_socket = net_ListenTCP(p_this, url.psz_host, url.i_port)) == -1)
246         {
247             msg_Warn( p_intf, "can't listen to %s port %i",
248                       url.psz_host, url.i_port );
249             vlc_UrlClean( &url );
250             free( psz_host );
251             return VLC_EGENERIC;
252         }
253
254         vlc_UrlClean( &url );
255         free( psz_host );
256     }
257
258     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
259     if( !p_intf->p_sys )
260     {
261         msg_Err( p_intf, "no memory" );
262         return VLC_ENOMEM;
263     }
264
265     p_intf->p_sys->i_socket_listen = i_socket;
266     p_intf->p_sys->i_socket = -1;
267     p_intf->p_sys->psz_unix_path = psz_unix_path;
268
269     /* Non-buffered stdout */
270     setvbuf( stdout, (char *)NULL, _IOLBF, 0 );
271
272     p_intf->pf_run = Run;
273
274 #ifdef WIN32
275     p_intf->p_sys->b_quiet = config_GetInt( p_intf, "rc-quiet" );
276     if( !p_intf->p_sys->b_quiet ) { CONSOLE_INTRO_MSG; }
277 #else
278     CONSOLE_INTRO_MSG;
279 #endif
280
281     /* Force "no-view" mode */
282     p_playlist = (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
283                                                  FIND_ANYWHERE );
284     if( p_playlist )
285     {
286         vlc_mutex_lock( &p_playlist->object_lock );
287         p_playlist->status.i_view = -1;
288         vlc_mutex_unlock( &p_playlist->object_lock );
289         vlc_object_release( p_playlist );
290     }
291
292     msg_rc( _("Remote control interface initialized, `h' for help\n") );
293     return VLC_SUCCESS;
294 }
295
296 /*****************************************************************************
297  * Deactivate: uninitialize and cleanup
298  *****************************************************************************/
299 static void Deactivate( vlc_object_t *p_this )
300 {
301     intf_thread_t *p_intf = (intf_thread_t*)p_this;
302
303     if( p_intf->p_sys->i_socket_listen != -1 )
304         net_Close( p_intf->p_sys->i_socket_listen );
305     if( p_intf->p_sys->i_socket != -1 )
306         net_Close( p_intf->p_sys->i_socket );
307     if( p_intf->p_sys->psz_unix_path != NULL )
308     {
309 #ifdef PF_LOCAL
310         unlink( p_intf->p_sys->psz_unix_path );
311 #endif
312         free( p_intf->p_sys->psz_unix_path );
313     }
314     free( p_intf->p_sys );
315 }
316
317 /*****************************************************************************
318  * Run: rc thread
319  *****************************************************************************
320  * This part of the interface is in a separate thread so that we can call
321  * exec() from within it without annoying the rest of the program.
322  *****************************************************************************/
323 static void Run( intf_thread_t *p_intf )
324 {
325     input_thread_t * p_input;
326     playlist_t *     p_playlist;
327
328     char       p_buffer[ MAX_LINE_LENGTH + 1 ];
329     vlc_bool_t b_showpos = config_GetInt( p_intf, "rc-show-pos" );
330
331     int        i_size = 0;
332     int        i_oldpos = 0;
333     int        i_newpos;
334
335     p_buffer[0] = 0;
336     p_input = NULL;
337     p_playlist = NULL;
338  
339     p_intf->p_sys->b_extend = config_GetInt( p_intf, "rc-extend" );
340     /* Register commands that will be cleaned up upon object destruction */
341     var_Create( p_intf, "quit", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
342     var_AddCallback( p_intf, "quit", Quit, NULL );
343     var_Create( p_intf, "intf", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
344     var_AddCallback( p_intf, "intf", Intf, NULL );
345
346     var_Create( p_intf, "add", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
347     var_AddCallback( p_intf, "add", Playlist, NULL );
348     var_Create( p_intf, "playlist", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
349     var_AddCallback( p_intf, "playlist", Playlist, NULL );
350     var_Create( p_intf, "play", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
351     var_AddCallback( p_intf, "play", Playlist, NULL );
352     var_Create( p_intf, "stop", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
353     var_AddCallback( p_intf, "stop", Playlist, NULL );
354     var_Create( p_intf, "prev", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
355     var_AddCallback( p_intf, "prev", Playlist, NULL );
356     var_Create( p_intf, "next", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
357     var_AddCallback( p_intf, "next", Playlist, NULL );
358     var_Create( p_intf, "goto", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
359     var_AddCallback( p_intf, "goto", Playlist, NULL );
360  
361     /* marquee on the fly items */
362     var_Create( p_intf, "marq-marquee", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
363     var_AddCallback( p_intf, "marq-marquee", Other, NULL );
364     var_Create( p_intf, "marq-x", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
365     var_AddCallback( p_intf, "marq-x", Other, NULL );
366     var_Create( p_intf, "marq-y", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
367     var_AddCallback( p_intf, "marq-y", Other, NULL );
368     var_Create( p_intf, "marq-position", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
369     var_AddCallback( p_intf, "marq-position", Other, NULL );
370     var_Create( p_intf, "marq-color", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
371     var_AddCallback( p_intf, "marq-color", Other, NULL );
372     var_Create( p_intf, "marq-opacity", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
373     var_AddCallback( p_intf, "marq-opacity", Other, NULL );
374     var_Create( p_intf, "marq-timeout", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
375     var_AddCallback( p_intf, "marq-timeout", Other, NULL );
376
377     /* time on the fly items */
378     var_Create( p_intf, "time-format", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
379     var_AddCallback( p_intf, "time-format", Other, NULL );
380     var_Create( p_intf, "time-x", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
381     var_AddCallback( p_intf, "time-x", Other, NULL );
382     var_Create( p_intf, "time-y", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
383     var_AddCallback( p_intf, "time-y", Other, NULL );
384     var_Create( p_intf, "time-position", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
385     var_AddCallback( p_intf, "time-position", Other, NULL );
386     var_Create( p_intf, "time-color", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
387     var_AddCallback( p_intf, "time-color", Other, NULL );
388     var_Create( p_intf, "time-opacity", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
389     var_AddCallback( p_intf, "time-opacity", Other, NULL );
390     
391     
392     var_Create( p_intf, "pause", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
393     var_AddCallback( p_intf, "pause", Input, NULL );
394     var_Create( p_intf, "seek", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
395     var_AddCallback( p_intf, "seek", Input, NULL );
396     var_Create( p_intf, "title", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
397     var_AddCallback( p_intf, "title", Input, NULL );
398     var_Create( p_intf, "title_n", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
399     var_AddCallback( p_intf, "title_n", Input, NULL );
400     var_Create( p_intf, "title_p", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
401     var_AddCallback( p_intf, "title_p", Input, NULL );
402     var_Create( p_intf, "chapter", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
403     var_AddCallback( p_intf, "chapter", Input, NULL );
404     var_Create( p_intf, "chapter_n", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
405     var_AddCallback( p_intf, "chapter_n", Input, NULL );
406     var_Create( p_intf, "chapter_p", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
407     var_AddCallback( p_intf, "chapter_p", Input, NULL );
408
409     var_Create( p_intf, "fastforward", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
410     var_AddCallback( p_intf, "fastforward", Input, NULL );
411     var_Create( p_intf, "rewind", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
412     var_AddCallback( p_intf, "rewind", Input, NULL );
413
414     var_Create( p_intf, "volume", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
415     var_AddCallback( p_intf, "volume", Volume, NULL );
416     var_Create( p_intf, "volup", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
417     var_AddCallback( p_intf, "volup", VolumeMove, NULL );
418     var_Create( p_intf, "voldown", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
419     var_AddCallback( p_intf, "voldown", VolumeMove, NULL );
420     var_Create( p_intf, "adev", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
421     var_AddCallback( p_intf, "adev", AudioConfig, NULL );
422     var_Create( p_intf, "achan", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
423     var_AddCallback( p_intf, "achan", AudioConfig, NULL );
424
425 #ifdef WIN32
426     /* Get the file descriptor of the console input */
427     p_intf->p_sys->hConsoleIn = GetStdHandle(STD_INPUT_HANDLE);
428     if( p_intf->p_sys->hConsoleIn == INVALID_HANDLE_VALUE )
429     {
430         msg_Err( p_intf, "Couldn't open STD_INPUT_HANDLE" );
431         p_intf->b_die = VLC_TRUE;
432     }
433 #endif
434
435     while( !p_intf->b_die )
436     {
437         char *psz_cmd, *psz_arg;
438         vlc_bool_t b_complete;
439
440         if( p_intf->p_sys->i_socket_listen != - 1 &&
441             p_intf->p_sys->i_socket == -1 )
442         {
443             p_intf->p_sys->i_socket =
444                 net_Accept( p_intf, p_intf->p_sys->i_socket_listen, 0 );
445         }
446
447         b_complete = ReadCommand( p_intf, p_buffer, &i_size );
448
449         /* Manage the input part */
450         if( p_input == NULL )
451         {
452             if( p_playlist )
453             {
454                 p_input = vlc_object_find( p_playlist, VLC_OBJECT_INPUT,
455                                                        FIND_CHILD );
456             }
457             else
458             {
459                 p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT,
460                                                    FIND_ANYWHERE );
461                 if( p_input )
462                 {
463                     p_playlist = vlc_object_find( p_input, VLC_OBJECT_PLAYLIST,
464                                                            FIND_PARENT );
465                 }
466             }
467         }
468         else if( p_input->b_dead )
469         {
470             vlc_object_release( p_input );
471             p_input = NULL;
472         }
473
474         if( p_input && b_showpos )
475         {
476             i_newpos = 100 * var_GetFloat( p_input, "position" );
477             if( i_oldpos != i_newpos )
478             {
479                 i_oldpos = i_newpos;
480                 msg_rc( "pos: %d%%\n", i_newpos );
481             }
482         }
483
484         /* Is there something to do? */
485         if( !b_complete ) continue;
486
487
488         /* Skip heading spaces */
489         psz_cmd = p_buffer;
490         while( *psz_cmd == ' ' )
491         {
492             psz_cmd++;
493         }
494
495         /* Split psz_cmd at the first space and make sure that
496          * psz_arg is valid */
497         psz_arg = strchr( psz_cmd, ' ' );
498         if( psz_arg )
499         {
500             *psz_arg++ = 0;
501             while( *psz_arg == ' ' )
502             {
503                 psz_arg++;
504             }
505         }
506         else
507         {
508             psz_arg = "";
509         }
510
511         /* If the user typed a registered local command, try it */
512         if( var_Type( p_intf, psz_cmd ) & VLC_VAR_ISCOMMAND )
513         {
514             vlc_value_t val;
515             int i_ret;
516
517             val.psz_string = psz_arg;
518             i_ret = var_Set( p_intf, psz_cmd, val );
519             msg_rc( "%s: returned %i (%s)\n",
520                     psz_cmd, i_ret, vlc_error( i_ret ) );
521         }
522         /* Or maybe it's a global command */
523         else if( var_Type( p_intf->p_libvlc, psz_cmd ) & VLC_VAR_ISCOMMAND )
524         {
525             vlc_value_t val;
526             int i_ret;
527
528             val.psz_string = psz_arg;
529             /* FIXME: it's a global command, but we should pass the
530              * local object as an argument, not p_intf->p_libvlc. */
531             i_ret = var_Set( p_intf->p_libvlc, psz_cmd, val );
532             if( i_ret != 0 )
533             {
534                 msg_rc( "%s: returned %i (%s)\n",
535                          psz_cmd, i_ret, vlc_error( i_ret ) );
536             }
537         }
538         else if( !strcmp( psz_cmd, "logout" ) )
539         {
540             /* Close connection */
541             if( p_intf->p_sys->i_socket != -1 )
542             {
543                 net_Close( p_intf->p_sys->i_socket );
544             }
545             p_intf->p_sys->i_socket = -1;
546         }
547         else if( !strcmp( psz_cmd, "info" ) )
548         {
549             if( p_input )
550             {
551                 int i, j;
552                 vlc_mutex_lock( &p_input->input.p_item->lock );
553                 for ( i = 0; i < p_input->input.p_item->i_categories; i++ )
554                 {
555                     info_category_t *p_category =
556                         p_input->input.p_item->pp_categories[i];
557
558                     msg_rc( "+----[ %s ]\n", p_category->psz_name );
559                     msg_rc( "| \n" );
560                     for ( j = 0; j < p_category->i_infos; j++ )
561                     {
562                         info_t *p_info = p_category->pp_infos[j];
563                         msg_rc( "| %s: %s\n", p_info->psz_name,
564                                 p_info->psz_value );
565                     }
566                     msg_rc( "| \n" );
567                 }
568                 msg_rc( "+----[ end of stream info ]\n" );
569                 vlc_mutex_unlock( &p_input->input.p_item->lock );
570             }
571             else
572             {
573                 msg_rc( "no input\n" );
574             }
575         }
576         else if( !strcmp( psz_cmd, "is_playing" ) )
577         {
578             if( ! p_input )
579             {
580                 msg_rc( "0\n" );
581             }
582             else
583             {
584                 msg_rc( "1\n" );
585             }
586         }
587         else if( !strcmp( psz_cmd, "get_time" ) )
588         {
589             if( ! p_input )
590             {
591                 msg_rc("0\n");
592             }
593             else
594             {
595                 vlc_value_t time;
596                 var_Get( p_input, "time", &time );
597                 msg_rc( "%i\n", time.i_time / 1000000);
598             }
599         }
600         else if( !strcmp( psz_cmd, "get_length" ) )
601         {
602             if( ! p_input )
603             {
604                 msg_rc("0\n");
605             }
606             else
607             {
608                 vlc_value_t time;
609                 var_Get( p_input, "length", &time );
610                 msg_rc( "%i\n", time.i_time / 1000000);
611             }
612         }
613         else if( !strcmp( psz_cmd, "get_title" ) )
614         {
615             if( ! p_input )
616             {
617                 msg_rc("\n");
618             }
619             else
620             {
621                 msg_rc( "%s\n", p_input->input.p_item->psz_name );
622             }
623         }
624         else switch( psz_cmd[0] )
625         {
626         case 'f':
627         case 'F':
628             if( p_input )
629             {
630                 vout_thread_t *p_vout;
631                 p_vout = vlc_object_find( p_input,
632                                           VLC_OBJECT_VOUT, FIND_CHILD );
633
634                 if( p_vout )
635                 {
636                     p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;
637                     vlc_object_release( p_vout );
638                 }
639             }
640             break;
641
642         case 's':
643         case 'S':
644             ;
645             break;
646
647         case '?':
648         case 'h':
649         case 'H':
650             msg_rc(_("+----[ Remote control commands ]\n"));
651             msg_rc(  "| \n");
652             msg_rc(_("| add XYZ  . . . . . . . . . . add XYZ to playlist\n"));
653             msg_rc(_("| playlist . . .  show items currently in playlist\n"));
654             msg_rc(_("| play . . . . . . . . . . . . . . . . play stream\n"));
655             msg_rc(_("| stop . . . . . . . . . . . . . . . . stop stream\n"));
656             msg_rc(_("| next . . . . . . . . . . . .  next playlist item\n"));
657             msg_rc(_("| prev . . . . . . . . . .  previous playlist item\n"));
658             msg_rc(_("| goto . . . . . . . . . . . .  goto item at index\n"));
659             msg_rc(_("| title [X]  . . . . set/get title in current item\n"));
660             msg_rc(_("| title_n  . . . . . .  next title in current item\n"));
661             msg_rc(_("| title_p  . . . .  previous title in current item\n"));
662             msg_rc(_("| chapter [X]  . . set/get chapter in current item\n"));
663             msg_rc(_("| chapter_n  . . . .  next chapter in current item\n"));
664             msg_rc(_("| chapter_p  . .  previous chapter in current item\n"));
665             msg_rc(  "| \n");
666             msg_rc(_("| seek X . seek in seconds, for instance `seek 12'\n"));
667             msg_rc(_("| pause  . . . . . . . . . . . . . .  toggle pause\n"));
668             msg_rc(_("| fastforward  . . . . . .  .  set to maximum rate\n"));
669             msg_rc(_("| rewind  . . . . . . . . . .  set to minimum rate\n"));
670             msg_rc(_("| f  . . . . . . . . . . . . . . toggle fullscreen\n"));
671             msg_rc(_("| info . . .  information about the current stream\n"));
672             msg_rc(  "| \n");
673             msg_rc(_("| volume [X] . . . . . . . .  set/get audio volume\n"));
674             msg_rc(_("| volup [X]  . . . . .  raise audio volume X steps\n"));
675             msg_rc(_("| voldown [X]  . . . .  lower audio volume X steps\n"));
676             msg_rc(_("| adev [X] . . . . . . . . .  set/get audio device\n"));
677             msg_rc(_("| achan [X]. . . . . . . .  set/get audio channels\n"));
678             msg_rc(  "| \n");
679             
680             if (p_intf->p_sys->b_extend)
681             {
682                 msg_rc(_("| marq-marquee STRING  . . overlay STRING in video\n"));
683                 msg_rc(_("| marq-x X . . . . .  offset of marquee, from left\n"));
684                 msg_rc(_("| marq-y Y . . . . . . offset of marquee, from top\n"));
685                 msg_rc(_("| marq-position #. . .  .relative position control\n"));
686                 msg_rc(_("| marq-color # . . . .  font color of marquee, RGB\n"));
687                 msg_rc(_("| marq-opacity # . . . . . . . .opacity of marquee\n"));
688                 msg_rc(_("| marq-timeout T. . . .  timeout of marquee, in ms\n"));
689                 msg_rc(  "| \n");
690                 msg_rc(_("| time-format STRING . . . overlay STRING in video\n"));
691                 msg_rc(_("| time-x X . . . . .offset of timestamp, from left\n"));
692                 msg_rc(_("| time-y Y . . . . . offset of timestamp, from top\n"));
693                 msg_rc(_("| time-position #. . .  .relative position control\n"));
694                 msg_rc(_("| time-color # . . .  font color of timestamp, RGB\n"));
695                 msg_rc(_("| time-opacity # . . . . . . .opacity of timestamp\n"));
696                 msg_rc(  "| \n");
697             }    
698             msg_rc(_("| help . . . . . . . . . . . . . this help message\n"));
699             msg_rc(_("| logout . . . . .  exit (if in socket connection)\n"));
700             msg_rc(_("| quit . . . . . . . . . . . . . . . . .  quit vlc\n"));
701             msg_rc(  "| \n");
702             msg_rc(_("+----[ end of help ]\n"));
703             break;
704
705         case '\0':
706             /* Ignore empty lines */
707             break;
708
709         default:
710             msg_rc(_("unknown command `%s', type `help' for help\n"), psz_cmd);
711             break;
712         }
713
714         /* Command processed */
715         i_size = 0; p_buffer[0] = 0;
716     }
717
718     if( p_input )
719     {
720         vlc_object_release( p_input );
721         p_input = NULL;
722     }
723
724     if( p_playlist )
725     {
726         vlc_object_release( p_playlist );
727         p_playlist = NULL;
728     }
729 }
730
731 static int Input( vlc_object_t *p_this, char const *psz_cmd,
732                   vlc_value_t oldval, vlc_value_t newval, void *p_data )
733 {
734     intf_thread_t *p_intf = (intf_thread_t*)p_this;
735     input_thread_t *p_input;
736     vlc_value_t     val;
737
738     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
739     if( !p_input ) return VLC_ENOOBJ;
740
741     /* Parse commands that only require an input */
742     if( !strcmp( psz_cmd, "pause" ) )
743     {
744         val.i_int = PAUSE_S;
745
746         var_Set( p_input, "state", val );
747         vlc_object_release( p_input );
748         return VLC_SUCCESS;
749     }
750     else if( !strcmp( psz_cmd, "seek" ) )
751     {
752         if( strlen( newval.psz_string ) > 0 &&
753             newval.psz_string[strlen( newval.psz_string ) - 1] == '%' )
754         {
755             val.f_float = (float)atoi( newval.psz_string ) / 100.0;
756             var_Set( p_input, "position", val );
757         }
758         else
759         {
760             val.i_time = ((int64_t)atoi( newval.psz_string )) * 1000000;
761             var_Set( p_input, "time", val );
762         }
763         vlc_object_release( p_input );
764         return VLC_SUCCESS;
765     }
766     else if ( !strcmp( psz_cmd, "fastforward" ) )
767     {
768         val.i_int = INPUT_RATE_MAX;
769
770         var_Set( p_input, "rate", val );
771         vlc_object_release( p_input );
772         return VLC_SUCCESS;
773     }
774     else if ( !strcmp( psz_cmd, "rewind" ) )
775     {
776         val.i_int = INPUT_RATE_MIN;
777
778         var_Set( p_input, "rate", val );
779         vlc_object_release( p_input );
780         return VLC_SUCCESS;
781     }
782     else if( !strcmp( psz_cmd, "chapter" ) ||
783              !strcmp( psz_cmd, "chapter_n" ) ||
784              !strcmp( psz_cmd, "chapter_p" ) )
785     {
786         if( !strcmp( psz_cmd, "chapter" ) )
787         {
788             if ( *newval.psz_string )
789             {
790                 /* Set. */
791                 val.i_int = atoi( newval.psz_string );
792                 var_Set( p_input, "chapter", val );
793             }
794             else
795             {
796                 vlc_value_t val_list;
797
798                 /* Get. */
799                 var_Get( p_input, "chapter", &val );
800                 var_Change( p_input, "chapter", VLC_VAR_GETCHOICES,
801                             &val_list, NULL );
802                 msg_rc( "Currently playing chapter %d/%d\n",
803                         val.i_int, val_list.p_list->i_count );
804                 var_Change( p_this, "chapter", VLC_VAR_FREELIST,
805                             &val_list, NULL );
806             }
807         }
808         else if( !strcmp( psz_cmd, "chapter_n" ) )
809         {
810             val.b_bool = VLC_TRUE;
811             var_Set( p_input, "next-chapter", val );
812         }
813         else if( !strcmp( psz_cmd, "chapter_p" ) )
814         {
815             val.b_bool = VLC_TRUE;
816             var_Set( p_input, "prev-chapter", val );
817         }
818
819         vlc_object_release( p_input );
820         return VLC_SUCCESS;
821     }
822     else if( !strcmp( psz_cmd, "title" ) ||
823              !strcmp( psz_cmd, "title_n" ) ||
824              !strcmp( psz_cmd, "title_p" ) )
825     {
826         if( !strcmp( psz_cmd, "title" ) )
827         {
828             if ( *newval.psz_string )
829             {
830                 /* Set. */
831                 val.i_int = atoi( newval.psz_string );
832                 var_Set( p_input, "title", val );
833             }
834             else
835             {
836                 vlc_value_t val_list;
837
838                 /* Get. */
839                 var_Get( p_input, "title", &val );
840                 var_Change( p_input, "title", VLC_VAR_GETCHOICES,
841                             &val_list, NULL );
842                 msg_rc( "Currently playing title %d/%d\n",
843                         val.i_int, val_list.p_list->i_count );
844                 var_Change( p_this, "title", VLC_VAR_FREELIST,
845                             &val_list, NULL );
846             }
847         }
848         else if( !strcmp( psz_cmd, "title_n" ) )
849         {
850             val.b_bool = VLC_TRUE;
851             var_Set( p_input, "next-title", val );
852         }
853         else if( !strcmp( psz_cmd, "title_p" ) )
854         {
855             val.b_bool = VLC_TRUE;
856             var_Set( p_input, "prev-title", val );
857         }
858
859         vlc_object_release( p_input );
860         return VLC_SUCCESS;
861     }
862
863     /* Never reached. */
864     return VLC_EGENERIC;
865 }
866
867 static int Playlist( vlc_object_t *p_this, char const *psz_cmd,
868                      vlc_value_t oldval, vlc_value_t newval, void *p_data )
869 {
870     vlc_value_t val;
871     intf_thread_t *p_intf = (intf_thread_t*)p_this;
872     playlist_t *p_playlist;
873
874     p_playlist = vlc_object_find( p_this, VLC_OBJECT_PLAYLIST,
875                                            FIND_ANYWHERE );
876     if( !p_playlist )
877     {
878         return VLC_ENOOBJ;
879     }
880
881     /* Parse commands that require a playlist */
882     if( !strcmp( psz_cmd, "prev" ) )
883     {
884         playlist_Prev( p_playlist );
885     }
886     else if( !strcmp( psz_cmd, "next" ) )
887     {
888         playlist_Next( p_playlist );
889     }
890     else if( !strcmp( psz_cmd, "play" ) )
891     {
892         playlist_Play( p_playlist );
893     }
894     else if (!strcmp( psz_cmd, "goto" ) )
895     {
896         if( strlen( newval.psz_string ) > 0) 
897         {
898             val.i_int = atoi( newval.psz_string );
899             playlist_Goto( p_playlist, val.i_int); 
900         }
901     }
902     else if( !strcmp( psz_cmd, "stop" ) )
903     {
904         playlist_Stop( p_playlist );
905     }
906     else if( !strcmp( psz_cmd, "add" ) &&
907              newval.psz_string && *newval.psz_string )
908     {
909         playlist_item_t *p_item = parse_MRL( p_intf, newval.psz_string );
910
911         if( p_item )
912         {
913             msg_rc( "trying to add %s to playlist\n", newval.psz_string );
914             playlist_AddItem( p_playlist, p_item,
915                               PLAYLIST_GO|PLAYLIST_APPEND, PLAYLIST_END );
916         }
917     }
918     else if( !strcmp( psz_cmd, "playlist" ) )
919     {
920         int i;
921         for ( i = 0; i < p_playlist->i_size; i++ )
922         {
923             msg_rc( "|%s%s   %s|%s|\n", i == p_playlist->i_index ? "*" : " ",
924                     p_playlist->pp_items[i]->input.psz_name,
925                     p_playlist->pp_items[i]->input.psz_uri,
926                     p_playlist->pp_items[i]->i_parents > 0 ?
927                     p_playlist->pp_items[i]->pp_parents[0]->p_parent->input.psz_name : "" );
928         }
929         if ( i == 0 )
930         {
931             msg_rc( "| no entries\n" );
932         }
933     }
934  
935     /*
936      * sanity check
937      */
938     else
939     {
940         msg_rc( "unknown command!\n" );
941     }
942
943     vlc_object_release( p_playlist );
944     return VLC_SUCCESS;
945 }
946
947 static int Other( vlc_object_t *p_this, char const *psz_cmd,
948                      vlc_value_t oldval, vlc_value_t newval, void *p_data )
949 {
950     intf_thread_t *p_intf = (intf_thread_t*)p_this;
951     vlc_object_t *p_pl;
952     vlc_value_t     val;
953     vlc_object_t *p_inp;
954
955     p_pl = vlc_object_find( p_this, VLC_OBJECT_PLAYLIST,
956                                            FIND_ANYWHERE );
957     if( !p_pl )
958     {
959         return VLC_ENOOBJ;
960     }
961     
962     p_inp = vlc_object_find( p_this, VLC_OBJECT_INPUT,
963                                            FIND_ANYWHERE );
964     if( !p_inp )
965     {
966         return VLC_ENOOBJ;
967     }
968
969     /* Parse miscellaneous commands */
970     if( !strcmp( psz_cmd, "marq-marquee" ) )
971     {
972         if( strlen( newval.psz_string ) > 0 )
973         {
974             val.psz_string = newval.psz_string;
975             var_Set( p_inp->p_libvlc, "marq-marquee", val );
976         }
977         else 
978         {
979                 val.psz_string = "";
980                 var_Set( p_inp->p_libvlc, "marq-marquee", val);
981         }
982     }
983     else if( !strcmp( psz_cmd, "marq-x" ) )
984     {
985         if( strlen( newval.psz_string ) > 0) 
986         {
987             val.i_int = atoi( newval.psz_string );
988             var_Set( p_inp->p_libvlc, "marq-x", val );
989         }
990     }
991     else if( !strcmp( psz_cmd, "marq-y" ) )
992     {
993         if( strlen( newval.psz_string ) > 0) 
994         {
995             val.i_int = atoi( newval.psz_string );
996             var_Set( p_inp->p_libvlc, "marq-y", val );
997         }
998     }
999     else if( !strcmp( psz_cmd, "marq-position" ) )
1000     {
1001         if( strlen( newval.psz_string ) > 0) 
1002         {
1003             val.i_int = atoi( newval.psz_string );
1004             var_Set( p_inp->p_libvlc, "marq-position", val );
1005         }
1006     }
1007     else if( !strcmp( psz_cmd, "marq-color" ) )
1008     {
1009         if( strlen( newval.psz_string ) > 0) 
1010         {
1011             val.i_int = strtol( newval.psz_string, NULL, 0 );
1012             var_Set( p_inp->p_libvlc, "marq-color", val );
1013         }
1014     }
1015     else if( !strcmp( psz_cmd, "marq-opacity" ) )
1016     {
1017         if( strlen( newval.psz_string ) > 0) 
1018         {
1019             val.i_int = strtol( newval.psz_string, NULL, 0 );
1020             var_Set( p_inp->p_libvlc, "marq-opacity", val );
1021         }
1022     }
1023     else if( !strcmp( psz_cmd, "marq-timeout" ) )
1024     {
1025         if( strlen( newval.psz_string ) > 0) 
1026         {
1027             val.i_int = atoi( newval.psz_string );
1028             var_Set( p_inp, "marq-timeout", val );
1029         }
1030     }
1031     else if( !strcmp( psz_cmd, "time-format" ) )
1032     {
1033         if( strlen( newval.psz_string ) > 0 )
1034         {
1035             val.psz_string = newval.psz_string;
1036             var_Set( p_inp->p_libvlc, "time-format", val );
1037         }
1038         else 
1039         {
1040                 val.psz_string = "";
1041                 var_Set( p_inp->p_libvlc, "time-format", val);
1042         }
1043     }
1044     else if( !strcmp( psz_cmd, "time-x" ) )
1045     {
1046         if( strlen( newval.psz_string ) > 0) 
1047         {
1048             val.i_int = atoi( newval.psz_string );
1049             var_Set( p_inp->p_libvlc, "time-x", val );
1050         }
1051     }
1052     else if( !strcmp( psz_cmd, "time-y" ) )
1053     {
1054         if( strlen( newval.psz_string ) > 0) 
1055         {
1056             val.i_int = atoi( newval.psz_string );
1057             var_Set( p_inp->p_libvlc, "time-y", val );
1058         }
1059     }
1060     else if( !strcmp( psz_cmd, "time-position" ) )
1061     {
1062         if( strlen( newval.psz_string ) > 0) 
1063         {
1064             val.i_int = atoi( newval.psz_string );
1065             var_Set( p_inp->p_libvlc, "time-position", val );
1066         }
1067     }
1068     else if( !strcmp( psz_cmd, "time-color" ) )
1069     {
1070         if( strlen( newval.psz_string ) > 0) 
1071         {
1072             val.i_int = strtol( newval.psz_string, NULL, 0 );
1073             var_Set( p_inp->p_libvlc, "time-color", val );
1074         }
1075     }
1076     else if( !strcmp( psz_cmd, "time-opacity" ) )
1077     {
1078         if( strlen( newval.psz_string ) > 0) 
1079         {
1080             val.i_int = strtol( newval.psz_string, NULL, 0 );
1081             var_Set( p_inp->p_libvlc, "time-opacity", val );
1082         }
1083     }
1084  
1085     /*
1086      * sanity check
1087      */
1088     else
1089     {
1090         msg_rc( "unknown command!\n" );
1091     }
1092
1093     vlc_object_release( p_pl );
1094     vlc_object_release( p_inp );
1095     return VLC_SUCCESS;
1096 }
1097
1098 static int Quit( vlc_object_t *p_this, char const *psz_cmd,
1099                  vlc_value_t oldval, vlc_value_t newval, void *p_data )
1100 {
1101     p_this->p_vlc->b_die = VLC_TRUE;
1102     return VLC_SUCCESS;
1103 }
1104
1105 static int Intf( vlc_object_t *p_this, char const *psz_cmd,
1106                  vlc_value_t oldval, vlc_value_t newval, void *p_data )
1107 {
1108     intf_thread_t *p_newintf;
1109
1110     p_newintf = intf_Create( p_this->p_vlc, newval.psz_string );
1111
1112     if( p_newintf )
1113     {
1114         p_newintf->b_block = VLC_FALSE;
1115         if( intf_RunThread( p_newintf ) )
1116         {
1117             vlc_object_detach( p_newintf );
1118             intf_Destroy( p_newintf );
1119         }
1120     }
1121
1122     return VLC_SUCCESS;
1123 }
1124
1125 static int Volume( vlc_object_t *p_this, char const *psz_cmd,
1126                    vlc_value_t oldval, vlc_value_t newval, void *p_data )
1127 {
1128     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1129     int i_error;
1130
1131     if ( *newval.psz_string )
1132     {
1133         /* Set. */
1134         audio_volume_t i_volume = atoi( newval.psz_string );
1135         if ( i_volume > AOUT_VOLUME_MAX )
1136         {
1137             msg_rc( "Volume must be in the range %d-%d\n", AOUT_VOLUME_MIN,
1138                     AOUT_VOLUME_MAX );
1139             i_error = VLC_EBADVAR;
1140         }
1141         else i_error = aout_VolumeSet( p_this, i_volume );
1142     }
1143     else
1144     {
1145         /* Get. */
1146         audio_volume_t i_volume;
1147         if ( aout_VolumeGet( p_this, &i_volume ) < 0 )
1148         {
1149             i_error = VLC_EGENERIC;
1150         }
1151         else
1152         {
1153             msg_rc( "Volume is %d\n", i_volume );
1154             i_error = VLC_SUCCESS;
1155         }
1156     }
1157
1158     return i_error;
1159 }
1160
1161 static int VolumeMove( vlc_object_t *p_this, char const *psz_cmd,
1162                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
1163 {
1164     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1165     audio_volume_t i_volume;
1166     int i_nb_steps = atoi(newval.psz_string);
1167     int i_error = VLC_SUCCESS;
1168
1169     if ( i_nb_steps <= 0 || i_nb_steps > (AOUT_VOLUME_MAX/AOUT_VOLUME_STEP) )
1170     {
1171         i_nb_steps = 1;
1172     }
1173
1174     if ( !strcmp(psz_cmd, "volup") )
1175     {
1176         if ( aout_VolumeUp( p_this, i_nb_steps, &i_volume ) < 0 )
1177             i_error = VLC_EGENERIC;
1178     }
1179     else
1180     {
1181         if ( aout_VolumeDown( p_this, i_nb_steps, &i_volume ) < 0 )
1182             i_error = VLC_EGENERIC;
1183     }
1184
1185     if ( !i_error ) msg_rc( "Volume is %d\n", i_volume );
1186     return i_error;
1187 }
1188
1189 static int AudioConfig( vlc_object_t *p_this, char const *psz_cmd,
1190                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
1191 {
1192     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1193     aout_instance_t * p_aout;
1194     const char * psz_variable;
1195     vlc_value_t val_name;
1196     int i_error;
1197
1198     p_aout = vlc_object_find( p_this, VLC_OBJECT_AOUT, FIND_ANYWHERE );
1199     if ( p_aout == NULL ) return VLC_ENOOBJ;
1200
1201     if ( !strcmp( psz_cmd, "adev" ) )
1202     {
1203         psz_variable = "audio-device";
1204     }
1205     else
1206     {
1207         psz_variable = "audio-channels";
1208     }
1209
1210     /* Get the descriptive name of the variable */
1211     var_Change( (vlc_object_t *)p_aout, psz_variable, VLC_VAR_GETTEXT,
1212                  &val_name, NULL );
1213     if( !val_name.psz_string ) val_name.psz_string = strdup(psz_variable);
1214
1215     if ( !*newval.psz_string )
1216     {
1217         /* Retrieve all registered ***. */
1218         vlc_value_t val, text;
1219         int i, i_value;
1220
1221         if ( var_Get( (vlc_object_t *)p_aout, psz_variable, &val ) < 0 )
1222         {
1223             vlc_object_release( (vlc_object_t *)p_aout );
1224             return VLC_EGENERIC;
1225         }
1226         i_value = val.i_int;
1227
1228         if ( var_Change( (vlc_object_t *)p_aout, psz_variable,
1229                          VLC_VAR_GETLIST, &val, &text ) < 0 )
1230         {
1231             vlc_object_release( (vlc_object_t *)p_aout );
1232             return VLC_EGENERIC;
1233         }
1234
1235         msg_rc( "+----[ %s ]\n", val_name.psz_string );
1236         for ( i = 0; i < val.p_list->i_count; i++ )
1237         {
1238             if ( i_value == val.p_list->p_values[i].i_int )
1239                 msg_rc( "| %i - %s *\n", val.p_list->p_values[i].i_int,
1240                         text.p_list->p_values[i].psz_string );
1241             else
1242                 msg_rc( "| %i - %s\n", val.p_list->p_values[i].i_int,
1243                         text.p_list->p_values[i].psz_string );
1244         }
1245         var_Change( (vlc_object_t *)p_aout, psz_variable, VLC_VAR_FREELIST,
1246                     &val, &text );
1247         msg_rc( "+----[ end of %s ]\n", val_name.psz_string );
1248
1249         if( val_name.psz_string ) free( val_name.psz_string );
1250         i_error = VLC_SUCCESS;
1251     }
1252     else
1253     {
1254         vlc_value_t val;
1255         val.i_int = atoi( newval.psz_string );
1256
1257         i_error = var_Set( (vlc_object_t *)p_aout, psz_variable, val );
1258     }
1259     vlc_object_release( (vlc_object_t *)p_aout );
1260
1261     return i_error;
1262 }
1263
1264 #ifdef WIN32
1265 vlc_bool_t ReadWin32( intf_thread_t *p_intf, char *p_buffer, int *pi_size )
1266 {
1267     INPUT_RECORD input_record;
1268     DWORD i_dw;
1269
1270     /* On Win32, select() only works on socket descriptors */
1271     while( WaitForSingleObject( p_intf->p_sys->hConsoleIn,
1272                                 INTF_IDLE_SLEEP/1000 ) == WAIT_OBJECT_0 )
1273     {
1274         while( !p_intf->b_die && *pi_size < MAX_LINE_LENGTH &&
1275                ReadConsoleInput( p_intf->p_sys->hConsoleIn, &input_record,
1276                                  1, &i_dw ) )
1277         {
1278             if( input_record.EventType != KEY_EVENT ||
1279                 !input_record.Event.KeyEvent.bKeyDown ||
1280                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_SHIFT ||
1281                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_CONTROL||
1282                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_MENU ||
1283                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_CAPITAL )
1284             {
1285                 /* nothing interesting */
1286                 continue;
1287             }
1288
1289             p_buffer[ *pi_size ] = input_record.Event.KeyEvent.uChar.AsciiChar;
1290
1291             /* Echo out the command */
1292             putc( p_buffer[ *pi_size ], stdout );
1293
1294             /* Handle special keys */
1295             if( p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
1296             {
1297                 putc( '\n', stdout );
1298                 break;
1299             }
1300             switch( p_buffer[ *pi_size ] )
1301             {
1302             case '\b':
1303                 if( *pi_size )
1304                 {
1305                     *pi_size -= 2;
1306                     putc( ' ', stdout );
1307                     putc( '\b', stdout );
1308                 }
1309                 break;
1310             case '\r':
1311                 (*pi_size) --;
1312                 break;
1313             }
1314
1315             (*pi_size)++;
1316         }
1317
1318         if( *pi_size == MAX_LINE_LENGTH ||
1319             p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
1320         {
1321             p_buffer[ *pi_size ] = 0;
1322             return VLC_TRUE;
1323         }
1324     }
1325
1326     return VLC_FALSE;
1327 }
1328 #endif
1329
1330 vlc_bool_t ReadCommand( intf_thread_t *p_intf, char *p_buffer, int *pi_size )
1331 {
1332     int i_read = 0;
1333
1334 #ifdef WIN32
1335     if( p_intf->p_sys->i_socket == -1 && !p_intf->p_sys->b_quiet )
1336         return ReadWin32( p_intf, p_buffer, pi_size );
1337     else if( p_intf->p_sys->i_socket == -1 )
1338     {
1339         msleep( INTF_IDLE_SLEEP );
1340         return VLC_FALSE;
1341     }
1342 #endif
1343
1344     while( !p_intf->b_die && *pi_size < MAX_LINE_LENGTH &&
1345            (i_read = net_ReadNonBlock( p_intf, p_intf->p_sys->i_socket == -1 ?
1346                        0 /*STDIN_FILENO*/ : p_intf->p_sys->i_socket, NULL,
1347                        p_buffer + *pi_size, 1, INTF_IDLE_SLEEP ) ) > 0 )
1348     {
1349         if( p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
1350             break;
1351
1352         (*pi_size)++;
1353     }
1354
1355     /* Connection closed */
1356     if( i_read == -1 )
1357     {
1358         p_intf->p_sys->i_socket = -1;
1359         p_buffer[ *pi_size ] = 0;
1360         return VLC_TRUE;
1361     }
1362
1363     if( *pi_size == MAX_LINE_LENGTH ||
1364         p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
1365     {
1366         p_buffer[ *pi_size ] = 0;
1367         return VLC_TRUE;
1368     }
1369
1370     return VLC_FALSE;
1371 }
1372
1373 /*****************************************************************************
1374  * parse_MRL: build a playlist item from a full mrl
1375  *****************************************************************************
1376  * MRL format: "simplified-mrl [:option-name[=option-value]]"
1377  * We don't check for '"' or '\'', we just assume that a ':' that follows a
1378  * space is a new option. Should be good enough for our purpose.
1379  *****************************************************************************/
1380 static playlist_item_t *parse_MRL( intf_thread_t *p_intf, char *psz_mrl )
1381 {
1382 #define SKIPSPACE( p ) { while( *p && ( *p == ' ' || *p == '\t' ) ) p++; }
1383 #define SKIPTRAILINGSPACE( p, d ) \
1384     { char *e=d; while( e > p && (*(e-1)==' ' || *(e-1)=='\t') ){e--;*e=0;} }
1385
1386     playlist_item_t *p_item = NULL;
1387     char *psz_item = NULL, *psz_item_mrl = NULL, *psz_orig;
1388     char **ppsz_options = NULL;
1389     int i, i_options = 0;
1390
1391     if( !psz_mrl ) return 0;
1392
1393     psz_mrl = psz_orig = strdup( psz_mrl );
1394     while( *psz_mrl )
1395     {
1396         SKIPSPACE( psz_mrl );
1397         psz_item = psz_mrl;
1398
1399         for( ; *psz_mrl; psz_mrl++ )
1400         {
1401             if( (*psz_mrl == ' ' || *psz_mrl == '\t') && psz_mrl[1] == ':' )
1402             {
1403                 /* We have a complete item */
1404                 break;
1405             }
1406             if( (*psz_mrl == ' ' || *psz_mrl == '\t') &&
1407                 (psz_mrl[1] == '"' || psz_mrl[1] == '\'') && psz_mrl[2] == ':')
1408             {
1409                 /* We have a complete item */
1410                 break;
1411             }
1412         }
1413
1414         if( *psz_mrl ) { *psz_mrl = 0; psz_mrl++; }
1415         SKIPTRAILINGSPACE( psz_item, psz_item + strlen( psz_item ) );
1416
1417         /* Remove '"' and '\'' if necessary */
1418         if( *psz_item == '"' && psz_item[strlen(psz_item)-1] == '"' )
1419         { psz_item++; psz_item[strlen(psz_item)-1] = 0; }
1420         if( *psz_item == '\'' && psz_item[strlen(psz_item)-1] == '\'' )
1421         { psz_item++; psz_item[strlen(psz_item)-1] = 0; }
1422
1423         if( !psz_item_mrl ) psz_item_mrl = psz_item;
1424         else if( *psz_item )
1425         {
1426             i_options++;
1427             ppsz_options = realloc( ppsz_options, i_options * sizeof(char *) );
1428             ppsz_options[i_options - 1] = &psz_item[1];
1429         }
1430
1431         if( *psz_mrl ) SKIPSPACE( psz_mrl );
1432     }
1433
1434     /* Now create a playlist item */
1435     if( psz_item_mrl )
1436     {
1437         p_item = playlist_ItemNew( p_intf, psz_item_mrl, psz_item_mrl );
1438         for( i = 0; i < i_options; i++ )
1439         {
1440             playlist_ItemAddOption( p_item, ppsz_options[i] );
1441         }
1442     }
1443
1444     if( i_options ) free( ppsz_options );
1445     free( psz_orig );
1446
1447     return p_item;
1448 }