3 * Copyright (c) 2001 Fabrice Bellard
5 * This file is part of FFmpeg.
7 * FFmpeg 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.
12 * FFmpeg 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.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavutil/avstring.h"
23 #include "libavutil/dict.h"
24 #include "libavutil/opt.h"
25 #include "libavutil/time.h"
26 #include "libavutil/avassert.h"
27 #include "os_support.h"
34 static URLProtocol *first_protocol = NULL;
36 URLProtocol *ffurl_protocol_next(const URLProtocol *prev)
38 return prev ? prev->next : first_protocol;
41 /** @name Logging context. */
43 static const char *urlcontext_to_name(void *ptr)
45 URLContext *h = (URLContext *)ptr;
52 static void *urlcontext_child_next(void *obj, void *prev)
55 if (!prev && h->priv_data && h->prot->priv_data_class)
60 static const AVClass *urlcontext_child_class_next(const AVClass *prev)
62 URLProtocol *p = NULL;
64 /* find the protocol that corresponds to prev */
65 while (prev && (p = ffurl_protocol_next(p)))
66 if (p->priv_data_class == prev)
69 /* find next protocol with priv options */
70 while (p = ffurl_protocol_next(p))
71 if (p->priv_data_class)
72 return p->priv_data_class;
76 static const AVOption options[] = { { NULL } };
77 const AVClass ffurl_context_class = {
78 .class_name = "URLContext",
79 .item_name = urlcontext_to_name,
81 .version = LIBAVUTIL_VERSION_INT,
82 .child_next = urlcontext_child_next,
83 .child_class_next = urlcontext_child_class_next,
87 const char *avio_enum_protocols(void **opaque, int output)
90 *opaque = ffurl_protocol_next(*opaque);
93 if ((output && p->url_write) || (!output && p->url_read))
95 return avio_enum_protocols(opaque, output);
98 int ffurl_register_protocol(URLProtocol *protocol)
105 protocol->next = NULL;
109 static int url_alloc_for_protocol(URLContext **puc, struct URLProtocol *up,
110 const char *filename, int flags,
111 const AVIOInterruptCB *int_cb)
117 if (up->flags & URL_PROTOCOL_FLAG_NETWORK && !ff_network_init())
120 if ((flags & AVIO_FLAG_READ) && !up->url_read) {
121 av_log(NULL, AV_LOG_ERROR,
122 "Impossible to open the '%s' protocol for reading\n", up->name);
125 if ((flags & AVIO_FLAG_WRITE) && !up->url_write) {
126 av_log(NULL, AV_LOG_ERROR,
127 "Impossible to open the '%s' protocol for writing\n", up->name);
130 uc = av_mallocz(sizeof(URLContext) + strlen(filename) + 1);
132 err = AVERROR(ENOMEM);
135 uc->av_class = &ffurl_context_class;
136 uc->filename = (char *)&uc[1];
137 strcpy(uc->filename, filename);
140 uc->is_streamed = 0; /* default = not streamed */
141 uc->max_packet_size = 0; /* default: stream file */
142 if (up->priv_data_size) {
143 uc->priv_data = av_mallocz(up->priv_data_size);
144 if (!uc->priv_data) {
145 err = AVERROR(ENOMEM);
148 if (up->priv_data_class) {
149 int proto_len= strlen(up->name);
150 char *start = strchr(uc->filename, ',');
151 *(const AVClass **)uc->priv_data = up->priv_data_class;
152 av_opt_set_defaults(uc->priv_data);
153 if(!strncmp(up->name, uc->filename, proto_len) && uc->filename + proto_len == start){
159 while(ret >= 0 && (key= strchr(p, sep)) && p<key && (val = strchr(key+1, sep))){
161 ret= av_opt_set(uc->priv_data, p, key+1, 0);
162 if (ret == AVERROR_OPTION_NOT_FOUND)
163 av_log(uc, AV_LOG_ERROR, "Key '%s' not found.\n", p);
168 av_log(uc, AV_LOG_ERROR, "Error parsing options string %s\n", start);
169 av_freep(&uc->priv_data);
171 err = AVERROR(EINVAL);
174 memmove(start, key+1, strlen(key));
179 uc->interrupt_callback = *int_cb;
186 av_freep(&uc->priv_data);
189 if (up->flags & URL_PROTOCOL_FLAG_NETWORK)
195 int ffurl_connect(URLContext *uc, AVDictionary **options)
198 uc->prot->url_open2 ? uc->prot->url_open2(uc,
202 uc->prot->url_open(uc, uc->filename, uc->flags);
205 uc->is_connected = 1;
206 /* We must be careful here as ffurl_seek() could be slow,
207 * for example for http */
208 if ((uc->flags & AVIO_FLAG_WRITE) || !strcmp(uc->prot->name, "file"))
209 if (!uc->is_streamed && ffurl_seek(uc, 0, SEEK_SET) < 0)
214 #define URL_SCHEME_CHARS \
215 "abcdefghijklmnopqrstuvwxyz" \
216 "ABCDEFGHIJKLMNOPQRSTUVWXYZ" \
219 static struct URLProtocol *url_find_protocol(const char *filename)
221 URLProtocol *up = NULL;
222 char proto_str[128], proto_nested[128], *ptr;
223 size_t proto_len = strspn(filename, URL_SCHEME_CHARS);
225 if (filename[proto_len] != ':' &&
226 (filename[proto_len] != ',' || !strchr(filename + proto_len + 1, ':')) ||
227 is_dos_path(filename))
228 strcpy(proto_str, "file");
230 av_strlcpy(proto_str, filename,
231 FFMIN(proto_len + 1, sizeof(proto_str)));
233 if ((ptr = strchr(proto_str, ',')))
235 av_strlcpy(proto_nested, proto_str, sizeof(proto_nested));
236 if ((ptr = strchr(proto_nested, '+')))
239 while (up = ffurl_protocol_next(up)) {
240 if (!strcmp(proto_str, up->name))
242 if (up->flags & URL_PROTOCOL_FLAG_NESTED_SCHEME &&
243 !strcmp(proto_nested, up->name))
250 int ffurl_alloc(URLContext **puc, const char *filename, int flags,
251 const AVIOInterruptCB *int_cb)
253 URLProtocol *p = NULL;
255 if (!first_protocol) {
256 av_log(NULL, AV_LOG_WARNING, "No URL Protocols are registered. "
257 "Missing call to av_register_all()?\n");
260 p = url_find_protocol(filename);
262 return url_alloc_for_protocol(puc, p, filename, flags, int_cb);
265 if (av_strstart(filename, "https:", NULL))
266 av_log(NULL, AV_LOG_WARNING, "https protocol not found, recompile FFmpeg with "
268 "or securetransport enabled.\n");
269 return AVERROR_PROTOCOL_NOT_FOUND;
272 int ffurl_open(URLContext **puc, const char *filename, int flags,
273 const AVIOInterruptCB *int_cb, AVDictionary **options)
275 int ret = ffurl_alloc(puc, filename, flags, int_cb);
278 if (options && (*puc)->prot->priv_data_class &&
279 (ret = av_opt_set_dict((*puc)->priv_data, options)) < 0)
281 if ((ret = av_opt_set_dict(*puc, options)) < 0)
283 ret = ffurl_connect(*puc, options);
292 static inline int retry_transfer_wrapper(URLContext *h, uint8_t *buf,
293 int size, int size_min,
294 int (*transfer_func)(URLContext *h,
299 int fast_retries = 5;
300 int64_t wait_since = 0;
303 while (len < size_min) {
304 if (ff_check_interrupt(&h->interrupt_callback))
306 ret = transfer_func(h, buf + len, size - len);
307 if (ret == AVERROR(EINTR))
309 if (h->flags & AVIO_FLAG_NONBLOCK)
311 if (ret == AVERROR(EAGAIN)) {
318 wait_since = av_gettime_relative();
319 else if (av_gettime_relative() > wait_since + h->rw_timeout)
325 return (ret < 0 && ret != AVERROR_EOF) ? ret : len;
327 fast_retries = FFMAX(fast_retries, 2);
333 int ffurl_read(URLContext *h, unsigned char *buf, int size)
335 if (!(h->flags & AVIO_FLAG_READ))
337 return retry_transfer_wrapper(h, buf, size, 1, h->prot->url_read);
340 int ffurl_read_complete(URLContext *h, unsigned char *buf, int size)
342 if (!(h->flags & AVIO_FLAG_READ))
344 return retry_transfer_wrapper(h, buf, size, size, h->prot->url_read);
347 int ffurl_write(URLContext *h, const unsigned char *buf, int size)
349 if (!(h->flags & AVIO_FLAG_WRITE))
351 /* avoid sending too big packets */
352 if (h->max_packet_size && size > h->max_packet_size)
355 return retry_transfer_wrapper(h, (unsigned char *)buf, size, size,
356 (int (*)(struct URLContext *, uint8_t *, int))
360 int64_t ffurl_seek(URLContext *h, int64_t pos, int whence)
364 if (!h->prot->url_seek)
365 return AVERROR(ENOSYS);
366 ret = h->prot->url_seek(h, pos, whence & ~AVSEEK_FORCE);
370 int ffurl_closep(URLContext **hh)
375 return 0; /* can happen when ffurl_open fails */
377 if (h->is_connected && h->prot->url_close)
378 ret = h->prot->url_close(h);
380 if (h->prot->flags & URL_PROTOCOL_FLAG_NETWORK)
383 if (h->prot->priv_data_size) {
384 if (h->prot->priv_data_class)
385 av_opt_free(h->priv_data);
386 av_freep(&h->priv_data);
392 int ffurl_close(URLContext *h)
394 return ffurl_closep(&h);
398 const char *avio_find_protocol_name(const char *url)
400 URLProtocol *p = url_find_protocol(url);
402 return p ? p->name : NULL;
405 int avio_check(const char *url, int flags)
408 int ret = ffurl_alloc(&h, url, flags, NULL);
412 if (h->prot->url_check) {
413 ret = h->prot->url_check(h, flags);
415 ret = ffurl_connect(h, NULL);
424 int avpriv_io_move(const char *url_src, const char *url_dst)
426 URLContext *h_src, *h_dst;
427 int ret = ffurl_alloc(&h_src, url_src, AVIO_FLAG_READ_WRITE, NULL);
430 ret = ffurl_alloc(&h_dst, url_dst, AVIO_FLAG_WRITE, NULL);
436 if (h_src->prot == h_dst->prot && h_src->prot->url_move)
437 ret = h_src->prot->url_move(h_src, h_dst);
439 ret = AVERROR(ENOSYS);
446 int avpriv_io_delete(const char *url)
449 int ret = ffurl_alloc(&h, url, AVIO_FLAG_WRITE, NULL);
453 if (h->prot->url_delete)
454 ret = h->prot->url_delete(h);
456 ret = AVERROR(ENOSYS);
462 int avio_open_dir(AVIODirContext **s, const char *url, AVDictionary **options)
464 URLContext *h = NULL;
465 AVIODirContext *ctx = NULL;
469 ctx = av_mallocz(sizeof(*ctx));
471 ret = AVERROR(ENOMEM);
475 if ((ret = ffurl_alloc(&h, url, AVIO_FLAG_READ, NULL)) < 0)
478 if (h->prot->url_open_dir && h->prot->url_read_dir && h->prot->url_close_dir) {
479 if (options && h->prot->priv_data_class &&
480 (ret = av_opt_set_dict(h->priv_data, options)) < 0)
482 ret = h->prot->url_open_dir(h);
484 ret = AVERROR(ENOSYS);
489 ctx->url_context = h;
500 int avio_read_dir(AVIODirContext *s, AVIODirEntry **next)
505 if (!s || !s->url_context)
506 return AVERROR(EINVAL);
508 if ((ret = h->prot->url_read_dir(h, next)) < 0)
509 avio_free_directory_entry(next);
513 int avio_close_dir(AVIODirContext **s)
518 if (!(*s) || !(*s)->url_context)
519 return AVERROR(EINVAL);
520 h = (*s)->url_context;
521 h->prot->url_close_dir(h);
528 void avio_free_directory_entry(AVIODirEntry **entry)
530 if (!entry || !*entry)
532 av_free((*entry)->name);
536 int64_t ffurl_size(URLContext *h)
540 size = ffurl_seek(h, 0, AVSEEK_SIZE);
542 pos = ffurl_seek(h, 0, SEEK_CUR);
543 if ((size = ffurl_seek(h, -1, SEEK_END)) < 0)
546 ffurl_seek(h, pos, SEEK_SET);
551 int ffurl_get_file_handle(URLContext *h)
553 if (!h->prot->url_get_file_handle)
555 return h->prot->url_get_file_handle(h);
558 int ffurl_get_multi_file_handle(URLContext *h, int **handles, int *numhandles)
560 if (!h->prot->url_get_multi_file_handle) {
561 if (!h->prot->url_get_file_handle)
562 return AVERROR(ENOSYS);
563 *handles = av_malloc(sizeof(**handles));
565 return AVERROR(ENOMEM);
567 *handles[0] = h->prot->url_get_file_handle(h);
570 return h->prot->url_get_multi_file_handle(h, handles, numhandles);
573 int ffurl_shutdown(URLContext *h, int flags)
575 if (!h->prot->url_shutdown)
576 return AVERROR(EINVAL);
577 return h->prot->url_shutdown(h, flags);
580 int ff_check_interrupt(AVIOInterruptCB *cb)
583 if (cb && cb->callback && (ret = cb->callback(cb->opaque)))