1 /*****************************************************************************
2 * loadsave.c : Playlist loading / saving functions
3 *****************************************************************************
4 * Copyright (C) 1999-2004 VLC authors and VideoLAN
7 * Authors: Samuel Hocevar <sam@zoy.org>
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.
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.
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 *****************************************************************************/
28 #include <sys/types.h>
32 #include <vlc_common.h>
33 #include <vlc_playlist.h>
34 #include <vlc_events.h>
35 #include "playlist_internal.h"
36 #include "config/configuration.h"
39 #include <vlc_modules.h>
41 int playlist_Export( playlist_t
* p_playlist
, const char *psz_filename
,
42 bool b_playlist
, const char *psz_type
)
44 playlist_export_t
*p_export
=
45 vlc_custom_create( p_playlist
, sizeof( *p_export
), "playlist export" );
46 if( unlikely(p_export
== NULL
) )
49 msg_Dbg( p_export
, "saving %s to file %s",
50 b_playlist
? "playlist" : "media library", psz_filename
);
52 int ret
= VLC_EGENERIC
;
54 /* Prepare the playlist_export_t structure */
55 p_export
->base_url
= vlc_path2uri( psz_filename
, NULL
);
56 p_export
->p_file
= vlc_fopen( psz_filename
, "wt" );
57 if( p_export
->p_file
== NULL
)
59 msg_Err( p_export
, "could not create playlist file %s: %s",
60 psz_filename
, vlc_strerror_c(errno
) );
66 /* And call the module ! All work is done now */
67 playlist_Lock( p_playlist
);
68 p_export
->p_root
= b_playlist
? p_playlist
->p_playing
69 : p_playlist
->p_media_library
;
71 p_module
= module_need( p_export
, "playlist export", psz_type
, true );
72 playlist_Unlock( p_playlist
);
74 if( p_module
!= NULL
)
76 module_unneed( p_export
, p_module
);
77 if( !ferror( p_export
->p_file
) )
80 msg_Err( p_playlist
, "could not write playlist file: %s",
81 vlc_strerror_c(errno
) );
84 msg_Err( p_playlist
, "could not export playlist" );
85 fclose( p_export
->p_file
);
87 free( p_export
->base_url
);
88 vlc_object_release( p_export
);
92 int playlist_Import( playlist_t
*p_playlist
, const char *psz_file
)
94 input_item_t
*p_input
;
95 char *psz_uri
= vlc_path2uri( psz_file
, NULL
);
100 p_input
= input_item_New( psz_uri
, psz_file
);
103 playlist_AddInput( p_playlist
, p_input
, false, true );
105 vlc_object_t
*dummy
= vlc_object_create( p_playlist
, sizeof (*dummy
) );
106 var_Create( dummy
, "meta-file", VLC_VAR_VOID
);
108 int ret
= input_Read( dummy
, p_input
);
110 vlc_object_release( dummy
);
114 /*****************************************************************************
115 * A subitem has been added to the Media Library (Event Callback)
116 *****************************************************************************/
117 static void input_item_subitem_tree_added( const vlc_event_t
* p_event
,
120 playlist_t
*p_playlist
= user_data
;
121 input_item_node_t
*p_root
=
122 p_event
->u
.input_item_subitem_tree_added
.p_root
;
125 playlist_InsertInputItemTree ( p_playlist
, p_playlist
->p_media_library
,
130 int playlist_MLLoad( playlist_t
*p_playlist
)
132 char *psz_datadir
= config_GetUserDir( VLC_DATA_DIR
);
133 if( !psz_datadir
) /* XXX: This should never happen */
135 msg_Err( p_playlist
, "no data directory, cannot load media library") ;
140 if( asprintf( &psz_file
, "%s" DIR_SEP
"ml.xspf", psz_datadir
) == -1 )
143 if( psz_file
== NULL
)
146 /* lousy check for media library file */
148 if( vlc_stat( psz_file
, &st
) )
154 char *psz_uri
= vlc_path2uri( psz_file
, "file/xspf-open" );
156 if( psz_uri
== NULL
)
159 input_item_t
*p_input
= input_item_New( psz_uri
, _("Media Library") );
161 if( p_input
== NULL
)
164 vlc_event_attach( &p_input
->event_manager
, vlc_InputItemSubItemTreeAdded
,
165 input_item_subitem_tree_added
, p_playlist
);
167 vlc_object_t
*dummy
= vlc_object_create( p_playlist
, sizeof (*dummy
) );
168 var_Create( dummy
, "meta-file", VLC_VAR_VOID
);
169 input_Read( dummy
, p_input
);
170 vlc_object_release( dummy
);
172 vlc_event_detach( &p_input
->event_manager
, vlc_InputItemSubItemTreeAdded
,
173 input_item_subitem_tree_added
, p_playlist
);
174 input_item_Release( p_input
);
179 int playlist_MLDump( playlist_t
*p_playlist
)
183 psz_temp
= config_GetUserDir( VLC_DATA_DIR
);
185 if( !psz_temp
) /* XXX: This should never happen */
187 msg_Err( p_playlist
, "no data directory, cannot save media library") ;
191 char psz_dirname
[ strlen( psz_temp
) + sizeof( DIR_SEP
"ml.xspf")];
192 strcpy( psz_dirname
, psz_temp
);
194 if( config_CreateDir( (vlc_object_t
*)p_playlist
, psz_dirname
) )
199 strcat( psz_dirname
, DIR_SEP
"ml.xspf" );
201 if ( asprintf( &psz_temp
, "%s.tmp%"PRIu32
, psz_dirname
, (uint32_t)getpid() ) < 1 )
204 int i_ret
= playlist_Export( p_playlist
, psz_temp
, false, "export-xspf" );
205 if ( i_ret
!= VLC_SUCCESS
)
207 vlc_unlink( psz_temp
);
212 i_ret
= vlc_rename( psz_temp
, psz_dirname
);
216 msg_Err( p_playlist
, "could not rename %s.tmp: %s",
217 psz_dirname
, vlc_strerror_c(errno
) );