]> git.sesse.net Git - vlc/blob - modules/access_output/file.c
WinCE: undefined file descriptor use
[vlc] / modules / access_output / file.c
1 /*****************************************************************************
2  * file.c
3  *****************************************************************************
4  * Copyright (C) 2001, 2002 the VideoLAN team
5  * $Id$
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <sys/types.h>
34 #include <sys/stat.h>
35 #include <time.h>
36 #include <fcntl.h>
37 #include <errno.h>
38
39 #include <vlc_common.h>
40 #include <vlc_plugin.h>
41 #include <vlc_sout.h>
42 #include <vlc_block.h>
43 #include <vlc_charset.h>
44 #include "vlc_strings.h"
45
46 #if defined( WIN32 ) && !defined( UNDER_CE )
47 #   include <io.h>
48 #   define lseek _lseeki64
49 #else
50 #   include <unistd.h>
51 #endif
52
53 #ifndef O_LARGEFILE
54 #   define O_LARGEFILE 0
55 #endif
56
57 /*****************************************************************************
58  * Module descriptor
59  *****************************************************************************/
60 static int  Open ( vlc_object_t * );
61 static void Close( vlc_object_t * );
62
63 #define SOUT_CFG_PREFIX "sout-file-"
64 #define APPEND_TEXT N_("Append to file")
65 #define APPEND_LONGTEXT N_( "Append to file if it exists instead " \
66                             "of replacing it.")
67
68 vlc_module_begin ()
69     set_description( N_("File stream output") )
70     set_shortname( N_("File" ))
71     set_capability( "sout access", 50 )
72     set_category( CAT_SOUT )
73     set_subcategory( SUBCAT_SOUT_ACO )
74     add_shortcut( "file" )
75     add_shortcut( "stream" )
76     add_bool( SOUT_CFG_PREFIX "append", 0, NULL, APPEND_TEXT,APPEND_LONGTEXT,
77               true )
78     set_callbacks( Open, Close )
79 vlc_module_end ()
80
81
82 /*****************************************************************************
83  * Exported prototypes
84  *****************************************************************************/
85 static const char *const ppsz_sout_options[] = {
86     "append", NULL
87 };
88
89 static ssize_t Write( sout_access_out_t *, block_t * );
90 static int Seek ( sout_access_out_t *, off_t  );
91 static ssize_t Read ( sout_access_out_t *, block_t * );
92 static int Control( sout_access_out_t *, int, va_list );
93
94 struct sout_access_out_sys_t
95 {
96     int i_handle;
97 };
98
99 /*****************************************************************************
100  * Open: open the file
101  *****************************************************************************/
102 static int Open( vlc_object_t *p_this )
103 {
104     sout_access_out_t   *p_access = (sout_access_out_t*)p_this;
105     int                 fd;
106
107     config_ChainParse( p_access, SOUT_CFG_PREFIX, ppsz_sout_options, p_access->p_cfg );
108
109     if( !p_access->psz_path )
110     {
111         msg_Err( p_access, "no file name specified" );
112         return VLC_EGENERIC;
113     }
114
115     bool append = var_GetBool( p_access, SOUT_CFG_PREFIX "append" );
116
117     if( !strcmp( p_access->psz_path, "-" ) )
118     {
119 #ifndef UNDER_CE
120 #ifdef WIN32
121         setmode (fileno (stdout), O_BINARY);
122 #endif
123         fd = dup (fileno (stdout));
124         msg_Dbg( p_access, "using stdout" );
125 #else
126 #warning stdout is not supported on Windows Mobile, but may be used on Windows CE
127         fd = -1;
128 #endif
129     }
130     else
131     {
132         char *psz_tmp = str_format( p_access, p_access->psz_path );
133         path_sanitize( psz_tmp );
134
135         fd = utf8_open( psz_tmp, O_RDWR | O_CREAT | O_LARGEFILE |
136                         (append ? 0 : O_TRUNC), 0666 );
137         free( psz_tmp );
138     }
139
140     if (fd == -1)
141     {
142         msg_Err( p_access, "cannot open `%s' (%m)", p_access->psz_path );
143         return VLC_EGENERIC;
144     }
145
146     p_access->pf_write = Write;
147     p_access->pf_read  = Read;
148     p_access->pf_seek  = Seek;
149     p_access->pf_control = Control;
150     p_access->p_sys    = (void *)(intptr_t)fd;
151
152     msg_Dbg( p_access, "file access output opened (%s)", p_access->psz_path );
153     if (append)
154         lseek (fd, 0, SEEK_END);
155
156     return VLC_SUCCESS;
157 }
158
159 /*****************************************************************************
160  * Close: close the target
161  *****************************************************************************/
162 static void Close( vlc_object_t * p_this )
163 {
164     sout_access_out_t *p_access = (sout_access_out_t*)p_this;
165
166     close( (intptr_t)p_access->p_sys );
167
168     msg_Dbg( p_access, "file access output closed" );
169 }
170
171 static int Control( sout_access_out_t *p_access, int i_query, va_list args )
172 {
173     switch( i_query )
174     {
175         case ACCESS_OUT_CONTROLS_PACE:
176         {
177             bool *pb = va_arg( args, bool * );
178             *pb = strcmp( p_access->psz_access, "stream" );
179             break;
180         }
181
182         default:
183             return VLC_EGENERIC;
184     }
185     return VLC_SUCCESS;
186 }
187
188 /*****************************************************************************
189  * Read: standard read on a file descriptor.
190  *****************************************************************************/
191 static ssize_t Read( sout_access_out_t *p_access, block_t *p_buffer )
192 {
193     ssize_t val;
194
195     do
196         val = read( (intptr_t)p_access->p_sys, p_buffer->p_buffer,
197                     p_buffer->i_buffer );
198     while (val == -1 && errno == EINTR);
199     return val;
200 }
201
202 /*****************************************************************************
203  * Write: standard write on a file descriptor.
204  *****************************************************************************/
205 static ssize_t Write( sout_access_out_t *p_access, block_t *p_buffer )
206 {
207     size_t i_write = 0;
208
209     while( p_buffer )
210     {
211         ssize_t val = write ((intptr_t)p_access->p_sys,
212                              p_buffer->p_buffer, p_buffer->i_buffer);
213         if (val == -1)
214         {
215             if (errno == EINTR)
216                 continue;
217             block_ChainRelease (p_buffer);
218             return -1;
219         }
220
221         if ((size_t)val >= p_buffer->i_buffer)
222         {
223             block_t *p_next = p_buffer->p_next;
224             block_Release (p_buffer);
225             p_buffer = p_next;
226         }
227         else
228         {
229             p_buffer->p_buffer += val;
230             p_buffer->i_buffer -= val;
231         }
232         i_write += val;
233     }
234     return i_write;
235 }
236
237 /*****************************************************************************
238  * Seek: seek to a specific location in a file
239  *****************************************************************************/
240 static int Seek( sout_access_out_t *p_access, off_t i_pos )
241 {
242     return lseek( (intptr_t)p_access->p_sys, i_pos, SEEK_SET );
243 }