]> git.sesse.net Git - vlc/blob - modules/access/file.c
file: network file extra caching for Win32
[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-2007 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 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35 #include <vlc_input.h>
36 #include <vlc_access.h>
37 #include <vlc_dialog.h>
38
39 #include <assert.h>
40 #include <errno.h>
41 #ifdef HAVE_SYS_TYPES_H
42 #   include <sys/types.h>
43 #endif
44 #ifdef HAVE_SYS_STAT_H
45 #   include <sys/stat.h>
46 #endif
47 #ifdef HAVE_FCNTL_H
48 #   include <fcntl.h>
49 #endif
50 #if defined (__linux__)
51 #   include <sys/vfs.h>
52 #   include <linux/magic.h>
53 #   define HAVE_FSTATFS 1
54 #elif defined (HAVE_SYS_MOUNT_H)
55 #   include <sys/mount.h>
56 #   define HAVE_FSTATFS 1
57 #endif
58
59 #if defined( WIN32 )
60 #   include <io.h>
61 #   include <ctype.h>
62 #   include <shlwapi.h>
63 #else
64 #   include <unistd.h>
65 #   include <poll.h>
66 #endif
67
68 #if defined( WIN32 ) && !defined( UNDER_CE )
69 #   ifdef lseek
70 #      undef lseek
71 #   endif
72 #   define lseek _lseeki64
73 #elif defined( UNDER_CE )
74 /* FIXME the commandline on wince is a mess */
75 # define dup(a) -1
76 #endif
77
78 #include <vlc_charset.h>
79
80 /*****************************************************************************
81  * Module descriptor
82  *****************************************************************************/
83 static int  Open ( vlc_object_t * );
84 static void Close( vlc_object_t * );
85
86 #define CACHING_TEXT N_("Caching value (ms)")
87 #define CACHING_LONGTEXT N_( \
88     "Caching value for files, in milliseconds." )
89
90 #define NETWORK_CACHING_TEXT N_("Extra network caching value (ms)")
91 #define NETWORK_CACHING_LONGTEXT N_( \
92     "Supplementary caching value for remote files, in milliseconds." )
93
94 vlc_module_begin ()
95     set_description( N_("File input") )
96     set_shortname( N_("File") )
97     set_category( CAT_INPUT )
98     set_subcategory( SUBCAT_INPUT_ACCESS )
99     add_integer( "file-caching", DEFAULT_PTS_DELAY / 1000, NULL,
100                  CACHING_TEXT, CACHING_LONGTEXT, true )
101         change_safe()
102     add_integer( "network-caching", 3 * DEFAULT_PTS_DELAY / 1000, NULL,
103                  NETWORK_CACHING_TEXT, NETWORK_CACHING_LONGTEXT, true )
104         change_safe()
105     add_obsolete_string( "file-cat" )
106     set_capability( "access", 50 )
107     add_shortcut( "file" )
108     add_shortcut( "fd" )
109     add_shortcut( "stream" )
110     set_callbacks( Open, Close )
111 vlc_module_end ()
112
113
114 /*****************************************************************************
115  * Exported prototypes
116  *****************************************************************************/
117 static int  Seek( access_t *, int64_t );
118 static int  NoSeek( access_t *, int64_t );
119 static ssize_t Read( access_t *, uint8_t *, size_t );
120 static int  Control( access_t *, int, va_list );
121
122 static int  open_file( access_t *, const char * );
123
124 struct access_sys_t
125 {
126     unsigned int i_nb_reads;
127
128     int fd;
129
130     /* */
131     unsigned caching;
132     bool b_pace_control;
133 };
134
135 static bool IsRemote (int fd)
136 {
137 #ifdef HAVE_FSTATFS
138     struct statfs stf;
139
140     if (fstatfs (fd, &stf))
141         return false;
142
143 #if defined(MNT_LOCAL)
144     return !(stf.f_flags & MNT_LOCAL);
145
146 #elif defined (__linux__)
147     switch (stf.f_type)
148     {
149         case AFS_SUPER_MAGIC:
150         case CODA_SUPER_MAGIC:
151         case NCP_SUPER_MAGIC:
152         case NFS_SUPER_MAGIC:
153         case SMB_SUPER_MAGIC:
154         case 0xFF534D42 /*CIFS_MAGIC_NUMBER*/:
155             return true;
156     }
157     return false;
158
159 #endif
160 #else /* !HAVE_FSTATFS */
161     (void)fd;
162     return false;
163
164 #endif
165 }
166
167
168 /*****************************************************************************
169  * Open: open the file
170  *****************************************************************************/
171 static int Open( vlc_object_t *p_this )
172 {
173     access_t     *p_access = (access_t*)p_this;
174     access_sys_t *p_sys;
175 #ifdef WIN32
176     wchar_t wpath[MAX_PATH+1];
177     bool is_remote = false;
178 #endif
179
180     STANDARD_READ_ACCESS_INIT;
181     p_sys->i_nb_reads = 0;
182     p_sys->b_pace_control = true;
183
184     /* Open file */
185     int fd = -1;
186
187     if (!strcasecmp (p_access->psz_access, "fd"))
188         fd = dup (atoi (p_access->psz_path));
189     else if (!strcmp (p_access->psz_path, "-"))
190         fd = dup (0);
191     else
192     {
193         msg_Dbg (p_access, "opening file `%s'", p_access->psz_path);
194         fd = open_file (p_access, p_access->psz_path);
195 #ifdef WIN32
196         if (MultiByteToWideChar (CP_UTF8, 0, p_access->psz_path, -1,
197                                  wpath, MAX_PATH)
198          && PathIsNetworkPathW (wpath))
199             is_remote = true;
200 # define IsRemote( fd ) ((void)fd, is_remote)
201 #endif
202     }
203     if (fd == -1)
204         goto error;
205
206 #ifdef HAVE_SYS_STAT_H
207     struct stat st;
208
209     if (fstat (fd, &st))
210     {
211         msg_Err (p_access, "failed to read (%m)");
212         goto error;
213     }
214     /* Directories can be opened and read from, but only readdir() knows
215      * how to parse the data. The directory plugin will do it. */
216     if (S_ISDIR (st.st_mode))
217     {
218         msg_Dbg (p_access, "ignoring directory");
219         goto error;
220     }
221     if (S_ISREG (st.st_mode))
222         p_access->info.i_size = st.st_size;
223     else if (!S_ISBLK (st.st_mode))
224     {
225         p_access->pf_seek = NoSeek;
226         p_sys->b_pace_control = strcasecmp (p_access->psz_access, "stream");
227     }
228 #else
229 # warning File size not known!
230 #endif
231
232     p_sys->caching = var_CreateGetInteger (p_access, "file-caching");
233     if (IsRemote(fd))
234         p_sys->caching += var_CreateGetInteger (p_access, "network-caching");
235
236     p_sys->fd = fd;
237     return VLC_SUCCESS;
238
239 error:
240     if (fd != -1)
241         close (fd);
242     free (p_sys);
243     return VLC_EGENERIC;
244 }
245
246 /*****************************************************************************
247  * Close: close the target
248  *****************************************************************************/
249 static void Close (vlc_object_t * p_this)
250 {
251     access_t     *p_access = (access_t*)p_this;
252     access_sys_t *p_sys = p_access->p_sys;
253
254     close (p_sys->fd);
255     free (p_sys);
256 }
257
258
259 #include <vlc_network.h>
260
261 /*****************************************************************************
262  * Read: standard read on a file descriptor.
263  *****************************************************************************/
264 static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len )
265 {
266     access_sys_t *p_sys = p_access->p_sys;
267     int fd = p_sys->fd;
268     ssize_t i_ret;
269
270 #ifndef WIN32
271     if (p_access->pf_seek == NoSeek)
272         i_ret = net_Read (p_access, fd, NULL, p_buffer, i_len, false);
273     else
274 #endif
275         i_ret = read (fd, p_buffer, i_len);
276
277     if( i_ret < 0 )
278     {
279         switch (errno)
280         {
281             case EINTR:
282             case EAGAIN:
283                 break;
284
285             default:
286                 msg_Err (p_access, "failed to read (%m)");
287                 dialog_Fatal (p_access, _("File reading failed"), "%s",
288                               _("VLC could not read the file."));
289                 p_access->info.b_eof = true;
290                 return 0;
291         }
292     }
293     else if( i_ret > 0 )
294         p_access->info.i_pos += i_ret;
295     else
296         p_access->info.b_eof = true;
297
298     p_sys->i_nb_reads++;
299
300 #ifdef HAVE_SYS_STAT_H
301     if ((p_access->info.i_size && !(p_sys->i_nb_reads % INPUT_FSTAT_NB_READS))
302      || (p_access->info.i_pos > p_access->info.i_size))
303     {
304         struct stat st;
305
306         if ((fstat (fd, &st) == 0)
307          && (p_access->info.i_size != st.st_size))
308         {
309             p_access->info.i_size = st.st_size;
310             p_access->info.i_update |= INPUT_UPDATE_SIZE;
311         }
312     }
313 #endif
314     return i_ret;
315 }
316
317
318 /*****************************************************************************
319  * Seek: seek to a specific location in a file
320  *****************************************************************************/
321 static int Seek (access_t *p_access, int64_t i_pos)
322 {
323     p_access->info.i_pos = i_pos;
324     p_access->info.b_eof = false;
325
326     lseek (p_access->p_sys->fd, i_pos, SEEK_SET);
327     return VLC_SUCCESS;
328 }
329
330 static int NoSeek (access_t *p_access, int64_t i_pos)
331 {
332     /* assert(0); ?? */
333     (void) p_access; (void) i_pos;
334     return VLC_EGENERIC;
335 }
336
337 /*****************************************************************************
338  * Control:
339  *****************************************************************************/
340 static int Control( access_t *p_access, int i_query, va_list args )
341 {
342     access_sys_t *p_sys = p_access->p_sys;
343     bool    *pb_bool;
344     int64_t *pi_64;
345
346     switch( i_query )
347     {
348         /* */
349         case ACCESS_CAN_SEEK:
350         case ACCESS_CAN_FASTSEEK:
351             pb_bool = (bool*)va_arg( args, bool* );
352             *pb_bool = (p_access->pf_seek != NoSeek);
353             break;
354
355         case ACCESS_CAN_PAUSE:
356         case ACCESS_CAN_CONTROL_PACE:
357             pb_bool = (bool*)va_arg( args, bool* );
358             *pb_bool = p_sys->b_pace_control;
359             break;
360
361         /* */
362         case ACCESS_GET_PTS_DELAY:
363             pi_64 = (int64_t*)va_arg( args, int64_t * );
364             *pi_64 = p_sys->caching * INT64_C(1000);
365             break;
366
367         /* */
368         case ACCESS_SET_PAUSE_STATE:
369             /* Nothing to do */
370             break;
371
372         case ACCESS_GET_TITLE_INFO:
373         case ACCESS_SET_TITLE:
374         case ACCESS_SET_SEEKPOINT:
375         case ACCESS_SET_PRIVATE_ID_STATE:
376         case ACCESS_GET_META:
377         case ACCESS_GET_PRIVATE_ID_STATE:
378         case ACCESS_GET_CONTENT_TYPE:
379             return VLC_EGENERIC;
380
381         default:
382             msg_Warn( p_access, "unimplemented query %d in control", i_query );
383             return VLC_EGENERIC;
384
385     }
386     return VLC_SUCCESS;
387 }
388
389 /*****************************************************************************
390  * open_file: Opens a specific file
391  *****************************************************************************/
392 static int open_file (access_t *p_access, const char *path)
393 {
394 #if defined(WIN32)
395     if (!strcasecmp (p_access->psz_access, "file")
396       && ('/' == path[0]) && isalpha (path[1])
397       && (':' == path[2]) && ('/' == path[3]))
398         /* Explorer can open path such as file:/C:/ or file:///C:/
399          * hence remove leading / if found */
400         path++;
401 #endif
402
403     int fd = utf8_open (path, O_RDONLY | O_NONBLOCK /* O_LARGEFILE*/, 0666);
404     if (fd == -1)
405     {
406         msg_Err (p_access, "cannot open file %s (%m)", path);
407         dialog_Fatal (p_access, _("File reading failed"),
408                       _("VLC could not open the file \"%s\"."), path);
409         return -1;
410     }
411
412 #if defined(HAVE_FCNTL)
413     /* We'd rather use any available memory for reading ahead
414      * than for caching what we've already seen/heard */
415 # if defined(F_RDAHEAD)
416     fcntl (fd, F_RDAHEAD, 1);
417 # endif
418 # if defined(F_NOCACHE)
419     fcntl (fd, F_NOCACHE, 1);
420 # endif
421 #endif
422
423     return fd;
424 }