ffmpeg / libavformat / avio.c @ 6cc7f139
History | View | Annotate | Download (9.47 KB)
1 |
/*
|
---|---|
2 |
* Unbuffered io for ffmpeg system
|
3 |
* Copyright (c) 2001 Fabrice Bellard
|
4 |
*
|
5 |
* This file is part of Libav.
|
6 |
*
|
7 |
* Libav is free software; you can redistribute it and/or
|
8 |
* modify it under the terms of the GNU Lesser General Public
|
9 |
* License as published by the Free Software Foundation; either
|
10 |
* version 2.1 of the License, or (at your option) any later version.
|
11 |
*
|
12 |
* Libav is distributed in the hope that it will be useful,
|
13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15 |
* Lesser General Public License for more details.
|
16 |
*
|
17 |
* You should have received a copy of the GNU Lesser General Public
|
18 |
* License along with Libav; if not, write to the Free Software
|
19 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
20 |
*/
|
21 |
|
22 |
/* needed for usleep() */
|
23 |
#define _XOPEN_SOURCE 600 |
24 |
#include <unistd.h> |
25 |
#include "libavutil/avstring.h" |
26 |
#include "libavutil/opt.h" |
27 |
#include "os_support.h" |
28 |
#include "avformat.h" |
29 |
#if CONFIG_NETWORK
|
30 |
#include "network.h" |
31 |
#endif
|
32 |
|
33 |
#if FF_API_URL_CLASS
|
34 |
/** @name Logging context. */
|
35 |
/*@{*/
|
36 |
static const char *urlcontext_to_name(void *ptr) |
37 |
{ |
38 |
URLContext *h = (URLContext *)ptr; |
39 |
if(h->prot) return h->prot->name; |
40 |
else return "NULL"; |
41 |
} |
42 |
static const AVOption options[] = {{NULL}}; |
43 |
static const AVClass urlcontext_class = |
44 |
{ "URLContext", urlcontext_to_name, options, LIBAVUTIL_VERSION_INT };
|
45 |
/*@}*/
|
46 |
#endif
|
47 |
|
48 |
static int default_interrupt_cb(void); |
49 |
|
50 |
URLProtocol *first_protocol = NULL;
|
51 |
URLInterruptCB *url_interrupt_cb = default_interrupt_cb; |
52 |
|
53 |
URLProtocol *av_protocol_next(URLProtocol *p) |
54 |
{ |
55 |
if(p) return p->next; |
56 |
else return first_protocol; |
57 |
} |
58 |
|
59 |
int av_register_protocol2(URLProtocol *protocol, int size) |
60 |
{ |
61 |
URLProtocol **p; |
62 |
if (size < sizeof(URLProtocol)) { |
63 |
URLProtocol* temp = av_mallocz(sizeof(URLProtocol));
|
64 |
memcpy(temp, protocol, size); |
65 |
protocol = temp; |
66 |
} |
67 |
p = &first_protocol; |
68 |
while (*p != NULL) p = &(*p)->next; |
69 |
*p = protocol; |
70 |
protocol->next = NULL;
|
71 |
return 0; |
72 |
} |
73 |
|
74 |
#if FF_API_REGISTER_PROTOCOL
|
75 |
/* The layout of URLProtocol as of when major was bumped to 52 */
|
76 |
struct URLProtocol_compat {
|
77 |
const char *name; |
78 |
int (*url_open)(URLContext *h, const char *filename, int flags); |
79 |
int (*url_read)(URLContext *h, unsigned char *buf, int size); |
80 |
int (*url_write)(URLContext *h, unsigned char *buf, int size); |
81 |
int64_t (*url_seek)(URLContext *h, int64_t pos, int whence);
|
82 |
int (*url_close)(URLContext *h);
|
83 |
struct URLProtocol *next;
|
84 |
}; |
85 |
|
86 |
int av_register_protocol(URLProtocol *protocol)
|
87 |
{ |
88 |
return av_register_protocol2(protocol, sizeof(struct URLProtocol_compat)); |
89 |
} |
90 |
|
91 |
int register_protocol(URLProtocol *protocol)
|
92 |
{ |
93 |
return av_register_protocol2(protocol, sizeof(struct URLProtocol_compat)); |
94 |
} |
95 |
#endif
|
96 |
|
97 |
static int url_alloc_for_protocol (URLContext **puc, struct URLProtocol *up, |
98 |
const char *filename, int flags) |
99 |
{ |
100 |
URLContext *uc; |
101 |
int err;
|
102 |
|
103 |
#if CONFIG_NETWORK
|
104 |
if (!ff_network_init())
|
105 |
return AVERROR(EIO);
|
106 |
#endif
|
107 |
uc = av_mallocz(sizeof(URLContext) + strlen(filename) + 1); |
108 |
if (!uc) {
|
109 |
err = AVERROR(ENOMEM); |
110 |
goto fail;
|
111 |
} |
112 |
#if FF_API_URL_CLASS
|
113 |
uc->av_class = &urlcontext_class; |
114 |
#endif
|
115 |
uc->filename = (char *) &uc[1]; |
116 |
strcpy(uc->filename, filename); |
117 |
uc->prot = up; |
118 |
uc->flags = flags; |
119 |
uc->is_streamed = 0; /* default = not streamed */ |
120 |
uc->max_packet_size = 0; /* default: stream file */ |
121 |
if (up->priv_data_size) {
|
122 |
uc->priv_data = av_mallocz(up->priv_data_size); |
123 |
if (up->priv_data_class) {
|
124 |
*(const AVClass**)uc->priv_data = up->priv_data_class;
|
125 |
av_opt_set_defaults(uc->priv_data); |
126 |
} |
127 |
} |
128 |
|
129 |
*puc = uc; |
130 |
return 0; |
131 |
fail:
|
132 |
*puc = NULL;
|
133 |
#if CONFIG_NETWORK
|
134 |
ff_network_close(); |
135 |
#endif
|
136 |
return err;
|
137 |
} |
138 |
|
139 |
int url_connect(URLContext* uc)
|
140 |
{ |
141 |
int err = uc->prot->url_open(uc, uc->filename, uc->flags);
|
142 |
if (err)
|
143 |
return err;
|
144 |
uc->is_connected = 1;
|
145 |
//We must be careful here as url_seek() could be slow, for example for http
|
146 |
if( (uc->flags & (URL_WRONLY | URL_RDWR))
|
147 |
|| !strcmp(uc->prot->name, "file"))
|
148 |
if(!uc->is_streamed && url_seek(uc, 0, SEEK_SET) < 0) |
149 |
uc->is_streamed= 1;
|
150 |
return 0; |
151 |
} |
152 |
|
153 |
#if FF_API_OLD_AVIO
|
154 |
int url_open_protocol (URLContext **puc, struct URLProtocol *up, |
155 |
const char *filename, int flags) |
156 |
{ |
157 |
int ret;
|
158 |
|
159 |
ret = url_alloc_for_protocol(puc, up, filename, flags); |
160 |
if (ret)
|
161 |
goto fail;
|
162 |
ret = url_connect(*puc); |
163 |
if (!ret)
|
164 |
return 0; |
165 |
fail:
|
166 |
url_close(*puc); |
167 |
*puc = NULL;
|
168 |
return ret;
|
169 |
} |
170 |
#endif
|
171 |
|
172 |
#define URL_SCHEME_CHARS \
|
173 |
"abcdefghijklmnopqrstuvwxyz" \
|
174 |
"ABCDEFGHIJKLMNOPQRSTUVWXYZ" \
|
175 |
"0123456789+-."
|
176 |
|
177 |
int url_alloc(URLContext **puc, const char *filename, int flags) |
178 |
{ |
179 |
URLProtocol *up; |
180 |
char proto_str[128], proto_nested[128], *ptr; |
181 |
size_t proto_len = strspn(filename, URL_SCHEME_CHARS); |
182 |
|
183 |
if (filename[proto_len] != ':' || is_dos_path(filename)) |
184 |
strcpy(proto_str, "file");
|
185 |
else
|
186 |
av_strlcpy(proto_str, filename, FFMIN(proto_len+1, sizeof(proto_str))); |
187 |
|
188 |
av_strlcpy(proto_nested, proto_str, sizeof(proto_nested));
|
189 |
if ((ptr = strchr(proto_nested, '+'))) |
190 |
*ptr = '\0';
|
191 |
|
192 |
up = first_protocol; |
193 |
while (up != NULL) { |
194 |
if (!strcmp(proto_str, up->name))
|
195 |
return url_alloc_for_protocol (puc, up, filename, flags);
|
196 |
if (up->flags & URL_PROTOCOL_FLAG_NESTED_SCHEME &&
|
197 |
!strcmp(proto_nested, up->name)) |
198 |
return url_alloc_for_protocol (puc, up, filename, flags);
|
199 |
up = up->next; |
200 |
} |
201 |
*puc = NULL;
|
202 |
return AVERROR(ENOENT);
|
203 |
} |
204 |
|
205 |
int url_open(URLContext **puc, const char *filename, int flags) |
206 |
{ |
207 |
int ret = url_alloc(puc, filename, flags);
|
208 |
if (ret)
|
209 |
return ret;
|
210 |
ret = url_connect(*puc); |
211 |
if (!ret)
|
212 |
return 0; |
213 |
url_close(*puc); |
214 |
*puc = NULL;
|
215 |
return ret;
|
216 |
} |
217 |
|
218 |
static inline int retry_transfer_wrapper(URLContext *h, unsigned char *buf, int size, int size_min, |
219 |
int (*transfer_func)(URLContext *h, unsigned char *buf, int size)) |
220 |
{ |
221 |
int ret, len;
|
222 |
int fast_retries = 5; |
223 |
|
224 |
len = 0;
|
225 |
while (len < size_min) {
|
226 |
ret = transfer_func(h, buf+len, size-len); |
227 |
if (ret == AVERROR(EINTR))
|
228 |
continue;
|
229 |
if (h->flags & URL_FLAG_NONBLOCK)
|
230 |
return ret;
|
231 |
if (ret == AVERROR(EAGAIN)) {
|
232 |
ret = 0;
|
233 |
if (fast_retries)
|
234 |
fast_retries--; |
235 |
else
|
236 |
usleep(1000);
|
237 |
} else if (ret < 1) |
238 |
return ret < 0 ? ret : len; |
239 |
if (ret)
|
240 |
fast_retries = FFMAX(fast_retries, 2);
|
241 |
len += ret; |
242 |
if (url_interrupt_cb())
|
243 |
return AVERROR_EXIT;
|
244 |
} |
245 |
return len;
|
246 |
} |
247 |
|
248 |
int url_read(URLContext *h, unsigned char *buf, int size) |
249 |
{ |
250 |
if (h->flags & URL_WRONLY)
|
251 |
return AVERROR(EIO);
|
252 |
return retry_transfer_wrapper(h, buf, size, 1, h->prot->url_read); |
253 |
} |
254 |
|
255 |
int url_read_complete(URLContext *h, unsigned char *buf, int size) |
256 |
{ |
257 |
if (h->flags & URL_WRONLY)
|
258 |
return AVERROR(EIO);
|
259 |
return retry_transfer_wrapper(h, buf, size, size, h->prot->url_read);
|
260 |
} |
261 |
|
262 |
int url_write(URLContext *h, const unsigned char *buf, int size) |
263 |
{ |
264 |
if (!(h->flags & (URL_WRONLY | URL_RDWR)))
|
265 |
return AVERROR(EIO);
|
266 |
/* avoid sending too big packets */
|
267 |
if (h->max_packet_size && size > h->max_packet_size)
|
268 |
return AVERROR(EIO);
|
269 |
|
270 |
return retry_transfer_wrapper(h, buf, size, size, h->prot->url_write);
|
271 |
} |
272 |
|
273 |
int64_t url_seek(URLContext *h, int64_t pos, int whence)
|
274 |
{ |
275 |
int64_t ret; |
276 |
|
277 |
if (!h->prot->url_seek)
|
278 |
return AVERROR(ENOSYS);
|
279 |
ret = h->prot->url_seek(h, pos, whence & ~AVSEEK_FORCE); |
280 |
return ret;
|
281 |
} |
282 |
|
283 |
int url_close(URLContext *h)
|
284 |
{ |
285 |
int ret = 0; |
286 |
if (!h) return 0; /* can happen when url_open fails */ |
287 |
|
288 |
if (h->is_connected && h->prot->url_close)
|
289 |
ret = h->prot->url_close(h); |
290 |
#if CONFIG_NETWORK
|
291 |
ff_network_close(); |
292 |
#endif
|
293 |
if (h->prot->priv_data_size)
|
294 |
av_free(h->priv_data); |
295 |
av_free(h); |
296 |
return ret;
|
297 |
} |
298 |
|
299 |
int url_exist(const char *filename) |
300 |
{ |
301 |
URLContext *h; |
302 |
if (url_open(&h, filename, URL_RDONLY) < 0) |
303 |
return 0; |
304 |
url_close(h); |
305 |
return 1; |
306 |
} |
307 |
|
308 |
int64_t url_filesize(URLContext *h) |
309 |
{ |
310 |
int64_t pos, size; |
311 |
|
312 |
size= url_seek(h, 0, AVSEEK_SIZE);
|
313 |
if(size<0){ |
314 |
pos = url_seek(h, 0, SEEK_CUR);
|
315 |
if ((size = url_seek(h, -1, SEEK_END)) < 0) |
316 |
return size;
|
317 |
size++; |
318 |
url_seek(h, pos, SEEK_SET); |
319 |
} |
320 |
return size;
|
321 |
} |
322 |
|
323 |
int url_get_file_handle(URLContext *h)
|
324 |
{ |
325 |
if (!h->prot->url_get_file_handle)
|
326 |
return -1; |
327 |
return h->prot->url_get_file_handle(h);
|
328 |
} |
329 |
|
330 |
int url_get_max_packet_size(URLContext *h)
|
331 |
{ |
332 |
return h->max_packet_size;
|
333 |
} |
334 |
|
335 |
void url_get_filename(URLContext *h, char *buf, int buf_size) |
336 |
{ |
337 |
av_strlcpy(buf, h->filename, buf_size); |
338 |
} |
339 |
|
340 |
|
341 |
static int default_interrupt_cb(void) |
342 |
{ |
343 |
return 0; |
344 |
} |
345 |
|
346 |
void url_set_interrupt_cb(URLInterruptCB *interrupt_cb)
|
347 |
{ |
348 |
if (!interrupt_cb)
|
349 |
interrupt_cb = default_interrupt_cb; |
350 |
url_interrupt_cb = interrupt_cb; |
351 |
} |
352 |
|
353 |
int av_url_read_pause(URLContext *h, int pause) |
354 |
{ |
355 |
if (!h->prot->url_read_pause)
|
356 |
return AVERROR(ENOSYS);
|
357 |
return h->prot->url_read_pause(h, pause);
|
358 |
} |
359 |
|
360 |
int64_t av_url_read_seek(URLContext *h, |
361 |
int stream_index, int64_t timestamp, int flags) |
362 |
{ |
363 |
if (!h->prot->url_read_seek)
|
364 |
return AVERROR(ENOSYS);
|
365 |
return h->prot->url_read_seek(h, stream_index, timestamp, flags);
|
366 |
} |