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