]> git.sesse.net Git - vlc/blob - src/playlist/loadsave.c
* src/playlist/loadsave.c: doxygenization
[vlc] / src / playlist / loadsave.c
1 /*****************************************************************************
2  * loadsave.c : Playlist loading / saving functions
3  *****************************************************************************
4  * Copyright (C) 1999-2004 VideoLAN
5  * $Id: loadsave.c,v 1.5 2004/01/12 21:22:23 hartman Exp $
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23 #include <stdlib.h>                                      /* free(), strtol() */
24 #include <stdio.h>                                              /* sprintf() */
25 #include <string.h>                                            /* strerror() */
26
27 #include <vlc/vlc.h>
28 #include <vlc/vout.h>
29 #include <vlc/sout.h>
30
31 #include "stream_control.h"
32 #include "input_ext-intf.h"
33
34 #include "vlc_playlist.h"
35
36 #define PLAYLIST_FILE_HEADER  "# vlc playlist file version 0.5"
37
38
39 /**
40  * Import a playlist file
41  *
42  * Import a certain playlist file into the playlist
43  * \param p_playlist the playlist to which the new items will be added
44  * \param psz_filename the name of the playlistfile to import
45  * \return 0 on succes
46  */
47 int playlist_Import( playlist_t * p_playlist, const char *psz_filename )
48 {
49     playlist_item_t *p_item;
50     char *psz_uri;
51     int i_id;
52
53     msg_Dbg( p_playlist, "clearing playlist");
54
55     /* Create our "fake" playlist item */
56     playlist_Clear( p_playlist );
57
58
59     psz_uri = (char *)malloc(sizeof(char)*strlen(psz_filename) + 17 );
60     sprintf( psz_uri, "file/playlist://%s", psz_filename);
61
62     i_id = playlist_Add( p_playlist, psz_uri, psz_uri,
63                   PLAYLIST_INSERT | PLAYLIST_GO , PLAYLIST_END);
64
65     p_item = playlist_GetItemById( p_playlist, i_id );
66     p_item->b_autodeletion = VLC_TRUE;
67
68     //p_playlist->i_index = 0;
69
70 /*
71  *     if( p_item )
72     {
73         p_playlist->p_input = input_CreateThread( p_playlist, p_item );
74     }
75     */
76
77     return VLC_SUCCESS;
78 }
79
80 /**
81  * Export a playlist to a file
82  *
83  * Export a playlist to a certain type of playlistfile
84  * \param p_playlist the playlist to export
85  * \param psz_filename the location where the exported file will be saved
86  * \param psz_type the type of playlist file to create.
87  * \return 0 on succes
88  */
89 int playlist_Export( playlist_t * p_playlist, const char *psz_filename ,
90                      const char *psz_type)
91 {
92     extern int errno;
93     module_t *p_module;
94     playlist_export_t *p_export;
95
96     msg_Info( p_playlist, "Saving playlist to file %s", psz_filename );
97
98     /* Prepare the playlist_export_t structure */
99     p_export = (playlist_export_t *)malloc( sizeof(playlist_export_t) );
100     if( !p_export)
101     {
102         msg_Err( p_playlist, "Out of memory");
103         return VLC_ENOMEM;
104     }
105     p_export->p_file = fopen( psz_filename, "wt" );
106     if( !p_export->p_file )
107     {
108         msg_Err( p_playlist , "Could not create playlist file %s (%s)"
109                 , psz_filename, strerror(errno) );
110         return -1;
111     }
112
113     p_playlist->p_private = (void *)p_export;
114     /* Lock the playlist */
115     vlc_mutex_lock( &p_playlist->object_lock );
116
117     /* And call the module ! All work is done now */
118     p_module = module_Need( p_playlist, "playlist export",  psz_type);
119     if( !p_module )
120     {
121         msg_Warn( p_playlist, "Failed to export playlist" );
122         vlc_mutex_unlock( &p_playlist->object_lock );
123         return VLC_ENOOBJ;
124     }
125     module_Unneed( p_playlist , p_module );
126
127     fclose( p_export->p_file );
128
129     vlc_mutex_unlock( &p_playlist->object_lock );
130
131     return VLC_SUCCESS;
132 }