[vlc-commits] commit: access: add a separate field for local file paths ( Rémi Denis-Courmont )
git at videolan.org
git at videolan.org
Mon May 10 22:32:13 CEST 2010
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon May 10 22:55:06 2010 +0300| [c20f0e81f033223e2ec2066b5c9a9c10a2b97e6e] | committer: Rémi Denis-Courmont
access: add a separate field for local file paths
Access plugins are now responsible for selecting the correct
media location, either the URL-without-scheme form or the local file
path form. This will help solve weird bugs with the current file://
URL decode hack, e.g. it does not work for directory://.
Lets see if we also need this for access_demux plugins (normally,
they don't use files).
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c20f0e81f033223e2ec2066b5c9a9c10a2b97e6e
---
include/vlc_access.h | 4 ++--
src/input/access.c | 29 +++++++++++++++++++++++++----
2 files changed, 27 insertions(+), 6 deletions(-)
diff --git a/include/vlc_access.h b/include/vlc_access.h
index cc7a9c6..554f2f8 100644
--- a/include/vlc_access.h
+++ b/include/vlc_access.h
@@ -80,8 +80,8 @@ struct access_t
/* Access name (empty if non forced) */
char *psz_access;
- /* Access path/url/filename/.... */
- char *psz_path;
+ char *psz_path; /**< Location (URL with the scheme stripped) */
+ char *psz_filepath; /**< Local file path (if applicable) */
/* Access can fill this entry to force a demuxer
* XXX: fill it once you know for sure you will succeed
diff --git a/src/input/access.c b/src/input/access.c
index 9604751..82d27b5 100644
--- a/src/input/access.c
+++ b/src/input/access.c
@@ -27,13 +27,30 @@
#include "access.h"
#include <libvlc.h>
+#include <vlc_url.h>
+
+/* Decode URL (which has had its scheme stripped earlier) to a file path. */
+static char *get_path(const char *location)
+{
+ char *url, *path;
+
+ /* Appending "file://" is a bit hackish. But then again, we do not want
+ * to hard-code the list of schemes that use file paths in make_path().
+ */
+ if (asprintf(&url, "file://%s", location) == -1)
+ return NULL;
+
+ path = make_path (url);
+ free (url);
+ return path;
+}
/*****************************************************************************
* access_New:
*****************************************************************************/
access_t *__access_New( vlc_object_t *p_obj, input_thread_t *p_parent_input,
const char *psz_access, const char *psz_demux,
- const char *psz_path )
+ const char *psz_location )
{
access_t *p_access = vlc_custom_create( p_obj, sizeof (*p_access),
VLC_OBJECT_GENERIC, "access" );
@@ -42,15 +59,17 @@ access_t *__access_New( vlc_object_t *p_obj, input_thread_t *p_parent_input,
return NULL;
/* */
- msg_Dbg( p_obj, "creating access '%s' path='%s'",
- psz_access, psz_path );
p_access->p_input = p_parent_input;
- p_access->psz_path = strdup( psz_path );
p_access->psz_access = strdup( psz_access );
+ p_access->psz_path = strdup( psz_location );
+ p_access->psz_filepath = get_path( psz_location );
p_access->psz_demux = strdup( psz_demux );
+ msg_Dbg( p_obj, "creating access '%s' location='%s', path='%s'",
+ psz_access, psz_location, p_access->psz_filepath );
+
p_access->pf_read = NULL;
p_access->pf_block = NULL;
p_access->pf_seek = NULL;
@@ -68,6 +87,7 @@ access_t *__access_New( vlc_object_t *p_obj, input_thread_t *p_parent_input,
{
free( p_access->psz_access );
free( p_access->psz_path );
+ free( p_access->psz_filepath );
free( p_access->psz_demux );
vlc_object_release( p_access );
return NULL;
@@ -85,6 +105,7 @@ void access_Delete( access_t *p_access )
free( p_access->psz_access );
free( p_access->psz_path );
+ free( p_access->psz_filepath );
free( p_access->psz_demux );
vlc_object_release( p_access );
More information about the vlc-commits
mailing list