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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * file.c
  3.  *****************************************************************************
  4.  * Copyright (C) 2001, 2002 VideoLAN
  5.  * $Id: file.c 8164 2004-07-10 17:22:35Z fenrir $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Eric Petit <titer@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #include <stdlib.h>
  28. #include <sys/types.h>
  29. #include <sys/stat.h>
  30. #include <string.h>
  31. #include <fcntl.h>
  32. #include <errno.h>
  33. #include <vlc/vlc.h>
  34. #include <vlc/sout.h>
  35. #ifdef HAVE_UNISTD_H
  36. #   include <unistd.h>
  37. #elif defined( WIN32 ) && !defined( UNDER_CE )
  38. #   include <io.h>
  39. #endif
  40. /* For those platforms that don't use these */
  41. #ifndef S_IRGRP
  42. #   define S_IRGRP 0
  43. #endif
  44. #ifndef S_IROTH
  45. #   define S_IROTH 0
  46. #endif
  47. #ifndef STDOUT_FILENO
  48. #   define STDOUT_FILENO 1
  49. #endif
  50. /*****************************************************************************
  51.  * Module descriptor
  52.  *****************************************************************************/
  53. static int  Open ( vlc_object_t * );
  54. static void Close( vlc_object_t * );
  55. #define SOUT_CFG_PREFIX "sout-file-"
  56. #define APPEND_TEXT N_("Append to file")
  57. #define APPEND_LONGTEXT N_( "Append to file if it exists instead " 
  58.                             "of replacing it.")
  59. vlc_module_begin();
  60.     set_description( _("File stream output") );
  61.     set_capability( "sout access", 50 );
  62.     add_shortcut( "file" );
  63.     add_shortcut( "stream" );
  64.     add_bool( SOUT_CFG_PREFIX "append", 0, NULL, APPEND_TEXT,APPEND_LONGTEXT,
  65.               VLC_TRUE );
  66.     set_callbacks( Open, Close );
  67. vlc_module_end();
  68. /*****************************************************************************
  69.  * Exported prototypes
  70.  *****************************************************************************/
  71. static const char *ppsz_sout_options[] = {
  72.     "append", NULL
  73. };
  74. static int Write( sout_access_out_t *, block_t * );
  75. static int Seek ( sout_access_out_t *, off_t  );
  76. static int Read ( sout_access_out_t *, block_t * );
  77. struct sout_access_out_sys_t
  78. {
  79.     int i_handle;
  80. };
  81. /*****************************************************************************
  82.  * Open: open the file
  83.  *****************************************************************************/
  84. static int Open( vlc_object_t *p_this )
  85. {
  86.     sout_access_out_t   *p_access = (sout_access_out_t*)p_this;
  87.     int                 i_flags;
  88.     vlc_value_t         val;
  89.     sout_CfgParse( p_access, SOUT_CFG_PREFIX, ppsz_sout_options, p_access->p_cfg );
  90.     if( !( p_access->p_sys = malloc( sizeof( sout_access_out_sys_t ) ) ) )
  91.     {
  92.         msg_Err( p_access, "out of memory" );
  93.         return( VLC_EGENERIC );
  94.     }
  95.     if( !p_access->psz_name )
  96.     {
  97.         msg_Err( p_access, "no file name specified" );
  98.         return VLC_EGENERIC;
  99.     }
  100.     i_flags = O_RDWR|O_CREAT;
  101.     var_Get( p_access, SOUT_CFG_PREFIX "append", &val );
  102.     if( val.b_bool )
  103.     {
  104.         i_flags |= O_APPEND;
  105.     }
  106.     else
  107.     {
  108.         i_flags |= O_TRUNC;
  109.     }
  110.     if( !strcmp( p_access->psz_name, "-" ) )
  111.     {
  112.         p_access->p_sys->i_handle = STDOUT_FILENO;
  113.         msg_Dbg( p_access, "using stdout" );
  114.     }
  115.     else if( ( p_access->p_sys->i_handle =
  116.                open( p_access->psz_name, i_flags,
  117.                      S_IWRITE | S_IREAD | S_IRGRP | S_IROTH ) ) == -1 )
  118.     {
  119.         msg_Err( p_access, "cannot open `%s'", p_access->psz_name );
  120.         free( p_access->p_sys );
  121.         return( VLC_EGENERIC );
  122.     }
  123.     p_access->pf_write = Write;
  124.     p_access->pf_read  = Read;
  125.     p_access->pf_seek  = Seek;
  126.     msg_Dbg( p_access, "file access output opened (`%s')", p_access->psz_name );
  127.     /* Update pace control flag */
  128.     if( p_access->psz_access && !strcmp( p_access->psz_access, "stream" ) )
  129.         p_access->p_sout->i_out_pace_nocontrol++;
  130.     return VLC_SUCCESS;
  131. }
  132. /*****************************************************************************
  133.  * Close: close the target
  134.  *****************************************************************************/
  135. static void Close( vlc_object_t * p_this )
  136. {
  137.     sout_access_out_t *p_access = (sout_access_out_t*)p_this;
  138.     if( strcmp( p_access->psz_name, "-" ) )
  139.     {
  140.         if( p_access->p_sys->i_handle )
  141.         {
  142.             close( p_access->p_sys->i_handle );
  143.         }
  144.     }
  145.     free( p_access->p_sys );
  146.     /* Update pace control flag */
  147.     if( p_access->psz_access && !strcmp( p_access->psz_access, "stream" ) )
  148.         p_access->p_sout->i_out_pace_nocontrol--;
  149.     msg_Dbg( p_access, "file access output closed" );
  150. }
  151. /*****************************************************************************
  152.  * Read: standard read on a file descriptor.
  153.  *****************************************************************************/
  154. static int Read( sout_access_out_t *p_access, block_t *p_buffer )
  155. {
  156.     if( strcmp( p_access->psz_name, "-" ) )
  157.     {
  158.         return read( p_access->p_sys->i_handle, p_buffer->p_buffer,
  159.                      p_buffer->i_buffer );
  160.     }
  161.     msg_Err( p_access, "cannot read while using stdout" );
  162.     return VLC_EGENERIC;
  163. }
  164. /*****************************************************************************
  165.  * Write: standard write on a file descriptor.
  166.  *****************************************************************************/
  167. static int Write( sout_access_out_t *p_access, block_t *p_buffer )
  168. {
  169.     size_t i_write = 0;
  170.     while( p_buffer )
  171.     {
  172.         block_t *p_next = p_buffer->p_next;;
  173.         i_write += write( p_access->p_sys->i_handle,
  174.                           p_buffer->p_buffer, p_buffer->i_buffer );
  175.         block_Release( p_buffer );
  176.         p_buffer = p_next;
  177.     }
  178.     return i_write;
  179. }
  180. /*****************************************************************************
  181.  * Seek: seek to a specific location in a file
  182.  *****************************************************************************/
  183. static int Seek( sout_access_out_t *p_access, off_t i_pos )
  184. {
  185.     if( strcmp( p_access->psz_name, "-" ) )
  186.     {
  187. #if defined( WIN32 ) && !defined( UNDER_CE )
  188.         return( _lseeki64( p_access->p_sys->i_handle, i_pos, SEEK_SET ) );
  189. #else
  190.         return( lseek( p_access->p_sys->i_handle, i_pos, SEEK_SET ) );
  191. #endif
  192.     }
  193.     else
  194.     {
  195.         msg_Err( p_access, "cannot seek while using stdout" );
  196.         return VLC_EGENERIC;
  197.     }
  198. }