]> git.sesse.net Git - vlc/blob - modules/access/file.c
Remove debug message
[vlc] / modules / access / file.c
1 /*****************************************************************************
2  * file.c: file input (file: access plug-in)
3  *****************************************************************************
4  * Copyright (C) 2001-2006 the VideoLAN team
5  * Copyright © 2006 Rémi Denis-Courmont
6  * $Id$
7  *
8  * Authors: Christophe Massiot <massiot@via.ecp.fr>
9  *          Rémi Denis-Courmont <rem # videolan # org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include <vlc/vlc.h>
30 #include <vlc/input.h>
31 #include <vlc_interaction.h>
32
33 #include <stdlib.h>
34 #include <string.h>
35 #include <errno.h>
36 #ifdef HAVE_SYS_TYPES_H
37 #   include <sys/types.h>
38 #endif
39 #ifdef HAVE_SYS_STAT_H
40 #   include <sys/stat.h>
41 #endif
42 #ifdef HAVE_FCNTL_H
43 #   include <fcntl.h>
44 #endif
45
46 #if defined( WIN32 ) && !defined( UNDER_CE )
47 #   include <io.h>
48 #else
49 #   include <unistd.h>
50 #   include <poll.h>
51 #endif
52
53 #if defined( WIN32 ) && !defined( UNDER_CE )
54 /* fstat() support for large files on win32 */
55 #   define fstat(a,b) _fstati64(a,b)
56 #   ifdef lseek
57 #      undef lseek
58 #   endif
59 #   define lseek _lseeki64
60 #elif defined( UNDER_CE )
61 #   ifdef read
62 #      undef read
63 #   endif
64 #   define read(a,b,c) fread(b,1,c,a)
65 #   define close(a) fclose(a)
66 #   ifdef lseek
67 #      undef lseek
68 #   endif
69 #   define lseek fseek
70 #endif
71
72 #include "charset.h"
73
74 /*****************************************************************************
75  * Module descriptor
76  *****************************************************************************/
77 static int  Open ( vlc_object_t * );
78 static void Close( vlc_object_t * );
79
80 #define CACHING_TEXT N_("Caching value in ms")
81 #define CACHING_LONGTEXT N_( \
82     "Caching value for files. This " \
83     "value should be set in milliseconds." )
84 #define CAT_TEXT N_("Concatenate with additional files")
85 #define CAT_LONGTEXT N_( \
86     "Play split files as if they were part of a unique file. " \
87     "You need to specify a comma-separated list of files." )
88
89 vlc_module_begin();
90     set_description( _("File input") );
91     set_shortname( _("File") );
92     set_category( CAT_INPUT );
93     set_subcategory( SUBCAT_INPUT_ACCESS );
94     add_integer( "file-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
95     add_deprecated( "file-cat", VLC_TRUE );
96     set_capability( "access2", 50 );
97     add_shortcut( "file" );
98     add_shortcut( "stream" );
99     add_shortcut( "kfir" );
100     set_callbacks( Open, Close );
101 vlc_module_end();
102
103
104 /*****************************************************************************
105  * Exported prototypes
106  *****************************************************************************/
107 static int  Seek( access_t *, int64_t );
108 static int  Read( access_t *, uint8_t *, int );
109 static int  Control( access_t *, int, va_list );
110
111 static int  open_file( access_t *, const char * );
112
113 struct access_sys_t
114 {
115     unsigned int i_nb_reads;
116     vlc_bool_t   b_kfir;
117
118     int fd;
119
120     /* */
121     vlc_bool_t b_seekable;
122     vlc_bool_t b_pace_control;
123 };
124
125 /*****************************************************************************
126  * Open: open the file
127  *****************************************************************************/
128 static int Open( vlc_object_t *p_this )
129 {
130     access_t     *p_access = (access_t*)p_this;
131     access_sys_t *p_sys;
132
133     vlc_bool_t    b_stdin = !strcmp (p_access->psz_path, "-");
134
135     /* Update default_pts to a suitable value for file access */
136     var_Create( p_access, "file-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
137
138     STANDARD_READ_ACCESS_INIT;
139     p_sys->i_nb_reads = 0;
140     p_sys->b_kfir = VLC_FALSE;
141     int fd = p_sys->fd = -1;
142
143     if (!strcasecmp (p_access->psz_access, "stream"))
144     {
145         p_sys->b_seekable = VLC_FALSE;
146         p_sys->b_pace_control = VLC_FALSE;
147     }
148     else if (!strcasecmp (p_access->psz_access, "kfir"))
149     {
150         p_sys->b_seekable = VLC_FALSE;
151         p_sys->b_pace_control = VLC_FALSE;
152         p_sys->b_kfir = VLC_TRUE;
153     }
154     else
155     {
156         p_sys->b_seekable = VLC_TRUE;
157         p_sys->b_pace_control = VLC_TRUE;
158     }
159
160     /* Open file */
161     msg_Dbg (p_access, "opening file `%s'", p_access->psz_path);
162
163     if (b_stdin)
164         fd = dup (0);
165     else
166         fd = open_file (p_access, p_access->psz_path);
167
168 #ifdef HAVE_SYS_STAT_H
169     struct stat st;
170
171     while (fd != -1)
172     {
173         if (fstat (fd, &st))
174             msg_Err (p_access, "fstat(%d): %s", fd, strerror (errno));
175         else
176         if (S_ISDIR (st.st_mode))
177             /* The directory plugin takes care of that */
178             msg_Dbg (p_access, "file is a directory, aborting");
179         else
180             break; // success
181
182         close (fd);
183         fd = -1;
184     }
185 #endif
186
187     if (fd == -1)
188     {
189         free (p_sys);
190         return VLC_EGENERIC;
191     }
192     p_sys->fd = fd;
193
194 #ifdef HAVE_SYS_STAT_H
195     p_access->info.i_size = st.st_size;
196     if (!S_ISREG (st.st_mode) && !S_ISBLK (st.st_mode)
197      && (!S_ISCHR (st.st_mode) || (st.st_size == 0)))
198         p_sys->b_seekable = VLC_FALSE;
199 #else
200     p_sys->b_seekable = !b_stdin;
201 # warning File size not known!
202 #endif
203
204     if (p_sys->b_seekable && (p_access->info.i_size == 0))
205     {
206         /* FIXME that's bad because all others access will be probed */
207         msg_Err (p_access, "file is empty, aborting");
208         Close (p_this);
209         return VLC_EGENERIC;
210     }
211
212     return VLC_SUCCESS;
213 }
214
215 /*****************************************************************************
216  * Close: close the target
217  *****************************************************************************/
218 static void Close (vlc_object_t * p_this)
219 {
220     access_t     *p_access = (access_t*)p_this;
221     access_sys_t *p_sys = p_access->p_sys;
222
223     close (p_sys->fd);
224     free (p_sys);
225 }
226
227 /*****************************************************************************
228  * Read: standard read on a file descriptor.
229  *****************************************************************************/
230 static int Read( access_t *p_access, uint8_t *p_buffer, int i_len )
231 {
232     access_sys_t *p_sys = p_access->p_sys;
233     int i_ret;
234     int fd = p_sys->fd;
235
236 #if !defined(WIN32) && !defined(UNDER_CE)
237     if( !p_sys->b_pace_control )
238     {
239         if( !p_sys->b_kfir )
240         {
241             /* Find if some data is available. This won't work under Windows. */
242             do
243             {
244                 struct pollfd ufd;
245
246                 if( p_access->b_die )
247                     return 0;
248
249                 memset (&ufd, 0, sizeof (ufd));
250                 ufd.fd = fd;
251                 ufd.events = POLLIN;
252
253                 i_ret = poll (&ufd, 1, 500);
254             }
255             while (i_ret <= 0);
256
257             i_ret = read (fd, p_buffer, i_len);
258         }
259         else
260         {
261             /* b_kfir ; work around a buggy poll() driver implementation */
262             while (((i_ret = read (fd, p_buffer, i_len)) == 0)
263                 && !p_access->b_die)
264             {
265                 msleep( INPUT_ERROR_SLEEP );
266             }
267         }
268     }
269     else
270 #endif /* WIN32 || UNDER_CE */
271         /* b_pace_control || WIN32 */
272         i_ret = read( fd, p_buffer, i_len );
273
274     if( i_ret < 0 )
275     {
276         switch (errno)
277         {
278             case EINTR:
279             case EAGAIN:
280                 break;
281
282             default:
283                 msg_Err (p_access, "read failed (%s)", strerror (errno));
284                 intf_UserFatal (p_access, VLC_FALSE, _("File reading failed"),
285                                 _("VLC could not read file \"%s\"."),
286                                 strerror (errno));
287         }
288
289         /* Delay a bit to avoid consuming all the CPU. This is particularly
290          * useful when reading from an unconnected FIFO. */
291         msleep( INPUT_ERROR_SLEEP );
292     }
293
294     p_sys->i_nb_reads++;
295
296 #ifdef HAVE_SYS_STAT_H
297     if( p_access->info.i_size != 0 &&
298         (p_sys->i_nb_reads % INPUT_FSTAT_NB_READS) == 0 )
299     {
300         struct stat st;
301
302         if ((fstat (fd, &st) == 0)
303          && (p_access->info.i_size != st.st_size))
304         {
305             p_access->info.i_size = st.st_size;
306             p_access->info.i_update |= INPUT_UPDATE_SIZE;
307         }
308     }
309 #endif
310
311     if( i_ret > 0 )
312         p_access->info.i_pos += i_ret;
313     else if( i_ret == 0 )
314         p_access->info.b_eof = VLC_TRUE;
315
316     return i_ret;
317 }
318
319 /*****************************************************************************
320  * Seek: seek to a specific location in a file
321  *****************************************************************************/
322 static int Seek (access_t *p_access, int64_t i_pos)
323 {
324     if (i_pos > p_access->info.i_size)
325     {
326         msg_Err (p_access, "seeking too far");
327         i_pos = p_access->info.i_size;
328     }
329     else if (i_pos < 0)
330     {
331         msg_Err (p_access, "seeking too early");
332         i_pos = 0;
333     }
334
335     p_access->info.i_pos = i_pos;
336     p_access->info.b_eof = VLC_FALSE;
337
338     /* Determine which file we need to access */
339     lseek (p_access->p_sys->fd, i_pos, SEEK_SET);
340     return VLC_SUCCESS;
341 }
342
343 /*****************************************************************************
344  * Control:
345  *****************************************************************************/
346 static int Control( access_t *p_access, int i_query, va_list args )
347 {
348     access_sys_t *p_sys = p_access->p_sys;
349     vlc_bool_t   *pb_bool;
350     int          *pi_int;
351     int64_t      *pi_64;
352
353     switch( i_query )
354     {
355         /* */
356         case ACCESS_CAN_SEEK:
357         case ACCESS_CAN_FASTSEEK:
358             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
359             *pb_bool = p_sys->b_seekable;
360             break;
361
362         case ACCESS_CAN_PAUSE:
363         case ACCESS_CAN_CONTROL_PACE:
364             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
365             *pb_bool = p_sys->b_pace_control;
366             break;
367
368         /* */
369         case ACCESS_GET_MTU:
370             pi_int = (int*)va_arg( args, int * );
371             *pi_int = 0;
372             break;
373
374         case ACCESS_GET_PTS_DELAY:
375             pi_64 = (int64_t*)va_arg( args, int64_t * );
376             *pi_64 = var_GetInteger( p_access, "file-caching" ) * I64C(1000);
377             break;
378
379         /* */
380         case ACCESS_SET_PAUSE_STATE:
381             /* Nothing to do */
382             break;
383
384         case ACCESS_GET_TITLE_INFO:
385         case ACCESS_SET_TITLE:
386         case ACCESS_SET_SEEKPOINT:
387         case ACCESS_SET_PRIVATE_ID_STATE:
388         case ACCESS_GET_META:
389             return VLC_EGENERIC;
390
391         default:
392             msg_Warn( p_access, "unimplemented query in control" );
393             return VLC_EGENERIC;
394
395     }
396     return VLC_SUCCESS;
397 }
398
399
400 static char *expand_path (const access_t *p_access, const char *path)
401 {
402     if (strncmp (path, "~/", 2) == 0)
403     {
404         char *res;
405
406          // TODO: we should also support the ~cmassiot/ syntax
407          if (asprintf (&res, "%s/%s", p_access->p_libvlc->psz_homedir, path + 2) == -1)
408              return NULL;
409          return res;
410     }
411
412 #if defined(WIN32)
413     if (!strcasecmp (p_access->psz_access, "file")
414       && ('/' == path[0]) && path[1] && (':' == path[2]) && ('/' == path[3]))
415         // Explorer can open path such as file:/C:/ or file:///C:/
416         // hence remove leading / if found
417         return strdup (path + 1);
418 #endif
419
420     return strdup (path);
421 }
422
423
424 /*****************************************************************************
425  * open_file: Opens a specific file
426  *****************************************************************************/
427 static int open_file (access_t *p_access, const char *psz_name)
428 {
429     char *path = expand_path (p_access, psz_name);
430
431 #ifdef UNDER_CE
432     p_sys->fd = utf8_fopen( path, "rb" );
433     if ( !p_sys->fd )
434     {
435         msg_Err( p_access, "cannot open file %s", psz_name );
436         intf_UserFatal( p_access, VLC_FALSE, _("File reading failed"), 
437                         _("VLC could not open file \"%s\"."), psz_name );
438         free (path);
439         return VLC_EGENERIC;
440     }
441
442     fseek( p_sys->fd, 0, SEEK_END );
443     p_access->info.i_size = ftell( p_sys->fd );
444     p_access->info.i_update |= INPUT_UPDATE_SIZE;
445     fseek( p_sys->fd, 0, SEEK_SET );
446 #else
447     int fd = utf8_open (path, O_RDONLY | O_NONBLOCK /* O_LARGEFILE*/, 0666);
448     if (fd == -1)
449     {
450         msg_Err (p_access, "cannot open file %s (%s)", psz_name,
451                  strerror (errno));
452         intf_UserFatal (p_access, VLC_FALSE, _("File reading failed"), 
453                         _("VLC could not open file \"%s\" (%s)."),
454                         psz_name, strerror (errno));
455         return -1;
456     }
457
458 # if defined(HAVE_FCNTL_H) && defined(F_FDAHEAD) && defined(F_NOCACHE)
459     /* We'd rather use any available memory for reading ahead
460      * than for caching what we've already seen/heard */
461     fcntl (fd, F_RDAHEAD, 1);
462     fcntl (fd, F_NOCACHE, 1);
463 # endif
464 #endif
465
466     return fd;
467 }