rc.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:41k
源码类别:

多媒体

开发平台:

MultiPlatform

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