]> git.sesse.net Git - vlc/blob - src/playlist/loadsave.c
playlist_MLLoad: format library URI correctly
[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 #include <errno.h>
39
40 int playlist_Export( playlist_t * p_playlist, const char *psz_filename ,
41                      playlist_item_t *p_export_root,const char *psz_type )
42 {
43     module_t *p_module;
44     playlist_export_t export;
45
46     if( p_export_root == NULL ) return VLC_EGENERIC;
47
48     msg_Dbg( p_playlist, "saving %s to file %s",
49                     p_export_root->p_input->psz_name, psz_filename );
50
51     /* Prepare the playlist_export_t structure */
52     export.psz_filename = psz_filename ? strdup( psz_filename ) : NULL;
53     export.p_file = utf8_fopen( psz_filename, "wt" );
54     if( export.p_file == NULL )
55     {
56         msg_Err( p_playlist , "could not create playlist file %s (%m)",
57                  psz_filename );
58         free( export.psz_filename );
59         return VLC_EGENERIC;
60     }
61
62     export.p_root = p_export_root;
63
64     playlist_Lock( p_playlist );
65     p_playlist->p_private = (void *)&export;
66
67     /* And call the module ! All work is done now */
68     p_module = module_need( p_playlist, "playlist export", psz_type, true);
69     if( !p_module )
70         msg_Warn( p_playlist, "exporting playlist failed" );
71     else
72         module_unneed( p_playlist , p_module );
73     p_playlist->p_private = NULL;
74     playlist_Unlock( p_playlist );
75
76     /* Clean up */
77     fclose( export.p_file );
78     free( export.psz_filename );
79
80     return p_module ? VLC_SUCCESS : VLC_ENOOBJ;
81 }
82
83 int playlist_Import( playlist_t *p_playlist, const char *psz_file )
84 {
85     input_item_t *p_input;
86     const char *const psz_option = "meta-file";
87     char *psz_uri = make_URI( psz_file );
88
89     if( psz_uri == NULL )
90         return VLC_EGENERIC;
91
92     p_input = input_item_NewExt( p_playlist, psz_uri, psz_file,
93                                  1, &psz_option, VLC_INPUT_OPTION_TRUSTED, -1 );
94     free( psz_uri );
95
96     playlist_AddInput( p_playlist, p_input, PLAYLIST_APPEND, PLAYLIST_END,
97                        true, false );
98     return input_Read( p_playlist, p_input, true );
99 }
100
101 /*****************************************************************************
102  * A subitem has been added to the Media Library (Event Callback)
103  *****************************************************************************/
104 static void input_item_subitem_added( const vlc_event_t * p_event,
105                                       void * user_data )
106 {
107     playlist_t *p_playlist = user_data;
108     input_item_t *p_item = p_event->u.input_item_subitem_added.p_new_child;
109
110     /* playlist_AddInput() can fail, but we have no way to report that ..
111      * Any way when it has failed, either the playlist is dying, either OOM */
112     playlist_AddInput( p_playlist, p_item, PLAYLIST_APPEND, PLAYLIST_END,
113             false, pl_Unlocked );
114 }
115
116 int playlist_MLLoad( playlist_t *p_playlist )
117 {
118     char *psz_datadir;
119     char *psz_uri = NULL;
120     input_item_t *p_input;
121
122     if( !config_GetInt( p_playlist, "media-library") )
123         return VLC_SUCCESS;
124
125     psz_datadir = config_GetUserDataDir();
126
127     if( !psz_datadir ) /* XXX: This should never happen */
128     {
129         msg_Err( p_playlist, "no data directory, cannot load media library") ;
130         return VLC_EGENERIC;
131     }
132
133     if( asprintf( &psz_uri, "%s" DIR_SEP "ml.xspf", psz_datadir ) != -1 )
134     {   /* loosy check for media library file */
135         struct stat st;
136         int ret = utf8_stat( psz_uri , &st );
137         free( psz_uri );
138         if( ret )
139         {
140             free( psz_datadir );
141             return VLC_EGENERIC;
142         }
143     }
144
145     psz_uri = make_URI( psz_datadir );
146     free( psz_datadir );
147     psz_datadir = psz_uri;
148     if( psz_datadir == NULL )
149         return VLC_EGENERIC;
150
151     if( asprintf( &psz_uri, "%s/ml.xspf", psz_datadir ) == -1 )
152         psz_uri = NULL;
153     free( psz_datadir );
154     psz_datadir = NULL;
155     if( psz_uri == NULL )
156         return VLC_ENOMEM;
157
158     const char *const options[] = { "meta-file", "demux=xspf-open" };
159     /* that option has to be cleaned in input_item_subitem_added() */
160     /* vlc_gc_decref() in the same function */
161     p_input = input_item_NewExt( p_playlist, psz_uri, _("Media Library"),
162                                  2, options, VLC_INPUT_OPTION_TRUSTED, -1 );
163     free( psz_uri );
164     if( p_input == NULL )
165         return VLC_EGENERIC;
166
167     PL_LOCK;
168     if( p_playlist->p_ml_onelevel->p_input )
169         vlc_gc_decref( p_playlist->p_ml_onelevel->p_input );
170     if( p_playlist->p_ml_category->p_input )
171         vlc_gc_decref( p_playlist->p_ml_category->p_input );
172
173     p_playlist->p_ml_onelevel->p_input =
174     p_playlist->p_ml_category->p_input = p_input;
175     /* We save the input at two different place, incref */
176     vlc_gc_incref( p_input );
177     vlc_gc_incref( p_input );
178
179     vlc_event_attach( &p_input->event_manager, vlc_InputItemSubItemAdded,
180                         input_item_subitem_added, p_playlist );
181
182     pl_priv(p_playlist)->b_doing_ml = true;
183     PL_UNLOCK;
184
185     stats_TimerStart( p_playlist, "ML Load", STATS_TIMER_ML_LOAD );
186     input_Read( p_playlist, p_input, true );
187     stats_TimerStop( p_playlist,STATS_TIMER_ML_LOAD );
188
189     PL_LOCK;
190     pl_priv(p_playlist)->b_doing_ml = false;
191     PL_UNLOCK;
192
193     vlc_event_detach( &p_input->event_manager, vlc_InputItemSubItemAdded,
194                         input_item_subitem_added, p_playlist );
195
196     vlc_gc_decref( p_input );
197     return VLC_SUCCESS;
198 }
199
200 int playlist_MLDump( playlist_t *p_playlist )
201 {
202     char *psz_datadir;
203
204     if( !config_GetInt( p_playlist, "media-library") )
205         return VLC_SUCCESS;
206
207     psz_datadir = config_GetUserDataDir();
208
209     if( !psz_datadir ) /* XXX: This should never happen */
210     {
211         msg_Err( p_playlist, "no data directory, cannot save media library") ;
212         return VLC_EGENERIC;
213     }
214
215     char psz_dirname[ strlen( psz_datadir ) + sizeof( DIR_SEP "ml.xspf")];
216     strcpy( psz_dirname, psz_datadir );
217     free( psz_datadir );
218     if( config_CreateDir( (vlc_object_t *)p_playlist, psz_dirname ) )
219     {
220         return VLC_EGENERIC;
221     }
222
223     strcat( psz_dirname, DIR_SEP "ml.xspf" );
224
225     stats_TimerStart( p_playlist, "ML Dump", STATS_TIMER_ML_DUMP );
226     playlist_Export( p_playlist, psz_dirname, p_playlist->p_ml_category,
227                      "export-xspf" );
228     stats_TimerStop( p_playlist, STATS_TIMER_ML_DUMP );
229
230     return VLC_SUCCESS;
231 }