]> git.sesse.net Git - vlc/blob - src/playlist/loadsave.c
cd51e82ea96d1739d0b2769ea6bd109336adcaea
[vlc] / src / playlist / loadsave.c
1 /*****************************************************************************
2  * loadsave.c : Playlist loading / saving functions
3  *****************************************************************************
4  * Copyright (C) 1999-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
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 General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
26
27 #include <vlc_common.h>
28 #include <vlc_playlist.h>
29 #include <vlc_events.h>
30 #include "playlist_internal.h"
31 #include "config/configuration.h"
32 #include <vlc_charset.h>
33 #include <vlc_url.h>
34
35 #include <sys/types.h>
36 #include <sys/stat.h>
37 #include <unistd.h>
38
39 int playlist_Export( playlist_t * p_playlist, const char *psz_filename,
40                      playlist_item_t *p_export_root, const char *psz_type )
41 {
42     if( p_export_root == NULL ) return VLC_EGENERIC;
43
44     playlist_export_t *p_export =
45         vlc_custom_create( p_playlist, sizeof( *p_export ), VLC_OBJECT_GENERIC,
46                            "playlist export" );
47     if( !p_export )
48         return VLC_ENOMEM;
49
50     vlc_object_attach( p_export, p_playlist );
51     msg_Dbg( p_export, "saving %s to file %s",
52              p_export_root->p_input->psz_name, psz_filename );
53
54     int ret = VLC_EGENERIC;
55
56     /* Prepare the playlist_export_t structure */
57     p_export->p_root = p_export_root;
58     p_export->psz_filename = psz_filename;
59     p_export->p_file = utf8_fopen( psz_filename, "wt" );
60     if( p_export->p_file == NULL )
61         msg_Err( p_export, "could not create playlist file %s (%m)",
62                  psz_filename );
63     else
64     {
65         module_t *p_module;
66
67         /* And call the module ! All work is done now */
68         playlist_Lock( p_playlist );
69         p_module = module_need( p_export, "playlist export", psz_type, true );
70         playlist_Unlock( p_playlist );
71
72         if( p_module == NULL )
73             msg_Err( p_playlist, "could not export playlist" );
74         else
75         {
76             module_unneed( p_export, p_module );
77             ret = VLC_SUCCESS;
78         }
79         fclose( p_export->p_file );
80    }
81    vlc_object_release( p_export );
82    return ret;
83 }
84
85 int playlist_Import( playlist_t *p_playlist, const char *psz_file )
86 {
87     input_item_t *p_input;
88     const char *const psz_option = "meta-file";
89     char *psz_uri = make_URI( psz_file );
90
91     if( psz_uri == NULL )
92         return VLC_EGENERIC;
93
94     p_input = input_item_NewExt( p_playlist, psz_uri, psz_file,
95                                  1, &psz_option, VLC_INPUT_OPTION_TRUSTED, -1 );
96     free( psz_uri );
97
98     playlist_AddInput( p_playlist, p_input, PLAYLIST_APPEND, PLAYLIST_END,
99                        true, false );
100     return input_Read( p_playlist, p_input );
101 }
102
103 /*****************************************************************************
104  * A subitem has been added to the Media Library (Event Callback)
105  *****************************************************************************/
106 static void input_item_subitem_added( const vlc_event_t * p_event,
107                                       void * user_data )
108 {
109     playlist_t *p_playlist = user_data;
110     input_item_t *p_item = p_event->u.input_item_subitem_added.p_new_child;
111
112     /* playlist_AddInput() can fail, but we have no way to report that ..
113      * Any way when it has failed, either the playlist is dying, either OOM */
114     playlist_AddInput( p_playlist, p_item, PLAYLIST_APPEND, PLAYLIST_END,
115             false, pl_Unlocked );
116 }
117
118 int playlist_MLLoad( playlist_t *p_playlist )
119 {
120     char *psz_datadir;
121     char *psz_uri = NULL;
122     input_item_t *p_input;
123
124     if( !config_GetInt( p_playlist, "media-library") )
125         return VLC_SUCCESS;
126
127     psz_datadir = config_GetUserDir( VLC_DATA_DIR );
128
129     if( !psz_datadir ) /* XXX: This should never happen */
130     {
131         msg_Err( p_playlist, "no data directory, cannot load media library") ;
132         return VLC_EGENERIC;
133     }
134
135     if( asprintf( &psz_uri, "%s" DIR_SEP "ml.xspf", psz_datadir ) != -1 )
136     {   /* loosy check for media library file */
137         struct stat st;
138         int ret = utf8_stat( psz_uri , &st );
139         free( psz_uri );
140         if( ret )
141         {
142             free( psz_datadir );
143             return VLC_EGENERIC;
144         }
145     }
146
147     psz_uri = make_URI( psz_datadir );
148     free( psz_datadir );
149     psz_datadir = psz_uri;
150     if( psz_datadir == NULL )
151         return VLC_EGENERIC;
152
153     /* Force XSPF demux (psz_datadir was a path, now it is a file URI) */
154     if( asprintf( &psz_uri, "file/xspf-open%s/ml.xspf", psz_datadir+4 ) == -1 )
155         psz_uri = NULL;
156     free( psz_datadir );
157     psz_datadir = NULL;
158     if( psz_uri == NULL )
159         return VLC_ENOMEM;
160
161     const char *const options[1] = { "meta-file", };
162     /* that option has to be cleaned in input_item_subitem_added() */
163     /* vlc_gc_decref() in the same function */
164     p_input = input_item_NewExt( p_playlist, psz_uri, _("Media Library"),
165                                  1, options, VLC_INPUT_OPTION_TRUSTED, -1 );
166     free( psz_uri );
167     if( p_input == NULL )
168         return VLC_EGENERIC;
169
170     PL_LOCK;
171     if( p_playlist->p_ml_onelevel->p_input )
172         vlc_gc_decref( p_playlist->p_ml_onelevel->p_input );
173     if( p_playlist->p_ml_category->p_input )
174         vlc_gc_decref( p_playlist->p_ml_category->p_input );
175
176     p_playlist->p_ml_onelevel->p_input =
177     p_playlist->p_ml_category->p_input = p_input;
178     /* We save the input at two different place, incref */
179     vlc_gc_incref( p_input );
180     vlc_gc_incref( p_input );
181
182     vlc_event_attach( &p_input->event_manager, vlc_InputItemSubItemAdded,
183                         input_item_subitem_added, p_playlist );
184
185     pl_priv(p_playlist)->b_doing_ml = true;
186     PL_UNLOCK;
187
188     stats_TimerStart( p_playlist, "ML Load", STATS_TIMER_ML_LOAD );
189     input_Read( p_playlist, p_input );
190     stats_TimerStop( p_playlist,STATS_TIMER_ML_LOAD );
191
192     PL_LOCK;
193     pl_priv(p_playlist)->b_doing_ml = false;
194     PL_UNLOCK;
195
196     vlc_event_detach( &p_input->event_manager, vlc_InputItemSubItemAdded,
197                         input_item_subitem_added, p_playlist );
198
199     vlc_gc_decref( p_input );
200     return VLC_SUCCESS;
201 }
202
203 int playlist_MLDump( playlist_t *p_playlist )
204 {
205     char *psz_datadir;
206
207     if( !config_GetInt( p_playlist, "media-library") )
208         return VLC_SUCCESS;
209
210     psz_datadir = config_GetUserDir( VLC_DATA_DIR );
211
212     if( !psz_datadir ) /* XXX: This should never happen */
213     {
214         msg_Err( p_playlist, "no data directory, cannot save media library") ;
215         return VLC_EGENERIC;
216     }
217
218     char psz_dirname[ strlen( psz_datadir ) + sizeof( DIR_SEP "ml.xspf")];
219     strcpy( psz_dirname, psz_datadir );
220     free( psz_datadir );
221     if( config_CreateDir( (vlc_object_t *)p_playlist, psz_dirname ) )
222     {
223         return VLC_EGENERIC;
224     }
225
226     strcat( psz_dirname, DIR_SEP "ml.xspf" );
227
228     stats_TimerStart( p_playlist, "ML Dump", STATS_TIMER_ML_DUMP );
229     playlist_Export( p_playlist, psz_dirname, p_playlist->p_ml_category,
230                      "export-xspf" );
231     stats_TimerStop( p_playlist, STATS_TIMER_ML_DUMP );
232
233     return VLC_SUCCESS;
234 }