]> git.sesse.net Git - vlc/blob - modules/demux/playlist/m3u.c
9320a6b11ebb152318fd081190a269017d37bcde
[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     input_item_node_t *p_subitems = input_item_node_Create( p_current_input );
149
150     psz_line = stream_ReadLine( p_demux->s );
151     while( psz_line )
152     {
153         char *psz_parse = psz_line;
154
155         /* Skip leading tabs and spaces */
156         while( *psz_parse == ' ' || *psz_parse == '\t' ||
157                *psz_parse == '\n' || *psz_parse == '\r' ) psz_parse++;
158
159         if( *psz_parse == '#' )
160         {
161             /* Parse extra info */
162
163             /* Skip leading tabs and spaces */
164             while( *psz_parse == ' ' || *psz_parse == '\t' ||
165                    *psz_parse == '\n' || *psz_parse == '\r' ||
166                    *psz_parse == '#' ) psz_parse++;
167
168             if( !*psz_parse ) goto error;
169
170             if( !strncasecmp( psz_parse, "EXTINF:", sizeof("EXTINF:") -1 ) )
171             {
172                 /* Extended info */
173                 psz_parse += sizeof("EXTINF:") - 1;
174                 free(psz_name);
175                 free(psz_artist);
176                 parseEXTINF( psz_parse, &psz_artist, &psz_name, &i_parsed_duration );
177                 if( i_parsed_duration >= 0 )
178                     i_duration = i_parsed_duration * INT64_C(1000000);
179                 if( psz_name )
180                     psz_name = pf_dup( psz_name );
181                 if( psz_artist )
182                     psz_artist = pf_dup( psz_artist );
183             }
184             else if( !strncasecmp( psz_parse, "EXTVLCOPT:",
185                                    sizeof("EXTVLCOPT:") -1 ) )
186             {
187                 /* VLC Option */
188                 char *psz_option;
189                 psz_parse += sizeof("EXTVLCOPT:") -1;
190                 if( !*psz_parse ) goto error;
191
192                 psz_option = pf_dup( psz_parse );
193                 if( psz_option )
194                     INSERT_ELEM( ppsz_options, i_options, i_options,
195                                  psz_option );
196             }
197         }
198         else if( !strncasecmp( psz_parse, "RTSPtext", sizeof("RTSPtext") -1 ) )
199         {
200             ;/* special case to handle QuickTime RTSPtext redirect files */
201         }
202         else if( *psz_parse )
203         {
204             char *psz_mrl;
205
206             psz_parse = pf_dup( psz_parse );
207             if( !psz_name && psz_parse )
208                 /* Use filename as name for relative entries */
209                 psz_name = strdup( psz_parse );
210
211             psz_mrl = ProcessMRL( psz_parse, p_demux->p_sys->psz_prefix );
212
213             b_cleanup = true;
214             if( !psz_mrl )
215             {
216                 LocaleFree( psz_parse );
217                 goto error;
218             }
219
220             p_input = input_item_NewExt( p_demux, psz_mrl, psz_name,
221                                         i_options, ppsz_options, 0, i_duration );
222
223             LocaleFree( psz_parse );
224             free( psz_mrl );
225
226             if ( psz_artist && *psz_artist )
227                 input_item_SetArtist( p_input, psz_artist );
228             if( psz_name ) input_item_SetTitle( p_input, psz_name );
229
230             input_item_node_AppendItem( p_subitems, p_input );
231             vlc_gc_decref( p_input );
232         }
233
234  error:
235
236         /* Fetch another line */
237         free( psz_line );
238         psz_line = stream_ReadLine( p_demux->s );
239         if( !psz_line ) b_cleanup = true;
240
241         if( b_cleanup )
242         {
243             /* Cleanup state */
244             while( i_options-- ) free( (char*)ppsz_options[i_options] );
245             free( ppsz_options );
246             ppsz_options = NULL; i_options = 0;
247             free( psz_name );
248             psz_name = NULL;
249             free( psz_artist );
250             psz_artist = NULL;
251             i_parsed_duration = 0;
252             i_duration = -1;
253
254             b_cleanup = false;
255         }
256     }
257     input_item_node_PostAndDelete( p_subitems );
258     vlc_gc_decref(p_current_input);
259     var_Destroy( p_demux, "m3u-extvlcopt" );
260     return 0; /* Needed for correct operation of go back */
261 }
262
263 static int Control( demux_t *p_demux, int i_query, va_list args )
264 {
265     VLC_UNUSED(p_demux); VLC_UNUSED(i_query); VLC_UNUSED(args);
266     return VLC_EGENERIC;
267 }
268
269 static void parseEXTINF(char *psz_string, char **ppsz_artist,
270                         char **ppsz_name, int *pi_duration)
271 {
272     char *end = NULL;
273     char *psz_item = NULL;
274
275     end = psz_string + strlen( psz_string );
276
277     /* ignore whitespaces */
278     for (; psz_string < end && ( *psz_string == '\t' || *psz_string == ' ' );
279          psz_string++ );
280
281     /* duration: read to next comma */
282     psz_item = psz_string;
283     psz_string = strchr( psz_string, ',' );
284     if ( psz_string )
285     {
286         *psz_string = '\0';
287         *pi_duration = atoi( psz_item );
288     }
289     else
290     {
291         return;
292     }
293
294     if ( psz_string < end )               /* continue parsing if possible */
295         psz_string++;
296
297     /* analyse the remaining string */
298     psz_item = strstr( psz_string, " - " );
299
300     /* here we have the 0.8.2+ format with artist */
301     if ( psz_item )
302     {
303         /* *** "EXTINF:time,artist - name" */
304         *psz_item = '\0';
305         *ppsz_artist = psz_string;
306         *ppsz_name = psz_item + 3;          /* points directly after ' - ' */
307         return;
308     }
309
310     /* reaching this point means: 0.8.1- with artist or something without artist */
311     if ( *psz_string == ',' )
312     {
313         /* *** "EXTINF:time,,name" */
314         psz_string++;
315         *ppsz_name = psz_string;
316         return;
317     }
318
319     psz_item = psz_string;
320     psz_string = strchr( psz_string, ',' );
321     if ( psz_string )
322     {
323         /* *** "EXTINF:time,artist,name" */
324         *psz_string = '\0';
325         *ppsz_artist = psz_item;
326         *ppsz_name = psz_string+1;
327     }
328     else
329     {
330         /* *** "EXTINF:time,name" */
331         *ppsz_name = psz_item;
332     }
333     return;
334 }
335