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