]> git.sesse.net Git - vlc/blob - modules/access_output/file.c
* modules/access_out/file.c: added "stream" shortcut for when one doesn't want pace...
[vlc] / modules / access_output / file.c
1 /*****************************************************************************
2  * file.c
3  *****************************************************************************
4  * Copyright (C) 2001, 2002 VideoLAN
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <stdlib.h>
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <string.h>
32 #include <fcntl.h>
33 #include <errno.h>
34
35 #include <vlc/vlc.h>
36 #include <vlc/sout.h>
37
38 #ifdef HAVE_UNISTD_H
39 #   include <unistd.h>
40 #elif defined( WIN32 ) && !defined( UNDER_CE )
41 #   include <io.h>
42 #endif
43
44 /* For those platforms that don't use these */
45 #ifndef S_IRGRP
46 #   define S_IRGRP 0
47 #endif
48 #ifndef S_IROTH
49 #   define S_IROTH 0
50 #endif
51 #ifndef STDOUT_FILENO
52 #   define STDOUT_FILENO 1
53 #endif
54
55 /*****************************************************************************
56  * Module descriptor
57  *****************************************************************************/
58 static int  Open ( vlc_object_t * );
59 static void Close( vlc_object_t * );
60
61 vlc_module_begin();
62     set_description( _("File stream ouput") );
63     set_capability( "sout access", 50 );
64     add_shortcut( "file" );
65     add_shortcut( "stream" );
66     set_callbacks( Open, Close );
67 vlc_module_end();
68
69
70 /*****************************************************************************
71  * Exported prototypes
72  *****************************************************************************/
73 static int Write( sout_access_out_t *, block_t * );
74 static int Seek ( sout_access_out_t *, off_t  );
75 static int Read ( sout_access_out_t *, block_t * );
76
77 struct sout_access_out_sys_t
78 {
79     int i_handle;
80 };
81
82 /*****************************************************************************
83  * Open: open the file
84  *****************************************************************************/
85 static int Open( vlc_object_t *p_this )
86 {
87     sout_access_out_t   *p_access = (sout_access_out_t*)p_this;
88     int                 i_flags;
89
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
96     if( !p_access->psz_name )
97     {
98         msg_Err( p_access, "no file name specified" );
99         return VLC_EGENERIC;
100     }
101     i_flags = O_RDWR|O_CREAT;
102     if( sout_cfg_find_value( p_access->p_cfg, "append" ) )
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
124     p_access->pf_write = Write;
125     p_access->pf_read  = Read;
126     p_access->pf_seek  = Seek;
127
128     msg_Dbg( p_access, "file access output opened (`%s')", p_access->psz_name );
129
130     /* Update pace control flag */
131     if( p_access->psz_access && !strcmp( p_access->psz_access, "stream" ) )
132         p_access->p_sout->i_out_pace_nocontrol++;
133
134     return VLC_SUCCESS;
135 }
136
137 /*****************************************************************************
138  * Close: close the target
139  *****************************************************************************/
140 static void Close( vlc_object_t * p_this )
141 {
142     sout_access_out_t *p_access = (sout_access_out_t*)p_this;
143
144     if( strcmp( p_access->psz_name, "-" ) )
145     {
146         if( p_access->p_sys->i_handle )
147         {
148             close( p_access->p_sys->i_handle );
149         }
150     }
151     free( p_access->p_sys );
152
153     /* Update pace control flag */
154     if( p_access->psz_access && !strcmp( p_access->psz_access, "stream" ) )
155         p_access->p_sout->i_out_pace_nocontrol--;
156
157     msg_Dbg( p_access, "file access output closed" );
158 }
159
160 /*****************************************************************************
161  * Read: standard read on a file descriptor.
162  *****************************************************************************/
163 static int Read( sout_access_out_t *p_access, block_t *p_buffer )
164 {
165     if( strcmp( p_access->psz_name, "-" ) )
166     {
167         return read( p_access->p_sys->i_handle, p_buffer->p_buffer,
168                      p_buffer->i_buffer );
169     }
170
171     msg_Err( p_access, "cannot read while using stdout" );
172     return VLC_EGENERIC;
173 }
174
175 /*****************************************************************************
176  * Write: standard write on a file descriptor.
177  *****************************************************************************/
178 static int Write( sout_access_out_t *p_access, block_t *p_buffer )
179 {
180     size_t i_write = 0;
181
182     while( p_buffer )
183     {
184         block_t *p_next = p_buffer->p_next;;
185
186         i_write += write( p_access->p_sys->i_handle,
187                           p_buffer->p_buffer, p_buffer->i_buffer );
188         block_Release( p_buffer );
189
190         p_buffer = p_next;
191     }
192
193     return i_write;
194 }
195
196 /*****************************************************************************
197  * Seek: seek to a specific location in a file
198  *****************************************************************************/
199 static int Seek( sout_access_out_t *p_access, off_t i_pos )
200 {
201     if( strcmp( p_access->psz_name, "-" ) )
202     {
203 #if defined( WIN32 ) && !defined( UNDER_CE )
204         return( _lseeki64( p_access->p_sys->i_handle, i_pos, SEEK_SET ) );
205 #else
206         return( lseek( p_access->p_sys->i_handle, i_pos, SEEK_SET ) );
207 #endif
208     }
209     else
210     {
211         msg_Err( p_access, "cannot seek while using stdout" );
212         return VLC_EGENERIC;
213     }
214 }