]> git.sesse.net Git - ffmpeg/blob - libavformat/avio.c
avio: make url_alloc internal.
[ffmpeg] / libavformat / avio.c
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 #include "url.h"
33
34 #if FF_API_URL_CLASS
35 /** @name Logging context. */
36 /*@{*/
37 static const char *urlcontext_to_name(void *ptr)
38 {
39     URLContext *h = (URLContext *)ptr;
40     if(h->prot) return h->prot->name;
41     else        return "NULL";
42 }
43 static const AVOption options[] = {{NULL}};
44 static const AVClass urlcontext_class =
45         { "URLContext", urlcontext_to_name, options, LIBAVUTIL_VERSION_INT };
46 /*@}*/
47 #endif
48
49 static int default_interrupt_cb(void);
50
51 URLProtocol *first_protocol = NULL;
52 URLInterruptCB *url_interrupt_cb = default_interrupt_cb;
53
54 URLProtocol *av_protocol_next(URLProtocol *p)
55 {
56     if(p) return p->next;
57     else  return first_protocol;
58 }
59
60 int av_register_protocol2(URLProtocol *protocol, int size)
61 {
62     URLProtocol **p;
63     if (size < sizeof(URLProtocol)) {
64         URLProtocol* temp = av_mallocz(sizeof(URLProtocol));
65         memcpy(temp, protocol, size);
66         protocol = temp;
67     }
68     p = &first_protocol;
69     while (*p != NULL) p = &(*p)->next;
70     *p = protocol;
71     protocol->next = NULL;
72     return 0;
73 }
74
75 #if FF_API_REGISTER_PROTOCOL
76 /* The layout of URLProtocol as of when major was bumped to 52 */
77 struct URLProtocol_compat {
78     const char *name;
79     int (*url_open)(URLContext *h, const char *filename, int flags);
80     int (*url_read)(URLContext *h, unsigned char *buf, int size);
81     int (*url_write)(URLContext *h, unsigned char *buf, int size);
82     int64_t (*url_seek)(URLContext *h, int64_t pos, int whence);
83     int (*url_close)(URLContext *h);
84     struct URLProtocol *next;
85 };
86
87 int av_register_protocol(URLProtocol *protocol)
88 {
89     return av_register_protocol2(protocol, sizeof(struct URLProtocol_compat));
90 }
91
92 int register_protocol(URLProtocol *protocol)
93 {
94     return av_register_protocol2(protocol, sizeof(struct URLProtocol_compat));
95 }
96 #endif
97
98 static int url_alloc_for_protocol (URLContext **puc, struct URLProtocol *up,
99                                    const char *filename, int flags)
100 {
101     URLContext *uc;
102     int err;
103
104 #if CONFIG_NETWORK
105     if (!ff_network_init())
106         return AVERROR(EIO);
107 #endif
108     uc = av_mallocz(sizeof(URLContext) + strlen(filename) + 1);
109     if (!uc) {
110         err = AVERROR(ENOMEM);
111         goto fail;
112     }
113 #if FF_API_URL_CLASS
114     uc->av_class = &urlcontext_class;
115 #endif
116     uc->filename = (char *) &uc[1];
117     strcpy(uc->filename, filename);
118     uc->prot = up;
119     uc->flags = flags;
120     uc->is_streamed = 0; /* default = not streamed */
121     uc->max_packet_size = 0; /* default: stream file */
122     if (up->priv_data_size) {
123         uc->priv_data = av_mallocz(up->priv_data_size);
124         if (up->priv_data_class) {
125             *(const AVClass**)uc->priv_data = up->priv_data_class;
126             av_opt_set_defaults(uc->priv_data);
127         }
128     }
129
130     *puc = uc;
131     return 0;
132  fail:
133     *puc = NULL;
134 #if CONFIG_NETWORK
135     ff_network_close();
136 #endif
137     return err;
138 }
139
140 int url_connect(URLContext* uc)
141 {
142     int err = uc->prot->url_open(uc, uc->filename, uc->flags);
143     if (err)
144         return err;
145     uc->is_connected = 1;
146     //We must be careful here as url_seek() could be slow, for example for http
147     if(   (uc->flags & (URL_WRONLY | URL_RDWR))
148        || !strcmp(uc->prot->name, "file"))
149         if(!uc->is_streamed && url_seek(uc, 0, SEEK_SET) < 0)
150             uc->is_streamed= 1;
151     return 0;
152 }
153
154 #if FF_API_OLD_AVIO
155 int url_open_protocol (URLContext **puc, struct URLProtocol *up,
156                        const char *filename, int flags)
157 {
158     int ret;
159
160     ret = url_alloc_for_protocol(puc, up, filename, flags);
161     if (ret)
162         goto fail;
163     ret = url_connect(*puc);
164     if (!ret)
165         return 0;
166  fail:
167     url_close(*puc);
168     *puc = NULL;
169     return ret;
170 }
171 int url_alloc(URLContext **puc, const char *filename, int flags)
172 {
173     return ffurl_alloc(puc, filename, flags);
174 }
175 #endif
176
177 #define URL_SCHEME_CHARS                        \
178     "abcdefghijklmnopqrstuvwxyz"                \
179     "ABCDEFGHIJKLMNOPQRSTUVWXYZ"                \
180     "0123456789+-."
181
182 int ffurl_alloc(URLContext **puc, const char *filename, int flags)
183 {
184     URLProtocol *up;
185     char proto_str[128], proto_nested[128], *ptr;
186     size_t proto_len = strspn(filename, URL_SCHEME_CHARS);
187
188     if (filename[proto_len] != ':' || is_dos_path(filename))
189         strcpy(proto_str, "file");
190     else
191         av_strlcpy(proto_str, filename, FFMIN(proto_len+1, sizeof(proto_str)));
192
193     av_strlcpy(proto_nested, proto_str, sizeof(proto_nested));
194     if ((ptr = strchr(proto_nested, '+')))
195         *ptr = '\0';
196
197     up = first_protocol;
198     while (up != NULL) {
199         if (!strcmp(proto_str, up->name))
200             return url_alloc_for_protocol (puc, up, filename, flags);
201         if (up->flags & URL_PROTOCOL_FLAG_NESTED_SCHEME &&
202             !strcmp(proto_nested, up->name))
203             return url_alloc_for_protocol (puc, up, filename, flags);
204         up = up->next;
205     }
206     *puc = NULL;
207     return AVERROR(ENOENT);
208 }
209
210 int url_open(URLContext **puc, const char *filename, int flags)
211 {
212     int ret = ffurl_alloc(puc, filename, flags);
213     if (ret)
214         return ret;
215     ret = url_connect(*puc);
216     if (!ret)
217         return 0;
218     url_close(*puc);
219     *puc = NULL;
220     return ret;
221 }
222
223 static inline int retry_transfer_wrapper(URLContext *h, unsigned char *buf, int size, int size_min,
224                                          int (*transfer_func)(URLContext *h, unsigned char *buf, int size))
225 {
226     int ret, len;
227     int fast_retries = 5;
228
229     len = 0;
230     while (len < size_min) {
231         ret = transfer_func(h, buf+len, size-len);
232         if (ret == AVERROR(EINTR))
233             continue;
234         if (h->flags & URL_FLAG_NONBLOCK)
235             return ret;
236         if (ret == AVERROR(EAGAIN)) {
237             ret = 0;
238             if (fast_retries)
239                 fast_retries--;
240             else
241                 usleep(1000);
242         } else if (ret < 1)
243             return ret < 0 ? ret : len;
244         if (ret)
245            fast_retries = FFMAX(fast_retries, 2);
246         len += ret;
247         if (url_interrupt_cb())
248             return AVERROR_EXIT;
249     }
250     return len;
251 }
252
253 int url_read(URLContext *h, unsigned char *buf, int size)
254 {
255     if (h->flags & URL_WRONLY)
256         return AVERROR(EIO);
257     return retry_transfer_wrapper(h, buf, size, 1, h->prot->url_read);
258 }
259
260 int url_read_complete(URLContext *h, unsigned char *buf, int size)
261 {
262     if (h->flags & URL_WRONLY)
263         return AVERROR(EIO);
264     return retry_transfer_wrapper(h, buf, size, size, h->prot->url_read);
265 }
266
267 int url_write(URLContext *h, const unsigned char *buf, int size)
268 {
269     if (!(h->flags & (URL_WRONLY | URL_RDWR)))
270         return AVERROR(EIO);
271     /* avoid sending too big packets */
272     if (h->max_packet_size && size > h->max_packet_size)
273         return AVERROR(EIO);
274
275     return retry_transfer_wrapper(h, buf, size, size, h->prot->url_write);
276 }
277
278 int64_t url_seek(URLContext *h, int64_t pos, int whence)
279 {
280     int64_t ret;
281
282     if (!h->prot->url_seek)
283         return AVERROR(ENOSYS);
284     ret = h->prot->url_seek(h, pos, whence & ~AVSEEK_FORCE);
285     return ret;
286 }
287
288 int url_close(URLContext *h)
289 {
290     int ret = 0;
291     if (!h) return 0; /* can happen when url_open fails */
292
293     if (h->is_connected && h->prot->url_close)
294         ret = h->prot->url_close(h);
295 #if CONFIG_NETWORK
296     ff_network_close();
297 #endif
298     if (h->prot->priv_data_size)
299         av_free(h->priv_data);
300     av_free(h);
301     return ret;
302 }
303
304 int url_exist(const char *filename)
305 {
306     URLContext *h;
307     if (url_open(&h, filename, URL_RDONLY) < 0)
308         return 0;
309     url_close(h);
310     return 1;
311 }
312
313 int64_t url_filesize(URLContext *h)
314 {
315     int64_t pos, size;
316
317     size= url_seek(h, 0, AVSEEK_SIZE);
318     if(size<0){
319         pos = url_seek(h, 0, SEEK_CUR);
320         if ((size = url_seek(h, -1, SEEK_END)) < 0)
321             return size;
322         size++;
323         url_seek(h, pos, SEEK_SET);
324     }
325     return size;
326 }
327
328 int url_get_file_handle(URLContext *h)
329 {
330     if (!h->prot->url_get_file_handle)
331         return -1;
332     return h->prot->url_get_file_handle(h);
333 }
334
335 int url_get_max_packet_size(URLContext *h)
336 {
337     return h->max_packet_size;
338 }
339
340 void url_get_filename(URLContext *h, char *buf, int buf_size)
341 {
342     av_strlcpy(buf, h->filename, buf_size);
343 }
344
345
346 static int default_interrupt_cb(void)
347 {
348     return 0;
349 }
350
351 void url_set_interrupt_cb(URLInterruptCB *interrupt_cb)
352 {
353     if (!interrupt_cb)
354         interrupt_cb = default_interrupt_cb;
355     url_interrupt_cb = interrupt_cb;
356 }
357
358 int av_url_read_pause(URLContext *h, int pause)
359 {
360     if (!h->prot->url_read_pause)
361         return AVERROR(ENOSYS);
362     return h->prot->url_read_pause(h, pause);
363 }
364
365 int64_t av_url_read_seek(URLContext *h,
366         int stream_index, int64_t timestamp, int flags)
367 {
368     if (!h->prot->url_read_seek)
369         return AVERROR(ENOSYS);
370     return h->prot->url_read_seek(h, stream_index, timestamp, flags);
371 }