]> git.sesse.net Git - vlc/blob - modules/access/tcp.c
* all: removed ACCESS_GET_SEEKPOINT_INFO.
[vlc] / modules / access / tcp.c
1 /*****************************************************************************
2  * tcp.c: TCP input module
3  *****************************************************************************
4  * Copyright (C) 2003-2004 VideoLAN
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., 59 Temple Place - Suite 330, Boston, MA  02111, 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     "Allows you to modify the default caching value for TCP streams. This " \
40     "value should be set in millisecond units." )
41
42 static int  Open ( vlc_object_t * );
43 static void Close( vlc_object_t * );
44
45 vlc_module_begin();
46     set_description( _("TCP input") );
47
48     add_integer( "tcp-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
49                  CACHING_LONGTEXT, VLC_TRUE );
50
51     set_capability( "access2", 0 );
52     add_shortcut( "tcp" );
53     set_callbacks( Open, Close );
54 vlc_module_end();
55
56 /*****************************************************************************
57  * Local prototypes
58  *****************************************************************************/
59 struct access_sys_t
60 {
61     int        fd;
62 };
63
64
65 static int Read( access_t *, uint8_t *, int );
66 static int Control( access_t *, int, va_list );
67
68 /*****************************************************************************
69  * Open: open the socket
70  *****************************************************************************/
71 static int Open( vlc_object_t *p_this )
72 {
73     access_t     *p_access = (access_t *)p_this;
74     access_sys_t *p_sys;
75
76     char         *psz_dup = strdup(p_access->psz_path);
77     char         *psz_parser = psz_dup;
78
79     /* Parse server:port */
80     while( *psz_parser && *psz_parser != ':' )
81     {
82         if( *psz_parser == '[' )
83         {
84             /* IPV6 */
85             while( *psz_parser && *psz_parser  != ']' )
86             {
87                 psz_parser++;
88             }
89         }
90         psz_parser++;
91     }
92     if( *psz_parser != ':' || psz_parser == psz_dup )
93     {
94         msg_Err( p_access, "you have to provide server:port addresse" );
95         free( psz_dup );
96         return VLC_EGENERIC;
97     }
98     *psz_parser++ = '\0';
99
100     if( atoi( psz_parser ) <= 0 )
101     {
102         msg_Err( p_access, "invalid port number (%d)", atoi( psz_parser ) );
103         free( psz_dup );
104         return VLC_EGENERIC;
105     }
106
107     /* Init p_access */
108     p_access->pf_read = Read;
109     p_access->pf_block = NULL;
110     p_access->pf_control = Control;
111     p_access->pf_seek = NULL;
112     p_access->info.i_update = 0;
113     p_access->info.i_size = 0;
114     p_access->info.i_pos = 0;
115     p_access->info.b_eof = VLC_FALSE;
116     p_access->info.i_title = 0;
117     p_access->info.i_seekpoint = 0;
118     p_access->p_sys = p_sys = malloc( sizeof( access_sys_t ) );
119
120     p_sys->fd = net_OpenTCP( p_access, psz_dup, atoi( psz_parser ) );
121     free( psz_dup );
122
123     if( p_sys->fd < 0 )
124     {
125         free( p_sys );
126         return VLC_EGENERIC;
127     }
128
129     /* Update default_pts to a suitable value for udp access */
130     var_Create( p_access, "tcp-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
131
132     return VLC_SUCCESS;
133 }
134
135 /*****************************************************************************
136  * Close: free unused data structures
137  *****************************************************************************/
138 static void Close( vlc_object_t *p_this )
139 {
140     access_t     *p_access = (access_t *)p_this;
141     access_sys_t *p_sys = p_access->p_sys;
142
143     net_Close( p_sys->fd );
144     free( p_sys );
145 }
146
147 /*****************************************************************************
148  * Read: read on a file descriptor, checking b_die periodically
149  *****************************************************************************/
150 static int Read( access_t *p_access, uint8_t *p_buffer, int i_len )
151 {
152     access_sys_t *p_sys = p_access->p_sys;
153     int i_read;
154
155     if( p_access->info.b_eof )
156         return 0;
157
158     i_read = net_Read( p_access, p_sys->fd, p_buffer, i_len, VLC_FALSE );
159     if( i_read == 0 )
160         p_access->info.b_eof = VLC_TRUE;
161     else if( i_read > 0 )
162         p_access->info.i_pos += i_read;
163
164     return i_read;
165 }
166
167 /*****************************************************************************
168  * Control:
169  *****************************************************************************/
170 static int Control( access_t *p_access, int i_query, va_list args )
171 {
172     vlc_bool_t   *pb_bool;
173     int          *pi_int;
174     int64_t      *pi_64;
175     vlc_value_t  val;
176
177     switch( i_query )
178     {
179         /* */
180         case ACCESS_CAN_SEEK:
181         case ACCESS_CAN_FASTSEEK:
182             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
183             *pb_bool = VLC_FALSE;
184             break;
185         case ACCESS_CAN_PAUSE:
186             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
187             *pb_bool = VLC_TRUE;    /* FIXME */
188             break;
189         case ACCESS_CAN_CONTROL_PACE:
190             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
191             *pb_bool = VLC_TRUE;    /* FIXME */
192             break;
193
194         /* */
195         case ACCESS_GET_MTU:
196             pi_int = (int*)va_arg( args, int * );
197             *pi_int = 0;
198             break;
199
200         case ACCESS_GET_PTS_DELAY:
201             pi_64 = (int64_t*)va_arg( args, int64_t * );
202             var_Get( p_access, "tcp-caching", &val );
203             *pi_64 = val.i_int * 1000;
204             break;
205
206         /* */
207         case ACCESS_SET_PAUSE_STATE:
208             /* Nothing to do */
209             break;
210
211         case ACCESS_GET_TITLE_INFO:
212         case ACCESS_SET_TITLE:
213         case ACCESS_SET_SEEKPOINT:
214             return VLC_EGENERIC;
215
216         default:
217             msg_Err( p_access, "unimplemented query in control" );
218             return VLC_EGENERIC;
219
220     }
221     return VLC_SUCCESS;
222 }