]> git.sesse.net Git - vlc/blob - modules/demux/playlist/pls.c
* Stringreview !!!
[vlc] / modules / demux / playlist / pls.c
1 /*****************************************************************************
2  * pls.c : PLS playlist format import
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id: pls.c,v 1.2 2004/01/25 20:05:29 hartman Exp $
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <stdlib.h>                                      /* malloc(), free() */
29
30 #include <vlc/vlc.h>
31 #include <vlc/intf.h>
32
33 #include <errno.h>                                                 /* ENOMEM */
34 #include "playlist.h"
35
36 struct demux_sys_t
37 {
38     char *psz_prefix;
39 };
40
41 /*****************************************************************************
42  * Local prototypes
43  *****************************************************************************/
44 static int Demux( demux_t *p_demux);
45 static int Control( demux_t *p_demux, int i_query, va_list args );
46
47 /*****************************************************************************
48  * Import_PLS: main import function
49  *****************************************************************************/
50 int Import_PLS( vlc_object_t *p_this )
51 {
52     demux_t *p_demux = (demux_t *)p_this;
53
54     uint8_t *p_peek;
55     char    *psz_ext;
56
57     if( stream_Peek( p_demux->s , &p_peek, 7 ) < 7 )
58     {
59         msg_Err( p_demux, "cannot peek" );
60         return VLC_EGENERIC;
61     }
62     psz_ext = strrchr ( p_demux->psz_path, '.' );
63
64     if( !strncasecmp( p_peek, "[playlist]", 10 ) )
65     {
66         ;
67     }
68     else if( ( psz_ext && !strcasecmp( psz_ext, ".pls") ) ||
69              ( p_demux->psz_demux && !strcmp(p_demux->psz_demux, "pls") ) )
70     {
71         ;
72     }
73     else
74     {
75         msg_Warn(p_demux, "pls import module discarded");
76         return VLC_EGENERIC;
77         
78     }
79     msg_Dbg( p_demux, "found valid PLS playlist file");
80
81     p_demux->pf_control = Control;
82     p_demux->pf_demux = Demux;
83     p_demux->p_sys = malloc( sizeof(demux_sys_t) );
84     if( p_demux->p_sys == NULL )
85     {
86         msg_Err( p_demux, "Out of memory" );
87         return VLC_ENOMEM;
88     }
89     p_demux->p_sys->psz_prefix = FindPrefix( p_demux );
90
91     return VLC_SUCCESS;
92 }
93
94 /*****************************************************************************
95  * Deactivate: frees unused data
96  *****************************************************************************/
97 void Close_PLS( vlc_object_t *p_this )
98 {
99     demux_t *p_demux = (demux_t *)p_this;
100     if( p_demux->p_sys->psz_prefix )
101     {
102         free( p_demux->p_sys->psz_prefix );
103     }
104     free( p_demux->p_sys );
105 }
106
107 static int Demux( demux_t *p_demux )
108 {
109     mtime_t        i_duration = -1;
110     char          *psz_name = NULL;    
111     char          *psz_line;
112     char          *psz_mrl = NULL;
113     char          *psz_key;
114     char          *psz_value;
115     playlist_t    *p_playlist;
116     int            i_position;
117     int            i_item = -1;
118     int            i_new_item = 0;
119     int            i_key_length;
120
121     p_playlist = (playlist_t *) vlc_object_find( p_demux, VLC_OBJECT_PLAYLIST,
122                                                  FIND_PARENT );
123     if( !p_playlist )
124     {
125         msg_Err( p_demux, "can't find playlist" );
126         return -1;
127     }
128
129     p_playlist->pp_items[p_playlist->i_index]->b_autodeletion = VLC_TRUE;
130     i_position = p_playlist->i_index + 1;
131     while( ( psz_line = stream_ReadLine( p_demux->s ) ) )
132     {
133         if( !strncasecmp( psz_line, "[playlist]", sizeof("[playlist]")-1 ) )
134         {
135             free( psz_line );
136             continue;
137         }
138         psz_key = psz_line;
139         psz_value = strchr( psz_line, '=' );
140         if( psz_value )
141         {
142             *psz_value='\0';
143             psz_value++;
144         }
145         else
146         {
147             msg_Warn( p_demux, "invalid line in pls file" );
148             free( psz_line );
149             continue;
150         }
151         if( !strcasecmp( psz_key, "version" ) )
152         {
153             msg_Dbg( p_demux, "pls file version: %s", psz_value );
154             free( psz_line );
155             continue;
156         }
157         /* find the number part of of file1, title1 or length1 etc */
158         i_key_length = strlen( psz_key );
159         if( i_key_length >= 5 ) /* file1 type case */
160         {
161             i_new_item = atoi( psz_key + 4 );
162             if( i_new_item == 0 && i_key_length >= 6 ) /* title1 type case */
163             {
164                 i_new_item = atoi( psz_key + 5 );
165                 if( i_new_item == 0 && i_key_length >= 7 ) /* length1 type case */
166                 {
167                     i_new_item = atoi( psz_key + 6 );
168                 }
169             }
170         }
171         if( i_new_item == 0 )
172         {
173             msg_Warn( p_demux, "couldn't find number of items" );
174             free( psz_line );
175             continue;
176         }
177         if( i_item == -1 )
178         {
179             i_item = i_new_item;
180         }
181         /* we found a new item, insert the previous */
182         if( i_item != i_new_item )
183         {
184             if( psz_mrl )
185             {
186                 playlist_Add( p_playlist, psz_mrl, psz_name,
187                               PLAYLIST_INSERT, i_position );
188                 if( i_duration != -1 )
189                 {
190                     playlist_SetDuration( p_playlist, i_position, i_duration );
191                 }
192                 i_position++;
193                 free( psz_mrl );
194                 psz_mrl = NULL;
195             }
196             else
197             {
198                 msg_Warn( p_demux, "no file= part found for item %d", i_item );
199             }
200             if( psz_name )
201             {
202                 free( psz_name );
203                 psz_name = NULL;
204             }
205             i_duration = -1;
206             i_item = i_new_item;
207             i_new_item = 0;
208         }
209         if( !strncasecmp( psz_key, "file", sizeof("file") -1 ) )
210         {
211             psz_mrl = ProcessMRL( psz_value, p_demux->p_sys->psz_prefix );
212         }
213         else if( !strncasecmp( psz_key, "title", sizeof("title") -1 ) )
214         {
215             psz_name = strdup( psz_value );
216         }
217         else if( !strncasecmp( psz_key, "length", sizeof("length") -1 ) )
218         {
219             i_duration = atoi( psz_value );
220             if( i_duration != -1 )
221             {
222                 i_duration *= 1000000;
223             }
224         }
225         else
226         {
227             msg_Warn( p_demux, "unknown key found in pls file: %s", psz_key );
228         }
229         free( psz_line );
230     }
231     /* Add last object */
232     if( psz_mrl )
233     {
234         playlist_Add( p_playlist, psz_mrl, psz_name,
235                       PLAYLIST_INSERT, i_position );
236         if( i_duration != -1 )
237         {
238                     playlist_SetDuration( p_playlist, i_position, i_duration );
239         }
240         i_position++;
241         free( psz_mrl );
242         psz_mrl = NULL;
243     }
244     else
245     {
246         msg_Warn( p_demux, "no file= part found for item %d", i_item );
247     }
248     if( psz_name )
249     {
250         free( psz_name );
251         psz_name = NULL;
252     }
253
254     vlc_object_release( p_playlist );
255     return VLC_SUCCESS;
256 }
257
258 static int Control( demux_t *p_demux, int i_query, va_list args )
259 {
260     return VLC_EGENERIC;
261 }