]> git.sesse.net Git - vlc/blob - modules/access/tcp.c
Some more demux and access code factorization
[vlc] / modules / access / tcp.c
1 /*****************************************************************************
2  * tcp.c: TCP input module
3  *****************************************************************************
4  * Copyright (C) 2003-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
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 <stdlib.h>
28
29 #include <vlc/vlc.h>
30 #include <vlc/input.h>
31
32 #include "network.h"
33
34 /*****************************************************************************
35  * Module descriptor
36  *****************************************************************************/
37 #define CACHING_TEXT N_("Caching value in ms")
38 #define CACHING_LONGTEXT N_( \
39     "Caching value for TCP streams. This " \
40     "value should be set in milliseconds." )
41
42 static int  Open ( vlc_object_t * );
43 static void Close( vlc_object_t * );
44
45 vlc_module_begin();
46     set_shortname( _("TCP") );
47     set_description( _("TCP input") );
48     set_category( CAT_INPUT );
49     set_subcategory( SUBCAT_INPUT_ACCESS );
50
51     add_integer( "tcp-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
52                  CACHING_LONGTEXT, VLC_TRUE );
53
54     set_capability( "access2", 0 );
55     add_shortcut( "tcp" );
56     set_callbacks( Open, Close );
57 vlc_module_end();
58
59 /*****************************************************************************
60  * Local prototypes
61  *****************************************************************************/
62 struct access_sys_t
63 {
64     int        fd;
65 };
66
67
68 static int Read( access_t *, uint8_t *, int );
69 static int Control( access_t *, int, va_list );
70
71 /*****************************************************************************
72  * Open: open the socket
73  *****************************************************************************/
74 static int Open( vlc_object_t *p_this )
75 {
76     access_t     *p_access = (access_t *)p_this;
77     access_sys_t *p_sys;
78
79     char         *psz_dup = strdup(p_access->psz_path);
80     char         *psz_parser = psz_dup;
81
82     /* Parse server:port */
83     if( *psz_parser == '[' )
84     {
85         psz_parser = strchr( psz_parser, ']' );
86         if( psz_parser == NULL )
87             psz_parser = psz_dup;
88     }
89     psz_parser = strchr( psz_parser, ':' );
90
91     if( psz_parser == NULL )
92     {
93         msg_Err( p_access, "missing port number : %s", psz_dup );
94         free( psz_dup );
95         return VLC_EGENERIC;
96     }
97
98     *psz_parser++ = '\0';
99
100     /* Init p_access */
101     access_InitFields( p_access ); \
102     ACCESS_SET_CALLBACKS( Read, NULL, Control, NULL ); \
103     MALLOC_ERR( p_access->p_sys, access_sys_t ); \
104     p_sys = p_access->p_sys; memset( p_sys, 0, sizeof( access_sys_t ) );
105
106     p_sys->fd = net_ConnectTCP( p_access, psz_dup, atoi( psz_parser ) );
107     free( psz_dup );
108
109     if( p_sys->fd < 0 )
110     {
111         free( p_sys );
112         return VLC_EGENERIC;
113     }
114
115     /* Update default_pts to a suitable value for udp access */
116     var_Create( p_access, "tcp-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
117
118     return VLC_SUCCESS;
119 }
120
121 /*****************************************************************************
122  * Close: free unused data structures
123  *****************************************************************************/
124 static void Close( vlc_object_t *p_this )
125 {
126     access_t     *p_access = (access_t *)p_this;
127     access_sys_t *p_sys = p_access->p_sys;
128
129     net_Close( p_sys->fd );
130     free( p_sys );
131 }
132
133 /*****************************************************************************
134  * Read: read on a file descriptor, checking b_die periodically
135  *****************************************************************************/
136 static int Read( access_t *p_access, uint8_t *p_buffer, int i_len )
137 {
138     access_sys_t *p_sys = p_access->p_sys;
139     int i_read;
140
141     if( p_access->info.b_eof )
142         return 0;
143
144     i_read = net_Read( p_access, p_sys->fd, NULL, p_buffer, i_len,
145                        VLC_FALSE );
146     if( i_read == 0 )
147         p_access->info.b_eof = VLC_TRUE;
148     else if( i_read > 0 )
149         p_access->info.i_pos += i_read;
150
151     return i_read;
152 }
153
154 /*****************************************************************************
155  * Control:
156  *****************************************************************************/
157 static int Control( access_t *p_access, int i_query, va_list args )
158 {
159     vlc_bool_t   *pb_bool;
160     int          *pi_int;
161     int64_t      *pi_64;
162
163     switch( i_query )
164     {
165         /* */
166         case ACCESS_CAN_SEEK:
167         case ACCESS_CAN_FASTSEEK:
168             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
169             *pb_bool = VLC_FALSE;
170             break;
171         case ACCESS_CAN_PAUSE:
172             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
173             *pb_bool = VLC_TRUE;    /* FIXME */
174             break;
175         case ACCESS_CAN_CONTROL_PACE:
176             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
177             *pb_bool = VLC_TRUE;    /* FIXME */
178             break;
179
180         /* */
181         case ACCESS_GET_MTU:
182             pi_int = (int*)va_arg( args, int * );
183             *pi_int = 0;
184             break;
185
186         case ACCESS_GET_PTS_DELAY:
187             pi_64 = (int64_t*)va_arg( args, int64_t * );
188             *pi_64 = (int64_t)var_GetInteger( p_access, "tcp-caching" ) * I64C(1000);
189             break;
190
191         /* */
192         case ACCESS_SET_PAUSE_STATE:
193             /* Nothing to do */
194             break;
195
196         case ACCESS_GET_TITLE_INFO:
197         case ACCESS_SET_TITLE:
198         case ACCESS_SET_SEEKPOINT:
199         case ACCESS_SET_PRIVATE_ID_STATE:
200             return VLC_EGENERIC;
201
202         default:
203             msg_Warn( p_access, "unimplemented query in control" );
204             return VLC_EGENERIC;
205
206     }
207     return VLC_SUCCESS;
208 }