1 /*****************************************************************************
2 * shoutcast.c: Winamp >=5.2 shoutcast demuxer
3 *****************************************************************************
4 * Copyright (C) 2006 the VideoLAN team
7 * Authors: Antoine Cellerier <dionoea -@t- videolan -Dot- org>
8 * based on b4s.c by Sigmund Augdal Helberg <dnumgis@videolan.org>
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.
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.
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 *****************************************************************************/
25 /*****************************************************************************
27 *****************************************************************************/
33 #include <vlc_common.h>
34 #include <vlc_demux.h>
39 /* duplicate from modules/services_discovery/shout.c */
40 #define SHOUTCAST_BASE_URL "http/shout-winamp://www.shoutcast.com/sbin/newxml.phtml"
41 #define SHOUTCAST_TUNEIN_BASE_URL "http://www.shoutcast.com"
42 #define SHOUTCAST_TV_TUNEIN_URL "http://www.shoutcast.com/sbin/tunein-tvstation.pls?id="
44 /*****************************************************************************
46 *****************************************************************************/
47 static int Demux( demux_t
*p_demux
);
48 static int Control( demux_t
*p_demux
, int i_query
, va_list args
);
50 static int DemuxGenre( demux_t
*p_demux
, xml_reader_t
*p_xml_reader
,
51 input_item_node_t
*p_input_node
);
52 static int DemuxStation( demux_t
*p_demux
, xml_reader_t
*p_xml_reader
,
53 input_item_node_t
*p_input_node
, bool b_adult
);
55 /*****************************************************************************
56 * Import_Shoutcast: main import function
57 *****************************************************************************/
58 int Import_Shoutcast( vlc_object_t
*p_this
)
60 demux_t
*p_demux
= (demux_t
*)p_this
;
62 if( !demux_IsForced( p_demux
, "shout-winamp" ) )
65 p_demux
->pf_demux
= Demux
;
66 p_demux
->pf_control
= Control
;
67 msg_Dbg( p_demux
, "using shoutcast playlist reader" );
72 /*****************************************************************************
73 * Deactivate: frees unused data
74 *****************************************************************************/
75 void Close_Shoutcast( vlc_object_t
*p_this
)
80 static int Demux( demux_t
*p_demux
)
82 xml_reader_t
*p_xml_reader
= NULL
;
83 char *psz_eltname
= NULL
;
85 input_item_t
*p_current_input
= GetCurrentItem(p_demux
);
86 input_item_node_t
*p_input_node
= NULL
;
88 p_xml_reader
= xml_ReaderCreate( p_demux
, p_demux
->s
);
93 if( xml_ReaderRead( p_xml_reader
) != 1 )
95 msg_Err( p_demux
, "invalid file (no root node)" );
99 if( xml_ReaderNodeType( p_xml_reader
) != XML_READER_STARTELEM
||
100 ( psz_eltname
= xml_ReaderName( p_xml_reader
) ) == NULL
||
101 ( strcmp( psz_eltname
, "genrelist" )
102 && strcmp( psz_eltname
, "stationlist" ) ) )
104 msg_Err( p_demux
, "invalid root node %i, %s",
105 xml_ReaderNodeType( p_xml_reader
), psz_eltname
);
109 p_input_node
= input_item_node_Create( p_current_input
);
111 if( !strcmp( psz_eltname
, "genrelist" ) )
113 /* we're reading a genre list */
114 if( DemuxGenre( p_demux
, p_xml_reader
, p_input_node
) )
119 /* we're reading a station list */
120 if( DemuxStation( p_demux
, p_xml_reader
, p_input_node
,
121 var_InheritBool( p_demux
, "shoutcast-show-adult" ) ) )
125 input_item_node_PostAndDelete( p_input_node
);
128 i_ret
= 0; /* Needed for correct operation of go back */
132 xml_ReaderDelete( p_xml_reader
);
134 if( p_input_node
) input_item_node_Delete( p_input_node
);
135 vlc_gc_decref(p_current_input
);
139 #define GET_VALUE( a ) \
140 if( !strcmp( psz_attrname, #a ) ) \
143 psz_ ## a = psz_attrvalue; \
146 * <genre name="the name"></genre>
150 static int DemuxGenre( demux_t
*p_demux
, xml_reader_t
*p_xml_reader
,
151 input_item_node_t
*p_input_node
)
153 char *psz_name
= NULL
; /* genre name */
156 while( xml_ReaderRead( p_xml_reader
) == 1 )
159 switch( xml_ReaderNodeType( p_xml_reader
) )
165 case XML_READER_STARTELEM
:
167 // Read the element name
168 char *psz_eltname
= xml_ReaderName( p_xml_reader
);
172 if( !strcmp( psz_eltname
, "genre" ) )
174 // Read the attributes
175 while( xml_ReaderNextAttr( p_xml_reader
) == VLC_SUCCESS
)
177 char *psz_attrname
= xml_ReaderName( p_xml_reader
);
178 char *psz_attrvalue
=
179 xml_ReaderValue( p_xml_reader
);
180 if( !psz_attrname
|| !psz_attrvalue
)
182 free( psz_attrname
);
183 free( psz_attrvalue
);
192 "unexpected attribute %s in element %s",
193 psz_attrname
, psz_eltname
);
194 free( psz_attrvalue
);
196 free( psz_attrname
);
203 case XML_READER_TEXT
:
207 case XML_READER_ENDELEM
:
209 // Read the element name
210 char *psz_eltname
= xml_ReaderName( p_xml_reader
);
214 if( !strcmp( psz_eltname
, "genre" ) )
217 if( asprintf( &psz_mrl
, SHOUTCAST_BASE_URL
"?genre=%s",
220 input_item_t
*p_input
;
221 p_input
= input_item_New( p_demux
, psz_mrl
, psz_name
);
222 input_item_CopyOptions( p_input_node
->p_item
, p_input
);
224 input_item_node_AppendItem( p_input_node
, p_input
);
225 vlc_gc_decref( p_input
);
227 FREENULL( psz_name
);
243 * <tunein base="/sbin/tunein-station.pls"></tunein>
244 * <station name="the name"
248 * genre="A big genre string"
249 * ct="current track name/author/..."
250 * lc="listener count"></station>
255 * <tunein base="/sbin/tunein-station.pls"></tunein>
256 * <station name="the name"
260 * load="server load ?"
261 * ct="current track name/author/..."
262 * genre="A big genre string"
263 * lc="listener count"></station>
266 static int DemuxStation( demux_t
*p_demux
, xml_reader_t
*p_xml_reader
,
267 input_item_node_t
*p_input_node
, bool b_adult
)
269 char *psz_base
= NULL
; /* */
271 char *psz_name
= NULL
; /* genre name */
272 char *psz_mt
= NULL
; /* mime type */
273 char *psz_id
= NULL
; /* id */
274 char *psz_br
= NULL
; /* bit rate */
275 char *psz_genre
= NULL
; /* genre */
276 char *psz_ct
= NULL
; /* current track */
277 char *psz_lc
= NULL
; /* listener count */
279 /* If these are set then it's *not* a radio but a TV */
280 char *psz_rt
= NULL
; /* rating for shoutcast TV */
281 char *psz_load
= NULL
; /* load for shoutcast TV */
283 char *psz_eltname
= NULL
; /* tag name */
285 while( xml_ReaderRead( p_xml_reader
) == 1 )
290 i_type
= xml_ReaderNodeType( p_xml_reader
);
298 case XML_READER_STARTELEM
:
299 // Read the element name
300 psz_eltname
= xml_ReaderName( p_xml_reader
);
301 if( !psz_eltname
) return -1;
303 // Read the attributes
304 if( !strcmp( psz_eltname
, "tunein" ) )
306 while( xml_ReaderNextAttr( p_xml_reader
) == VLC_SUCCESS
)
308 char *psz_attrname
= xml_ReaderName( p_xml_reader
);
309 char *psz_attrvalue
=
310 xml_ReaderValue( p_xml_reader
);
311 if( !psz_attrname
|| !psz_attrvalue
)
314 free( psz_attrname
);
315 free( psz_attrvalue
);
323 "unexpected attribute %s in element %s",
324 psz_attrname
, psz_eltname
);
325 free( psz_attrvalue
);
327 free( psz_attrname
);
330 else if( !strcmp( psz_eltname
, "station" ) )
332 while( xml_ReaderNextAttr( p_xml_reader
) == VLC_SUCCESS
)
334 char *psz_attrname
= xml_ReaderName( p_xml_reader
);
335 char *psz_attrvalue
=
336 xml_ReaderValue( p_xml_reader
);
337 if( !psz_attrname
|| !psz_attrvalue
)
340 free( psz_attrname
);
341 free( psz_attrvalue
);
349 else GET_VALUE( genre
)
353 else GET_VALUE( load
)
357 "unexpected attribute %s in element %s",
358 psz_attrname
, psz_eltname
);
359 free( psz_attrvalue
);
361 free( psz_attrname
);
367 case XML_READER_TEXT
:
371 case XML_READER_ENDELEM
:
372 // Read the element name
373 psz_eltname
= xml_ReaderName( p_xml_reader
);
374 if( !psz_eltname
) return -1;
375 if( !strcmp( psz_eltname
, "station" ) &&
376 ( psz_base
|| ( psz_rt
&& psz_load
&&
377 ( b_adult
|| strcmp( psz_rt
, "NC17" ) ) ) ) )
379 char *psz_mrl
= NULL
;
380 if( psz_rt
|| psz_load
)
383 if( asprintf( &psz_mrl
, SHOUTCAST_TV_TUNEIN_URL
"%s",
390 if( asprintf( &psz_mrl
, SHOUTCAST_TUNEIN_BASE_URL
"%s?id=%s",
391 psz_base
, psz_id
) == -1 )
395 /* Create the item */
396 input_item_t
*p_input
;
397 p_input
= input_item_New( p_demux
, psz_mrl
, psz_name
);
398 input_item_CopyOptions( p_input_node
->p_item
, p_input
);
401 #define SADD_INFO( type, field ) \
403 input_item_AddInfo( p_input, _("Shoutcast"), \
404 vlc_gettext(type), "%s", field )
405 SADD_INFO( N_("Mime"), psz_mt
);
406 SADD_INFO( N_("Bitrate"), psz_br
);
407 SADD_INFO( N_("Listeners"), psz_lc
);
408 SADD_INFO( N_("Load"), psz_load
);
410 input_item_SetGenre( p_input
, psz_genre
);
412 input_item_SetNowPlaying( p_input
, psz_ct
);
414 input_item_SetRating( p_input
, psz_rt
);
415 input_item_node_AppendItem( p_input_node
, p_input
);
416 vlc_gc_decref( p_input
);
417 FREENULL( psz_base
);
418 FREENULL( psz_name
);
422 FREENULL( psz_genre
);
426 FREENULL( psz_load
);
435 static int Control( demux_t
*p_demux
, int i_query
, va_list args
)
437 VLC_UNUSED(p_demux
); VLC_UNUSED(i_query
); VLC_UNUSED(args
);