Commit 62f99c5c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

playlist_Export simplifications

 - use automatic structure instead of heap
 - retain the playlist lock only while needed
parent 21e8f62d
...@@ -40,7 +40,7 @@ int playlist_Export( playlist_t * p_playlist, const char *psz_filename , ...@@ -40,7 +40,7 @@ int playlist_Export( playlist_t * p_playlist, const char *psz_filename ,
playlist_item_t *p_export_root,const char *psz_type ) playlist_item_t *p_export_root,const char *psz_type )
{ {
module_t *p_module; module_t *p_module;
playlist_export_t *p_export; playlist_export_t export;
if( p_export_root == NULL ) return VLC_EGENERIC; if( p_export_root == NULL ) return VLC_EGENERIC;
...@@ -48,48 +48,35 @@ int playlist_Export( playlist_t * p_playlist, const char *psz_filename , ...@@ -48,48 +48,35 @@ int playlist_Export( playlist_t * p_playlist, const char *psz_filename ,
p_export_root->p_input->psz_name, psz_filename ); p_export_root->p_input->psz_name, psz_filename );
/* Prepare the playlist_export_t structure */ /* Prepare the playlist_export_t structure */
p_export = (playlist_export_t *)malloc( sizeof(playlist_export_t) ); export.psz_filename = psz_filename ? strdup( psz_filename ) : NULL;
if( !p_export) export.p_file = utf8_fopen( psz_filename, "wt" );
return VLC_ENOMEM; if( export.p_file == NULL )
p_export->psz_filename = psz_filename ? strdup( psz_filename ) : NULL;
p_export->p_file = utf8_fopen( psz_filename, "wt" );
if( !p_export->p_file )
{ {
msg_Err( p_playlist , "could not create playlist file %s (%m)", msg_Err( p_playlist , "could not create playlist file %s (%m)",
psz_filename ); psz_filename );
free( p_export->psz_filename ); free( export.psz_filename );
free( p_export );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
p_export->p_root = p_export_root; export.p_root = p_export_root;
/* Lock the playlist */ playlist_Lock( p_playlist );
vlc_object_lock( p_playlist ); p_playlist->p_private = (void *)&export;
p_playlist->p_private = (void *)p_export;
/* And call the module ! All work is done now */ /* And call the module ! All work is done now */
int i_ret;
p_module = module_need( p_playlist, "playlist export", psz_type, true); p_module = module_need( p_playlist, "playlist export", psz_type, true);
if( !p_module ) if( !p_module )
{
msg_Warn( p_playlist, "exporting playlist failed" ); msg_Warn( p_playlist, "exporting playlist failed" );
i_ret = VLC_ENOOBJ;
}
else else
{
module_unneed( p_playlist , p_module ); module_unneed( p_playlist , p_module );
i_ret = VLC_SUCCESS; p_playlist->p_private = NULL;
} playlist_Unlock( p_playlist );
/* Clean up */ /* Clean up */
fclose( p_export->p_file ); fclose( export.p_file );
free( p_export->psz_filename ); free( export.psz_filename );
free( p_export );
p_playlist->p_private = NULL;
vlc_object_unlock( p_playlist );
return i_ret; return p_module ? VLC_SUCCESS : VLC_ENOOBJ;
} }
int playlist_Import( playlist_t *p_playlist, const char *psz_file ) int playlist_Import( playlist_t *p_playlist, const char *psz_file )
......
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