]> git.sesse.net Git - vlc/blob - modules/demux/playlist/m3u.c
e4168ad8125bc0ad63b802415d582ce1e9a4f76b
[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
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_demux.h>
35 #include <vlc_charset.h>
36
37 #include "playlist.h"
38
39 struct demux_sys_t
40 {
41     char *psz_prefix;
42     char *(*pf_dup) (const char *);
43 };
44
45 /*****************************************************************************
46  * Local prototypes
47  *****************************************************************************/
48 static int Demux( demux_t *p_demux);
49 static int Control( demux_t *p_demux, int i_query, va_list args );
50 static void parseEXTINF( char *psz_string, char **ppsz_artist, char **ppsz_name, int *pi_duration );
51 static bool ContainsURL( demux_t *p_demux );
52
53 static char *GuessEncoding (const char *str)
54 {
55     return IsUTF8 (str) ? strdup (str) : FromLatin1 (str);
56 }
57
58 /*****************************************************************************
59  * Import_M3U: main import function
60  *****************************************************************************/
61 int Import_M3U( vlc_object_t *p_this )
62 {
63     demux_t *p_demux = (demux_t *)p_this;
64     const uint8_t *p_peek;
65     CHECK_PEEK( p_peek, 8 );
66     char *(*pf_dup) (const char *);
67
68     if( POKE( p_peek, "RTSPtext", 8 ) /* QuickTime */
69      || demux_IsPathExtension( p_demux, ".m3u8" )
70      || demux_IsForced( p_demux, "m3u8" ) )
71         pf_dup = strdup; /* UTF-8 */
72     else
73     if( POKE( p_peek, "#EXTM3U", 7 )
74      || demux_IsPathExtension( p_demux, ".m3u" )
75      || demux_IsPathExtension( p_demux, ".vlc" )
76      || demux_IsForced( p_demux, "m3u" )
77      || ContainsURL( p_demux ) )
78         pf_dup = GuessEncoding;
79     else
80         return VLC_EGENERIC;
81
82     STANDARD_DEMUX_INIT_MSG( "found valid M3U playlist" );
83     p_demux->p_sys->psz_prefix = FindPrefix( p_demux );
84     p_demux->p_sys->pf_dup = pf_dup;
85
86     return VLC_SUCCESS;
87 }
88
89 static bool ContainsURL( demux_t *p_demux )
90 {
91     const uint8_t *p_peek, *p_peek_end;
92     int i_peek;
93
94     i_peek = stream_Peek( p_demux->s, &p_peek, 1024 );
95     if( i_peek <= 0 ) return false;
96     p_peek_end = p_peek + i_peek;
97
98     while( p_peek + sizeof( "https://" ) < p_peek_end )
99     {
100         /* One line starting with an URL is enough */
101         if( !strncasecmp( (const char *)p_peek, "http://", 7 ) ||
102             !strncasecmp( (const char *)p_peek, "mms://", 6 ) ||
103             !strncasecmp( (const char *)p_peek, "rtsp://", 7 ) ||
104             !strncasecmp( (const char *)p_peek, "https://", 8 ) ||
105             !strncasecmp( (const char *)p_peek, "ftp://", 6 ) )
106         {
107             return true;
108         }
109         /* Comments and blank lines are ignored */
110         else if( *p_peek != '#' && *p_peek != '\n' && *p_peek != '\r')
111         {
112             return false;
113         }
114
115         while( p_peek < p_peek_end && *p_peek != '\n' )
116             p_peek++;
117         if ( *p_peek == '\n' )
118             p_peek++;
119     }
120     return false;
121 }
122
123 /*****************************************************************************
124  * Deactivate: frees unused data
125  *****************************************************************************/
126 void Close_M3U( vlc_object_t *p_this )
127 {
128     demux_t *p_demux = (demux_t *)p_this;
129     free( p_demux->p_sys->psz_prefix );
130     free( p_demux->p_sys );
131 }
132
133
134 static int Demux( demux_t *p_demux )
135 {
136     char       *psz_line;
137     char       *psz_name = NULL;
138     char       *psz_artist = NULL;
139     int        i_parsed_duration = 0;
140     mtime_t    i_duration = -1;
141     const char**ppsz_options = NULL;
142     char *    (*pf_dup) (const char *) = p_demux->p_sys->pf_dup;
143     int        i_options = 0;
144     bool b_cleanup = false;
145     input_item_t *p_input;
146
147     input_item_t *p_current_input = GetCurrentItem(p_demux);
148
149     psz_line = stream_ReadLine( p_demux->s );
150     while( psz_line )
151     {
152         char *psz_parse = psz_line;
153
154         /* Skip leading tabs and spaces */
155         while( *psz_parse == ' ' || *psz_parse == '\t' ||
156                *psz_parse == '\n' || *psz_parse == '\r' ) psz_parse++;
157
158         if( *psz_parse == '#' )
159         {
160             /* Parse extra info */
161
162             /* Skip leading tabs and spaces */
163             while( *psz_parse == ' ' || *psz_parse == '\t' ||
164                    *psz_parse == '\n' || *psz_parse == '\r' ||
165                    *psz_parse == '#' ) psz_parse++;
166
167             if( !*psz_parse ) goto error;
168
169             if( !strncasecmp( psz_parse, "EXTINF:", sizeof("EXTINF:") -1 ) )
170             {
171                 /* Extended info */
172                 psz_parse += sizeof("EXTINF:") - 1;
173                 free(psz_name);
174                 free(psz_artist);
175                 parseEXTINF( psz_parse, &psz_artist, &psz_name, &i_parsed_duration );
176                 if( i_parsed_duration >= 0 )
177                     i_duration = i_parsed_duration * INT64_C(1000000);
178                 if( psz_name )
179                     psz_name = pf_dup( psz_name );
180                 if( psz_artist )
181                     psz_artist = pf_dup( psz_artist );
182             }
183             else if( !strncasecmp( psz_parse, "EXTVLCOPT:",
184                                    sizeof("EXTVLCOPT:") -1 ) )
185             {
186                 /* VLC Option */
187                 char *psz_option;
188                 psz_parse += sizeof("EXTVLCOPT:") -1;
189                 if( !*psz_parse ) goto error;
190
191                 psz_option = pf_dup( psz_parse );
192                 if( psz_option )
193                     INSERT_ELEM( ppsz_options, i_options, i_options,
194                                  psz_option );
195             }
196         }
197         else if( !strncasecmp( psz_parse, "RTSPtext", sizeof("RTSPtext") -1 ) )
198         {
199             ;/* special case to handle QuickTime RTSPtext redirect files */
200         }
201         else if( *psz_parse )
202         {
203             char *psz_mrl;
204
205             psz_parse = pf_dup( psz_parse );
206             if( !psz_name && psz_parse )
207                 /* Use filename as name for relative entries */
208                 psz_name = strdup( psz_parse );
209
210             psz_mrl = ProcessMRL( psz_parse, p_demux->p_sys->psz_prefix );
211
212             b_cleanup = true;
213             if( !psz_mrl )
214             {
215                 LocaleFree( psz_parse );
216                 goto error;
217             }
218
219             p_input = input_item_NewExt( p_demux, psz_mrl, psz_name,
220                                         i_options, ppsz_options, 0, i_duration );
221
222             LocaleFree( psz_parse );
223             free( psz_mrl );
224
225             if ( psz_artist && *psz_artist )
226                 input_item_SetArtist( p_input, psz_artist );
227             if( psz_name ) input_item_SetTitle( p_input, psz_name );
228
229             input_item_AddSubItem( p_current_input, p_input );
230             vlc_gc_decref( p_input );
231         }
232
233  error:
234
235         /* Fetch another line */
236         free( psz_line );
237         psz_line = stream_ReadLine( p_demux->s );
238         if( !psz_line ) b_cleanup = true;
239
240         if( b_cleanup )
241         {
242             /* Cleanup state */
243             while( i_options-- ) free( (char*)ppsz_options[i_options] );
244             free( ppsz_options );
245             ppsz_options = NULL; i_options = 0;
246             free( psz_name );
247             psz_name = NULL;
248             free( psz_artist );
249             psz_artist = NULL;
250             i_parsed_duration = 0;
251             i_duration = -1;
252
253             b_cleanup = false;
254         }
255     }
256     vlc_gc_decref(p_current_input);
257     var_Destroy( p_demux, "m3u-extvlcopt" );
258     return 0; /* Needed for correct operation of go back */
259 }
260
261 static int Control( demux_t *p_demux, int i_query, va_list args )
262 {
263     VLC_UNUSED(p_demux); VLC_UNUSED(i_query); VLC_UNUSED(args);
264     return VLC_EGENERIC;
265 }
266
267 static void parseEXTINF(char *psz_string, char **ppsz_artist,
268                         char **ppsz_name, int *pi_duration)
269 {
270     char *end = NULL;
271     char *psz_item = NULL;
272
273     end = psz_string + strlen( psz_string );
274
275     /* ignore whitespaces */
276     for (; psz_string < end && ( *psz_string == '\t' || *psz_string == ' ' );
277          psz_string++ );
278
279     /* duration: read to next comma */
280     psz_item = psz_string;
281     psz_string = strchr( psz_string, ',' );
282     if ( psz_string )
283     {
284         *psz_string = '\0';
285         *pi_duration = atoi( psz_item );
286     }
287     else
288     {
289         return;
290     }
291
292     if ( psz_string < end )               /* continue parsing if possible */
293         psz_string++;
294
295     /* analyse the remaining string */
296     psz_item = strstr( psz_string, " - " );
297
298     /* here we have the 0.8.2+ format with artist */
299     if ( psz_item )
300     {
301         /* *** "EXTINF:time,artist - name" */
302         *psz_item = '\0';
303         *ppsz_artist = psz_string;
304         *ppsz_name = psz_item + 3;          /* points directly after ' - ' */
305         return;
306     }
307
308     /* reaching this point means: 0.8.1- with artist or something without artist */
309     if ( *psz_string == ',' )
310     {
311         /* *** "EXTINF:time,,name" */
312         psz_string++;
313         *ppsz_name = psz_string;
314         return;
315     }
316
317     psz_item = psz_string;
318     psz_string = strchr( psz_string, ',' );
319     if ( psz_string )
320     {
321         /* *** "EXTINF:time,artist,name" */
322         *psz_string = '\0';
323         *ppsz_artist = psz_item;
324         *ppsz_name = psz_string+1;
325     }
326     else
327     {
328         /* *** "EXTINF:time,name" */
329         *ppsz_name = psz_item;
330     }
331     return;
332 }
333