]> git.sesse.net Git - vlc/blob - src/playlist/loadsave.c
A bit of headers cleanup
[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 #include <vlc/vlc.h>
24 #include <vlc_playlist.h>
25 #include "playlist_internal.h"
26 #include <vlc_charset.h>
27
28 #include <errno.h>
29
30 int playlist_Export( playlist_t * p_playlist, const char *psz_filename ,
31                      playlist_item_t *p_export_root,const char *psz_type )
32 {
33     module_t *p_module;
34     playlist_export_t *p_export;
35
36     if( p_export_root == NULL ) return VLC_EGENERIC;
37
38     msg_Info( p_playlist, "saving %s to file %s",
39                     p_export_root->p_input->psz_name, psz_filename );
40
41     /* Prepare the playlist_export_t structure */
42     p_export = (playlist_export_t *)malloc( sizeof(playlist_export_t) );
43     if( !p_export)
44     {
45         msg_Err( p_playlist, "out of memory" );
46         return VLC_ENOMEM;
47     }
48     p_export->psz_filename = NULL;
49     if ( psz_filename )
50         p_export->psz_filename = strdup( psz_filename );
51     p_export->p_file = utf8_fopen( psz_filename, "wt" );
52     if( !p_export->p_file )
53     {
54         msg_Err( p_playlist , "could not create playlist file %s"
55                  " (%s)", psz_filename, strerror(errno) );
56         return VLC_EGENERIC;
57     }
58
59     p_export->p_root = p_export_root;
60
61     /* Lock the playlist */
62     vlc_mutex_lock( &p_playlist->object_lock );
63     p_playlist->p_private = (void *)p_export;
64
65     /* And call the module ! All work is done now */
66     p_module = module_Need( p_playlist, "playlist export", psz_type, VLC_TRUE);
67     if( !p_module )
68     {
69         msg_Warn( p_playlist, "exporting playlist failed" );
70         vlc_mutex_unlock( &p_playlist->object_lock );
71         return VLC_ENOOBJ;
72     }
73     module_Unneed( p_playlist , p_module );
74
75     /* Clean up */
76     fclose( p_export->p_file );
77     if ( p_export->psz_filename )
78         free( p_export->psz_filename );
79     free ( p_export );
80     p_playlist->p_private = NULL;
81     vlc_mutex_unlock( &p_playlist->object_lock );
82
83     return VLC_SUCCESS;
84 }
85
86 int playlist_MLLoad( playlist_t *p_playlist )
87 {
88     char *psz_uri, *psz_homedir =p_playlist->p_libvlc->psz_homedir;
89     input_item_t *p_input;
90
91     if( !config_GetInt( p_playlist, "media-library") ) return VLC_SUCCESS;
92     if( !psz_homedir )
93     {
94         msg_Err( p_playlist, "no home directory, cannot load media library") ;
95         return VLC_EGENERIC;
96     }
97     asprintf( &psz_uri, "file/xspf-open://%s" DIR_SEP CONFIG_DIR DIR_SEP
98                         "ml.xsp", psz_homedir );
99
100     p_input = input_ItemNewExt( p_playlist, psz_uri,
101                                 _("Media Library"), 0, NULL, -1 );
102     p_playlist->p_ml_category->p_input = p_input;
103     p_playlist->p_ml_onelevel->p_input = p_input;
104
105     p_playlist->b_doing_ml = VLC_TRUE;
106     stats_TimerStart( p_playlist, "ML Load", STATS_TIMER_ML_LOAD );
107     input_Read( p_playlist, p_input, VLC_TRUE );
108     stats_TimerStop( p_playlist,STATS_TIMER_ML_LOAD );
109     p_playlist->b_doing_ml = VLC_FALSE;
110
111     free( psz_uri );
112     return VLC_SUCCESS;
113 }
114
115 int playlist_MLDump( playlist_t *p_playlist )
116 {
117     char *psz_uri, *psz_homedir =p_playlist->p_libvlc->psz_homedir;
118     if( !config_GetInt( p_playlist, "media-library") ) return VLC_SUCCESS;
119     if( !psz_homedir )
120     {
121         msg_Err( p_playlist, "no home directory, cannot load media library") ;
122         return VLC_EGENERIC;
123     }
124     asprintf( &psz_uri, "%s" DIR_SEP CONFIG_DIR DIR_SEP
125                         "ml.xsp",  psz_homedir );
126     stats_TimerStart( p_playlist, "ML Dump", STATS_TIMER_ML_DUMP );
127     playlist_Export( p_playlist, psz_uri, p_playlist->p_ml_category,
128                      "export-xspf" );
129     stats_TimerStop( p_playlist, STATS_TIMER_ML_DUMP );
130
131     free( psz_uri );
132     return VLC_SUCCESS;
133 }