]> git.sesse.net Git - vlc/blob - modules/services_discovery/podcast.c
d6d6a7ac59fc6bd6a2482a357c6ac9c141c51dbd
[vlc] / modules / services_discovery / podcast.c
1 /*****************************************************************************
2  * podcast.c:  Podcast services discovery module
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
8  *
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.
13  *
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.
18  *
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  *****************************************************************************/
23
24 /*****************************************************************************
25  * Includes
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_playlist.h>
35 #include <vlc_network.h>
36 #include <assert.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 /*****************************************************************************
52  * Module descriptor
53  *****************************************************************************/
54
55 /* Callbacks */
56 static int  Open ( vlc_object_t * );
57 static void Close( vlc_object_t * );
58
59 #define URLS_TEXT N_("Podcast URLs list")
60 #define URLS_LONGTEXT N_("Enter the list of podcasts to retrieve, " \
61                          "separated by '|' (pipe)." )
62
63 vlc_module_begin();
64     set_shortname( "Podcast");
65     set_description( N_("Podcasts") );
66     set_category( CAT_PLAYLIST );
67     set_subcategory( SUBCAT_PLAYLIST_SD );
68
69     add_string( "podcast-urls", NULL, NULL,
70                 URLS_TEXT, URLS_LONGTEXT, false );
71         change_autosave();
72
73     set_capability( "services_discovery", 0 );
74     set_callbacks( Open, Close );
75
76 vlc_module_end();
77
78
79 /*****************************************************************************
80  * Local structures
81  *****************************************************************************/
82
83 struct services_discovery_sys_t
84 {
85     /* playlist node */
86     input_thread_t **pp_input;
87     int i_input;
88
89     char **ppsz_urls;
90     int i_urls;
91
92     vlc_mutex_t lock;
93     vlc_cond_t  wait;
94     bool b_update;
95 };
96
97 /*****************************************************************************
98  * Local prototypes
99  *****************************************************************************/
100 static void Run( services_discovery_t *p_intf );
101 static int UrlsChange( vlc_object_t *, char const *, vlc_value_t,
102                        vlc_value_t, void * );
103 static void ParseUrls( services_discovery_t *p_sd, char *psz_urls );
104
105 /*****************************************************************************
106  * Open: initialize and create stuff
107  *****************************************************************************/
108 static int Open( vlc_object_t *p_this )
109 {
110     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
111     services_discovery_sys_t *p_sys  = malloc(
112                                     sizeof( services_discovery_sys_t ) );
113     if( !p_sys )
114         return VLC_ENOMEM;
115
116     p_sys->i_urls = 0;
117     p_sys->ppsz_urls = NULL;
118     p_sys->i_input = 0;
119     p_sys->pp_input = NULL;
120     vlc_mutex_init( &p_sys->lock );
121     vlc_cond_init( &p_sys->wait );
122     p_sys->b_update = true;
123
124     p_sd->pf_run = Run;
125     p_sd->p_sys  = p_sys;
126
127     /* Give us a name */
128     services_discovery_SetLocalizedName( p_sd, _("Podcasts") );
129
130     /* Launch the callback associated with this variable */
131     var_Create( p_sd, "podcast-urls", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
132     var_AddCallback( p_sd, "podcast-urls", UrlsChange, p_sys );
133
134     return VLC_SUCCESS;
135 }
136
137 /*****************************************************************************
138  * Close:
139  *****************************************************************************/
140 static void Close( vlc_object_t *p_this )
141 {
142     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
143     services_discovery_sys_t *p_sys  = p_sd->p_sys;
144     int i;
145
146     var_DelCallback( p_sd, "podcast-urls", UrlsChange, p_sys );
147     vlc_cond_destroy( &p_sys->wait );
148     vlc_mutex_destroy( &p_sys->lock );
149
150     for( i = 0; i < p_sys->i_input; i++ )
151     {
152         if( p_sd->p_sys->pp_input[i] )
153         {
154             input_StopThread( p_sd->p_sys->pp_input[i] );
155             vlc_object_release( p_sd->p_sys->pp_input[i] );
156             p_sd->p_sys->pp_input[i] = NULL;
157         }
158     }
159     free( p_sd->p_sys->pp_input );
160     for( i = 0; i < p_sys->i_urls; i++ ) free( p_sys->ppsz_urls[i] );
161     free( p_sys->ppsz_urls );
162     free( p_sys );
163 }
164
165 /*****************************************************************************
166  * Run: main thread
167  *****************************************************************************/
168 static void Run( services_discovery_t *p_sd )
169 {
170     services_discovery_sys_t *p_sys  = p_sd->p_sys;
171
172     vlc_mutex_lock( &p_sys->lock );
173     mutex_cleanup_push( &p_sys->lock );
174     for( ;; )
175     {
176         while( !p_sys->b_update )
177             vlc_cond_wait( &p_sys->wait, &p_sys->lock );
178
179         int canc = vlc_savecancel ();
180         msg_Dbg( p_sd, "Update required" );
181         char* psz_urls = var_GetNonEmptyString( p_sd, "podcast-urls" );
182         if( psz_urls != NULL )
183             ParseUrls( p_sd, psz_urls );
184         free( psz_urls );
185         p_sys->b_update = false;
186
187         for( int i = 0; i < p_sd->p_sys->i_input; i++ )
188         {
189             if( p_sd->p_sys->pp_input[i]->b_eof
190                 || p_sd->p_sys->pp_input[i]->b_error )
191             {
192                 input_StopThread( p_sd->p_sys->pp_input[i] );
193                 vlc_object_release( p_sd->p_sys->pp_input[i] );
194                 p_sd->p_sys->pp_input[i] = NULL;
195                 REMOVE_ELEM( p_sys->pp_input, p_sys->i_input, i );
196                 i--;
197             }
198         }
199         vlc_restorecancel (canc);
200     }
201     vlc_cleanup_pop();
202     assert(0); /* dead code */
203 }
204
205 static int UrlsChange( vlc_object_t *p_this, char const *psz_var,
206                        vlc_value_t oldval, vlc_value_t newval,
207                        void *p_data )
208 {
209     VLC_UNUSED(p_this); VLC_UNUSED(psz_var); VLC_UNUSED(oldval);
210     VLC_UNUSED(newval);
211     services_discovery_sys_t *p_sys  = (services_discovery_sys_t *)p_data;
212
213     vlc_mutex_lock( &p_sys->lock );
214     p_sys->b_update = true;
215     vlc_cond_signal( &p_sys->wait );
216     vlc_mutex_unlock( &p_sys->lock );
217     return VLC_SUCCESS;
218 }
219
220 static void ParseUrls( services_discovery_t *p_sd, char *psz_urls )
221 {
222     services_discovery_sys_t *p_sys = p_sd->p_sys;
223     for( ;; )
224     {
225         int i;
226         char *psz_tok = strchr( psz_urls, '|' );
227         if( psz_tok ) *psz_tok = '\0';
228         for( i = 0; i < p_sys->i_urls; i++ )
229             if( !strcmp( psz_urls, p_sys->ppsz_urls[i] ) )
230                 break;
231         if( i == p_sys->i_urls )
232         {
233             /* Only add new urls.
234              * FIXME: We don't delete urls which have been removed from
235              * the config since we don't have a way to know which inputs
236              * they spawned */
237             input_item_t *p_input;
238             INSERT_ELEM( p_sys->ppsz_urls, p_sys->i_urls, p_sys->i_urls,
239                          strdup( psz_urls ) );
240             p_input = input_item_NewExt( p_sd, psz_urls,
241                                         psz_urls, 0, NULL, -1 );
242             input_item_AddOption( p_input, "demux=podcast" );
243             services_discovery_AddItem( p_sd, p_input, NULL /* no cat */ );
244             vlc_gc_decref( p_input );
245             INSERT_ELEM( p_sys->pp_input, p_sys->i_input, p_sys->i_input,
246                          input_CreateThread( p_sd, p_input ) );
247         }
248         if( psz_tok )  psz_urls = psz_tok+1;
249         else           return;
250     }
251 }