]> git.sesse.net Git - vlc/blob - modules/access/gnomevfs.c
Remove most stray semi-colons in module descriptions
[vlc] / modules / access / gnomevfs.c
1 /*****************************************************************************
2  * gnomevfs.c: GnomeVFS input
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Benjamin Pracht <bigben -AT- videolan -DOT- org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_plugin.h>
33 #include <vlc_access.h>
34
35 #include <libgnomevfs/gnome-vfs.h>
36
37
38 #include <vlc_charset.h>
39 #include "vlc_url.h"
40
41 /*****************************************************************************
42  * Module descriptor
43  *****************************************************************************/
44 static int  Open ( vlc_object_t * );
45 static void Close( vlc_object_t * );
46
47 #define CACHING_TEXT N_("Caching value in ms")
48 #define CACHING_LONGTEXT N_( \
49     "Caching value for GnomeVFS streams."\
50     "This value should be set in milliseconds." )
51
52 vlc_module_begin ()
53     set_description( N_("GnomeVFS input") )
54     set_shortname( "GnomeVFS" )
55     set_category( CAT_INPUT )
56     set_subcategory( SUBCAT_INPUT_ACCESS )
57     add_integer( "gnomevfs-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT, CACHING_LONGTEXT, true )
58     set_capability( "access", 10 )
59     add_shortcut( "gnomevfs" )
60     set_callbacks( Open, Close )
61 vlc_module_end ()
62
63
64 /*****************************************************************************
65  * Exported prototypes
66  *****************************************************************************/
67 static int  Seek( access_t *, int64_t );
68 static int  Read( access_t *, uint8_t *, int );
69 static int  Control( access_t *, int, va_list );
70
71 struct access_sys_t
72 {
73     unsigned int i_nb_reads;
74     char *psz_name;
75
76     GnomeVFSHandle *p_handle;
77     GnomeVFSFileInfo *p_file_info;
78
79     bool b_local;
80     bool b_seekable;
81     bool b_pace_control;
82 };
83
84 /*****************************************************************************
85  * Open: open the file
86  *****************************************************************************/
87 static int Open( vlc_object_t *p_this )
88 {
89     access_t       *p_access = (access_t*)p_this;
90     access_sys_t   *p_sys = NULL;
91     char           *psz_name = NULL;
92     char           *psz = NULL;
93     char           *psz_uri = NULL;
94     char           *psz_unescaped = NULL;
95     char           *psz_expand_tilde = NULL;
96     GnomeVFSURI    *p_uri = NULL;
97     GnomeVFSResult  i_ret;
98     GnomeVFSHandle *p_handle = NULL;
99     if( !(gnome_vfs_init()) )
100     {
101         msg_Warn( p_access, "couldn't initilize GnomeVFS" );
102         return VLC_EGENERIC;
103     }
104
105     /* FIXME
106        Since GnomeVFS segfaults on exit if we initialize it without trying to
107        open a file with a valid protocol, try to open at least file:// */
108     gnome_vfs_open( &p_handle, "file://", 5 );
109
110     STANDARD_READ_ACCESS_INIT;
111
112     p_sys->p_handle = p_handle;
113     p_sys->i_nb_reads = 0;
114     p_sys->b_pace_control = true;
115
116     if( strcmp( "gnomevfs", p_access->psz_access ) &&
117                                             *(p_access->psz_access) != '\0')
118     {
119         psz_name = malloc( strlen( p_access->psz_access ) +
120                                             strlen( p_access->psz_path ) + 4 );
121         sprintf( psz_name, "%s://%s", p_access->psz_access,
122                                                     p_access->psz_path );
123     }
124     else
125     {
126         psz_name = strdup( p_access->psz_path );
127     }
128     psz = ToLocale( psz_name );
129     psz_expand_tilde = gnome_vfs_expand_initial_tilde( psz );
130     LocaleFree( psz );
131
132     psz_unescaped = gnome_vfs_make_uri_from_shell_arg( psz_expand_tilde );
133
134    /* gnome_vfs_make_uri_from_shell_arg will only escape the uri
135       for relative paths. So we need to use
136       gnome_vfs_escape_host_and_path_string in other cases. */
137
138     if( !strcmp( psz_unescaped, psz_expand_tilde ) )
139     {
140     /* Now we are sure that we have a complete valid unescaped URI beginning
141        with the protocol. We want to escape it. However, gnomevfs's escaping
142        function are broken and will try to escape characters un the username/
143        password field. So parse the URI with vlc_UrlParse ans only escape the
144        path */
145
146         vlc_url_t url;
147         char *psz_escaped_path;
148         char *psz_path_begin;
149
150         vlc_UrlParse( &url, psz_unescaped, 0 );
151         psz_escaped_path = gnome_vfs_escape_path_string( url.psz_path );
152
153         if( psz_escaped_path )
154         {
155     /* Now let's reconstruct a valid URI from all that stuff */
156             psz_path_begin = psz_unescaped + strlen( psz_unescaped )
157                                            - strlen( url.psz_path );
158             *psz_path_begin = '\0';
159             psz_uri = malloc( strlen( psz_unescaped ) +
160                                         strlen( psz_escaped_path ) + 1 );
161             sprintf( psz_uri, "%s%s",psz_unescaped, psz_escaped_path );
162
163             g_free( psz_escaped_path );
164             g_free( psz_unescaped );
165         }
166         else
167         {
168             psz_uri = psz_unescaped;
169         }
170     }
171     else
172     {
173         psz_uri = psz_unescaped;
174     }
175
176     g_free( psz_expand_tilde );
177     p_uri = gnome_vfs_uri_new( psz_uri );
178     if( p_uri )
179     {
180         p_sys->p_file_info = gnome_vfs_file_info_new();
181         i_ret = gnome_vfs_get_file_info_uri( p_uri,
182                                                 p_sys->p_file_info, 8 );
183
184         if( i_ret )
185         {
186             msg_Warn( p_access, "cannot get file info for uri %s (%s)",
187                                 psz_uri, gnome_vfs_result_to_string( i_ret ) );
188             gnome_vfs_file_info_unref( p_sys->p_file_info );
189             gnome_vfs_uri_unref( p_uri);
190             free( p_sys );
191             g_free( psz_uri );
192             free( psz_name );
193             return VLC_EGENERIC;
194         }
195     }
196     else
197     {
198         msg_Warn( p_access, "cannot parse MRL %s or unsupported protocol", psz_name );
199         g_free( psz_uri );
200         free( p_sys );
201         free( psz_name );
202         return VLC_EGENERIC;
203     }
204
205     msg_Dbg( p_access, "opening file `%s'", psz_uri );
206     i_ret = gnome_vfs_open( &(p_sys->p_handle), psz_uri, 5 );
207     if( i_ret )
208     {
209         msg_Warn( p_access, "cannot open file %s: %s", psz_uri,
210                                 gnome_vfs_result_to_string( i_ret ) );
211
212         gnome_vfs_uri_unref( p_uri);
213         g_free( psz_uri );
214         free( p_sys );
215         free( psz_name );
216         return VLC_EGENERIC;
217     }
218
219     if (GNOME_VFS_FILE_INFO_LOCAL( p_sys->p_file_info ))
220     {
221         p_sys->b_local = true;
222     }
223
224     if( p_sys->p_file_info->type == GNOME_VFS_FILE_TYPE_REGULAR ||
225         p_sys->p_file_info->type == GNOME_VFS_FILE_TYPE_CHARACTER_DEVICE ||
226         p_sys->p_file_info->type == GNOME_VFS_FILE_TYPE_BLOCK_DEVICE )
227     {
228         p_sys->b_seekable = true;
229         p_access->info.i_size = (int64_t)(p_sys->p_file_info->size);
230     }
231     else if( p_sys->p_file_info->type == GNOME_VFS_FILE_TYPE_FIFO
232               || p_sys->p_file_info->type == GNOME_VFS_FILE_TYPE_SOCKET )
233     {
234         p_sys->b_seekable = false;
235     }
236     else
237     {
238         msg_Err( p_access, "unknown file type for `%s'", psz_name );
239         return VLC_EGENERIC;
240     }
241
242     if( p_sys->b_seekable && !p_access->info.i_size )
243     {
244         /* FIXME that's bad because all others access will be probed */
245         msg_Warn( p_access, "file %s is empty, aborting", psz_name );
246         gnome_vfs_file_info_unref( p_sys->p_file_info );
247         gnome_vfs_uri_unref( p_uri);
248         free( p_sys );
249         g_free( psz_uri );
250         free( psz_name );
251         return VLC_EGENERIC;
252     }
253
254     /* Update default_pts to a suitable value for file access */
255     var_Create( p_access, "gnomevfs-caching",
256                                     VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
257
258     g_free( psz_uri );
259     p_sys->psz_name = psz_name;
260     gnome_vfs_uri_unref( p_uri);
261     return VLC_SUCCESS;
262 }
263
264 /*****************************************************************************
265  * Close: close the target
266  *****************************************************************************/
267 static void Close( vlc_object_t * p_this )
268 {
269     access_t     *p_access = (access_t*)p_this;
270     access_sys_t *p_sys = p_access->p_sys;
271     int i_result;
272
273     i_result = gnome_vfs_close( p_sys->p_handle );
274     if( i_result )
275     {
276          msg_Err( p_access, "cannot close %s: %s", p_sys->psz_name,
277                                 gnome_vfs_result_to_string( i_result ) );
278     }
279
280     gnome_vfs_file_info_unref( p_sys->p_file_info );
281
282     free( p_sys->psz_name );
283     free( p_sys );
284 }
285
286 /*****************************************************************************
287  * Read: standard read on a file descriptor.
288  *****************************************************************************/
289 static int Read( access_t *p_access, uint8_t *p_buffer, int i_len )
290 {
291     access_sys_t *p_sys = p_access->p_sys;
292     GnomeVFSFileSize i_read_len;
293     int i_ret;
294
295     i_ret = gnome_vfs_read( p_sys->p_handle, p_buffer,
296                                   (GnomeVFSFileSize)i_len, &i_read_len );
297     if( i_ret )
298     {
299         p_access->info.b_eof = true;
300         if( i_ret != GNOME_VFS_ERROR_EOF )
301         {
302             msg_Err( p_access, "read failed (%s)",
303                                     gnome_vfs_result_to_string( i_ret ) );
304         }
305     }
306     else
307     {
308         p_sys->i_nb_reads++;
309         if( p_access->info.i_size != 0 &&
310             (p_sys->i_nb_reads % INPUT_FSTAT_NB_READS) == 0 &&
311             p_sys->b_local )
312         {
313             gnome_vfs_file_info_clear( p_sys->p_file_info );
314             i_ret = gnome_vfs_get_file_info_from_handle( p_sys->p_handle,
315                                                 p_sys->p_file_info, 8 );
316             if( i_ret )
317             {
318                 msg_Warn( p_access, "couldn't get file properties again (%s)",
319                                         gnome_vfs_result_to_string( i_ret ) );
320             }
321             else
322             {
323                 p_access->info.i_size = (int64_t)(p_sys->p_file_info->size);
324             }
325         }
326     }
327
328     p_access->info.i_pos += (int64_t)i_read_len;
329
330     /* Some Acces (http) never return EOF and loop on the file */
331     if( p_access->info.i_pos > p_access->info.i_size )
332     {
333         p_access->info.b_eof = true;
334         return 0;
335     }
336     return (int)i_read_len;
337 }
338
339 /*****************************************************************************
340  * Seek: seek to a specific location in a file
341  *****************************************************************************/
342 static int Seek( access_t *p_access, int64_t i_pos )
343 {
344     access_sys_t *p_sys = p_access->p_sys;
345     int i_ret;
346
347     i_ret = gnome_vfs_seek( p_sys->p_handle, GNOME_VFS_SEEK_START,
348                                             (GnomeVFSFileOffset)i_pos);
349     if ( !i_ret )
350     {
351         p_access->info.i_pos = i_pos;
352     }
353     else
354     {
355         GnomeVFSFileSize i_offset;
356         msg_Err( p_access, "cannot seek (%s)",
357                                         gnome_vfs_result_to_string( i_ret ) );
358         i_ret = gnome_vfs_tell( p_sys->p_handle, &i_offset );
359         if( !i_ret )
360         {
361             msg_Err( p_access, "cannot tell the current position (%s)",
362                                         gnome_vfs_result_to_string( i_ret ) );
363             return VLC_EGENERIC;
364         }
365     }
366     /* Reset eof */
367     p_access->info.b_eof = false;
368
369     /* FIXME */
370     return VLC_SUCCESS;
371 }
372
373 /*****************************************************************************
374  * Control:
375  *****************************************************************************/
376 static int Control( access_t *p_access, int i_query, va_list args )
377 {
378     access_sys_t *p_sys = p_access->p_sys;
379     bool   *pb_bool;
380     int          *pi_int;
381     int64_t      *pi_64;
382
383     switch( i_query )
384     {
385         /* */
386         case ACCESS_CAN_SEEK:
387         case ACCESS_CAN_FASTSEEK:
388             pb_bool = (bool*)va_arg( args, bool* );
389             *pb_bool = p_sys->b_seekable;
390             break;
391
392         case ACCESS_CAN_PAUSE:
393         case ACCESS_CAN_CONTROL_PACE:
394             pb_bool = (bool*)va_arg( args, bool* );
395             *pb_bool = p_sys->b_pace_control;
396             break;
397
398         /* */
399         case ACCESS_GET_MTU:
400             pi_int = (int*)va_arg( args, int * );
401             *pi_int = 0;
402             break;
403
404         case ACCESS_GET_PTS_DELAY:
405             pi_64 = (int64_t*)va_arg( args, int64_t * );
406             *pi_64 = var_GetInteger( p_access,
407                                         "gnomevfs-caching" ) * INT64_C(1000);
408             break;
409
410         /* */
411         case ACCESS_SET_PAUSE_STATE:
412             /* Nothing to do */
413             break;
414
415         case ACCESS_GET_TITLE_INFO:
416         case ACCESS_SET_TITLE:
417         case ACCESS_SET_SEEKPOINT:
418         case ACCESS_SET_PRIVATE_ID_STATE:
419         case ACCESS_GET_META:
420         case ACCESS_GET_CONTENT_TYPE:
421             return VLC_EGENERIC;
422
423         default:
424             msg_Warn( p_access, "unimplemented query in control" );
425             return VLC_EGENERIC;
426
427     }
428     return VLC_SUCCESS;
429 }