]> git.sesse.net Git - vlc/blob - modules/control/rtci.c
0377c6ec5f7343ff3dbfe5d2156461e2561eb40f
[vlc] / modules / control / rtci.c
1 /*****************************************************************************
2  * rtci.c : real time control interface stdin/stdout module for vlc
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id: rc.c 8847 2004-09-29 11:36:37Z markfm $
6  *
7  * Author: Peter Surda <shurdeek@panorama.sth.ac.at>
8  *         Jean-Paul Saman
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /****************************************************************************** 
26  *  Module purpose -- provide a socket based interface to control various 
27  *  VLC parameters and obtain status information on the fly.  Output 
28  *  will be purposely less verbose than on some interfaces -- this 
29  *  interface is intended more for comms with an external program than a human
30  *****************************************************************************/
31  
32 /*****************************************************************************
33  * Preamble
34  *****************************************************************************/
35 #include <stdlib.h>                                      /* malloc(), free() */
36 #include <string.h>
37
38 #include <errno.h>                                                 /* ENOMEM */
39 #include <stdio.h>
40 #include <ctype.h>
41 #include <signal.h>
42
43 #include <vlc/vlc.h>
44 #include <vlc/intf.h>
45 #include <vlc/aout.h>
46 #include <vlc/vout.h>
47
48 #ifdef HAVE_UNISTD_H
49 #    include <unistd.h>
50 #endif
51
52 #ifdef HAVE_SYS_TIME_H
53 #    include <sys/time.h>
54 #endif
55 #include <sys/types.h>
56
57 #include "vlc_error.h"
58 #include "network.h"
59
60 #if defined(PF_UNIX) && !defined(PF_LOCAL)
61 #    define PF_LOCAL PF_UNIX
62 #endif
63 #if defined(AF_UNIX) && !defined(AF_LOCAL)
64 #    define AF_LOCAL AF_UNIX
65 #endif
66
67 #ifdef PF_LOCAL
68 #    include <sys/un.h>
69 #endif
70
71 #define MAX_LINE_LENGTH 256
72
73 /*****************************************************************************
74  * Local prototypes
75  *****************************************************************************/
76 static int  Activate     ( vlc_object_t * );
77 static void Deactivate   ( vlc_object_t * );
78 static void Run          ( intf_thread_t * );
79
80 static vlc_bool_t ReadCommand( intf_thread_t *, char *, int * );
81
82 static int  Input        ( vlc_object_t *, char const *,
83                            vlc_value_t, vlc_value_t, void * );
84 static int  Playlist     ( vlc_object_t *, char const *,
85                            vlc_value_t, vlc_value_t, void * );
86 static int  Other        ( 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  AudioConfig  ( vlc_object_t *, char const *,
97                            vlc_value_t, vlc_value_t, void * );
98
99 struct intf_sys_t
100 {
101     int i_socket_listen;
102     int i_socket;
103     char *psz_unix_path;
104     vlc_bool_t b_extend;
105     
106 #ifdef WIN32
107     HANDLE hConsoleIn;
108 #endif
109 };
110
111 #ifdef HAVE_VARIADIC_MACROS
112 #   define msg_rtci( psz_format, args... ) \
113       __msg_rtci( p_intf, psz_format, ## args )
114 #endif
115
116 static void __msg_rtci( intf_thread_t *p_intf, const char *psz_fmt, ... )
117 {
118     va_list args;
119     va_start( args, psz_fmt );
120     if( p_intf->p_sys->i_socket == -1 ) vprintf( psz_fmt, args );
121     else net_vaPrintf( p_intf, p_intf->p_sys->i_socket, psz_fmt, args );
122     va_end( args );
123 }
124
125 /*****************************************************************************
126  * Module descriptor
127  *****************************************************************************/
128 #define POS_TEXT N_("Show stream position")
129 #define POS_LONGTEXT N_("Show the current position in seconds within the " \
130                         "stream from time to time." )
131
132 #define TTY_TEXT N_("Fake TTY")
133 #define TTY_LONGTEXT N_("Force the rtci module to use stdin as if it was a TTY.")
134
135 #define UNIX_TEXT N_("UNIX socket command input")
136 #define UNIX_LONGTEXT N_("Accept commands over a Unix socket rather than " \
137                          "stdin." )
138
139 #define HOST_TEXT N_("TCP command input")
140 #define HOST_LONGTEXT N_("Accept commands over a socket rather than stdin. " \
141             "You can set the address and port the interface will bind to." )
142 #define EXTEND_TEXT N_("Extended help")
143 #define EXTEND_LONGTEXT N_("List additional commands.")
144             
145
146 #ifdef WIN32
147 #define QUIET_TEXT N_("Do not open a DOS command box interface")
148 #define QUIET_LONGTEXT N_( \
149     "By default the rtci interface plugin will start a DOS command box. " \
150     "Enabling the quiet mode will not launch this command box." )
151 #endif
152
153 vlc_module_begin();
154     set_description( _("Real time control interface") );
155     add_bool( "rtci-show-pos", 0, NULL, POS_TEXT, POS_LONGTEXT, VLC_TRUE );
156 #ifdef HAVE_ISATTY
157     add_bool( "rtci-fake-tty", 0, NULL, TTY_TEXT, TTY_LONGTEXT, VLC_TRUE );
158 #endif
159     add_string( "rtci-unix", 0, NULL, UNIX_TEXT, UNIX_LONGTEXT, VLC_TRUE );
160     add_string( "rtci-host", 0, NULL, HOST_TEXT, HOST_LONGTEXT, VLC_TRUE );
161
162 #ifdef WIN32
163     add_bool( "rtci-quiet", 0, NULL, QUIET_TEXT, QUIET_LONGTEXT, VLC_FALSE );
164 #endif
165     add_bool( "rtci-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     char *psz_host, *psz_unix_path;
178     int i_socket = -1;
179
180 #if defined(HAVE_ISATTY) && !defined(WIN32)
181     /* Check that stdin is a TTY */
182     if( !config_GetInt( p_intf, "rtci-fake-tty" ) && !isatty( 0 ) )
183     {
184         msg_Warn( p_intf, "fd 0 is not a TTY" );
185         return VLC_EGENERIC;
186     }
187 #endif
188
189     psz_unix_path = config_GetPsz( p_intf, "rtci-unix" );
190     if( psz_unix_path )
191     {
192 #ifndef PF_LOCAL
193         msg_Warn( p_intf, "your OS doesn't support filesystem sockets" );
194         free( psz_unix_path );
195         return VLC_EGENERIC;
196 #else
197         struct sockaddr_un addr;
198         int i_ret;
199
200         memset( &addr, 0, sizeof(struct sockaddr_un) );
201
202         msg_Dbg( p_intf, "trying UNIX socket" );
203
204         if( (i_socket = socket( PF_LOCAL, SOCK_STREAM, 0 ) ) < 0 )
205         {
206             msg_Warn( p_intf, "can't open socket: %s", strerror(errno) );
207             free( psz_unix_path );
208             return VLC_EGENERIC;
209         }
210
211         addr.sun_family = AF_LOCAL;
212         strncpy( addr.sun_path, psz_unix_path, sizeof( addr.sun_path ) );
213         addr.sun_path[sizeof( addr.sun_path ) - 1] = '\0';
214
215         if( (i_ret = bind( i_socket, (struct sockaddr*)&addr,
216                            sizeof(struct sockaddr_un) ) ) < 0 )
217         {
218             msg_Warn( p_intf, "couldn't bind socket to address: %s",
219                       strerror(errno) );
220             free( psz_unix_path );
221             net_Close( i_socket );
222             return VLC_EGENERIC;
223         }
224
225         if( ( i_ret = listen( i_socket, 1 ) ) < 0 )
226         {
227             msg_Warn( p_intf, "can't listen on socket: %s", strerror(errno));
228             free( psz_unix_path );
229             net_Close( i_socket );
230             return VLC_EGENERIC;
231         }
232 #endif
233     }
234
235     if( ( i_socket == -1) &&
236         ( psz_host = config_GetPsz( p_intf, "rtci-host" ) ) != NULL )
237     {
238         vlc_url_t url;
239
240         vlc_UrlParse( &url, psz_host, 0 );
241
242         msg_Dbg( p_intf, "base %s port %d", url.psz_host, url.i_port );
243
244         if( (i_socket = net_ListenTCP(p_this, url.psz_host, url.i_port)) == -1)
245         {
246             msg_Warn( p_intf, "can't listen to %s port %i",
247                       url.psz_host, url.i_port );
248             vlc_UrlClean( &url );
249             free( psz_host );
250             return VLC_EGENERIC;
251         }
252
253         vlc_UrlClean( &url );
254         free( psz_host );
255     }
256
257     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
258     if( !p_intf->p_sys )
259     {
260         msg_Err( p_intf, "no memory" );
261         return VLC_ENOMEM;
262     }
263
264     p_intf->p_sys->i_socket_listen = i_socket;
265     p_intf->p_sys->i_socket = -1;
266     p_intf->p_sys->psz_unix_path = psz_unix_path;
267
268     /* Non-buffered stdout */
269     setvbuf( stdout, (char *)NULL, _IOLBF, 0 );
270
271     p_intf->pf_run = Run;
272
273 #ifdef WIN32
274     if( !config_GetInt( p_intf, "rtci-quiet" ) ) { CONSOLE_INTRO_MSG; }
275 #else
276     CONSOLE_INTRO_MSG;
277 #endif
278
279     msg_rtci( _("Real time control interface initialized, `h' for help\n") );
280     return VLC_SUCCESS;
281 }
282
283 /*****************************************************************************
284  * Deactivate: uninitialize and cleanup
285  *****************************************************************************/
286 static void Deactivate( vlc_object_t *p_this )
287 {
288     intf_thread_t *p_intf = (intf_thread_t*)p_this;
289
290     if( p_intf->p_sys->i_socket_listen != -1 )
291         net_Close( p_intf->p_sys->i_socket_listen );
292     if( p_intf->p_sys->i_socket != -1 )
293         net_Close( p_intf->p_sys->i_socket );
294     if( p_intf->p_sys->psz_unix_path != NULL )
295     {
296 #ifdef PF_LOCAL
297         unlink( p_intf->p_sys->psz_unix_path );
298 #endif
299         free( p_intf->p_sys->psz_unix_path );
300     }
301     free( p_intf->p_sys );
302 }
303
304 /*****************************************************************************
305  * Run: rtci thread
306  *****************************************************************************
307  * This part of the interface is in a separate thread so that we can call
308  * exec() from within it without annoying the rest of the program.
309  *****************************************************************************/
310 static void Run( intf_thread_t *p_intf )
311 {
312     input_thread_t * p_input;
313     playlist_t *     p_playlist;
314
315     char       p_buffer[ MAX_LINE_LENGTH + 1 ];
316     vlc_bool_t b_showpos = config_GetInt( p_intf, "rtci-show-pos" );
317
318     int        i_size = 0;
319     int        i_oldpos = 0;
320     int        i_newpos;
321
322     p_buffer[0] = 0;
323     p_input = NULL;
324     p_playlist = NULL;
325  
326     p_intf->p_sys->b_extend = config_GetInt( p_intf, "rtci-extend" );
327     /* Register commands that will be cleaned up upon object destruction */
328     var_Create( p_intf, "quit", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
329     var_AddCallback( p_intf, "quit", Quit, NULL );
330     var_Create( p_intf, "intf", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
331     var_AddCallback( p_intf, "intf", Intf, NULL );
332
333     var_Create( p_intf, "add", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
334     var_AddCallback( p_intf, "add", Playlist, NULL );
335     var_Create( p_intf, "playlist", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
336     var_AddCallback( p_intf, "playlist", Playlist, NULL );
337     var_Create( p_intf, "play", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
338     var_AddCallback( p_intf, "play", Playlist, NULL );
339     var_Create( p_intf, "stop", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
340     var_AddCallback( p_intf, "stop", Playlist, NULL );
341     var_Create( p_intf, "prev", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
342     var_AddCallback( p_intf, "prev", Playlist, NULL );
343     var_Create( p_intf, "next", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
344     var_AddCallback( p_intf, "next", Playlist, NULL );
345   
346     var_Create( p_intf, "marq-marquee", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
347     var_AddCallback( p_intf, "marq-marquee", Other, NULL );
348     var_Create( p_intf, "marq-x", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
349     var_AddCallback( p_intf, "marq-x", Other, NULL );
350     var_Create( p_intf, "marq-y", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
351     var_AddCallback( p_intf, "marq-y", Other, NULL );
352     var_Create( p_intf, "marq-timeout", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
353     var_AddCallback( p_intf, "marq-timeout", Other, NULL );
354
355     var_Create( p_intf, "pause", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
356     var_AddCallback( p_intf, "pause", Input, NULL );
357     var_Create( p_intf, "seek", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
358     var_AddCallback( p_intf, "seek", Input, NULL );
359     var_Create( p_intf, "title", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
360     var_AddCallback( p_intf, "title", Input, NULL );
361     var_Create( p_intf, "title_n", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
362     var_AddCallback( p_intf, "title_n", Input, NULL );
363     var_Create( p_intf, "title_p", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
364     var_AddCallback( p_intf, "title_p", Input, NULL );
365     var_Create( p_intf, "chapter", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
366     var_AddCallback( p_intf, "chapter", Input, NULL );
367     var_Create( p_intf, "chapter_n", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
368     var_AddCallback( p_intf, "chapter_n", Input, NULL );
369     var_Create( p_intf, "chapter_p", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
370     var_AddCallback( p_intf, "chapter_p", Input, NULL );
371
372     var_Create( p_intf, "volume", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
373     var_AddCallback( p_intf, "volume", Volume, NULL );
374     var_Create( p_intf, "volup", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
375     var_AddCallback( p_intf, "volup", VolumeMove, NULL );
376     var_Create( p_intf, "voldown", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
377     var_AddCallback( p_intf, "voldown", VolumeMove, NULL );
378     var_Create( p_intf, "adev", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
379     var_AddCallback( p_intf, "adev", AudioConfig, NULL );
380     var_Create( p_intf, "achan", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
381     var_AddCallback( p_intf, "achan", AudioConfig, NULL );
382
383 #ifdef WIN32
384     /* Get the file descriptor of the console input */
385     p_intf->p_sys->hConsoleIn = GetStdHandle(STD_INPUT_HANDLE);
386     if( p_intf->p_sys->hConsoleIn == INVALID_HANDLE_VALUE )
387     {
388         msg_Err( p_intf, "Couldn't open STD_INPUT_HANDLE" );
389         p_intf->b_die = VLC_TRUE;
390     }
391 #endif
392
393     while( !p_intf->b_die )
394     {
395         char *psz_cmd, *psz_arg;
396         vlc_bool_t b_complete;
397
398         if( p_intf->p_sys->i_socket_listen != - 1 &&
399             p_intf->p_sys->i_socket == -1 )
400         {
401             p_intf->p_sys->i_socket =
402                 net_Accept( p_intf, p_intf->p_sys->i_socket_listen, 0 );
403         }
404
405         b_complete = ReadCommand( p_intf, p_buffer, &i_size );
406
407         /* Manage the input part */
408         if( p_input == NULL )
409         {
410             if( p_playlist )
411             {
412                 p_input = vlc_object_find( p_playlist, VLC_OBJECT_INPUT,
413                                                        FIND_CHILD );
414             }
415             else
416             {
417                 p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT,
418                                                    FIND_ANYWHERE );
419                 if( p_input )
420                 {
421                     p_playlist = vlc_object_find( p_input, VLC_OBJECT_PLAYLIST,
422                                                            FIND_PARENT );
423                 }
424             }
425         }
426         else if( p_input->b_dead )
427         {
428             vlc_object_release( p_input );
429             p_input = NULL;
430         }
431
432         if( p_input && b_showpos )
433         {
434             i_newpos = 100 * var_GetFloat( p_input, "position" );
435             if( i_oldpos != i_newpos )
436             {
437                 i_oldpos = i_newpos;
438                 msg_rtci( "pos: %d%%\n", i_newpos );
439             }
440         }
441
442         /* Is there something to do? */
443         if( !b_complete ) continue;
444
445
446         /* Skip heading spaces */
447         psz_cmd = p_buffer;
448         while( *psz_cmd == ' ' )
449         {
450             psz_cmd++;
451         }
452
453         /* Split psz_cmd at the first space and make sure that
454          * psz_arg is valid */
455         psz_arg = strchr( psz_cmd, ' ' );
456         if( psz_arg )
457         {
458             *psz_arg++ = 0;
459             while( *psz_arg == ' ' )
460             {
461                 psz_arg++;
462             }
463         }
464         else
465         {
466             psz_arg = "";
467         }
468
469         /* If the user typed a registered local command, try it */
470         if( var_Type( p_intf, psz_cmd ) & VLC_VAR_ISCOMMAND )
471         {
472             vlc_value_t val;
473             int i_ret;
474
475             val.psz_string = psz_arg;
476             i_ret = var_Set( p_intf, psz_cmd, val );
477             msg_rtci( "%s: returned %i (%s)\n",
478                     psz_cmd, i_ret, vlc_error( i_ret ) );
479         }
480         /* Or maybe it's a global command */
481         else if( var_Type( p_intf->p_libvlc, psz_cmd ) & VLC_VAR_ISCOMMAND )
482         {
483             vlc_value_t val;
484             int i_ret;
485
486             val.psz_string = psz_arg;
487             /* FIXME: it's a global command, but we should pass the
488              * local object as an argument, not p_intf->p_libvlc. */
489             i_ret = var_Set( p_intf->p_libvlc, psz_cmd, val );
490             if( i_ret != 0 )
491             {
492                 msg_rtci( "%s: returned %i (%s)\n",
493                          psz_cmd, i_ret, vlc_error( i_ret ) );
494             }
495         }
496         else if( !strcmp( psz_cmd, "logout" ) )
497         {
498             /* Close connection */
499             if( p_intf->p_sys->i_socket != -1 )
500             {
501                 net_Close( p_intf->p_sys->i_socket );
502             }
503             p_intf->p_sys->i_socket = -1;
504         }
505         else if( !strcmp( psz_cmd, "info" ) )
506         {
507             if( p_input )
508             {
509                 int i, j;
510                 vlc_mutex_lock( &p_input->input.p_item->lock );
511                 for ( i = 0; i < p_input->input.p_item->i_categories; i++ )
512                 {
513                     info_category_t *p_category =
514                         p_input->input.p_item->pp_categories[i];
515
516                     msg_rtci( "+----[ %s ]\n", p_category->psz_name );
517                     msg_rtci( "| \n" );
518                     for ( j = 0; j < p_category->i_infos; j++ )
519                     {
520                         info_t *p_info = p_category->pp_infos[j];
521                         msg_rtci( "| %s: %s\n", p_info->psz_name,
522                                 p_info->psz_value );
523                     }
524                     msg_rtci( "| \n" );
525                 }
526                 msg_rtci( "+----[ end of stream info ]\n" );
527                 vlc_mutex_unlock( &p_input->input.p_item->lock );
528             }
529             else
530             {
531                 msg_rtci( "no input\n" );
532             }
533         }
534         else if( !strcmp( psz_cmd, "is_playing" ) )
535         {
536             if( ! p_input )
537             {
538                 msg_rtci( "0\n" );
539             }
540             else
541             {
542                 msg_rtci( "1\n" );
543             }
544         }
545         else if( !strcmp( psz_cmd, "get_time" ) )
546         {
547             if( ! p_input )
548             {
549                 msg_rtci("0\n");
550             }
551             else
552             {
553                 vlc_value_t time;
554                 var_Get( p_input, "time", &time );
555                 msg_rtci( "%i\n", time.i_time / 1000000);
556             }
557         }
558         else if( !strcmp( psz_cmd, "get_length" ) )
559         {
560             if( ! p_input )
561             {
562                 msg_rtci("0\n");
563             }
564             else
565             {
566                 vlc_value_t time;
567                 var_Get( p_input, "length", &time );
568                 msg_rtci( "%i\n", time.i_time / 1000000);
569             }
570         }
571         else if( !strcmp( psz_cmd, "get_title" ) )
572         {
573             if( ! p_input )
574             {
575                 msg_rtci("\n");
576             }
577             else
578             {
579                 msg_rtci( "%s\n", p_input->input.p_item->psz_name );
580             }
581         }
582         else switch( psz_cmd[0] )
583         {
584         case 'f':
585         case 'F':
586             if( p_input )
587             {
588                 vout_thread_t *p_vout;
589                 p_vout = vlc_object_find( p_input,
590                                           VLC_OBJECT_VOUT, FIND_CHILD );
591
592                 if( p_vout )
593                 {
594                     p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;
595                     vlc_object_release( p_vout );
596                 }
597             }
598             break;
599
600         case 's':
601         case 'S':
602             ;
603             break;
604
605         case '?':
606         case 'h':
607         case 'H':
608             msg_rtci(_("+----[ Remote control commands ]\n"));
609             msg_rtci("| \n");
610             msg_rtci(_("| add XYZ  . . . . . . . . . . add XYZ to playlist\n"));
611             msg_rtci(_("| playlist . . .  show items currently in playlist\n"));
612             msg_rtci(_("| play . . . . . . . . . . . . . . . . play stream\n"));
613             msg_rtci(_("| stop . . . . . . . . . . . . . . . . stop stream\n"));
614             msg_rtci(_("| next . . . . . . . . . . . .  next playlist item\n"));
615             msg_rtci(_("| prev . . . . . . . . . .  previous playlist item\n"));
616             msg_rtci(_("| title [X]  . . . . set/get title in current item\n"));
617             msg_rtci(_("| title_n  . . . . . .  next title in current item\n"));
618             msg_rtci(_("| title_p  . . . .  previous title in current item\n"));
619             msg_rtci(_("| chapter [X]  . . set/get chapter in current item\n"));
620             msg_rtci(_("| chapter_n  . . . .  next chapter in current item\n"));
621             msg_rtci(_("| chapter_p  . .  previous chapter in current item\n"));
622             msg_rtci("| \n");
623             msg_rtci(_("| seek X . seek in seconds, for instance `seek 12'\n"));
624             msg_rtci(_("| pause  . . . . . . . . . . . . . .  toggle pause\n"));
625             msg_rtci(_("| f  . . . . . . . . . . . . . . toggle fullscreen\n"));
626             msg_rtci(_("| info . . .  information about the current stream\n"));
627             msg_rtci("| \n");
628             msg_rtci(_("| volume [X] . . . . . . . .  set/get audio volume\n"));
629             msg_rtci(_("| volup [X]  . . . . .  raise audio volume X steps\n"));
630             msg_rtci(_("| voldown [X]  . . . .  lower audio volume X steps\n"));
631             msg_rtci(_("| adev [X] . . . . . . . . .  set/get audio device\n"));
632             msg_rtci(_("| achan [X]. . . . . . . .  set/get audio channels\n"));
633             msg_rtci("| \n");
634             if (p_intf->p_sys->b_extend)
635             {
636                    msg_rtci(_("| marq-marquee STRING  . . overlay STRING in video\n"));
637                msg_rtci(_("| marq-x X . . . . . .offset of marquee, from left\n"));
638                msg_rtci(_("| marq-y Y . . . . . . offset of marquee, from top\n"));
639                msg_rtci(_("| marq-timeout T. . . . .timeout of marquee, in ms\n"));
640                msg_rtci("| \n");
641             }    
642             msg_rtci(_("| help . . . . . . . . . . . . . this help message\n"));
643             msg_rtci(_("| logout . . . . . .exit (if in socket connection)\n"));
644             msg_rtci(_("| quit . . . . . . . . . . . . . . . . .  quit vlc\n"));
645             msg_rtci("| \n");
646             msg_rtci(_("+----[ end of help ]\n"));
647             break;
648
649         case '\0':
650             /* Ignore empty lines */
651             break;
652
653         default:
654             msg_rtci(_("unknown command `%s', type `help' for help\n"), psz_cmd);
655             break;
656         }
657
658         /* Command processed */
659         i_size = 0; p_buffer[0] = 0;
660     }
661
662     if( p_input )
663     {
664         vlc_object_release( p_input );
665         p_input = NULL;
666     }
667
668     if( p_playlist )
669     {
670         vlc_object_release( p_playlist );
671         p_playlist = NULL;
672     }
673 }
674
675 static int Input( vlc_object_t *p_this, char const *psz_cmd,
676                   vlc_value_t oldval, vlc_value_t newval, void *p_data )
677 {
678     intf_thread_t *p_intf = (intf_thread_t*)p_this;
679     input_thread_t *p_input;
680     vlc_value_t     val;
681
682     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
683     if( !p_input ) return VLC_ENOOBJ;
684
685     /* Parse commands that only require an input */
686     if( !strcmp( psz_cmd, "pause" ) )
687     {
688         val.i_int = PAUSE_S;
689
690         var_Set( p_input, "state", val );
691         vlc_object_release( p_input );
692         return VLC_SUCCESS;
693     }
694     else if( !strcmp( psz_cmd, "seek" ) )
695     {
696         if( strlen( newval.psz_string ) > 0 &&
697             newval.psz_string[strlen( newval.psz_string ) - 1] == '%' )
698         {
699             val.f_float = (float)atoi( newval.psz_string ) / 100.0;
700             var_Set( p_input, "position", val );
701         }
702         else
703         {
704             val.i_time = ((int64_t)atoi( newval.psz_string )) * 1000000;
705             var_Set( p_input, "time", val );
706         }
707         vlc_object_release( p_input );
708         return VLC_SUCCESS;
709     }
710    
711     else if( !strcmp( psz_cmd, "chapter" ) ||
712              !strcmp( psz_cmd, "chapter_n" ) ||
713              !strcmp( psz_cmd, "chapter_p" ) )
714     {
715         if( !strcmp( psz_cmd, "chapter" ) )
716         {
717             if ( *newval.psz_string )
718             {
719                 /* Set. */
720                 val.i_int = atoi( newval.psz_string );
721                 var_Set( p_input, "chapter", val );
722             }
723             else
724             {
725                 vlc_value_t val_list;
726
727                 /* Get. */
728                 var_Get( p_input, "chapter", &val );
729                 var_Change( p_input, "chapter", VLC_VAR_GETCHOICES,
730                             &val_list, NULL );
731                 msg_rtci( "Currently playing chapter %d/%d\n",
732                         val.i_int, val_list.p_list->i_count );
733                 var_Change( p_this, "chapter", VLC_VAR_FREELIST,
734                             &val_list, NULL );
735             }
736         }
737         else if( !strcmp( psz_cmd, "chapter_n" ) )
738         {
739             val.b_bool = VLC_TRUE;
740             var_Set( p_input, "next-chapter", val );
741         }
742         else if( !strcmp( psz_cmd, "chapter_p" ) )
743         {
744             val.b_bool = VLC_TRUE;
745             var_Set( p_input, "prev-chapter", val );
746         }
747
748         vlc_object_release( p_input );
749         return VLC_SUCCESS;
750     }
751     else if( !strcmp( psz_cmd, "title" ) ||
752              !strcmp( psz_cmd, "title_n" ) ||
753              !strcmp( psz_cmd, "title_p" ) )
754     {
755         if( !strcmp( psz_cmd, "title" ) )
756         {
757             if ( *newval.psz_string )
758             {
759                 /* Set. */
760                 val.i_int = atoi( newval.psz_string );
761                 var_Set( p_input, "title", val );
762             }
763             else
764             {
765                 vlc_value_t val_list;
766
767                 /* Get. */
768                 var_Get( p_input, "title", &val );
769                 var_Change( p_input, "title", VLC_VAR_GETCHOICES,
770                             &val_list, NULL );
771                 msg_rtci( "Currently playing title %d/%d\n",
772                         val.i_int, val_list.p_list->i_count );
773                 var_Change( p_this, "title", VLC_VAR_FREELIST,
774                             &val_list, NULL );
775             }
776         }
777         else if( !strcmp( psz_cmd, "title_n" ) )
778         {
779             val.b_bool = VLC_TRUE;
780             var_Set( p_input, "next-title", val );
781         }
782         else if( !strcmp( psz_cmd, "title_p" ) )
783         {
784             val.b_bool = VLC_TRUE;
785             var_Set( p_input, "prev-title", val );
786         }
787
788         vlc_object_release( p_input );
789         return VLC_SUCCESS;
790     }
791
792     /* Never reached. */
793     return VLC_EGENERIC;
794 }
795
796 static int Playlist( vlc_object_t *p_this, char const *psz_cmd,
797                      vlc_value_t oldval, vlc_value_t newval, void *p_data )
798 {
799     intf_thread_t *p_intf = (intf_thread_t*)p_this;
800     playlist_t *p_playlist;
801
802     p_playlist = vlc_object_find( p_this, VLC_OBJECT_PLAYLIST,
803                                            FIND_ANYWHERE );
804     if( !p_playlist )
805     {
806         return VLC_ENOOBJ;
807     }
808
809     /* Parse commands that require a playlist */
810     if( !strcmp( psz_cmd, "prev" ) )
811     {
812         playlist_Prev( p_playlist );
813     }
814     else if( !strcmp( psz_cmd, "next" ) )
815     {
816         playlist_Next( p_playlist );
817     }
818     else if( !strcmp( psz_cmd, "play" ) )
819     {
820         playlist_Play( p_playlist );
821     }
822     else if( !strcmp( psz_cmd, "stop" ) )
823     {
824         playlist_Stop( p_playlist );
825     }
826     else if( !strcmp( psz_cmd, "add" ) )
827     {
828         msg_rtci( "trying to add %s to playlist\n", newval.psz_string );
829         playlist_Add( p_playlist, newval.psz_string, newval.psz_string,
830                       PLAYLIST_GO|PLAYLIST_APPEND, PLAYLIST_END );
831     }
832     else if( !strcmp( psz_cmd, "playlist" ) )
833     {
834         int i;
835         for ( i = 0; i < p_playlist->i_size; i++ )
836         {
837             msg_rtci( "|%s%s   %s|\n", i == p_playlist->i_index?"*":" ",
838                     p_playlist->pp_items[i]->input.psz_name,
839                     p_playlist->pp_items[i]->input.psz_uri );
840         }
841         if ( i == 0 )
842         {
843             msg_rtci( "| no entries\n" );
844         }
845     }
846  
847     /*
848      * sanity check
849      */
850     else
851     {
852         msg_rtci( "unknown command!\n" );
853     }
854
855     vlc_object_release( p_playlist );
856     return VLC_SUCCESS;
857 }
858
859 static int Other( vlc_object_t *p_this, char const *psz_cmd,
860                      vlc_value_t oldval, vlc_value_t newval, void *p_data )
861 {
862     intf_thread_t *p_intf = (intf_thread_t*)p_this;
863     vlc_object_t *p_pl;
864     vlc_value_t     val;
865
866     p_pl = vlc_object_find( p_this, VLC_OBJECT_PLAYLIST,
867                                            FIND_ANYWHERE );
868     if( !p_pl )
869     {
870         return VLC_ENOOBJ;
871     }
872
873     /* Parse miscellaneous commands */
874     if( !strcmp( psz_cmd, "marq-marquee" ) )
875     {
876         if( strlen( newval.psz_string ) > 0 )
877         {
878             val.psz_string = newval.psz_string;
879             var_Set( p_pl, "marq-marquee", val );
880         }
881         else 
882         {
883                 val.psz_string = "";
884                 var_Set( p_pl, "marq-marquee", val);
885         }
886     }
887     else if( !strcmp( psz_cmd, "marq-x" ) )
888     {
889         if( strlen( newval.psz_string ) > 0) 
890         {
891             val.i_int = atoi( newval.psz_string );
892             var_Set( p_pl, "marq-x", val );
893         }
894     }
895     else if( !strcmp( psz_cmd, "marq-y" ) )
896     {
897         if( strlen( newval.psz_string ) > 0) 
898         {
899             val.i_int = atoi( newval.psz_string );
900             var_Set( p_pl, "marq-y", val );
901         }
902     }
903     else if( !strcmp( psz_cmd, "marq-timeout" ) )
904     {
905         if( strlen( newval.psz_string ) > 0) 
906         {
907             val.i_int = atoi( newval.psz_string );
908             var_Set( p_pl, "marq-timeout", val );
909         }
910     }
911  
912     /*
913      * sanity check
914      */
915     else
916     {
917         msg_rtci( "unknown command!\n" );
918     }
919
920     vlc_object_release( p_pl );
921     return VLC_SUCCESS;
922 }
923
924 static int Quit( vlc_object_t *p_this, char const *psz_cmd,
925                  vlc_value_t oldval, vlc_value_t newval, void *p_data )
926 {
927     p_this->p_vlc->b_die = VLC_TRUE;
928     return VLC_SUCCESS;
929 }
930
931 static int Intf( vlc_object_t *p_this, char const *psz_cmd,
932                  vlc_value_t oldval, vlc_value_t newval, void *p_data )
933 {
934     intf_thread_t *p_newintf;
935
936     p_newintf = intf_Create( p_this->p_vlc, newval.psz_string );
937
938     if( p_newintf )
939     {
940         p_newintf->b_block = VLC_FALSE;
941         if( intf_RunThread( p_newintf ) )
942         {
943             vlc_object_detach( p_newintf );
944             intf_Destroy( p_newintf );
945         }
946     }
947
948     return VLC_SUCCESS;
949 }
950
951 static int Volume( vlc_object_t *p_this, char const *psz_cmd,
952                    vlc_value_t oldval, vlc_value_t newval, void *p_data )
953 {
954     intf_thread_t *p_intf = (intf_thread_t*)p_this;
955     int i_error;
956
957     if ( *newval.psz_string )
958     {
959         /* Set. */
960         audio_volume_t i_volume = atoi( newval.psz_string );
961         if ( i_volume > AOUT_VOLUME_MAX )
962         {
963             msg_rtci( "Volume must be in the range %d-%d\n", AOUT_VOLUME_MIN,
964                     AOUT_VOLUME_MAX );
965             i_error = VLC_EBADVAR;
966         }
967         else i_error = aout_VolumeSet( p_this, i_volume );
968     }
969     else
970     {
971         /* Get. */
972         audio_volume_t i_volume;
973         if ( aout_VolumeGet( p_this, &i_volume ) < 0 )
974         {
975             i_error = VLC_EGENERIC;
976         }
977         else
978         {
979             msg_rtci( "Volume is %d\n", i_volume );
980             i_error = VLC_SUCCESS;
981         }
982     }
983
984     return i_error;
985 }
986
987 static int VolumeMove( vlc_object_t *p_this, char const *psz_cmd,
988                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
989 {
990     intf_thread_t *p_intf = (intf_thread_t*)p_this;
991     audio_volume_t i_volume;
992     int i_nb_steps = atoi(newval.psz_string);
993     int i_error = VLC_SUCCESS;
994
995     if ( i_nb_steps <= 0 || i_nb_steps > (AOUT_VOLUME_MAX/AOUT_VOLUME_STEP) )
996     {
997         i_nb_steps = 1;
998     }
999
1000     if ( !strcmp(psz_cmd, "volup") )
1001     {
1002         if ( aout_VolumeUp( p_this, i_nb_steps, &i_volume ) < 0 )
1003             i_error = VLC_EGENERIC;
1004     }
1005     else
1006     {
1007         if ( aout_VolumeDown( p_this, i_nb_steps, &i_volume ) < 0 )
1008             i_error = VLC_EGENERIC;
1009     }
1010
1011     if ( !i_error ) msg_rtci( "Volume is %d\n", i_volume );
1012     return i_error;
1013 }
1014
1015 static int AudioConfig( vlc_object_t *p_this, char const *psz_cmd,
1016                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
1017 {
1018     intf_thread_t *p_intf = (intf_thread_t*)p_this;
1019     aout_instance_t * p_aout;
1020     const char * psz_variable;
1021     vlc_value_t val_name;
1022     int i_error;
1023
1024     p_aout = vlc_object_find( p_this, VLC_OBJECT_AOUT, FIND_ANYWHERE );
1025     if ( p_aout == NULL ) return VLC_ENOOBJ;
1026
1027     if ( !strcmp( psz_cmd, "adev" ) )
1028     {
1029         psz_variable = "audio-device";
1030     }
1031     else
1032     {
1033         psz_variable = "audio-channels";
1034     }
1035
1036     /* Get the descriptive name of the variable */
1037     var_Change( (vlc_object_t *)p_aout, psz_variable, VLC_VAR_GETTEXT,
1038                  &val_name, NULL );
1039     if( !val_name.psz_string ) val_name.psz_string = strdup(psz_variable);
1040
1041     if ( !*newval.psz_string )
1042     {
1043         /* Retrieve all registered ***. */
1044         vlc_value_t val, text;
1045         int i, i_value;
1046
1047         if ( var_Get( (vlc_object_t *)p_aout, psz_variable, &val ) < 0 )
1048         {
1049             vlc_object_release( (vlc_object_t *)p_aout );
1050             return VLC_EGENERIC;
1051         }
1052         i_value = val.i_int;
1053
1054         if ( var_Change( (vlc_object_t *)p_aout, psz_variable,
1055                          VLC_VAR_GETLIST, &val, &text ) < 0 )
1056         {
1057             vlc_object_release( (vlc_object_t *)p_aout );
1058             return VLC_EGENERIC;
1059         }
1060
1061         msg_rtci( "+----[ %s ]\n", val_name.psz_string );
1062         for ( i = 0; i < val.p_list->i_count; i++ )
1063         {
1064             if ( i_value == val.p_list->p_values[i].i_int )
1065                 msg_rtci( "| %i - %s *\n", val.p_list->p_values[i].i_int,
1066                         text.p_list->p_values[i].psz_string );
1067             else
1068                 msg_rtci( "| %i - %s\n", val.p_list->p_values[i].i_int,
1069                         text.p_list->p_values[i].psz_string );
1070         }
1071         var_Change( (vlc_object_t *)p_aout, psz_variable, VLC_VAR_FREELIST,
1072                     &val, &text );
1073         msg_rtci( "+----[ end of %s ]\n", val_name.psz_string );
1074
1075         if( val_name.psz_string ) free( val_name.psz_string );
1076         i_error = VLC_SUCCESS;
1077     }
1078     else
1079     {
1080         vlc_value_t val;
1081         val.i_int = atoi( newval.psz_string );
1082
1083         i_error = var_Set( (vlc_object_t *)p_aout, psz_variable, val );
1084     }
1085     vlc_object_release( (vlc_object_t *)p_aout );
1086
1087     return i_error;
1088 }
1089
1090 #ifdef WIN32
1091 vlc_bool_t ReadWin32( intf_thread_t *p_intf, char *p_buffer, int *pi_size )
1092 {
1093     INPUT_RECORD input_record;
1094     DWORD i_dw;
1095
1096     /* On Win32, select() only works on socket descriptors */
1097     while( WaitForSingleObject( p_intf->p_sys->hConsoleIn,
1098                                 INTF_IDLE_SLEEP/1000 ) == WAIT_OBJECT_0 )
1099     {
1100         while( !p_intf->b_die && *pi_size < MAX_LINE_LENGTH &&
1101                ReadConsoleInput( p_intf->p_sys->hConsoleIn, &input_record,
1102                                  1, &i_dw ) )
1103         {
1104             if( input_record.EventType != KEY_EVENT ||
1105                 !input_record.Event.KeyEvent.bKeyDown ||
1106                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_SHIFT ||
1107                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_CONTROL||
1108                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_MENU ||
1109                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_CAPITAL )
1110             {
1111                 /* nothing interesting */
1112                 continue;
1113             }
1114
1115             p_buffer[ *pi_size ] = input_record.Event.KeyEvent.uChar.AsciiChar;
1116
1117             /* Echo out the command */
1118             putc( p_buffer[ *pi_size ], stdout );
1119
1120             /* Handle special keys */
1121             if( p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
1122             {
1123                 putc( '\n', stdout );
1124                 break;
1125             }
1126             switch( p_buffer[ *pi_size ] )
1127             {
1128             case '\b':
1129                 if( *pi_size )
1130                 {
1131                     *pi_size -= 2;
1132                     putc( ' ', stdout );
1133                     putc( '\b', stdout );
1134                 }
1135                 break;
1136             case '\r':
1137                 (*pi_size) --;
1138                 break;
1139             }
1140
1141             (*pi_size)++;
1142         }
1143
1144         if( *pi_size == MAX_LINE_LENGTH ||
1145             p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
1146         {
1147             p_buffer[ *pi_size ] = 0;
1148             return VLC_TRUE;
1149         }
1150     }
1151
1152     return VLC_FALSE;
1153 }
1154 #endif
1155
1156 vlc_bool_t ReadCommand( intf_thread_t *p_intf, char *p_buffer, int *pi_size )
1157 {
1158     int i_read = 0;
1159
1160 #ifdef WIN32
1161     if( p_intf->p_sys->i_socket == -1 )
1162         return ReadWin32( p_intf, p_buffer, pi_size );
1163 #endif
1164
1165     while( !p_intf->b_die && *pi_size < MAX_LINE_LENGTH &&
1166            (i_read = net_ReadNonBlock( p_intf, p_intf->p_sys->i_socket == -1 ?
1167                        STDIN_FILENO : p_intf->p_sys->i_socket,
1168                        p_buffer + *pi_size, 1, INTF_IDLE_SLEEP ) ) > 0 )
1169     {
1170         if( p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
1171             break;
1172
1173         (*pi_size)++;
1174     }
1175
1176     /* Connection closed */
1177     if( i_read == -1 )
1178     {
1179         p_intf->p_sys->i_socket = -1;
1180         p_buffer[ *pi_size ] = 0;
1181         return VLC_TRUE;
1182     }
1183
1184     if( *pi_size == MAX_LINE_LENGTH ||
1185         p_buffer[ *pi_size ] == '\r' || p_buffer[ *pi_size ] == '\n' )
1186     {
1187         p_buffer[ *pi_size ] = 0;
1188         return VLC_TRUE;
1189     }
1190
1191     return VLC_FALSE;
1192 }