]> git.sesse.net Git - vlc/blob - src/stream_output/announce.c
* src/*: portability fixes.
[vlc] / src / stream_output / announce.c
1 /*****************************************************************************
2  * announce.c : announce handler
3  *****************************************************************************
4  * Copyright (C) 2002-2004 VideoLAN
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                                /* free() */
28 #include <stdio.h>                                              /* sprintf() */
29 #include <string.h>                                            /* strerror() */
30
31 #include <vlc/vlc.h>
32 #include <vlc/sout.h>
33
34 /*****************************************************************************
35  * Local prototypes
36  *****************************************************************************/
37 #define FREE( p ) if( p ) { free( p ); (p) = NULL; }
38
39
40 /****************************************************************************
41  * Sout-side functions
42  ****************************************************************************/
43
44 /**
45  *  Register a new session with the announce handler
46  *
47  * \param p_sout a sout instance structure
48  * \param p_session a session descriptor
49  * \param p_method an announce method descriptor
50  * \return VLC_SUCCESS or an error
51  */
52 int sout_AnnounceRegister( sout_instance_t *p_sout,
53                        session_descriptor_t *p_session,
54                        announce_method_t *p_method )
55 {
56     int i_ret;
57     announce_handler_t *p_announce = (announce_handler_t*)
58                               vlc_object_find( p_sout,
59                                               VLC_OBJECT_ANNOUNCE,
60                                               FIND_ANYWHERE );
61
62     if( !p_announce )
63     {
64         msg_Dbg( p_sout, "No announce handler found, creating one" );
65         p_announce = announce_HandlerCreate( p_sout );
66         if( !p_announce )
67         {
68             msg_Err( p_sout, "Creation failed" );
69             return VLC_ENOMEM;
70         }
71         vlc_object_yield( p_announce );
72         msg_Dbg( p_sout,"Creation done" );
73     }
74
75     i_ret = announce_Register( p_announce, p_session, p_method );
76     vlc_object_release( p_announce );
77
78     return i_ret;
79 }
80
81 /**
82  *  Register a new session with the announce handler, using a pregenerated SDP
83  *
84  * \param p_sout a sout instance structure
85  * \param psz_sdp the SDP to register
86  * \param p_method an announce method descriptor
87  * \return the new session descriptor structure
88  */
89 session_descriptor_t *sout_AnnounceRegisterSDP( sout_instance_t *p_sout,
90                           char *psz_sdp, announce_method_t *p_method )
91 {
92     session_descriptor_t *p_session;
93     announce_handler_t *p_announce = (announce_handler_t*)
94                                      vlc_object_find( p_sout,
95                                               VLC_OBJECT_ANNOUNCE,
96                                               FIND_ANYWHERE );
97     if( !p_announce )
98     {
99         msg_Dbg( p_sout, "no announce handler found, creating one" );
100         p_announce = announce_HandlerCreate( p_sout );
101         if( !p_announce )
102         {
103             msg_Err( p_sout, "Creation failed" );
104             return NULL;
105         }
106         vlc_object_yield( p_announce );
107     }
108
109     if( p_method->i_type != METHOD_TYPE_SAP )
110     {
111         msg_Warn( p_sout,"forcing SAP announcement");
112     }
113
114     p_session = sout_AnnounceSessionCreate();
115     p_session->psz_sdp = strdup( psz_sdp );
116     announce_Register( p_announce, p_session, p_method );
117
118     vlc_object_release( p_announce );
119     return p_session;
120 }
121
122 /**
123  *  UnRegister an existing session
124  *
125  * \param p_sout a sout instance structure
126  * \param p_session the session descriptor
127  * \return VLC_SUCCESS or an error
128  */
129 int sout_AnnounceUnRegister( sout_instance_t *p_sout,
130                              session_descriptor_t *p_session )
131 {
132     int i_ret;
133     announce_handler_t *p_announce = (announce_handler_t*)
134                               vlc_object_find( p_sout,
135                                               VLC_OBJECT_ANNOUNCE,
136                                               FIND_ANYWHERE );
137     if( !p_announce )
138     {
139         msg_Dbg( p_sout, "Unable to remove announce: no announce handler" );
140         return VLC_ENOOBJ;
141     }
142     i_ret  = announce_UnRegister( p_announce, p_session );
143
144     vlc_object_release( p_announce );
145
146     return i_ret;
147 }
148
149 /**
150  * Create and initialize a session descriptor
151  *
152  * \return a new session descriptor
153  */
154 session_descriptor_t * sout_AnnounceSessionCreate()
155 {
156     session_descriptor_t *p_session;
157
158     p_session = (session_descriptor_t *)malloc( sizeof(session_descriptor_t));
159
160     if( p_session)
161     {
162         p_session->p_sap = NULL;
163         p_session->psz_sdp = NULL;
164         p_session->psz_name = NULL;
165         p_session->psz_uri = NULL;
166         p_session->i_port = 0;
167     }
168
169     return p_session;
170 }
171
172 /**
173  * Destroy a session descriptor and free all
174  *
175  * \param p_session the session to destroy
176  * \return Nothing
177  */
178 void sout_AnnounceSessionDestroy( session_descriptor_t *p_session )
179 {
180     if( p_session )
181     {
182         FREE( p_session->psz_name );
183         FREE( p_session->psz_uri );
184         FREE( p_session->psz_sdp );
185         FREE( p_session );
186     }
187 }
188
189 /**
190  * Create and initialize an announcement method structure
191  *
192  * \param i_type METHOD_TYPE_SAP or METHOD_TYPE_SLP
193  * \return a new announce_method structure
194  */
195 announce_method_t * sout_AnnounceMethodCreate( int i_type )
196 {
197     announce_method_t *p_method;
198
199     p_method = (announce_method_t *)malloc( sizeof(announce_method_t) );
200
201     if( p_method )
202     {
203         p_method->i_type = i_type;
204         if( i_type == METHOD_TYPE_SAP )
205         {
206             /* Default values */
207             p_method->psz_address = NULL;
208             p_method->i_ip_version = 4 ;
209             p_method->psz_ipv6_scope = strdup("8");
210         }
211     }
212     return p_method;
213 }
214
215 /************************************************************************
216  * Announce handler functions (private)
217  ************************************************************************/
218
219 /**
220  * Create the announce handler object
221  *
222  * \param p_this a vlc_object structure
223  * \return the new announce handler or NULL on error
224  */
225 announce_handler_t *__announce_HandlerCreate( vlc_object_t *p_this )
226 {
227     announce_handler_t *p_announce;
228
229     p_announce = vlc_object_create( p_this, VLC_OBJECT_ANNOUNCE );
230
231     if( !p_announce )
232     {
233         msg_Err( p_this, "out of memory" );
234         return NULL;
235     }
236
237     p_announce->p_sap = NULL;
238
239     vlc_object_attach( p_announce, p_this->p_vlc);
240
241
242     return p_announce;
243 }
244
245 /**
246  * Destroy a  announce handler object
247  *
248  * \param p_announce the announce handler to destroy
249  * \return VLC_SUCCESS or an error
250  */
251 int announce_HandlerDestroy( announce_handler_t *p_announce )
252 {
253
254     if( p_announce->p_sap )
255     {
256         p_announce->p_sap->b_die = VLC_TRUE;
257         /* Wait for the SAP thread to exit */
258         vlc_thread_join( p_announce->p_sap );
259         announce_SAPHandlerDestroy( p_announce->p_sap );
260     }
261
262     /* Free the structure */
263     vlc_object_destroy( p_announce );
264
265     return VLC_SUCCESS;
266 }
267
268 /* Register an announce */
269 int announce_Register( announce_handler_t *p_announce,
270                        session_descriptor_t *p_session,
271                        announce_method_t *p_method )
272 {
273
274     msg_Dbg( p_announce, "registering announce");
275     if( p_method->i_type == METHOD_TYPE_SAP )
276     {
277         /* Do we already have a SAP announce handler ? */
278         if( !p_announce->p_sap )
279         {
280             sap_handler_t *p_sap = announce_SAPHandlerCreate( p_announce );
281             msg_Dbg( p_announce, "creating SAP announce handler");
282             if( !p_sap )
283             {
284                 msg_Err( p_announce, "SAP handler creation failed" );
285                 return VLC_ENOOBJ;
286             }
287             p_announce->p_sap = p_sap;
288         }
289         /* this will set p_session->p_sap for later deletion */
290         msg_Dbg( p_announce, "adding SAP session");
291         p_announce->p_sap->pf_add( p_announce->p_sap, p_session, p_method );
292     }
293     else if( p_method->i_type == METHOD_TYPE_SLP )
294     {
295         msg_Dbg( p_announce, "SLP unsupported at the moment" );
296         return VLC_EGENERIC;
297     }
298     else
299     {
300         msg_Dbg( p_announce, "Announce type unsupported" );
301         return VLC_EGENERIC;
302     }
303     return VLC_SUCCESS;;
304 }
305
306
307 /* Unregister an announce */
308 int announce_UnRegister( announce_handler_t *p_announce,
309                   session_descriptor_t *p_session )
310 {
311     msg_Dbg( p_announce, "unregistering announce" );
312     if( p_session->p_sap != NULL ) /* SAP Announce */
313     {
314         if( !p_announce->p_sap )
315         {
316             msg_Err( p_announce, "can't remove announce, no SAP handler");
317             return VLC_ENOOBJ;
318         }
319         p_announce->p_sap->pf_del( p_announce->p_sap, p_session );
320     }
321     return VLC_SUCCESS;
322 }