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

多媒体

开发平台:

MultiPlatform

  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.  *
  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.  *  Module purpose -- provide a socket based interface to control various 
  25.  *  VLC parameters and obtain status information on the fly.  Output 
  26.  *  will be purposely less verbose than on some interfaces -- this 
  27.  *  interface is intended more for comms with an external program than a human
  28.  *****************************************************************************/
  29.  
  30. /*****************************************************************************
  31.  * Preamble
  32.  *****************************************************************************/
  33. #include <stdlib.h>                                      /* malloc(), free() */
  34. #include <string.h>
  35. #include <errno.h>                                                 /* ENOMEM */
  36. #include <stdio.h>
  37. #include <ctype.h>
  38. #include <signal.h>
  39. #include <vlc/vlc.h>
  40. #include <vlc/intf.h>
  41. #include <vlc/aout.h>
  42. #include <vlc/vout.h>
  43. #ifdef HAVE_UNISTD_H
  44. #    include <unistd.h>
  45. #endif
  46. #ifdef HAVE_SYS_TIME_H
  47. #    include <sys/time.h>
  48. #endif
  49. #include <sys/types.h>
  50. #include "vlc_error.h"
  51. #include "network.h"
  52. #if defined(PF_UNIX) && !defined(PF_LOCAL)
  53. #    define PF_LOCAL PF_UNIX
  54. #endif
  55. #if defined(AF_UNIX) && !defined(AF_LOCAL)
  56. #    define AF_LOCAL AF_UNIX
  57. #endif
  58. #ifdef PF_LOCAL
  59. #    include <sys/un.h>
  60. #endif
  61. #define MAX_LINE_LENGTH 256
  62. /*****************************************************************************
  63.  * Local prototypes
  64.  *****************************************************************************/
  65. static int  Activate     ( vlc_object_t * );
  66. static void Deactivate   ( vlc_object_t * );
  67. static void Run          ( intf_thread_t * );
  68. static vlc_bool_t ReadCommand( intf_thread_t *, char *, int * );
  69. static int  Input        ( vlc_object_t *, char const *,
  70.                            vlc_value_t, vlc_value_t, void * );
  71. static int  Playlist     ( vlc_object_t *, char const *,
  72.                            vlc_value_t, vlc_value_t, void * );
  73. static int  Other        ( vlc_object_t *, char const *,
  74.                            vlc_value_t, vlc_value_t, void * );
  75. static int  Quit         ( vlc_object_t *, char const *,
  76.                            vlc_value_t, vlc_value_t, void * );
  77. static int  Intf         ( vlc_object_t *, char const *,
  78.                            vlc_value_t, vlc_value_t, void * );
  79. static int  Volume       ( vlc_object_t *, char const *,
  80.                            vlc_value_t, vlc_value_t, void * );
  81. static int  VolumeMove   ( vlc_object_t *, char const *,
  82.                            vlc_value_t, vlc_value_t, void * );
  83. static int  AudioConfig  ( vlc_object_t *, char const *,
  84.                            vlc_value_t, vlc_value_t, void * );
  85. struct intf_sys_t
  86. {
  87.     int i_socket_listen;
  88.     int i_socket;
  89.     char *psz_unix_path;
  90.     vlc_bool_t b_extend;
  91.     
  92. #ifdef WIN32
  93.     HANDLE hConsoleIn;
  94. #endif
  95. };
  96. #ifdef HAVE_VARIADIC_MACROS
  97. #   define msg_rtci( psz_format, args... ) 
  98.       __msg_rtci( p_intf, psz_format, ## args )
  99. #endif
  100. static void __msg_rtci( intf_thread_t *p_intf, const char *psz_fmt, ... )
  101. {
  102.     va_list args;
  103.     va_start( args, psz_fmt );
  104.     if( p_intf->p_sys->i_socket == -1 ) vprintf( psz_fmt, args );
  105.     else net_vaPrintf( p_intf, p_intf->p_sys->i_socket, psz_fmt, args );
  106.     va_end( args );
  107. }
  108. /*****************************************************************************
  109.  * Module descriptor
  110.  *****************************************************************************/
  111. #define POS_TEXT N_("Show stream position")
  112. #define POS_LONGTEXT N_("Show the current position in seconds within the " 
  113.                         "stream from time to time." )
  114. #define TTY_TEXT N_("Fake TTY")
  115. #define TTY_LONGTEXT N_("Force the rtci module to use stdin as if it was a TTY.")
  116. #define UNIX_TEXT N_("UNIX socket command input")
  117. #define UNIX_LONGTEXT N_("Accept commands over a Unix socket rather than " 
  118.                          "stdin." )
  119. #define HOST_TEXT N_("TCP command input")
  120. #define HOST_LONGTEXT N_("Accept commands over a socket rather than stdin. " 
  121.             "You can set the address and port the interface will bind to." )
  122. #define EXTEND_TEXT N_("Extended help")
  123. #define EXTEND_LONGTEXT N_("List additional commands.")
  124.             
  125. #ifdef WIN32
  126. #define QUIET_TEXT N_("Do not open a DOS command box interface")
  127. #define QUIET_LONGTEXT N_( 
  128.     "By default the rtci interface plugin will start a DOS command box. " 
  129.     "Enabling the quiet mode will not launch this command box." )
  130. #endif
  131. vlc_module_begin();
  132.     set_description( _("Real time control interface") );
  133.     add_bool( "rtci-show-pos", 0, NULL, POS_TEXT, POS_LONGTEXT, VLC_TRUE );
  134. #ifdef HAVE_ISATTY
  135.     add_bool( "rtci-fake-tty", 0, NULL, TTY_TEXT, TTY_LONGTEXT, VLC_TRUE );
  136. #endif
  137.     add_string( "rtci-unix", 0, NULL, UNIX_TEXT, UNIX_LONGTEXT, VLC_TRUE );
  138.     add_string( "rtci-host", 0, NULL, HOST_TEXT, HOST_LONGTEXT, VLC_TRUE );
  139. #ifdef WIN32
  140.     add_bool( "rtci-quiet", 0, NULL, QUIET_TEXT, QUIET_LONGTEXT, VLC_FALSE );
  141. #endif
  142.     add_bool( "rtci-extend", 0, NULL, EXTEND_TEXT, EXTEND_LONGTEXT, VLC_FALSE );
  143.     set_capability( "interface", 20 );
  144.     set_callbacks( Activate, Deactivate );
  145. vlc_module_end();
  146. /*****************************************************************************
  147.  * Activate: initialize and create stuff
  148.  *****************************************************************************/
  149. static int Activate( vlc_object_t *p_this )
  150. {
  151.     intf_thread_t *p_intf = (intf_thread_t*)p_this;
  152.     char *psz_host, *psz_unix_path;
  153.     int i_socket = -1;
  154. #if defined(HAVE_ISATTY) && !defined(WIN32)
  155.     /* Check that stdin is a TTY */
  156.     if( !config_GetInt( p_intf, "rtci-fake-tty" ) && !isatty( 0 ) )
  157.     {
  158.         msg_Warn( p_intf, "fd 0 is not a TTY" );
  159.         return VLC_EGENERIC;
  160.     }
  161. #endif
  162.     psz_unix_path = config_GetPsz( p_intf, "rtci-unix" );
  163.     if( psz_unix_path )
  164.     {
  165. #ifndef PF_LOCAL
  166.         msg_Warn( p_intf, "your OS doesn't support filesystem sockets" );
  167.         free( psz_unix_path );
  168.         return VLC_EGENERIC;
  169. #else
  170.         struct sockaddr_un addr;
  171.         int i_ret;
  172.         memset( &addr, 0, sizeof(struct sockaddr_un) );
  173.         msg_Dbg( p_intf, "trying UNIX socket" );
  174.         if( (i_socket = socket( PF_LOCAL, SOCK_STREAM, 0 ) ) < 0 )
  175.         {
  176.             msg_Warn( p_intf, "can't open socket: %s", strerror(errno) );
  177.             free( psz_unix_path );
  178.             return VLC_EGENERIC;
  179.         }
  180.         addr.sun_family = AF_LOCAL;
  181.         strncpy( addr.sun_path, psz_unix_path, sizeof( addr.sun_path ) );
  182.         addr.sun_path[sizeof( addr.sun_path ) - 1] = '';
  183.         if( (i_ret = bind( i_socket, (struct sockaddr*)&addr,
  184.                            sizeof(struct sockaddr_un) ) ) < 0 )
  185.         {
  186.             msg_Warn( p_intf, "couldn't bind socket to address: %s",
  187.                       strerror(errno) );
  188.             free( psz_unix_path );
  189.             net_Close( i_socket );
  190.             return VLC_EGENERIC;
  191.         }
  192.         if( ( i_ret = listen( i_socket, 1 ) ) < 0 )
  193.         {
  194.             msg_Warn( p_intf, "can't listen on socket: %s", strerror(errno));
  195.             free( psz_unix_path );
  196.             net_Close( i_socket );
  197.             return VLC_EGENERIC;
  198.         }
  199. #endif
  200.     }
  201.     if( ( i_socket == -1) &&
  202.         ( psz_host = config_GetPsz( p_intf, "rtci-host" ) ) != NULL )
  203.     {
  204.         vlc_url_t url;
  205.         vlc_UrlParse( &url, psz_host, 0 );
  206.         msg_Dbg( p_intf, "base %s port %d", url.psz_host, url.i_port );
  207.         if( (i_socket = net_ListenTCP(p_this, url.psz_host, url.i_port)) == -1)
  208.         {
  209.             msg_Warn( p_intf, "can't listen to %s port %i",
  210.                       url.psz_host, url.i_port );
  211.             vlc_UrlClean( &url );
  212.             free( psz_host );
  213.             return VLC_EGENERIC;
  214.         }
  215.         vlc_UrlClean( &url );
  216.         free( psz_host );
  217.     }
  218.     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
  219.     if( !p_intf->p_sys )
  220.     {
  221.         msg_Err( p_intf, "no memory" );
  222.         return VLC_ENOMEM;
  223.     }
  224.     p_intf->p_sys->i_socket_listen = i_socket;
  225.     p_intf->p_sys->i_socket = -1;
  226.     p_intf->p_sys->psz_unix_path = psz_unix_path;
  227.     /* Non-buffered stdout */
  228.     setvbuf( stdout, (char *)NULL, _IOLBF, 0 );
  229.     p_intf->pf_run = Run;
  230. #ifdef WIN32
  231.     if( !config_GetInt( p_intf, "rtci-quiet" ) ) { CONSOLE_INTRO_MSG; }
  232. #else
  233.     CONSOLE_INTRO_MSG;
  234. #endif
  235.     msg_rtci( _("Real time 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: rtci 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, "rtci-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, "rtci-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_rtci( "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_rtci( "%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_rtci( "%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_rtci( "+----[ %s ]n", p_category->psz_name );
  450.                     msg_rtci( "| n" );
  451.                     for ( j = 0; j < p_category->i_infos; j++ )
  452.                     {
  453.                         info_t *p_info = p_category->pp_infos[j];
  454.                         msg_rtci( "| %s: %sn", p_info->psz_name,
  455.                                 p_info->psz_value );
  456.                     }
  457.                     msg_rtci( "| n" );
  458.                 }
  459.                 msg_rtci( "+----[ end of stream info ]n" );
  460.                 vlc_mutex_unlock( &p_input->input.p_item->lock );
  461.             }
  462.             else
  463.             {
  464.                 msg_rtci( "no inputn" );
  465.             }
  466.         }
  467.         else if( !strcmp( psz_cmd, "is_playing" ) )
  468.         {
  469.             if( ! p_input )
  470.             {
  471.                 msg_rtci( "0n" );
  472.             }
  473.             else
  474.             {
  475.                 msg_rtci( "1n" );
  476.             }
  477.         }
  478.         else if( !strcmp( psz_cmd, "get_time" ) )
  479.         {
  480.             if( ! p_input )
  481.             {
  482.                 msg_rtci("0n");
  483.             }
  484.             else
  485.             {
  486.                 vlc_value_t time;
  487.                 var_Get( p_input, "time", &time );
  488.                 msg_rtci( "%in", time.i_time / 1000000);
  489.             }
  490.         }
  491.         else if( !strcmp( psz_cmd, "get_length" ) )
  492.         {
  493.             if( ! p_input )
  494.             {
  495.                 msg_rtci("0n");
  496.             }
  497.             else
  498.             {
  499.                 vlc_value_t time;
  500.                 var_Get( p_input, "length", &time );
  501.                 msg_rtci( "%in", time.i_time / 1000000);
  502.             }
  503.         }
  504.         else if( !strcmp( psz_cmd, "get_title" ) )
  505.         {
  506.             if( ! p_input )
  507.             {
  508.                 msg_rtci("n");
  509.             }
  510.             else
  511.             {
  512.                 msg_rtci( "%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_rtci(_("+----[ Remote control commands ]n"));
  539.             msg_rtci("| n");
  540.             msg_rtci(_("| add XYZ  . . . . . . . . . . add XYZ to playlistn"));
  541.             msg_rtci(_("| playlist . . .  show items currently in playlistn"));
  542.             msg_rtci(_("| play . . . . . . . . . . . . . . . . play streamn"));
  543.             msg_rtci(_("| stop . . . . . . . . . . . . . . . . stop streamn"));
  544.             msg_rtci(_("| next . . . . . . . . . . . .  next playlist itemn"));
  545.             msg_rtci(_("| prev . . . . . . . . . .  previous playlist itemn"));
  546.             msg_rtci(_("| title [X]  . . . . set/get title in current itemn"));
  547.             msg_rtci(_("| title_n  . . . . . .  next title in current itemn"));
  548.             msg_rtci(_("| title_p  . . . .  previous title in current itemn"));
  549.             msg_rtci(_("| chapter [X]  . . set/get chapter in current itemn"));
  550.             msg_rtci(_("| chapter_n  . . . .  next chapter in current itemn"));
  551.             msg_rtci(_("| chapter_p  . .  previous chapter in current itemn"));
  552.             msg_rtci("| n");
  553.             msg_rtci(_("| seek X . seek in seconds, for instance `seek 12'n"));
  554.             msg_rtci(_("| pause  . . . . . . . . . . . . . .  toggle pausen"));
  555.             msg_rtci(_("| f  . . . . . . . . . . . . . . toggle fullscreenn"));
  556.             msg_rtci(_("| info . . .  information about the current streamn"));
  557.             msg_rtci("| n");
  558.             msg_rtci(_("| volume [X] . . . . . . . .  set/get audio volumen"));
  559.             msg_rtci(_("| volup [X]  . . . . .  raise audio volume X stepsn"));
  560.             msg_rtci(_("| voldown [X]  . . . .  lower audio volume X stepsn"));
  561.             msg_rtci(_("| adev [X] . . . . . . . . .  set/get audio devicen"));
  562.             msg_rtci(_("| achan [X]. . . . . . . .  set/get audio channelsn"));
  563.             msg_rtci("| n");
  564.             if (p_intf->p_sys->b_extend)
  565.             {
  566.            msg_rtci(_("| marq-marquee STRING  . . overlay STRING in videon"));
  567.                msg_rtci(_("| marq-x X . . . . . .offset of marquee, from leftn"));
  568.                msg_rtci(_("| marq-y Y . . . . . . offset of marquee, from topn"));
  569.                msg_rtci(_("| marq-timeout T. . . . .timeout of marquee, in msn"));
  570.                msg_rtci("| n");
  571.             }    
  572.             msg_rtci(_("| help . . . . . . . . . . . . . this help messagen"));
  573.             msg_rtci(_("| logout . . . . . .exit (if in socket connection)n"));
  574.             msg_rtci(_("| quit . . . . . . . . . . . . . . . . .  quit vlcn"));
  575.             msg_rtci("| n");
  576.             msg_rtci(_("+----[ end of help ]n"));
  577.             break;
  578.         case '':
  579.             /* Ignore empty lines */
  580.             break;
  581.         default:
  582.             msg_rtci(_("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_rtci( "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_rtci( "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.     {
  741.         msg_rtci( "trying to add %s to playlistn", newval.psz_string );
  742.         playlist_Add( p_playlist, newval.psz_string, newval.psz_string,
  743.                       PLAYLIST_GO|PLAYLIST_APPEND, PLAYLIST_END );
  744.     }
  745.     else if( !strcmp( psz_cmd, "playlist" ) )
  746.     {
  747.         int i;
  748.         for ( i = 0; i < p_playlist->i_size; i++ )
  749.         {
  750.             msg_rtci( "|%s%s   %s|n", i == p_playlist->i_index?"*":" ",
  751.                     p_playlist->pp_items[i]->input.psz_name,
  752.                     p_playlist->pp_items[i]->input.psz_uri );
  753.         }
  754.         if ( i == 0 )
  755.         {
  756.             msg_rtci( "| no entriesn" );
  757.         }
  758.     }
  759.  
  760.     /*
  761.      * sanity check
  762.      */
  763.     else
  764.     {
  765.         msg_rtci( "unknown command!n" );
  766.     }
  767.     vlc_object_release( p_playlist );
  768.     return VLC_SUCCESS;
  769. }
  770. static int Other( vlc_object_t *p_this, char const *psz_cmd,
  771.                      vlc_value_t oldval, vlc_value_t newval, void *p_data )
  772. {
  773.     intf_thread_t *p_intf = (intf_thread_t*)p_this;
  774.     vlc_object_t *p_pl;
  775.     vlc_value_t     val;
  776.     p_pl = vlc_object_find( p_this, VLC_OBJECT_PLAYLIST,
  777.                                            FIND_ANYWHERE );
  778.     if( !p_pl )
  779.     {
  780.         return VLC_ENOOBJ;
  781.     }
  782.     /* Parse miscellaneous commands */
  783.     if( !strcmp( psz_cmd, "marq-marquee" ) )
  784.     {
  785.         if( strlen( newval.psz_string ) > 0 )
  786.         {
  787.             val.psz_string = newval.psz_string;
  788.             var_Set( p_pl, "marq-marquee", val );
  789.         }
  790.         else 
  791.         {
  792.         val.psz_string = "";
  793.         var_Set( p_pl, "marq-marquee", val);
  794.         }
  795.     }
  796.     else if( !strcmp( psz_cmd, "marq-x" ) )
  797.     {
  798.         if( strlen( newval.psz_string ) > 0) 
  799.         {
  800.             val.i_int = atoi( newval.psz_string );
  801.             var_Set( p_pl, "marq-x", val );
  802.         }
  803.     }
  804.     else if( !strcmp( psz_cmd, "marq-y" ) )
  805.     {
  806.         if( strlen( newval.psz_string ) > 0) 
  807.         {
  808.             val.i_int = atoi( newval.psz_string );
  809.             var_Set( p_pl, "marq-y", val );
  810.         }
  811.     }
  812.     else if( !strcmp( psz_cmd, "marq-timeout" ) )
  813.     {
  814.         if( strlen( newval.psz_string ) > 0) 
  815.         {
  816.             val.i_int = atoi( newval.psz_string );
  817.             var_Set( p_pl, "marq-timeout", val );
  818.         }
  819.     }
  820.  
  821.     /*
  822.      * sanity check
  823.      */
  824.     else
  825.     {
  826.         msg_rtci( "unknown command!n" );
  827.     }
  828.     vlc_object_release( p_pl );
  829.     return VLC_SUCCESS;
  830. }
  831. static int Quit( vlc_object_t *p_this, char const *psz_cmd,
  832.                  vlc_value_t oldval, vlc_value_t newval, void *p_data )
  833. {
  834.     p_this->p_vlc->b_die = VLC_TRUE;
  835.     return VLC_SUCCESS;
  836. }
  837. static int Intf( vlc_object_t *p_this, char const *psz_cmd,
  838.                  vlc_value_t oldval, vlc_value_t newval, void *p_data )
  839. {
  840.     intf_thread_t *p_newintf;
  841.     p_newintf = intf_Create( p_this->p_vlc, newval.psz_string );
  842.     if( p_newintf )
  843.     {
  844.         p_newintf->b_block = VLC_FALSE;
  845.         if( intf_RunThread( p_newintf ) )
  846.         {
  847.             vlc_object_detach( p_newintf );
  848.             intf_Destroy( p_newintf );
  849.         }
  850.     }
  851.     return VLC_SUCCESS;
  852. }
  853. static int Volume( vlc_object_t *p_this, char const *psz_cmd,
  854.                    vlc_value_t oldval, vlc_value_t newval, void *p_data )
  855. {
  856.     intf_thread_t *p_intf = (intf_thread_t*)p_this;
  857.     int i_error;
  858.     if ( *newval.psz_string )
  859.     {
  860.         /* Set. */
  861.         audio_volume_t i_volume = atoi( newval.psz_string );
  862.         if ( i_volume > AOUT_VOLUME_MAX )
  863.         {
  864.             msg_rtci( "Volume must be in the range %d-%dn", AOUT_VOLUME_MIN,
  865.                     AOUT_VOLUME_MAX );
  866.             i_error = VLC_EBADVAR;
  867.         }
  868.         else i_error = aout_VolumeSet( p_this, i_volume );
  869.     }
  870.     else
  871.     {
  872.         /* Get. */
  873.         audio_volume_t i_volume;
  874.         if ( aout_VolumeGet( p_this, &i_volume ) < 0 )
  875.         {
  876.             i_error = VLC_EGENERIC;
  877.         }
  878.         else
  879.         {
  880.             msg_rtci( "Volume is %dn", i_volume );
  881.             i_error = VLC_SUCCESS;
  882.         }
  883.     }
  884.     return i_error;
  885. }
  886. static int VolumeMove( vlc_object_t *p_this, char const *psz_cmd,
  887.                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
  888. {
  889.     intf_thread_t *p_intf = (intf_thread_t*)p_this;
  890.     audio_volume_t i_volume;
  891.     int i_nb_steps = atoi(newval.psz_string);
  892.     int i_error = VLC_SUCCESS;
  893.     if ( i_nb_steps <= 0 || i_nb_steps > (AOUT_VOLUME_MAX/AOUT_VOLUME_STEP) )
  894.     {
  895.         i_nb_steps = 1;
  896.     }
  897.     if ( !strcmp(psz_cmd, "volup") )
  898.     {
  899.         if ( aout_VolumeUp( p_this, i_nb_steps, &i_volume ) < 0 )
  900.             i_error = VLC_EGENERIC;
  901.     }
  902.     else
  903.     {
  904.         if ( aout_VolumeDown( p_this, i_nb_steps, &i_volume ) < 0 )
  905.             i_error = VLC_EGENERIC;
  906.     }
  907.     if ( !i_error ) msg_rtci( "Volume is %dn", i_volume );
  908.     return i_error;
  909. }
  910. static int AudioConfig( vlc_object_t *p_this, char const *psz_cmd,
  911.                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
  912. {
  913.     intf_thread_t *p_intf = (intf_thread_t*)p_this;
  914.     aout_instance_t * p_aout;
  915.     const char * psz_variable;
  916.     vlc_value_t val_name;
  917.     int i_error;
  918.     p_aout = vlc_object_find( p_this, VLC_OBJECT_AOUT, FIND_ANYWHERE );
  919.     if ( p_aout == NULL ) return VLC_ENOOBJ;
  920.     if ( !strcmp( psz_cmd, "adev" ) )
  921.     {
  922.         psz_variable = "audio-device";
  923.     }
  924.     else
  925.     {
  926.         psz_variable = "audio-channels";
  927.     }
  928.     /* Get the descriptive name of the variable */
  929.     var_Change( (vlc_object_t *)p_aout, psz_variable, VLC_VAR_GETTEXT,
  930.                  &val_name, NULL );
  931.     if( !val_name.psz_string ) val_name.psz_string = strdup(psz_variable);
  932.     if ( !*newval.psz_string )
  933.     {
  934.         /* Retrieve all registered ***. */
  935.         vlc_value_t val, text;
  936.         int i, i_value;
  937.         if ( var_Get( (vlc_object_t *)p_aout, psz_variable, &val ) < 0 )
  938.         {
  939.             vlc_object_release( (vlc_object_t *)p_aout );
  940.             return VLC_EGENERIC;
  941.         }
  942.         i_value = val.i_int;
  943.         if ( var_Change( (vlc_object_t *)p_aout, psz_variable,
  944.                          VLC_VAR_GETLIST, &val, &text ) < 0 )
  945.         {
  946.             vlc_object_release( (vlc_object_t *)p_aout );
  947.             return VLC_EGENERIC;
  948.         }
  949.         msg_rtci( "+----[ %s ]n", val_name.psz_string );
  950.         for ( i = 0; i < val.p_list->i_count; i++ )
  951.         {
  952.             if ( i_value == val.p_list->p_values[i].i_int )
  953.                 msg_rtci( "| %i - %s *n", val.p_list->p_values[i].i_int,
  954.                         text.p_list->p_values[i].psz_string );
  955.             else
  956.                 msg_rtci( "| %i - %sn", val.p_list->p_values[i].i_int,
  957.                         text.p_list->p_values[i].psz_string );
  958.         }
  959.         var_Change( (vlc_object_t *)p_aout, psz_variable, VLC_VAR_FREELIST,
  960.                     &val, &text );
  961.         msg_rtci( "+----[ end of %s ]n", val_name.psz_string );
  962.         if( val_name.psz_string ) free( val_name.psz_string );
  963.         i_error = VLC_SUCCESS;
  964.     }
  965.     else
  966.     {
  967.         vlc_value_t val;
  968.         val.i_int = atoi( newval.psz_string );
  969.         i_error = var_Set( (vlc_object_t *)p_aout, psz_variable, val );
  970.     }
  971.     vlc_object_release( (vlc_object_t *)p_aout );
  972.     return i_error;
  973. }
  974. #ifdef WIN32
  975. vlc_bool_t ReadWin32( intf_thread_t *p_intf, char *p_buffer, int *pi_size )
  976. {
  977.     INPUT_RECORD input_record;
  978.     DWORD i_dw;
  979.     /* On Win32, select() only works on socket descriptors */
  980.     while( WaitForSingleObject( p_intf->p_sys->hConsoleIn,
  981.                                 INTF_IDLE_SLEEP/1000 ) == WAIT_OBJECT_0 )
  982.     {
  983.         while( !p_intf->b_die && *pi_size < MAX_LINE_LENGTH &&
  984.                ReadConsoleInput( p_intf->p_sys->hConsoleIn, &input_record,
  985.                                  1, &i_dw ) )
  986.         {
  987.             if( input_record.EventType != KEY_EVENT ||
  988.                 !input_record.Event.KeyEvent.bKeyDown ||
  989.                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_SHIFT ||
  990.                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_CONTROL||
  991.                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_MENU ||
  992.                 input_record.Event.KeyEvent.wVirtualKeyCode == VK_CAPITAL )
  993.             {
  994.                 /* nothing interesting */
  995.                 continue;
  996.             }
  997.             p_buffer[ *pi_size ] = input_record.Event.KeyEvent.uChar.AsciiChar;
  998.             /* Echo out the command */
  999.             putc( p_buffer[ *pi_size ], stdout );
  1000.             /* Handle special keys */
  1001.             if( p_buffer[ *pi_size ] == 'r' || p_buffer[ *pi_size ] == 'n' )
  1002.             {
  1003.                 putc( 'n', stdout );
  1004.                 break;
  1005.             }
  1006.             switch( p_buffer[ *pi_size ] )
  1007.             {
  1008.             case 'b':
  1009.                 if( *pi_size )
  1010.                 {
  1011.                     *pi_size -= 2;
  1012.                     putc( ' ', stdout );
  1013.                     putc( 'b', stdout );
  1014.                 }
  1015.                 break;
  1016.             case 'r':
  1017.                 (*pi_size) --;
  1018.                 break;
  1019.             }
  1020.             (*pi_size)++;
  1021.         }
  1022.         if( *pi_size == MAX_LINE_LENGTH ||
  1023.             p_buffer[ *pi_size ] == 'r' || p_buffer[ *pi_size ] == 'n' )
  1024.         {
  1025.             p_buffer[ *pi_size ] = 0;
  1026.             return VLC_TRUE;
  1027.         }
  1028.     }
  1029.     return VLC_FALSE;
  1030. }
  1031. #endif
  1032. vlc_bool_t ReadCommand( intf_thread_t *p_intf, char *p_buffer, int *pi_size )
  1033. {
  1034.     int i_read = 0;
  1035. #ifdef WIN32
  1036.     if( p_intf->p_sys->i_socket == -1 )
  1037.         return ReadWin32( p_intf, p_buffer, pi_size );
  1038. #endif
  1039.     while( !p_intf->b_die && *pi_size < MAX_LINE_LENGTH &&
  1040.            (i_read = net_ReadNonBlock( p_intf, p_intf->p_sys->i_socket == -1 ?
  1041.                        STDIN_FILENO : p_intf->p_sys->i_socket,
  1042.                        p_buffer + *pi_size, 1, INTF_IDLE_SLEEP ) ) > 0 )
  1043.     {
  1044.         if( p_buffer[ *pi_size ] == 'r' || p_buffer[ *pi_size ] == 'n' )
  1045.             break;
  1046.         (*pi_size)++;
  1047.     }
  1048.     /* Connection closed */
  1049.     if( i_read == -1 )
  1050.     {
  1051.         p_intf->p_sys->i_socket = -1;
  1052.         p_buffer[ *pi_size ] = 0;
  1053.         return VLC_TRUE;
  1054.     }
  1055.     if( *pi_size == MAX_LINE_LENGTH ||
  1056.         p_buffer[ *pi_size ] == 'r' || p_buffer[ *pi_size ] == 'n' )
  1057.     {
  1058.         p_buffer[ *pi_size ] = 0;
  1059.         return VLC_TRUE;
  1060.     }
  1061.     return VLC_FALSE;
  1062. }