]> git.sesse.net Git - vlc/blob - modules/access/rtsp/access.c
Round 2
[vlc] / modules / access / rtsp / access.c
1 /*****************************************************************************
2  * access.c: Real rtsp input
3  *****************************************************************************
4  * Copyright (C) 2005 VideoLAN
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <vlc/vlc.h>
28 #include <vlc_access.h>
29 #include <vlc_interface.h>
30
31 #include <vlc_network.h>
32 #include "rtsp.h"
33 #include "real.h"
34
35 /*****************************************************************************
36  * Module descriptor
37  *****************************************************************************/
38 static int  Open ( vlc_object_t * );
39 static void Close( vlc_object_t * );
40
41 #define CACHING_TEXT N_("Caching value (ms)")
42 #define CACHING_LONGTEXT N_( \
43     "Caching value for RTSP streams. This " \
44     "value should be set in milliseconds." )
45
46 vlc_module_begin();
47     set_description( _("Real RTSP") );
48     set_shortname( _("Real RTSP") );
49     set_category( CAT_INPUT );
50     set_subcategory( SUBCAT_INPUT_ACCESS );
51     add_integer( "realrtsp-caching", 3000, NULL,
52                  CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
53     set_capability( "access2", 10 );
54     set_callbacks( Open, Close );
55     add_shortcut( "realrtsp" );
56     add_shortcut( "rtsp" );
57     add_shortcut( "pnm" );
58 vlc_module_end();
59
60
61 /*****************************************************************************
62  * Exported prototypes
63  *****************************************************************************/
64 static block_t *BlockRead( access_t * );
65 static int     Seek( access_t *, int64_t );
66 static int     Control( access_t *, int, va_list );
67
68 struct access_sys_t
69 {
70     vlc_bool_t b_seekable;
71     vlc_bool_t b_pace_control;
72
73     rtsp_client_t *p_rtsp;
74
75     int fd;
76
77     block_t *p_header;
78 };
79
80 /*****************************************************************************
81  * Network wrappers
82  *****************************************************************************/
83 static int RtspConnect( void *p_userdata, char *psz_server, int i_port )
84 {
85     access_t *p_access = (access_t *)p_userdata;
86     access_sys_t *p_sys = p_access->p_sys;
87
88     /* Open connection */
89     p_sys->fd = net_ConnectTCP( p_access, psz_server, i_port );
90     if( p_sys->fd < 0 )
91     {
92         msg_Err( p_access, "cannot connect to %s:%d", psz_server, i_port );
93         intf_UserFatal( p_access, VLC_FALSE, _("Connection failed"), 
94                         _("VLC could not connect to \"%s:%d\"."), psz_server, i_port );
95         return VLC_EGENERIC;
96     }
97
98     return VLC_SUCCESS;
99 }
100
101 static int RtspDisconnect( void *p_userdata )
102 {
103     access_t *p_access = (access_t *)p_userdata;
104     access_sys_t *p_sys = p_access->p_sys;
105
106     net_Close( p_sys->fd );
107     return VLC_SUCCESS;
108 }
109
110 static int RtspRead( void *p_userdata, uint8_t *p_buffer, int i_buffer )
111 {
112     access_t *p_access = (access_t *)p_userdata;
113     access_sys_t *p_sys = p_access->p_sys;
114
115     return net_Read( p_access, p_sys->fd, 0, p_buffer, i_buffer, VLC_TRUE );
116 }
117
118 static int RtspReadLine( void *p_userdata, uint8_t *p_buffer, int i_buffer )
119 {
120     access_t *p_access = (access_t *)p_userdata;
121     access_sys_t *p_sys = p_access->p_sys;
122
123     char *psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, 0 );
124
125     //fprintf(stderr, "ReadLine: %s\n", psz);
126
127     if( psz ) strncpy( (char *)p_buffer, psz, i_buffer );
128     else *p_buffer = 0;
129
130     if( psz ) free( psz );
131     return 0;
132 }
133
134 static int RtspWrite( void *p_userdata, uint8_t *p_buffer, int i_buffer )
135 {
136     access_t *p_access = (access_t *)p_userdata;
137     access_sys_t *p_sys = p_access->p_sys;
138
139     //fprintf(stderr, "Write: %s", p_buffer);
140
141     net_Printf( VLC_OBJECT(p_access), p_sys->fd, 0, "%s", p_buffer );
142
143     return 0;
144 }
145
146 /*****************************************************************************
147  * Open: open the rtsp connection
148  *****************************************************************************/
149 static int Open( vlc_object_t *p_this )
150 {
151     access_t *p_access = (access_t *)p_this;
152     access_sys_t *p_sys;
153     char *psz_server = 0;
154     int i_result;
155
156     p_access->pf_read = NULL;
157     p_access->pf_block = BlockRead;
158     p_access->pf_seek = Seek;
159     p_access->pf_control = Control;
160     p_access->info.i_update = 0;
161     p_access->info.i_size = 0;
162     p_access->info.i_pos = 0;
163     p_access->info.b_eof = VLC_FALSE;
164     p_access->info.i_title = 0;
165     p_access->info.i_seekpoint = 0;
166     p_access->p_sys = p_sys = malloc( sizeof( access_sys_t ) );
167     p_sys->p_rtsp = malloc( sizeof( rtsp_client_t) );
168
169     p_sys->p_header = 0;
170     p_sys->p_rtsp->p_userdata = p_access;
171     p_sys->p_rtsp->pf_connect = RtspConnect;
172     p_sys->p_rtsp->pf_disconnect = RtspDisconnect;
173     p_sys->p_rtsp->pf_read = RtspRead;
174     p_sys->p_rtsp->pf_read_line = RtspReadLine;
175     p_sys->p_rtsp->pf_write = RtspWrite;
176
177     i_result = rtsp_connect( p_sys->p_rtsp, p_access->psz_path, 0 );
178     if( i_result )
179     {
180         msg_Dbg( p_access, "could not connect to: %s", p_access->psz_path );
181         free( p_sys->p_rtsp );
182         p_sys->p_rtsp = 0;
183         goto error;
184     }
185
186     msg_Dbg( p_access, "rtsp connected" );
187
188     /* looking for server type */
189     if( rtsp_search_answers( p_sys->p_rtsp, "Server" ) )
190         psz_server = strdup( rtsp_search_answers( p_sys->p_rtsp, "Server" ) );
191     else
192     {
193         if( rtsp_search_answers( p_sys->p_rtsp, "RealChallenge1" ) )
194             psz_server = strdup("Real");
195         else
196             psz_server = strdup("unknown");
197     }
198
199     if( strstr( psz_server, "Real" ) || strstr( psz_server, "Helix" ) )
200     {
201         uint32_t bandwidth = 10485800;
202         rmff_header_t *h;
203
204         msg_Dbg( p_access, "found a real/helix rtsp server" );
205
206         if( !(h = real_setup_and_get_header( p_sys->p_rtsp, bandwidth )) )
207         {
208             /* Check if we got a redirect */
209             if( rtsp_search_answers( p_sys->p_rtsp, "Location" ) )
210             {
211                 msg_Dbg( p_access, "redirect: %s",
212                          rtsp_search_answers(p_sys->p_rtsp, "Location") );
213                 msg_Warn( p_access, "redirect not supported" );
214                 goto error;
215             }
216
217
218             msg_Err( p_access, "rtsp session can not be established" );
219             intf_UserFatal( p_access, VLC_FALSE, _("Session failed"), 
220                     _("The requested RTSP session could not be established.") );
221             goto error;
222         }
223
224         p_sys->p_header = block_New( p_access, 4096 );
225         p_sys->p_header->i_buffer =
226             rmff_dump_header( h, (char *)p_sys->p_header->p_buffer, 1024 );
227         rmff_free_header( h );
228     }
229     else
230     {
231         msg_Warn( p_access, "only real/helix rtsp servers supported for now" );
232         goto error;
233     }
234
235     /* Update default_pts to a suitable value for file access */
236     var_Create( p_access, "realrtsp-caching",
237                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT);
238
239     if( psz_server ) free( psz_server );
240     return VLC_SUCCESS;
241
242  error:
243     if( psz_server ) free( psz_server );
244     Close( p_this );
245     return VLC_EGENERIC;
246 }
247
248 /*****************************************************************************
249  * Close: close the target
250  *****************************************************************************/
251 static void Close( vlc_object_t * p_this )
252 {
253     access_t     *p_access = (access_t*)p_this;
254     access_sys_t *p_sys = p_access->p_sys;
255
256     if( p_sys->p_rtsp ) rtsp_close( p_sys->p_rtsp );
257     if( p_sys->p_rtsp ) free( p_sys->p_rtsp );
258     free( p_sys );
259 }
260
261 /*****************************************************************************
262  * Read: standard read on a file descriptor.
263  *****************************************************************************/
264 static block_t *BlockRead( access_t *p_access )
265 {
266     access_sys_t *p_sys = p_access->p_sys;
267     block_t *p_block;
268     rmff_pheader_t pheader;
269     int i_size;
270
271     if( p_sys->p_header )
272     {
273         p_block = p_sys->p_header;
274         p_sys->p_header = 0;
275         return p_block;
276     }
277
278     i_size = real_get_rdt_chunk_header( p_access->p_sys->p_rtsp, &pheader );
279     if( i_size <= 0 ) return 0;
280
281     p_block = block_New( p_access, i_size );
282     p_block->i_buffer = real_get_rdt_chunk( p_access->p_sys->p_rtsp, &pheader,
283                                             &p_block->p_buffer );
284
285     return p_block;
286 }
287
288 /*****************************************************************************
289  * Seek: seek to a specific location in a file
290  *****************************************************************************/
291 static int Seek( access_t *p_access, int64_t i_pos )
292 {
293     return VLC_SUCCESS;
294 }
295
296 /*****************************************************************************
297  * Control:
298  *****************************************************************************/
299 static int Control( access_t *p_access, int i_query, va_list args )
300 {
301     vlc_bool_t   *pb_bool;
302     int          *pi_int;
303     int64_t      *pi_64;
304
305     switch( i_query )
306     {
307         /* */
308         case ACCESS_CAN_SEEK:
309         case ACCESS_CAN_FASTSEEK:
310             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
311             *pb_bool = VLC_FALSE;//p_sys->b_seekable;
312             break;
313
314         case ACCESS_CAN_PAUSE:
315             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
316             *pb_bool = VLC_FALSE;
317             break;
318
319         case ACCESS_CAN_CONTROL_PACE:
320             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
321             *pb_bool = VLC_TRUE;//p_sys->b_pace_control;
322             break;
323
324         /* */
325         case ACCESS_GET_MTU:
326             pi_int = (int*)va_arg( args, int * );
327             *pi_int = 0;
328             break;
329
330         case ACCESS_GET_PTS_DELAY:
331             pi_64 = (int64_t*)va_arg( args, int64_t * );
332             *pi_64 = var_GetInteger( p_access, "realrtsp-caching" ) * 1000;
333             break;
334
335         /* */
336         case ACCESS_SET_PAUSE_STATE:
337             /* Nothing to do */
338             break;
339
340         case ACCESS_GET_TITLE_INFO:
341         case ACCESS_SET_TITLE:
342         case ACCESS_SET_SEEKPOINT:
343         case ACCESS_SET_PRIVATE_ID_STATE:
344         case ACCESS_GET_META:
345             return VLC_EGENERIC;
346
347         default:
348             msg_Warn( p_access, "unimplemented query in control" );
349             return VLC_EGENERIC;
350     }
351
352     return VLC_SUCCESS;
353 }