]> git.sesse.net Git - vlc/blob - modules/services_discovery/shout.c
Fix a bunch of gcc warnings
[vlc] / modules / services_discovery / shout.c
1 /*****************************************************************************
2  * shout.c:  Shoutcast services discovery module
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Sigmund Augdal Helberg <dnumgis@videolan.org>
8  *          Antoine Cellerier <dionoea -@T- videolan -d.t- 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  * Includes
27  *****************************************************************************/
28 #include <stdlib.h>                                      /* malloc(), free() */
29
30 #include <vlc/vlc.h>
31 #include <vlc/intf.h>
32 #include <vlc_interaction.h>
33
34 #include <vlc/input.h>
35
36 #include "network.h"
37
38 #include <errno.h>                                                 /* ENOMEM */
39
40 #ifdef HAVE_UNISTD_H
41 #    include <unistd.h>
42 #endif
43 #ifdef HAVE_SYS_TIME_H
44 #    include <sys/time.h>
45 #endif
46
47 /************************************************************************
48  * Macros and definitions
49  ************************************************************************/
50
51 #define MAX_LINE_LENGTH 256
52 #define SHOUTCAST_BASE_URL "http/shout-winamp://www.shoutcast.com/sbin/newxml.phtml"
53 #define SHOUTCAST_TV_BASE_URL "http/shout-winamp://www.shoutcast.com/sbin/newtvlister.phtml?alltv=1"
54
55 /*****************************************************************************
56  * Module descriptor
57  *****************************************************************************/
58
59 /* Callbacks */
60     static int  Open ( vlc_object_t *, int );
61     static int  OpenRadio ( vlc_object_t * );
62     static int  OpenTV ( vlc_object_t * );
63     static void Close( vlc_object_t * );
64
65 vlc_module_begin();
66     set_shortname( "Shoutcast");
67     set_description( _("Shoutcast radio listings") );
68     add_shortcut( "shoutcast" );
69     set_category( CAT_PLAYLIST );
70     set_subcategory( SUBCAT_PLAYLIST_SD );
71
72     add_suppressed_integer( "shoutcast-limit" );
73
74     set_capability( "services_discovery", 0 );
75     set_callbacks( OpenRadio, Close );
76
77     add_submodule();
78         set_shortname( "ShoutcastTV" );
79         set_description( _("Shoutcast TV listings") );
80         set_capability( "services_discovery", 0 );
81         set_callbacks( OpenTV, Close );
82         add_shortcut( "shoutcasttv" );
83
84 vlc_module_end();
85
86
87 /*****************************************************************************
88  * Local structures
89  *****************************************************************************/
90
91 struct services_discovery_sys_t
92 {
93     playlist_item_t *p_node_cat,*p_node_one;
94     input_item_t *p_input;
95     vlc_bool_t b_dialog;
96 };
97
98 #define RADIO 0
99 #define TV 1
100
101 /*****************************************************************************
102  * Local prototypes
103  *****************************************************************************/
104
105 /* Main functions */
106 static int OpenRadio( vlc_object_t *p_this )
107 {
108     return Open( p_this, RADIO );
109 }
110
111 static int OpenTV( vlc_object_t *p_this )
112 {
113     return Open( p_this, TV );
114 }
115
116 /*****************************************************************************
117  * Open: initialize and create stuff
118  *****************************************************************************/
119 static int Open( vlc_object_t *p_this, int i_type )
120 {
121     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
122     vlc_value_t         val;
123     playlist_view_t     *p_view;
124     playlist_t          *p_playlist = pl_Yield( p_this );
125     DECMALLOC_ERR( p_sys, services_discovery_sys_t );
126     p_sd->p_sys  = p_sys;
127
128     switch( i_type )
129     {
130         case TV:
131             p_sys->p_input = input_ItemNewExt( p_playlist,
132                                 SHOUTCAST_TV_BASE_URL, _("Shoutcast TV"),
133                                 0, NULL, -1 );
134             break;
135         case RADIO:
136         default:
137             p_sys->p_input = input_ItemNewExt( p_playlist,
138                                 SHOUTCAST_BASE_URL, _("Shoutcast"),
139                                 0, NULL, -1 );
140             break;
141     }
142     input_ItemAddOption( p_sys->p_input, "no-playlist-autostart" );
143     p_sys->p_input->b_prefers_tree = VLC_TRUE;
144     p_sys->p_node_cat = playlist_NodeAddInput( p_playlist, p_sys->p_input,
145                            p_playlist->p_root_category,
146                            PLAYLIST_APPEND, PLAYLIST_END );
147     p_sys->p_node_one = playlist_NodeAddInput( p_playlist, p_sys->p_input,
148                            p_playlist->p_root_onelevel,
149                            PLAYLIST_APPEND, PLAYLIST_END );
150     p_sys->p_node_cat->i_flags |= PLAYLIST_RO_FLAG;
151     p_sys->p_node_cat->i_flags |= PLAYLIST_SKIP_FLAG;
152     p_sys->p_node_one->i_flags |= PLAYLIST_RO_FLAG;
153     p_sys->p_node_one->i_flags |= PLAYLIST_SKIP_FLAG;
154     p_sys->p_node_one->p_input->i_id = p_sys->p_node_cat->p_input->i_id;
155
156     var_SetVoid( p_playlist, "intf-change" );
157
158     pl_Release( p_this );
159
160     input_Read( p_sd, p_sys->p_input, VLC_FALSE );
161     return VLC_SUCCESS;
162 }
163
164 /*****************************************************************************
165  * Close:
166  *****************************************************************************/
167 static void Close( vlc_object_t *p_this )
168 {
169     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
170     services_discovery_sys_t *p_sys  = p_sd->p_sys;
171     playlist_t *p_playlist =  pl_Yield( p_sd );
172     playlist_NodeDelete( p_playlist, p_sys->p_node_cat, VLC_TRUE, VLC_TRUE );
173     playlist_NodeDelete( p_playlist, p_sys->p_node_one, VLC_TRUE, VLC_TRUE );
174     pl_Release( p_sd );
175     free( p_sys );
176 }