]> git.sesse.net Git - vlc/blob - modules/demux/playlist/m3u.c
de036a74202af916e4122a55cc7bda5881f075f1
[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 #include <stdlib.h>                                      /* malloc(), free() */
29
30 #include <vlc/vlc.h>
31 #include <vlc/input.h>
32 #include <vlc/intf.h>
33 #include "charset.h"
34
35 #include <errno.h>                                                 /* ENOMEM */
36 #include "playlist.h"
37
38 struct demux_sys_t
39 {
40     char *psz_prefix;
41 };
42
43 /*****************************************************************************
44  * Local prototypes
45  *****************************************************************************/
46 static int Demux( demux_t *p_demux);
47 static int Control( demux_t *p_demux, int i_query, va_list args );
48 static void parseEXTINF( char *psz_string, char **ppsz_artist, char **ppsz_name, int *pi_duration );
49
50 /*****************************************************************************
51  * Import_M3U: main import function
52  *****************************************************************************/
53 int E_(Import_M3U)( vlc_object_t *p_this )
54 {
55     demux_t *p_demux = (demux_t *)p_this;
56     uint8_t *p_peek;
57     CHECK_PEEK( p_peek, 8 );
58     
59     if( POKE( p_peek, "#EXTM3U", 7 ) || POKE( p_peek, "RTSPtext", 8 ) ||
60         isExtension( p_demux, ".m3u" ) || isExtension( p_demux, ".vlc" ) ||
61         /* A .ram file can contain a single rtsp link */
62         isExtension( p_demux, ".ram" ) || isExtension( p_demux, ".rm" ) ||
63         isDemux( p_demux,  "m3u" ) )
64     {
65         ;
66     }
67     else
68         return VLC_EGENERIC;
69     
70     STANDARD_DEMUX_INIT_MSG( "found valid M3U playlist" );
71     p_demux->p_sys->psz_prefix = E_(FindPrefix)( p_demux );
72
73     return VLC_SUCCESS;
74 }
75
76 /*****************************************************************************
77  * Deactivate: frees unused data
78  *****************************************************************************/
79 void E_(Close_M3U)( vlc_object_t *p_this )
80 {
81     demux_t *p_demux = (demux_t *)p_this;
82
83     if( p_demux->p_sys->psz_prefix ) free( p_demux->p_sys->psz_prefix );
84     free( p_demux->p_sys );
85 }
86
87 static int Demux( demux_t *p_demux )
88 {
89     char       *psz_line;
90     char       *psz_name = NULL;
91     char       *psz_artist = NULL;
92     int        i_parsed_duration = 0;
93     mtime_t    i_duration = -1;
94     const char**ppsz_options = NULL;
95     int        i_options = 0, i;
96     vlc_bool_t b_cleanup = VLC_FALSE;
97
98     INIT_PLAYLIST_STUFF;
99
100     psz_line = stream_ReadLine( p_demux->s );
101     while( psz_line )
102     {
103         char *psz_parse = psz_line;
104
105         /* Skip leading tabs and spaces */
106         while( *psz_parse == ' ' || *psz_parse == '\t' ||
107                *psz_parse == '\n' || *psz_parse == '\r' ) psz_parse++;
108
109         if( *psz_parse == '#' )
110         {
111             /* Parse extra info */
112
113             /* Skip leading tabs and spaces */
114             while( *psz_parse == ' ' || *psz_parse == '\t' ||
115                    *psz_parse == '\n' || *psz_parse == '\r' ||
116                    *psz_parse == '#' ) psz_parse++;
117
118             if( !*psz_parse ) goto error;
119
120             if( !strncasecmp( psz_parse, "EXTINF:", sizeof("EXTINF:") -1 ) )
121             {
122                 /* Extended info */
123                 psz_parse += sizeof("EXTINF:") - 1;
124                 parseEXTINF( psz_parse, &psz_artist, &psz_name, &i_parsed_duration );
125                 if ( i_parsed_duration >= 0 )
126                     i_duration = i_parsed_duration * 1000000;
127                 if ( psz_name )
128                     psz_name = strdup( psz_name );
129                 if ( psz_artist )
130                     psz_artist = strdup( psz_artist );
131             }
132             else if( !strncasecmp( psz_parse, "EXTVLCOPT:",
133                                    sizeof("EXTVLCOPT:") -1 ) )
134             {
135                 /* VLC Option */
136                 const char *psz_option;
137                 psz_parse += sizeof("EXTVLCOPT:") -1;
138                 if( !*psz_parse ) goto error;
139
140                 psz_option = strdup( psz_parse );
141                 if( psz_option )
142                     INSERT_ELEM( ppsz_options, i_options, i_options,
143                                  psz_option );
144             }
145         }
146         else if( !strncasecmp( psz_parse, "RTSPtext", sizeof("RTSPtext") -1 ) )
147         {
148             ;/* special case to handle QuickTime RTSPtext redirect files */
149         }
150         else if( *psz_parse )
151         {
152             char *psz_mrl;
153             if( !psz_name || !*psz_name )
154             {
155                 /* Use filename as name for relative entries */
156                 psz_name = strdup( psz_parse );
157             }
158
159             psz_mrl = E_(ProcessMRL)( psz_parse, p_demux->p_sys->psz_prefix );
160
161             b_cleanup = VLC_TRUE;
162             if( !psz_mrl ) goto error;
163
164             EnsureUTF8( psz_name );
165             EnsureUTF8( psz_mrl );
166
167             for( i = 0; i< i_options; i++ )
168                 EnsureUTF8( (char*)ppsz_options[i] );
169
170             p_input = input_ItemNewExt( p_playlist, psz_mrl, psz_name,
171                                         i_options, ppsz_options, i_duration );
172             if ( psz_artist && *psz_artist )
173                 vlc_input_item_AddInfo( p_input, _(VLC_META_INFO_CAT),
174                                         _(VLC_META_ARTIST), "%s", psz_artist );
175             msg_Dbg( p_demux, "Adding %s\n", p_input->psz_uri );
176             playlist_AddWhereverNeeded( p_playlist, p_input, p_current,
177                  p_item_in_category, (i_parent_id > 0 )? VLC_TRUE : VLC_FALSE,
178                  PLAYLIST_APPEND );
179             free( psz_mrl );
180         }
181
182  error:
183
184         /* Fetch another line */
185         free( psz_line );
186         psz_line = stream_ReadLine( p_demux->s );
187         if( !psz_line ) b_cleanup = VLC_TRUE;
188
189         if( b_cleanup )
190         {
191             /* Cleanup state */
192             while( i_options-- ) free( (char*)ppsz_options[i_options] );
193             if( ppsz_options ) free( ppsz_options );
194             ppsz_options = NULL; i_options = 0;
195             if( psz_name ) free( psz_name );
196             psz_name = NULL;
197             if ( psz_artist ) free( psz_artist );
198             psz_artist = NULL;
199             i_parsed_duration = 0;
200             i_duration = -1;
201
202             b_cleanup = VLC_FALSE;
203         }
204     }
205     HANDLE_PLAY_AND_RELEASE;
206     return VLC_SUCCESS;
207 }
208
209 static int Control( demux_t *p_demux, int i_query, va_list args )
210 {
211     return VLC_EGENERIC;
212 }
213
214 static void parseEXTINF(char *psz_string, char **ppsz_artist,
215                         char **ppsz_name, int *pi_duration)
216 {
217     char *end = NULL;
218     char *psz_item = NULL;
219
220     end = psz_string + strlen( psz_string );
221
222     /* ignore whitespaces */
223     for (; psz_string < end && ( *psz_string == '\t' || *psz_string == ' ' ); 
224          psz_string++ );
225
226     /* duration: read to next comma */
227     psz_item = psz_string;
228     psz_string = strchr( psz_string, ',' );
229     if ( psz_string )
230     {
231         *psz_string = '\0';
232         *pi_duration = atoi( psz_item );
233     }
234     else
235     {
236         return;
237     }
238
239     if ( psz_string < end )               /* continue parsing if possible */
240         psz_string++;
241
242     /* analyse the remaining string */
243     psz_item = strstr( psz_string, " - " );
244
245     /* here we have the 0.8.2+ format with artist */
246     if ( psz_item )
247     {
248         /* *** "EXTINF:time,artist - name" */
249         *psz_item = '\0';
250         *ppsz_artist = psz_string;
251         *ppsz_name = psz_item + 3;          /* points directly after ' - ' */
252         return;
253     }
254
255     /* reaching this point means: 0.8.1- with artist or something without artist */
256     if ( *psz_string == ',' )
257     {
258         /* *** "EXTINF:time,,name" */
259         psz_string++;
260         *ppsz_name = psz_string;
261         return;
262     }
263
264     psz_item = psz_string;
265     psz_string = strchr( psz_string, ',' );
266     if ( psz_string )
267     {
268         /* *** "EXTINF:time,artist,name" */
269         *psz_string = '\0';
270         *ppsz_artist = psz_item;
271         *ppsz_name = psz_string+1;
272     }
273     else
274     {
275         /* *** "EXTINF:time,name" */
276         *ppsz_name = psz_item;
277     }
278     return;
279 }
280