]> git.sesse.net Git - vlc/blob - modules/demux/playlist/m3u.c
Renamed input_item_AddOpt to input_item_AddOption.
[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 };
43
44 /*****************************************************************************
45  * Local prototypes
46  *****************************************************************************/
47 static int Demux( demux_t *p_demux);
48 static int Control( demux_t *p_demux, int i_query, va_list args );
49 static void parseEXTINF( char *psz_string, char **ppsz_artist, char **ppsz_name, int *pi_duration );
50 static bool ContainsURL( demux_t *p_demux );
51
52 /*****************************************************************************
53  * Import_M3U: main import function
54  *****************************************************************************/
55 int Import_M3U( vlc_object_t *p_this )
56 {
57     demux_t *p_demux = (demux_t *)p_this;
58     const uint8_t *p_peek;
59     CHECK_PEEK( p_peek, 8 );
60
61     if(! ( POKE( p_peek, "#EXTM3U", 7 ) || POKE( p_peek, "RTSPtext", 8 ) ||
62            demux_IsPathExtension( p_demux, ".m3u" ) || demux_IsPathExtension( p_demux, ".vlc" ) ||
63            /* A .ram file can contain a single rtsp link */
64            demux_IsPathExtension( p_demux, ".ram" ) || demux_IsPathExtension( p_demux, ".rm" ) ||
65            demux_IsForced( p_demux,  "m3u" ) || ContainsURL( p_demux ) ) )
66         return VLC_EGENERIC;
67
68     STANDARD_DEMUX_INIT_MSG( "found valid M3U playlist" );
69     p_demux->p_sys->psz_prefix = FindPrefix( p_demux );
70
71     return VLC_SUCCESS;
72 }
73
74 static bool ContainsURL( demux_t *p_demux )
75 {
76     const uint8_t *p_peek, *p_peek_end;
77     int i_peek;
78
79     i_peek = stream_Peek( p_demux->s, &p_peek, 1024 );
80     if( i_peek <= 0 ) return false;
81     p_peek_end = p_peek + i_peek;
82
83     while( p_peek + sizeof( "https://" ) < p_peek_end )
84     {
85         /* One line starting with an URL is enough */
86         if( !strncasecmp( (const char *)p_peek, "http://", 7 ) ||
87             !strncasecmp( (const char *)p_peek, "mms://", 6 ) ||
88             !strncasecmp( (const char *)p_peek, "rtsp://", 7 ) ||
89             !strncasecmp( (const char *)p_peek, "https://", 8 ) ||
90             !strncasecmp( (const char *)p_peek, "ftp://", 6 ) )
91         {
92             return true;
93         }
94         /* Comments and blank lines are ignored */
95         else if( *p_peek != '#' && *p_peek != '\n' && *p_peek != '\r')
96         {
97             return false;
98         }
99
100         while( p_peek < p_peek_end && *p_peek != '\n' )
101             p_peek++;
102         if ( *p_peek == '\n' )
103             p_peek++;
104     }
105     return false;
106 }
107
108 /*****************************************************************************
109  * Deactivate: frees unused data
110  *****************************************************************************/
111 void Close_M3U( vlc_object_t *p_this )
112 {
113     demux_t *p_demux = (demux_t *)p_this;
114     free( p_demux->p_sys->psz_prefix );
115     free( p_demux->p_sys );
116 }
117
118
119 /* Gruik! */
120 static inline char *MaybeFromLocaleDup (const char *str)
121 {
122     if (str == NULL)
123         return NULL;
124
125     return IsUTF8 (str) ? strdup (str) : FromLocaleDup (str);
126 }
127
128
129 static inline void MaybeFromLocaleRep (char **str)
130 {
131     char *const orig_str = *str;
132
133     if ((orig_str != NULL) && !IsUTF8 (orig_str))
134     {
135         *str = FromLocaleDup (orig_str);
136         free (orig_str);
137     }
138 }
139
140
141 static int Demux( demux_t *p_demux )
142 {
143     char       *psz_line;
144     char       *psz_name = NULL;
145     char       *psz_artist = NULL;
146     int        i_parsed_duration = 0;
147     mtime_t    i_duration = -1;
148     const char**ppsz_options = NULL;
149     int        i_options = 0;
150     bool b_cleanup = false;
151     input_item_t *p_input;
152
153     INIT_PLAYLIST_STUFF;
154
155     psz_line = stream_ReadLine( p_demux->s );
156     while( psz_line )
157     {
158         char *psz_parse = psz_line;
159
160         /* Skip leading tabs and spaces */
161         while( *psz_parse == ' ' || *psz_parse == '\t' ||
162                *psz_parse == '\n' || *psz_parse == '\r' ) psz_parse++;
163
164         if( *psz_parse == '#' )
165         {
166             /* Parse extra info */
167
168             /* Skip leading tabs and spaces */
169             while( *psz_parse == ' ' || *psz_parse == '\t' ||
170                    *psz_parse == '\n' || *psz_parse == '\r' ||
171                    *psz_parse == '#' ) psz_parse++;
172
173             if( !*psz_parse ) goto error;
174
175             if( !strncasecmp( psz_parse, "EXTINF:", sizeof("EXTINF:") -1 ) )
176             {
177                 /* Extended info */
178                 psz_parse += sizeof("EXTINF:") - 1;
179                 parseEXTINF( psz_parse, &psz_artist, &psz_name, &i_parsed_duration );
180                 if( i_parsed_duration >= 0 )
181                     i_duration = i_parsed_duration * INT64_C(1000000);
182                 if( psz_name )
183                     psz_name = strdup( psz_name );
184                 if( psz_artist )
185                     psz_artist = strdup( psz_artist );
186             }
187             else if( !strncasecmp( psz_parse, "EXTVLCOPT:",
188                                    sizeof("EXTVLCOPT:") -1 ) )
189             {
190                 /* VLC Option */
191                 char *psz_option;
192                 psz_parse += sizeof("EXTVLCOPT:") -1;
193                 if( !*psz_parse ) goto error;
194
195                 psz_option = MaybeFromLocaleDup( psz_parse );
196                 if( psz_option )
197                     INSERT_ELEM( ppsz_options, i_options, i_options,
198                                  psz_option );
199             }
200         }
201         else if( !strncasecmp( psz_parse, "RTSPtext", sizeof("RTSPtext") -1 ) )
202         {
203             ;/* special case to handle QuickTime RTSPtext redirect files */
204         }
205         else if( *psz_parse )
206         {
207             char *psz_mrl;
208             if( !psz_name || !*psz_name )
209             {
210                 /* Use filename as name for relative entries */
211                 psz_name = MaybeFromLocaleDup( psz_parse );
212             }
213
214             psz_mrl = ProcessMRL( psz_parse, p_demux->p_sys->psz_prefix );
215             MaybeFromLocaleRep( &psz_mrl );
216
217             b_cleanup = true;
218             if( !psz_mrl ) goto error;
219
220             p_input = input_item_NewExt( p_demux, psz_mrl, psz_name,
221                                         0, NULL, i_duration );
222
223             if ( psz_artist && *psz_artist )
224                 input_item_SetArtist( p_input, psz_artist );
225
226             input_item_AddSubItem( p_current_input, p_input );
227             for( int i = 0; i < i_options; i++ )
228                 input_item_AddOption( p_input, ppsz_options[i], 0 );
229             vlc_gc_decref( p_input );
230             free( psz_mrl );
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     HANDLE_PLAY_AND_RELEASE;
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