|
808
|
1 /*
|
|
|
2 * Unbuffered io for ffmpeg system
|
|
|
3 * Copyright (c) 2001 Fabrice Bellard
|
|
|
4 *
|
|
|
5 * This file is part of FFmpeg.
|
|
|
6 *
|
|
|
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.
|
|
|
11 *
|
|
|
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.
|
|
|
16 *
|
|
|
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
|
|
|
20 */
|
|
|
21 #include "avformat.h"
|
|
|
22
|
|
|
23 static int default_interrupt_cb(void);
|
|
|
24
|
|
|
25 URLProtocol *first_protocol = NULL;
|
|
|
26 URLInterruptCB *url_interrupt_cb = default_interrupt_cb;
|
|
|
27
|
|
|
28 int register_protocol(URLProtocol *protocol)
|
|
|
29 {
|
|
|
30 URLProtocol **p;
|
|
|
31 p = &first_protocol;
|
|
|
32 while (*p != NULL) p = &(*p)->next;
|
|
|
33 *p = protocol;
|
|
|
34 protocol->next = NULL;
|
|
|
35 return 0;
|
|
|
36 }
|
|
|
37
|
|
|
38 int url_open(URLContext **puc, const char *filename, int flags)
|
|
|
39 {
|
|
|
40 URLContext *uc;
|
|
|
41 URLProtocol *up;
|
|
|
42 const char *p;
|
|
|
43 char proto_str[128], *q;
|
|
|
44 int err;
|
|
|
45
|
|
|
46 p = filename;
|
|
|
47 q = proto_str;
|
|
|
48 while (*p != '\0' && *p != ':') {
|
|
|
49 /* protocols can only contain alphabetic chars */
|
|
|
50 if (!isalpha(*p))
|
|
|
51 goto file_proto;
|
|
|
52 if ((q - proto_str) < sizeof(proto_str) - 1)
|
|
|
53 *q++ = *p;
|
|
|
54 p++;
|
|
|
55 }
|
|
|
56 /* if the protocol has length 1, we consider it is a dos drive */
|
|
|
57 if (*p == '\0' || (q - proto_str) <= 1) {
|
|
|
58 file_proto:
|
|
|
59 strcpy(proto_str, "file");
|
|
|
60 } else {
|
|
|
61 *q = '\0';
|
|
|
62 }
|
|
|
63
|
|
|
64 up = first_protocol;
|
|
|
65 while (up != NULL) {
|
|
|
66 if (!strcmp(proto_str, up->name))
|
|
|
67 goto found;
|
|
|
68 up = up->next;
|
|
|
69 }
|
|
|
70 err = -ENOENT;
|
|
|
71 goto fail;
|
|
|
72 found:
|
|
|
73 uc = av_malloc(sizeof(URLContext) + strlen(filename));
|
|
|
74 if (!uc) {
|
|
|
75 err = -ENOMEM;
|
|
|
76 goto fail;
|
|
|
77 }
|
|
|
78 strcpy(uc->filename, filename);
|
|
|
79 uc->prot = up;
|
|
|
80 uc->flags = flags;
|
|
|
81 uc->is_streamed = 0; /* default = not streamed */
|
|
|
82 uc->max_packet_size = 0; /* default: stream file */
|
|
|
83 err = up->url_open(uc, filename, flags);
|
|
|
84 if (err < 0) {
|
|
|
85 av_free(uc);
|
|
|
86 *puc = NULL;
|
|
|
87 return err;
|
|
|
88 }
|
|
|
89 *puc = uc;
|
|
|
90 return 0;
|
|
|
91 fail:
|
|
|
92 *puc = NULL;
|
|
|
93 return err;
|
|
|
94 }
|
|
|
95
|
|
|
96 int url_read(URLContext *h, unsigned char *buf, int size)
|
|
|
97 {
|
|
|
98 int ret;
|
|
|
99 if (h->flags & URL_WRONLY)
|
|
|
100 return AVERROR_IO;
|
|
|
101 ret = h->prot->url_read(h, buf, size);
|
|
|
102 return ret;
|
|
|
103 }
|
|
|
104
|
|
|
105 #if defined(CONFIG_MUXERS) || defined(CONFIG_PROTOCOLS)
|
|
|
106 int url_write(URLContext *h, unsigned char *buf, int size)
|
|
|
107 {
|
|
|
108 int ret;
|
|
|
109 if (!(h->flags & (URL_WRONLY | URL_RDWR)))
|
|
|
110 return AVERROR_IO;
|
|
|
111 /* avoid sending too big packets */
|
|
|
112 if (h->max_packet_size && size > h->max_packet_size)
|
|
|
113 return AVERROR_IO;
|
|
|
114 ret = h->prot->url_write(h, buf, size);
|
|
|
115 return ret;
|
|
|
116 }
|
|
|
117 #endif //CONFIG_MUXERS || CONFIG_PROTOCOLS
|
|
|
118
|
|
|
119 offset_t url_seek(URLContext *h, offset_t pos, int whence)
|
|
|
120 {
|
|
|
121 offset_t ret;
|
|
|
122
|
|
|
123 if (!h->prot->url_seek)
|
|
|
124 return -EPIPE;
|
|
|
125 ret = h->prot->url_seek(h, pos, whence);
|
|
|
126 return ret;
|
|
|
127 }
|
|
|
128
|
|
|
129 int url_close(URLContext *h)
|
|
|
130 {
|
|
|
131 int ret;
|
|
|
132
|
|
|
133 ret = h->prot->url_close(h);
|
|
|
134 av_free(h);
|
|
|
135 return ret;
|
|
|
136 }
|
|
|
137
|
|
|
138 int url_exist(const char *filename)
|
|
|
139 {
|
|
|
140 URLContext *h;
|
|
|
141 if (url_open(&h, filename, URL_RDONLY) < 0)
|
|
|
142 return 0;
|
|
|
143 url_close(h);
|
|
|
144 return 1;
|
|
|
145 }
|
|
|
146
|
|
|
147 offset_t url_filesize(URLContext *h)
|
|
|
148 {
|
|
|
149 offset_t pos, size;
|
|
|
150
|
|
|
151 pos = url_seek(h, 0, SEEK_CUR);
|
|
|
152 size = url_seek(h, -1, SEEK_END)+1;
|
|
|
153 url_seek(h, pos, SEEK_SET);
|
|
|
154 return size;
|
|
|
155 }
|
|
|
156
|
|
|
157 /*
|
|
|
158 * Return the maximum packet size associated to packetized file
|
|
|
159 * handle. If the file is not packetized (stream like http or file on
|
|
|
160 * disk), then 0 is returned.
|
|
|
161 *
|
|
|
162 * @param h file handle
|
|
|
163 * @return maximum packet size in bytes
|
|
|
164 */
|
|
|
165 int url_get_max_packet_size(URLContext *h)
|
|
|
166 {
|
|
|
167 return h->max_packet_size;
|
|
|
168 }
|
|
|
169
|
|
|
170 void url_get_filename(URLContext *h, char *buf, int buf_size)
|
|
|
171 {
|
|
|
172 pstrcpy(buf, buf_size, h->filename);
|
|
|
173 }
|
|
|
174
|
|
|
175
|
|
|
176 static int default_interrupt_cb(void)
|
|
|
177 {
|
|
|
178 return 0;
|
|
|
179 }
|
|
|
180
|
|
|
181 /**
|
|
|
182 * The callback is called in blocking functions to test regulary if
|
|
|
183 * asynchronous interruption is needed. -EINTR is returned in this
|
|
|
184 * case by the interrupted function. 'NULL' means no interrupt
|
|
|
185 * callback is given.
|
|
|
186 */
|
|
|
187 void url_set_interrupt_cb(URLInterruptCB *interrupt_cb)
|
|
|
188 {
|
|
|
189 if (!interrupt_cb)
|
|
|
190 interrupt_cb = default_interrupt_cb;
|
|
|
191 url_interrupt_cb = interrupt_cb;
|
|
|
192 }
|