X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faccess_output%2Ffile.c;h=91ae8636690cc11a0e1c7c6b687d38f513cc1317;hb=6028275a26cb841df7187bd53023a7a0393e0751;hp=19fe63fa70dd217990ee9e67cb8549c7ed394d00;hpb=f964889a9743d82c0a5d9edb41891a62c88b9d03;p=vlc diff --git a/modules/access_output/file.c b/modules/access_output/file.c index 19fe63fa70..91ae863669 100644 --- a/modules/access_output/file.c +++ b/modules/access_output/file.c @@ -1,8 +1,8 @@ /***************************************************************************** * file.c ***************************************************************************** - * Copyright (C) 2001, 2002 VideoLAN - * $Id: file.c,v 1.8 2003/06/21 14:24:30 gbazin Exp $ + * Copyright (C) 2001, 2002 the VideoLAN team + * $Id$ * * Authors: Laurent Aimar * Eric Petit @@ -19,60 +19,83 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /***************************************************************************** * Preamble *****************************************************************************/ -#include + +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include -#include -#include -#include +#include #include +#include -#include -#include -#include +#include +#include +#include +#include +#include +#include -#ifdef HAVE_UNISTD_H -# include -#elif defined( WIN32 ) && !defined( UNDER_CE ) +#if defined( WIN32 ) && !defined( UNDER_CE ) # include +# define lseek _lseeki64 +#else +# include #endif -/* For those platforms that don't use these */ -#ifndef S_IRGRP -# define S_IRGRP 0 -#endif -#ifndef S_IROTH -# define S_IROTH 0 +#ifndef O_LARGEFILE +# define O_LARGEFILE 0 #endif /***************************************************************************** - * Exported prototypes + * Module descriptor *****************************************************************************/ -static int Open ( vlc_object_t * ); -static void Close ( vlc_object_t * ); +static int Open ( vlc_object_t * ); +static void Close( vlc_object_t * ); + +#define SOUT_CFG_PREFIX "sout-file-" +#define APPEND_TEXT N_("Append to file") +#define APPEND_LONGTEXT N_( "Append to file if it exists instead " \ + "of replacing it.") +#define SYNC_TEXT N_("Synchronous writing") +#define SYNC_LONGTEXT N_( "Open the file with synchronous writing.") + +vlc_module_begin () + set_description( N_("File stream output") ) + set_shortname( N_("File" )) + set_capability( "sout access", 50 ) + set_category( CAT_SOUT ) + set_subcategory( SUBCAT_SOUT_ACO ) + add_shortcut( "file", "stream" ) + add_bool( SOUT_CFG_PREFIX "append", false, NULL, APPEND_TEXT,APPEND_LONGTEXT, + true ) + add_bool( SOUT_CFG_PREFIX "sync", false, NULL, SYNC_TEXT,SYNC_LONGTEXT, + false ) + set_callbacks( Open, Close ) +vlc_module_end () -static int Write( sout_access_out_t *, sout_buffer_t * ); -static int Seek ( sout_access_out_t *, off_t ); /***************************************************************************** - * Module descriptor + * Exported prototypes *****************************************************************************/ -vlc_module_begin(); - set_description( _("File stream ouput") ); - set_capability( "sout access", 50 ); - add_shortcut( "file" ); - set_callbacks( Open, Close ); -vlc_module_end(); +static const char *const ppsz_sout_options[] = { + "append", "sync", NULL +}; + +static ssize_t Write( sout_access_out_t *, block_t * ); +static int Seek ( sout_access_out_t *, off_t ); +static ssize_t Read ( sout_access_out_t *, block_t * ); +static int Control( sout_access_out_t *, int, va_list ); struct sout_access_out_sys_t { int i_handle; - }; /***************************************************************************** @@ -81,36 +104,62 @@ struct sout_access_out_sys_t static int Open( vlc_object_t *p_this ) { sout_access_out_t *p_access = (sout_access_out_t*)p_this; + int fd; + bool sync; - if( !( p_access->p_sys = malloc( sizeof( sout_access_out_sys_t ) ) ) ) - { - msg_Err( p_access, "out of memory" ); - return( VLC_EGENERIC ); - } + config_ChainParse( p_access, SOUT_CFG_PREFIX, ppsz_sout_options, p_access->p_cfg ); - if( !p_access->psz_name ) + if( !p_access->psz_path ) { msg_Err( p_access, "no file name specified" ); return VLC_EGENERIC; } - if( !strcmp( p_access->psz_name, "-" ) ) + + bool append = var_GetBool( p_access, SOUT_CFG_PREFIX "append" ); + sync = var_GetBool( p_access, SOUT_CFG_PREFIX "sync" ); + + if( !strcmp( p_access->psz_path, "-" ) ) { - p_access->p_sys->i_handle = STDOUT_FILENO; +#ifndef UNDER_CE +#ifdef WIN32 + setmode (fileno (stdout), O_BINARY); +#endif + fd = vlc_dup (fileno (stdout)); msg_Dbg( p_access, "using stdout" ); +#else +#warning stdout is not supported on Windows Mobile, but may be used on Windows CE + fd = -1; +#endif + } + else + { + char *psz_tmp = str_format( p_access, p_access->psz_path ); + path_sanitize( psz_tmp ); + + fd = vlc_open( psz_tmp, O_RDWR | O_CREAT | O_LARGEFILE | +#ifdef O_SYNC + (sync ? O_SYNC : 0) | +#endif + (append ? 0 : O_TRUNC), 0666 ); + free( psz_tmp ); } - else if( ( p_access->p_sys->i_handle = - open( p_access->psz_name, O_WRONLY|O_CREAT|O_TRUNC, - S_IWRITE | S_IREAD | S_IRGRP | S_IROTH ) ) == -1 ) + + if (fd == -1) { - msg_Err( p_access, "cannot open `%s'", p_access->psz_name ); - free( p_access->p_sys ); - return( VLC_EGENERIC ); + msg_Err( p_access, "cannot open `%s' (%m)", p_access->psz_path ); + return VLC_EGENERIC; } - p_access->pf_write = Write; - p_access->pf_seek = Seek; + p_access->pf_write = Write; + p_access->pf_read = Read; + p_access->pf_seek = Seek; + p_access->pf_control = Control; + p_access->p_sys = (void *)(intptr_t)fd; + + msg_Dbg( p_access, "file access output opened (%s)", p_access->psz_path ); + if (append) + lseek (fd, 0, SEEK_END); - msg_Info( p_access, "Open: name:`%s'", p_access->psz_name ); return VLC_SUCCESS; } @@ -119,40 +168,77 @@ static int Open( vlc_object_t *p_this ) *****************************************************************************/ static void Close( vlc_object_t * p_this ) { - sout_access_out_t *p_access = (sout_access_out_t*)p_this; + sout_access_out_t *p_access = (sout_access_out_t*)p_this; - if( strcmp( p_access->psz_name, "-" ) ) + close( (intptr_t)p_access->p_sys ); + + msg_Dbg( p_access, "file access output closed" ); +} + +static int Control( sout_access_out_t *p_access, int i_query, va_list args ) +{ + switch( i_query ) { - if( p_access->p_sys->i_handle ) + case ACCESS_OUT_CONTROLS_PACE: { - close( p_access->p_sys->i_handle ); + bool *pb = va_arg( args, bool * ); + *pb = strcmp( p_access->psz_access, "stream" ); + break; } - } - free( p_access->p_sys ); - msg_Info( p_access, "Close" ); + default: + return VLC_EGENERIC; + } + return VLC_SUCCESS; } /***************************************************************************** * Read: standard read on a file descriptor. *****************************************************************************/ -static int Write( sout_access_out_t *p_access, sout_buffer_t *p_buffer ) +static ssize_t Read( sout_access_out_t *p_access, block_t *p_buffer ) { - size_t i_write = 0; + ssize_t val; do - { - sout_buffer_t *p_next; + val = read( (intptr_t)p_access->p_sys, p_buffer->p_buffer, + p_buffer->i_buffer ); + while (val == -1 && errno == EINTR); + return val; +} - i_write += write( p_access->p_sys->i_handle, p_buffer->p_buffer, - p_buffer->i_size ); - p_next = p_buffer->p_next; - sout_BufferDelete( p_access->p_sout, p_buffer ); - p_buffer = p_next; +/***************************************************************************** + * Write: standard write on a file descriptor. + *****************************************************************************/ +static ssize_t Write( sout_access_out_t *p_access, block_t *p_buffer ) +{ + size_t i_write = 0; - } while( p_buffer ); + while( p_buffer ) + { + ssize_t val = write ((intptr_t)p_access->p_sys, + p_buffer->p_buffer, p_buffer->i_buffer); + if (val == -1) + { + if (errno == EINTR) + continue; + block_ChainRelease (p_buffer); + return -1; + } - return( i_write ); + if ((size_t)val >= p_buffer->i_buffer) + { + block_t *p_next = p_buffer->p_next; + block_Release (p_buffer); + p_buffer = p_next; + } + else + { + p_buffer->p_buffer += val; + p_buffer->i_buffer -= val; + } + i_write += val; + } + return i_write; } /***************************************************************************** @@ -160,19 +246,5 @@ static int Write( sout_access_out_t *p_access, sout_buffer_t *p_buffer ) *****************************************************************************/ static int Seek( sout_access_out_t *p_access, off_t i_pos ) { - msg_Dbg( p_access, "Seek: pos:"I64Fd, (int64_t)i_pos ); - - if( strcmp( p_access->psz_name, "-" ) ) - { -#if defined( WIN32 ) && !defined( UNDER_CE ) - return( _lseeki64( p_access->p_sys->i_handle, i_pos, SEEK_SET ) ); -#else - return( lseek( p_access->p_sys->i_handle, i_pos, SEEK_SET ) ); -#endif - } - else - { - msg_Err( p_access, "cannot seek while using stdout" ); - return VLC_EGENERIC; - } + return lseek( (intptr_t)p_access->p_sys, i_pos, SEEK_SET ); }