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