Commit 8d82c480 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

directory: Make sure we can exit and interrupt the access.

parent 06e5daea
...@@ -135,8 +135,8 @@ static int Demux( demux_t *p_demux ); ...@@ -135,8 +135,8 @@ static int Demux( demux_t *p_demux );
static int DemuxControl( demux_t *p_demux, int i_query, va_list args ); static int DemuxControl( demux_t *p_demux, int i_query, va_list args );
static int ReadDir( playlist_t *, const char *psz_name, int i_mode, static int ReadDir( access_t *, playlist_t *, const char *psz_name,
playlist_item_t *, input_item_t *, int i_mode, playlist_item_t *, input_item_t *,
DIR *handle, stat_list_t *stats ); DIR *handle, stat_list_t *stats );
static DIR *OpenDir (vlc_object_t *obj, const char *psz_name); static DIR *OpenDir (vlc_object_t *obj, const char *psz_name);
...@@ -256,7 +256,8 @@ static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len) ...@@ -256,7 +256,8 @@ static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len)
p_item_in_category = playlist_ItemToNode( p_playlist, p_current, p_item_in_category = playlist_ItemToNode( p_playlist, p_current,
false ); false );
ReadDir( p_playlist, psz_name, i_mode, p_item_in_category, ReadDir( p_access, p_playlist, psz_name, i_mode,
p_item_in_category,
p_current_input, (DIR *)p_access->p_sys, NULL ); p_current_input, (DIR *)p_access->p_sys, NULL );
playlist_Signal( p_playlist ); playlist_Signal( p_playlist );
...@@ -364,7 +365,8 @@ struct stat_list_t ...@@ -364,7 +365,8 @@ struct stat_list_t
/***************************************************************************** /*****************************************************************************
* ReadDir: read a directory and add its content to the list * ReadDir: read a directory and add its content to the list
*****************************************************************************/ *****************************************************************************/
static int ReadDir( playlist_t *p_playlist, const char *psz_name, static int ReadDir( access_t *p_access, playlist_t *p_playlist,
const char *psz_name,
int i_mode, int i_mode,
playlist_item_t *p_parent_category, playlist_item_t *p_parent_category,
input_item_t *p_current_input, input_item_t *p_current_input,
...@@ -374,6 +376,9 @@ static int ReadDir( playlist_t *p_playlist, const char *psz_name, ...@@ -374,6 +376,9 @@ static int ReadDir( playlist_t *p_playlist, const char *psz_name,
int i_dir_content, i, i_return = VLC_SUCCESS; int i_dir_content, i, i_return = VLC_SUCCESS;
playlist_item_t *p_node; playlist_item_t *p_node;
if( !vlc_object_alive( p_access ) )
return VLC_EGENERIC;
if( !vlc_object_alive( p_playlist ) ) if( !vlc_object_alive( p_playlist ) )
return VLC_EGENERIC; return VLC_EGENERIC;
...@@ -491,7 +496,7 @@ static int ReadDir( playlist_t *p_playlist, const char *psz_name, ...@@ -491,7 +496,7 @@ static int ReadDir( playlist_t *p_playlist, const char *psz_name,
/* If we had the parent in category, the it is now node. /* If we had the parent in category, the it is now node.
* Else, we still don't have */ * Else, we still don't have */
i_return = ReadDir( p_playlist, psz_uri , MODE_EXPAND, i_return = ReadDir( p_access, p_playlist, psz_uri , MODE_EXPAND,
p_parent_category ? p_node : NULL, p_parent_category ? p_node : NULL,
p_current_input, subdir, &stself ); p_current_input, subdir, &stself );
closedir (subdir); closedir (subdir);
......
...@@ -452,13 +452,10 @@ int playlist_BothAddInput( playlist_t *p_playlist, ...@@ -452,13 +452,10 @@ int playlist_BothAddInput( playlist_t *p_playlist,
int i_top; int i_top;
assert( p_input ); assert( p_input );
PL_LOCK_IF( !b_locked );
if( !vlc_object_alive( p_playlist ) ) if( !vlc_object_alive( p_playlist ) )
{
PL_UNLOCK_IF( !b_locked );
return VLC_EGENERIC; return VLC_EGENERIC;
}
PL_LOCK_IF( !b_locked );
/* Add to category */ /* Add to category */
p_item_cat = playlist_ItemNewFromInput( p_playlist, p_input ); p_item_cat = playlist_ItemNewFromInput( p_playlist, p_input );
......
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