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