]> git.sesse.net Git - vlc/blob - modules/services_discovery/podcast.c
Remove most stray semi-colons in module descriptions
[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_thread_t thread;
93     vlc_mutex_t lock;
94     vlc_cond_t  wait;
95     bool b_update;
96 };
97
98 /*****************************************************************************
99  * Local prototypes
100  *****************************************************************************/
101 static void *Run( void * );
102 static int UrlsChange( vlc_object_t *, char const *, vlc_value_t,
103                        vlc_value_t, void * );
104 static void ParseUrls( services_discovery_t *p_sd, char *psz_urls );
105
106 /*****************************************************************************
107  * Open: initialize and create stuff
108  *****************************************************************************/
109 static int Open( vlc_object_t *p_this )
110 {
111     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
112     services_discovery_sys_t *p_sys  = malloc(
113                                     sizeof( services_discovery_sys_t ) );
114     if( !p_sys )
115         return VLC_ENOMEM;
116
117     p_sys->i_urls = 0;
118     p_sys->ppsz_urls = NULL;
119     p_sys->i_input = 0;
120     p_sys->pp_input = NULL;
121     vlc_mutex_init( &p_sys->lock );
122     vlc_cond_init( &p_sys->wait );
123     p_sys->b_update = true;
124
125     p_sd->p_sys  = p_sys;
126     /* Give us a name */
127     services_discovery_SetLocalizedName( p_sd, _("Podcasts") );
128
129     /* Launch the callback associated with this variable */
130     var_Create( p_sd, "podcast-urls", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
131     var_AddCallback( p_sd, "podcast-urls", UrlsChange, p_sys );
132
133     if (vlc_clone (&p_sys->thread, Run, p_sd, VLC_THREAD_PRIORITY_LOW))
134     {
135         free (p_sys);
136         return VLC_EGENERIC;
137     }
138     return VLC_SUCCESS;
139 }
140
141 /*****************************************************************************
142  * Close:
143  *****************************************************************************/
144 static void Close( vlc_object_t *p_this )
145 {
146     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
147     services_discovery_sys_t *p_sys  = p_sd->p_sys;
148     int i;
149
150     vlc_cancel (p_sys->thread);
151     vlc_join (p_sys->thread, NULL);
152
153     var_DelCallback( p_sd, "podcast-urls", UrlsChange, p_sys );
154     vlc_cond_destroy( &p_sys->wait );
155     vlc_mutex_destroy( &p_sys->lock );
156
157     for( i = 0; i < p_sys->i_input; i++ )
158     {
159         if( p_sd->p_sys->pp_input[i] )
160         {
161             input_StopThread( p_sd->p_sys->pp_input[i] );
162             vlc_object_release( p_sd->p_sys->pp_input[i] );
163             p_sd->p_sys->pp_input[i] = NULL;
164         }
165     }
166     free( p_sd->p_sys->pp_input );
167     for( i = 0; i < p_sys->i_urls; i++ ) free( p_sys->ppsz_urls[i] );
168     free( p_sys->ppsz_urls );
169     free( p_sys );
170 }
171
172 /*****************************************************************************
173  * Run: main thread
174  *****************************************************************************/
175 static void *Run( void *data )
176 {
177     services_discovery_t *p_sd = data;
178     services_discovery_sys_t *p_sys  = p_sd->p_sys;
179
180     vlc_mutex_lock( &p_sys->lock );
181     mutex_cleanup_push( &p_sys->lock );
182     for( ;; )
183     {
184         while( !p_sys->b_update )
185             vlc_cond_wait( &p_sys->wait, &p_sys->lock );
186
187         int canc = vlc_savecancel ();
188         msg_Dbg( p_sd, "Update required" );
189         char* psz_urls = var_GetNonEmptyString( p_sd, "podcast-urls" );
190         if( psz_urls != NULL )
191             ParseUrls( p_sd, psz_urls );
192         free( psz_urls );
193         p_sys->b_update = false;
194
195         for( int i = 0; i < p_sd->p_sys->i_input; i++ )
196         {
197             if( p_sd->p_sys->pp_input[i]->b_eof
198                 || p_sd->p_sys->pp_input[i]->b_error )
199             {
200                 input_StopThread( p_sd->p_sys->pp_input[i] );
201                 vlc_object_release( p_sd->p_sys->pp_input[i] );
202                 p_sd->p_sys->pp_input[i] = NULL;
203                 REMOVE_ELEM( p_sys->pp_input, p_sys->i_input, i );
204                 i--;
205             }
206         }
207         vlc_restorecancel (canc);
208     }
209     vlc_cleanup_pop();
210     assert(0); /* dead code */
211 }
212
213 static int UrlsChange( vlc_object_t *p_this, char const *psz_var,
214                        vlc_value_t oldval, vlc_value_t newval,
215                        void *p_data )
216 {
217     VLC_UNUSED(p_this); VLC_UNUSED(psz_var); VLC_UNUSED(oldval);
218     VLC_UNUSED(newval);
219     services_discovery_sys_t *p_sys  = (services_discovery_sys_t *)p_data;
220
221     vlc_mutex_lock( &p_sys->lock );
222     p_sys->b_update = true;
223     vlc_cond_signal( &p_sys->wait );
224     vlc_mutex_unlock( &p_sys->lock );
225     return VLC_SUCCESS;
226 }
227
228 static void ParseUrls( services_discovery_t *p_sd, char *psz_urls )
229 {
230     services_discovery_sys_t *p_sys = p_sd->p_sys;
231     for( ;; )
232     {
233         int i;
234         char *psz_tok = strchr( psz_urls, '|' );
235         if( psz_tok ) *psz_tok = '\0';
236         for( i = 0; i < p_sys->i_urls; i++ )
237             if( !strcmp( psz_urls, p_sys->ppsz_urls[i] ) )
238                 break;
239         if( i == p_sys->i_urls )
240         {
241             /* Only add new urls.
242              * FIXME: We don't delete urls which have been removed from
243              * the config since we don't have a way to know which inputs
244              * they spawned */
245             input_item_t *p_input;
246             INSERT_ELEM( p_sys->ppsz_urls, p_sys->i_urls, p_sys->i_urls,
247                          strdup( psz_urls ) );
248             p_input = input_item_NewExt( p_sd, psz_urls,
249                                         psz_urls, 0, NULL, -1 );
250             input_item_AddOption( p_input, "demux=podcast" );
251             services_discovery_AddItem( p_sd, p_input, NULL /* no cat */ );
252             vlc_gc_decref( p_input );
253             INSERT_ELEM( p_sys->pp_input, p_sys->i_input, p_sys->i_input,
254                          input_CreateThread( p_sd, p_input ) );
255         }
256         if( psz_tok )  psz_urls = psz_tok+1;
257         else           return;
258     }
259 }