Commit c20f0e81 authored by Rémi Denis-Courmont's avatar 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).
parent 579368d2
......@@ -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
......
......@@ -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 );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment