]> git.sesse.net Git - vlc/blob - modules/demux/playlist/pls.c
Use new API for M3U demuxer
[vlc] / modules / demux / playlist / pls.c
1 /*****************************************************************************
2  * pls.c : PLS playlist format import
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id$
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/input.h>
32 #include <vlc/intf.h>
33
34 #include <errno.h>                                                 /* ENOMEM */
35 #include "playlist.h"
36
37 struct demux_sys_t
38 {
39     char *psz_prefix;
40 };
41
42 /*****************************************************************************
43  * Local prototypes
44  *****************************************************************************/
45 static int Demux( demux_t *p_demux);
46 static int Control( demux_t *p_demux, int i_query, va_list args );
47
48 /*****************************************************************************
49  * Import_PLS: main import function
50  *****************************************************************************/
51 int Import_PLS( vlc_object_t *p_this )
52 {
53     demux_t *p_demux = (demux_t *)p_this;
54
55     uint8_t *p_peek;
56     char    *psz_ext;
57
58     if( stream_Peek( p_demux->s , &p_peek, 7 ) < 7 )
59     {
60         msg_Err( p_demux, "cannot peek" );
61         return VLC_EGENERIC;
62     }
63     psz_ext = strrchr ( p_demux->psz_path, '.' );
64
65     if( !strncasecmp( p_peek, "[playlist]", 10 ) )
66     {
67         ;
68     }
69     else if( ( psz_ext && !strcasecmp( psz_ext, ".pls") ) ||
70              ( p_demux->psz_demux && !strcmp(p_demux->psz_demux, "pls") ) )
71     {
72         ;
73     }
74     else
75     {
76         msg_Warn(p_demux, "pls import module discarded");
77         return VLC_EGENERIC;
78         
79     }
80     msg_Dbg( p_demux, "found valid PLS playlist file");
81
82     p_demux->pf_control = Control;
83     p_demux->pf_demux = Demux;
84     p_demux->p_sys = malloc( sizeof(demux_sys_t) );
85     if( p_demux->p_sys == NULL )
86     {
87         msg_Err( p_demux, "Out of memory" );
88         return VLC_ENOMEM;
89     }
90     p_demux->p_sys->psz_prefix = FindPrefix( p_demux );
91
92     return VLC_SUCCESS;
93 }
94
95 /*****************************************************************************
96  * Deactivate: frees unused data
97  *****************************************************************************/
98 void Close_PLS( vlc_object_t *p_this )
99 {
100     demux_t *p_demux = (demux_t *)p_this;
101     if( p_demux->p_sys->psz_prefix )
102     {
103         free( p_demux->p_sys->psz_prefix );
104     }
105     free( p_demux->p_sys );
106 }
107
108 static int Demux( demux_t *p_demux )
109 {
110     mtime_t        i_duration = -1;
111     char          *psz_name = NULL;    
112     char          *psz_line;
113     char          *psz_mrl = NULL;
114     char          *psz_key;
115     char          *psz_value;
116     playlist_t    *p_playlist;
117     int            i_position;
118     int            i_item = -1;
119     int            i_new_item = 0;
120     int            i_key_length;
121
122     p_playlist = (playlist_t *) vlc_object_find( p_demux, VLC_OBJECT_PLAYLIST,
123                                                  FIND_PARENT );
124     if( !p_playlist )
125     {
126         msg_Err( p_demux, "can't find playlist" );
127         return -1;
128     }
129
130     p_playlist->pp_items[p_playlist->i_index]->b_autodeletion = VLC_TRUE;
131     i_position = p_playlist->i_index + 1;
132     while( ( psz_line = stream_ReadLine( p_demux->s ) ) )
133     {
134         if( !strncasecmp( psz_line, "[playlist]", sizeof("[playlist]")-1 ) )
135         {
136             free( psz_line );
137             continue;
138         }
139         psz_key = psz_line;
140         psz_value = strchr( psz_line, '=' );
141         if( psz_value )
142         {
143             *psz_value='\0';
144             psz_value++;
145         }
146         else
147         {
148             msg_Warn( p_demux, "invalid line in pls file" );
149             free( psz_line );
150             continue;
151         }
152         if( !strcasecmp( psz_key, "version" ) )
153         {
154             msg_Dbg( p_demux, "pls file version: %s", psz_value );
155             free( psz_line );
156             continue;
157         }
158         /* find the number part of of file1, title1 or length1 etc */
159         i_key_length = strlen( psz_key );
160         if( i_key_length >= 5 ) /* file1 type case */
161         {
162             i_new_item = atoi( psz_key + 4 );
163             if( i_new_item == 0 && i_key_length >= 6 ) /* title1 type case */
164             {
165                 i_new_item = atoi( psz_key + 5 );
166                 if( i_new_item == 0 && i_key_length >= 7 ) /* length1 type case */
167                 {
168                     i_new_item = atoi( psz_key + 6 );
169                 }
170             }
171         }
172         if( i_new_item == 0 )
173         {
174             msg_Warn( p_demux, "couldn't find number of items" );
175             free( psz_line );
176             continue;
177         }
178         if( i_item == -1 )
179         {
180             i_item = i_new_item;
181         }
182         /* we found a new item, insert the previous */
183         if( i_item != i_new_item )
184         {
185             if( psz_mrl )
186             {
187                 playlist_Add( p_playlist, psz_mrl, psz_name,
188                               PLAYLIST_INSERT, i_position );
189                 if( i_duration != -1 )
190                 {
191                     //playlist_SetDuration( p_playlist, i_position, i_duration );
192                 }
193                 i_position++;
194                 free( psz_mrl );
195                 psz_mrl = NULL;
196             }
197             else
198             {
199                 msg_Warn( p_demux, "no file= part found for item %d", i_item );
200             }
201             if( psz_name )
202             {
203                 free( psz_name );
204                 psz_name = NULL;
205             }
206             i_duration = -1;
207             i_item = i_new_item;
208             i_new_item = 0;
209         }
210         if( !strncasecmp( psz_key, "file", sizeof("file") -1 ) )
211         {
212             psz_mrl = ProcessMRL( psz_value, p_demux->p_sys->psz_prefix );
213         }
214         else if( !strncasecmp( psz_key, "title", sizeof("title") -1 ) )
215         {
216             psz_name = strdup( psz_value );
217         }
218         else if( !strncasecmp( psz_key, "length", sizeof("length") -1 ) )
219         {
220             i_duration = atoi( psz_value );
221             if( i_duration != -1 )
222             {
223                 i_duration *= 1000000;
224             }
225         }
226         else
227         {
228             msg_Warn( p_demux, "unknown key found in pls file: %s", psz_key );
229         }
230         free( psz_line );
231     }
232     /* Add last object */
233     if( psz_mrl )
234     {
235         playlist_Add( p_playlist, psz_mrl, psz_name,
236                       PLAYLIST_INSERT, i_position );
237         if( i_duration != -1 )
238         {
239             //playlist_SetDuration( p_playlist, i_position, i_duration );
240         }
241         i_position++;
242         free( psz_mrl );
243         psz_mrl = NULL;
244     }
245     else
246     {
247         msg_Warn( p_demux, "no file= part found for item %d", i_item );
248     }
249     if( psz_name )
250     {
251         free( psz_name );
252         psz_name = NULL;
253     }
254
255     vlc_object_release( p_playlist );
256     return VLC_SUCCESS;
257 }
258
259 static int Control( demux_t *p_demux, int i_query, va_list args )
260 {
261     return VLC_EGENERIC;
262 }