X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faccess_output%2Ffile.c;h=56ccd02ddc4557315844c4f8aa25da96a89edfe1;hb=5b63839284565821b5aff349378eddbb9d7f1ee0;hp=200860e5a12c6a2cc3d8d5a956c93f2e14ea61d1;hpb=62fffadfea2834f7ff57a6ec1b15f8be35e68916;p=vlc diff --git a/modules/access_output/file.c b/modules/access_output/file.c index 200860e5a1..56ccd02ddc 100644 --- a/modules/access_output/file.c +++ b/modules/access_output/file.c @@ -25,28 +25,31 @@ /***************************************************************************** * Preamble *****************************************************************************/ -#include + +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include -#include #include #include #include -#include -#include -#include "charset.h" +#include +#include +#include +#include +#include +#include "vlc_strings.h" -#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 STDOUT_FILENO -# define STDOUT_FILENO 1 -#endif #ifndef O_LARGEFILE # define O_LARGEFILE 0 #endif @@ -63,7 +66,7 @@ static void Close( vlc_object_t * ); "of replacing it.") vlc_module_begin(); - set_description( _("File stream output") ); + set_description( N_("File stream output") ); set_shortname( N_("File" )); set_capability( "sout access", 50 ); set_category( CAT_SOUT ); @@ -71,7 +74,7 @@ vlc_module_begin(); add_shortcut( "file" ); add_shortcut( "stream" ); add_bool( SOUT_CFG_PREFIX "append", 0, NULL, APPEND_TEXT,APPEND_LONGTEXT, - VLC_TRUE ); + true ); set_callbacks( Open, Close ); vlc_module_end(); @@ -79,13 +82,14 @@ vlc_module_end(); /***************************************************************************** * Exported prototypes *****************************************************************************/ -static const char *ppsz_sout_options[] = { +static const char *const ppsz_sout_options[] = { "append", NULL }; -static int Write( sout_access_out_t *, block_t * ); +static ssize_t Write( sout_access_out_t *, block_t * ); static int Seek ( sout_access_out_t *, off_t ); -static int Read ( sout_access_out_t *, block_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 { @@ -98,92 +102,51 @@ 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 i_flags; - vlc_value_t val; + int fd; 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( !( p_access->p_sys = malloc( sizeof( sout_access_out_sys_t ) ) ) ) - { - return( VLC_ENOMEM ); - } - - i_flags = O_RDWR|O_CREAT|O_LARGEFILE; + bool append = var_GetBool( p_access, SOUT_CFG_PREFIX "append" ); - var_Get( p_access, SOUT_CFG_PREFIX "append", &val ); - i_flags |= val.b_bool ? O_APPEND : O_TRUNC; - - if( !strcmp( p_access->psz_name, "-" ) ) + if( !strcmp( p_access->psz_path, "-" ) ) { -#if defined(WIN32) - setmode (STDOUT_FILENO, O_BINARY); +#ifdef WIN32 + setmode (fileno (stdout), O_BINARY); #endif - p_access->p_sys->i_handle = STDOUT_FILENO; + fd = dup (fileno (stdout)); msg_Dbg( p_access, "using stdout" ); } else { - char *psz_localname = ToLocale( p_access->psz_name ); - char *psz_tmp, *psz_tmp2, *psz_rewriten; - int fd, i, i_length = strlen( psz_localname ); - for( i = 0, psz_tmp = psz_localname ; - ( psz_tmp = strstr( psz_tmp, "%T" ) ) ; psz_tmp++, i++ ) - ; - if( i ) - { - i_length += 32 * i; - psz_rewriten = (char *) malloc( i_length ); - if( ! psz_rewriten ) - return ( VLC_EGENERIC ); - psz_tmp = psz_localname; - psz_tmp2 = psz_rewriten; - while( *psz_tmp ) - { - if( ( *psz_tmp == '%' ) && ( *(psz_tmp+1) == 'T' ) ) - { - time_t t; - time( &t ); - psz_tmp2 += sprintf( psz_tmp2, "%d", (int) t ); - psz_tmp+=2; - } - else - *psz_tmp2++ = *psz_tmp++; - } - *psz_tmp2 = *psz_tmp; - fd = open( psz_rewriten, i_flags, 0666 ); - LocaleFree( psz_localname ); - free( psz_rewriten ); - } - else - { - fd = open( psz_localname, i_flags, 0666 ); - LocaleFree( psz_localname ); - } - if( fd == -1 ) - { - msg_Err( p_access, "cannot open `%s' (%s)", p_access->psz_name, - strerror( errno ) ); - free( p_access->p_sys ); - return( VLC_EGENERIC ); - } - p_access->p_sys->i_handle = fd; + char *psz_tmp = str_format( p_access, p_access->psz_path ); + path_sanitize( psz_tmp ); + + fd = utf8_open( psz_tmp, O_RDWR | O_CREAT | O_LARGEFILE | + (append ? 0 : O_TRUNC), 0666 ); + free( psz_tmp ); + } + + if (fd == -1) + { + msg_Err( p_access, "cannot open `%s' (%m)", p_access->psz_path ); + return VLC_EGENERIC; } 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_name ); - - /* Update pace control flag */ - if( p_access->psz_access && !strcmp( p_access->psz_access, "stream" ) ) - p_access->p_sout->i_out_pace_nocontrol++; + msg_Dbg( p_access, "file access output opened (%s)", p_access->psz_path ); + if (append) + lseek (fd, 0, SEEK_END); return VLC_SUCCESS; } @@ -195,55 +158,74 @@ static void Close( vlc_object_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 ); - - /* Update pace control flag */ - if( p_access->psz_access && !strcmp( p_access->psz_access, "stream" ) ) - p_access->p_sout->i_out_pace_nocontrol--; - msg_Dbg( p_access, "file access output closed" ); + default: + return VLC_EGENERIC; + } + return VLC_SUCCESS; } /***************************************************************************** * Read: standard read on a file descriptor. *****************************************************************************/ -static int Read( sout_access_out_t *p_access, block_t *p_buffer ) +static ssize_t Read( sout_access_out_t *p_access, block_t *p_buffer ) { - if( strcmp( p_access->psz_name, "-" ) ) - { - return read( p_access->p_sys->i_handle, p_buffer->p_buffer, - p_buffer->i_buffer ); - } + ssize_t val; - msg_Err( p_access, "cannot read while using stdout" ); - return VLC_EGENERIC; + do + val = read( (intptr_t)p_access->p_sys, p_buffer->p_buffer, + p_buffer->i_buffer ); + while (val == -1 && errno == EINTR); + return val; } /***************************************************************************** * Write: standard write on a file descriptor. *****************************************************************************/ -static int Write( sout_access_out_t *p_access, block_t *p_buffer ) +static ssize_t Write( sout_access_out_t *p_access, block_t *p_buffer ) { size_t i_write = 0; while( p_buffer ) { - block_t *p_next = p_buffer->p_next;; - - i_write += write( p_access->p_sys->i_handle, - p_buffer->p_buffer, p_buffer->i_buffer ); - block_Release( 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; + } - p_buffer = p_next; + 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; } @@ -252,17 +234,5 @@ static int Write( sout_access_out_t *p_access, block_t *p_buffer ) *****************************************************************************/ static int Seek( sout_access_out_t *p_access, off_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 ); }