]> git.sesse.net Git - vlc/blob - modules/demux/playlist/m3u.c
Merge back branch 0.8.6-playlist-vlm to trunk.
[vlc] / modules / demux / playlist / m3u.c
1 /*****************************************************************************
2  * m3u.c : M3U playlist format import
3  *****************************************************************************
4  * Copyright (C) 2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Sigmund Augdal Helberg <dnumgis@videolan.org>
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, 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 #include "charset.h"
34
35 #include <errno.h>                                                 /* ENOMEM */
36 #include "playlist.h"
37
38 struct demux_sys_t
39 {
40     char *psz_prefix;
41 };
42
43 /*****************************************************************************
44  * Local prototypes
45  *****************************************************************************/
46 static int Demux( demux_t *p_demux);
47 static int Control( demux_t *p_demux, int i_query, va_list args );
48 static void parseEXTINF( char *psz_string, char **ppsz_artist, char **ppsz_name, int *pi_duration );
49
50 /*****************************************************************************
51  * Import_M3U: main import function
52  *****************************************************************************/
53 int E_(Import_M3U)( vlc_object_t *p_this )
54 {
55     demux_t *p_demux = (demux_t *)p_this;
56
57     uint8_t *p_peek;
58     char    *psz_ext;
59
60     if( stream_Peek( p_demux->s , &p_peek, 7 ) < 7 )
61     {
62         return VLC_EGENERIC;
63     }
64     psz_ext = strrchr ( p_demux->psz_path, '.' );
65
66     if( !strncmp( (char *)p_peek, "#EXTM3U", 7 ) )
67     {
68         ;
69     }
70     else if( ( psz_ext && !strcasecmp( psz_ext, ".m3u") ) ||
71              ( psz_ext && !strcasecmp( psz_ext, ".ram") ) ||
72              ( psz_ext && !strcasecmp( psz_ext, ".rm") ) ||
73              /* A .ram file can contain a single rtsp link */
74              ( p_demux->psz_demux && !strcmp(p_demux->psz_demux, "m3u") ) )
75     {
76         ;
77     }
78     else
79     {
80         return VLC_EGENERIC;
81     }
82     msg_Dbg( p_demux, "found valid M3U playlist file");
83
84     p_demux->pf_control = Control;
85     p_demux->pf_demux = Demux;
86     p_demux->p_sys = malloc( sizeof(demux_sys_t) );
87     if( p_demux->p_sys == NULL )
88     {
89         msg_Err( p_demux, "Out of memory" );
90         return VLC_ENOMEM;
91     }
92     p_demux->p_sys->psz_prefix = E_(FindPrefix)( p_demux );
93
94     return VLC_SUCCESS;
95 }
96
97 /*****************************************************************************
98  * Deactivate: frees unused data
99  *****************************************************************************/
100 void E_(Close_M3U)( vlc_object_t *p_this )
101 {
102     demux_t *p_demux = (demux_t *)p_this;
103
104     if( p_demux->p_sys->psz_prefix ) free( p_demux->p_sys->psz_prefix );
105     free( p_demux->p_sys );
106 }
107
108 static int Demux( demux_t *p_demux )
109 {
110     char       *psz_line;
111     char       *psz_name = NULL;
112     char       *psz_artist = NULL;
113     int        i_parsed_duration = 0;
114     mtime_t    i_duration = -1;
115     const char**ppsz_options = NULL;
116     int        i_options = 0, i, i_parent_id;
117     vlc_bool_t b_cleanup = VLC_FALSE;
118
119     INIT_PLAYLIST_STUFF;
120
121     psz_line = stream_ReadLine( p_demux->s );
122     while( psz_line )
123     {
124         char *psz_parse = psz_line;
125
126         /* Skip leading tabs and spaces */
127         while( *psz_parse == ' ' || *psz_parse == '\t' ||
128                *psz_parse == '\n' || *psz_parse == '\r' ) psz_parse++;
129
130         if( *psz_parse == '#' )
131         {
132             /* Parse extra info */
133
134             /* Skip leading tabs and spaces */
135             while( *psz_parse == ' ' || *psz_parse == '\t' ||
136                    *psz_parse == '\n' || *psz_parse == '\r' ||
137                    *psz_parse == '#' ) psz_parse++;
138
139             if( !*psz_parse ) goto error;
140
141             if( !strncasecmp( psz_parse, "EXTINF:", sizeof("EXTINF:") -1 ) )
142             {
143                 /* Extended info */
144                 psz_parse += sizeof("EXTINF:") - 1;
145                 parseEXTINF( psz_parse, &psz_artist, &psz_name, &i_parsed_duration );
146                 if ( i_parsed_duration >= 0 )
147                     i_duration = i_parsed_duration * 1000000;
148                 if ( psz_name )
149                     psz_name = strdup( psz_name );
150                 if ( psz_artist )
151                     psz_artist = strdup( psz_artist );
152             }
153             else if( !strncasecmp( psz_parse, "EXTVLCOPT:",
154                                    sizeof("EXTVLCOPT:") -1 ) )
155             {
156                 /* VLC Option */
157                 const char *psz_option;
158                 psz_parse += sizeof("EXTVLCOPT:") -1;
159                 if( !*psz_parse ) goto error;
160
161                 psz_option = strdup( psz_parse );
162                 if( psz_option )
163                     INSERT_ELEM( ppsz_options, i_options, i_options,
164                                  psz_option );
165             }
166         }
167         else if( *psz_parse )
168         {
169             char *psz_mrl;
170             if( !psz_name || !*psz_name )
171             {
172                 /* Use filename as name for relative entries */
173                 psz_name = strdup( psz_parse );
174             }
175
176             psz_mrl = E_(ProcessMRL)( psz_parse, p_demux->p_sys->psz_prefix );
177
178             b_cleanup = VLC_TRUE;
179             if( !psz_mrl ) goto error;
180
181             EnsureUTF8( psz_name );
182             EnsureUTF8( psz_mrl );
183
184             for( i = 0; i< i_options; i++ )
185                 EnsureUTF8( (char*)ppsz_options[i] );
186
187             p_input = input_ItemNewExt( p_playlist, psz_mrl, psz_name,
188                                         i_options, ppsz_options, i_duration );
189             if ( psz_artist && *psz_artist )
190                 vlc_input_item_AddInfo( p_input, _(VLC_META_INFO_CAT),
191                                         _(VLC_META_ARTIST), "%s", psz_artist );
192             fprintf( stderr, "Adding %s\n", p_input->psz_uri );
193             playlist_AddWhereverNeeded( p_playlist, p_input, p_current,
194                  p_item_in_category, (i_parent_id > 0 )? VLC_TRUE : VLC_FALSE,
195                  PLAYLIST_APPEND );
196             free( psz_mrl );
197         }
198
199  error:
200
201         /* Fetch another line */
202         free( psz_line );
203         psz_line = stream_ReadLine( p_demux->s );
204         if( !psz_line ) b_cleanup = VLC_TRUE;
205
206         if( b_cleanup )
207         {
208             /* Cleanup state */
209             while( i_options-- ) free( (char*)ppsz_options[i_options] );
210             if( ppsz_options ) free( ppsz_options );
211             ppsz_options = NULL; i_options = 0;
212             if( psz_name ) free( psz_name );
213             psz_name = NULL;
214             if ( psz_artist ) free( psz_artist );
215             psz_artist = NULL;
216             i_parsed_duration = 0;
217             i_duration = -1;
218
219             b_cleanup = VLC_FALSE;
220         }
221     }
222     HANDLE_PLAY_AND_RELEASE;
223     return VLC_SUCCESS;
224 }
225
226 static int Control( demux_t *p_demux, int i_query, va_list args )
227 {
228     return VLC_EGENERIC;
229 }
230
231 static void parseEXTINF(char *psz_string, char **ppsz_artist,
232                         char **ppsz_name, int *pi_duration)
233 {
234     char *end = NULL;
235     char *psz_item = NULL;
236
237     end = psz_string + strlen( psz_string );
238
239     /* ignore whitespaces */
240     for (; psz_string < end && ( *psz_string == '\t' || *psz_string == ' ' ); 
241          psz_string++ );
242
243     /* duration: read to next comma */
244     psz_item = psz_string;
245     psz_string = strchr( psz_string, ',' );
246     if ( psz_string )
247     {
248         *psz_string = '\0';
249         *pi_duration = atoi( psz_item );
250     }
251     else
252     {
253         return;
254     }
255
256     if ( psz_string < end )               /* continue parsing if possible */
257         psz_string++;
258
259     /* analyse the remaining string */
260     psz_item = strstr( psz_string, " - " );
261
262     /* here we have the 0.8.2+ format with artist */
263     if ( psz_item )
264     {
265         /* *** "EXTINF:time,artist - name" */
266         *psz_item = '\0';
267         *ppsz_artist = psz_string;
268         *ppsz_name = psz_item + 3;          /* points directly after ' - ' */
269         return;
270     }
271
272     /* reaching this point means: 0.8.1- with artist or something without artist */
273     if ( *psz_string == ',' )
274     {
275         /* *** "EXTINF:time,,name" */
276         psz_string++;
277         *ppsz_name = psz_string;
278         return;
279     }
280
281     psz_item = psz_string;
282     psz_string = strchr( psz_string, ',' );
283     if ( psz_string )
284     {
285         /* *** "EXTINF:time,artist,name" */
286         *psz_string = '\0';
287         *ppsz_artist = psz_item;
288         *ppsz_name = psz_string+1;
289     }
290     else
291     {
292         /* *** "EXTINF:time,name" */
293         *ppsz_name = psz_item;
294     }
295     return;
296 }
297