1 /*****************************************************************************
2 * podcast.c : podcast playlist imports
3 *****************************************************************************
4 * Copyright (C) 2005-2009 the VideoLAN team
7 * Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 /*****************************************************************************
26 *****************************************************************************/
31 #include <vlc_common.h>
32 #include <vlc_demux.h>
41 xml_reader_t *p_xml_reader;
44 /*****************************************************************************
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 mtime_t strTimeToMTime( const char *psz );
51 /*****************************************************************************
52 * Import_podcast: main import function
53 *****************************************************************************/
54 int Import_podcast( vlc_object_t *p_this )
56 demux_t *p_demux = (demux_t *)p_this;
58 if( !demux_IsForced( p_demux, "podcast" ) )
61 STANDARD_DEMUX_INIT_MSG( "using podcast reader" );
62 p_demux->p_sys->psz_prefix = FindPrefix( p_demux );
63 p_demux->p_sys->p_xml = NULL;
64 p_demux->p_sys->p_xml_reader = NULL;
69 /*****************************************************************************
70 * Deactivate: frees unused data
71 *****************************************************************************/
72 void Close_podcast( vlc_object_t *p_this )
74 demux_t *p_demux = (demux_t *)p_this;
75 demux_sys_t *p_sys = p_demux->p_sys;
77 free( p_sys->psz_prefix );
78 if( p_sys->p_xml_reader ) xml_ReaderDelete( p_sys->p_xml, p_sys->p_xml_reader );
79 if( p_sys->p_xml ) xml_Delete( p_sys->p_xml );
83 /* "specs" : http://phobos.apple.com/static/iTunesRSS.html */
84 static int Demux( demux_t *p_demux )
86 demux_sys_t *p_sys = p_demux->p_sys;
93 xml_reader_t *p_xml_reader;
94 char *psz_elname = NULL;
95 char *psz_item_mrl = NULL;
96 char *psz_item_size = NULL;
97 char *psz_item_type = NULL;
98 char *psz_item_name = NULL;
99 char *psz_item_date = NULL;
100 char *psz_item_author = NULL;
101 char *psz_item_category = NULL;
102 char *psz_item_duration = NULL;
103 char *psz_item_keywords = NULL;
104 char *psz_item_subtitle = NULL;
105 char *psz_item_summary = NULL;
107 input_item_t *p_input;
111 p_xml = p_sys->p_xml = xml_Create( p_demux );
112 if( !p_xml ) return -1;
114 /* psz_elname = stream_ReadLine( p_demux->s );
115 if( psz_elname ) free( psz_elname );
118 p_xml_reader = xml_ReaderCreate( p_xml, p_demux->s );
119 if( !p_xml_reader ) return -1;
120 p_sys->p_xml_reader = p_xml_reader;
123 /* check root node */
124 if( xml_ReaderRead( p_xml_reader ) != 1 )
126 msg_Err( p_demux, "invalid file (no root node)" );
130 while( xml_ReaderNodeType( p_xml_reader ) == XML_READER_NONE )
132 if( xml_ReaderRead( p_xml_reader ) != 1 )
134 msg_Err( p_demux, "invalid file (no root node)" );
139 if( xml_ReaderNodeType( p_xml_reader ) != XML_READER_STARTELEM ||
140 ( psz_elname = xml_ReaderName( p_xml_reader ) ) == NULL ||
141 strcmp( psz_elname, "rss" ) )
143 msg_Err( p_demux, "invalid root node %i, %s",
144 xml_ReaderNodeType( p_xml_reader ), psz_elname );
148 FREENULL( psz_elname );
150 while( (i_ret = xml_ReaderRead( p_xml_reader )) == 1 )
153 i_type = xml_ReaderNodeType( p_xml_reader );
161 case XML_READER_STARTELEM:
163 // Read the element name
165 psz_elname = xml_ReaderName( p_xml_reader );
166 if( !psz_elname ) return -1;
168 if( !strcmp( psz_elname, "item" ) )
172 else if( !strcmp( psz_elname, "image" ) )
177 // Read the attributes
178 while( xml_ReaderNextAttr( p_xml_reader ) == VLC_SUCCESS )
180 char *psz_name = xml_ReaderName( p_xml_reader );
181 char *psz_value = xml_ReaderValue( p_xml_reader );
182 if( !psz_name || !psz_value )
190 if( !strcmp( psz_elname, "enclosure" ) )
192 if( !strcmp( psz_name, "url" ) )
194 free( psz_item_mrl );
195 psz_item_mrl = strdup( psz_value );
197 else if( !strcmp( psz_name, "length" ) )
199 free( psz_item_size );
200 psz_item_size = strdup( psz_value );
202 else if( !strcmp( psz_name, "type" ) )
204 free( psz_item_type );
205 psz_item_type = strdup( psz_value );
208 msg_Dbg( p_demux,"unhandled attribure %s in element %s",
209 psz_name, psz_elname );
212 msg_Dbg( p_demux,"unhandled attribure %s in element %s",
213 psz_name, psz_elname );
220 case XML_READER_TEXT:
222 char *psz_text = xml_ReaderValue( p_xml_reader );
224 #define SET_DATA( field, name ) \
225 else if( !strcmp( psz_elname, name ) ) \
229 /* item specific meta data */
232 if( !strcmp( psz_elname, "title" ) )
234 psz_item_name = psz_text;
236 else if( !strcmp( psz_elname, "itunes:author" ) ||
237 !strcmp( psz_elname, "author" ) )
238 { /* <author> isn't standard iTunes podcast stuff */
239 psz_item_author = psz_text;
241 else if( !strcmp( psz_elname, "itunes:summary" ) ||
242 !strcmp( psz_elname, "description" ) )
243 { /* <description> isn't standard iTunes podcast stuff */
244 psz_item_summary = psz_text;
246 SET_DATA( psz_item_date, "pubDate" )
247 SET_DATA( psz_item_category, "itunes:category" )
248 SET_DATA( psz_item_duration, "itunes:duration" )
249 SET_DATA( psz_item_keywords, "itunes:keywords" )
250 SET_DATA( psz_item_subtitle, "itunes:subtitle" )
256 /* toplevel meta data */
257 else if( b_image == false )
259 if( !strcmp( psz_elname, "title" ) )
261 input_item_SetName( p_current_input, psz_text );
263 #define ADD_GINFO( info, name ) \
264 else if( !strcmp( psz_elname, name ) ) \
266 input_item_AddInfo( p_current_input, _("Podcast Info"), \
267 _( info ), "%s", psz_text ); \
269 ADD_GINFO( "Podcast Link", "link" )
270 ADD_GINFO( "Podcast Copyright", "copyright" )
271 ADD_GINFO( "Podcast Category", "itunes:category" )
272 ADD_GINFO( "Podcast Keywords", "itunes:keywords" )
273 ADD_GINFO( "Podcast Subtitle", "itunes:subtitle" )
275 else if( !strcmp( psz_elname, "itunes:summary" ) ||
276 !strcmp( psz_elname, "description" ) )
277 { /* <description> isn't standard iTunes podcast stuff */
278 input_item_AddInfo( p_current_input,
279 _( "Podcast Info" ), _( "Podcast Summary" ),
286 msg_Dbg( p_demux, "unhandled text in element '%s'",
293 case XML_READER_ENDELEM:
295 // Read the element name
297 psz_elname = xml_ReaderName( p_xml_reader );
298 if( !psz_elname ) return -1;
299 if( !strcmp( psz_elname, "item" ) )
301 if( psz_item_mrl == NULL )
303 msg_Err( p_demux, "invalid XML (no enclosure markup)" );
307 p_input = input_item_New( p_demux, psz_item_mrl, psz_item_name );
308 if( p_input == NULL ) break;
309 #define ADD_INFO( info, field ) \
310 if( field ) { input_item_AddInfo( p_input, \
311 _( "Podcast Info" ), _( info ), "%s", field ); }
312 ADD_INFO( "Podcast Publication Date", psz_item_date );
313 ADD_INFO( "Podcast Author", psz_item_author );
314 ADD_INFO( "Podcast Subcategory", psz_item_category );
315 ADD_INFO( "Podcast Duration", psz_item_duration );
316 ADD_INFO( "Podcast Keywords", psz_item_keywords );
317 ADD_INFO( "Podcast Subtitle", psz_item_subtitle );
318 ADD_INFO( "Podcast Summary", psz_item_summary );
319 ADD_INFO( "Podcast Type", psz_item_type );
322 /* Set the duration if available */
323 if( psz_item_duration )
324 input_item_SetDuration( p_input, strTimeToMTime( psz_item_duration ) );
328 input_item_AddInfo( p_input,
334 input_item_AddSubItem( p_current_input, p_input );
335 vlc_gc_decref( p_input );
336 FREENULL( psz_item_name );
337 FREENULL( psz_item_mrl );
338 FREENULL( psz_item_size );
339 FREENULL( psz_item_type );
340 FREENULL( psz_item_date );
341 FREENULL( psz_item_author );
342 FREENULL( psz_item_category );
343 FREENULL( psz_item_duration );
344 FREENULL( psz_item_keywords );
345 FREENULL( psz_item_subtitle );
346 FREENULL( psz_item_summary );
349 else if( !strcmp( psz_elname, "image" ) )
354 psz_elname = strdup( "" );
363 msg_Warn( p_demux, "error while parsing data" );
368 HANDLE_PLAY_AND_RELEASE;
369 return 0; /* Needed for correct operation of go back */
372 static int Control( demux_t *p_demux, int i_query, va_list args )
374 VLC_UNUSED(p_demux); VLC_UNUSED(i_query); VLC_UNUSED(args);
378 static mtime_t strTimeToMTime( const char *psz )
381 switch( sscanf( psz, "%u:%u:%u", &h, &m, &s ) )
384 return (mtime_t)( ( h*60 + m )*60 + s ) * 1000000;
386 return (mtime_t)( h*60 + m ) * 1000000;