]> git.sesse.net Git - ffmpeg/blob - libavformat/avio.c
cosmetics: indentation
[ffmpeg] / libavformat / avio.c
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 = AVERROR(ENOENT);
71     goto fail;
72  found:
73     uc = av_malloc(sizeof(URLContext) + strlen(filename) + 1);
74     if (!uc) {
75         err = AVERROR(ENOMEM);
76         goto fail;
77     }
78 #if LIBAVFORMAT_VERSION_INT >= (52<<16)
79     uc->filename = (char *) &uc[1];
80 #endif
81     strcpy(uc->filename, filename);
82     uc->prot = up;
83     uc->flags = flags;
84     uc->is_streamed = 0; /* default = not streamed */
85     uc->max_packet_size = 0; /* default: stream file */
86     err = up->url_open(uc, filename, flags);
87     if (err < 0) {
88         av_free(uc);
89         *puc = NULL;
90         return err;
91     }
92     *puc = uc;
93     return 0;
94  fail:
95     *puc = NULL;
96     return err;
97 }
98
99 int url_read(URLContext *h, unsigned char *buf, int size)
100 {
101     int ret;
102     if (h->flags & URL_WRONLY)
103         return AVERROR_IO;
104     ret = h->prot->url_read(h, buf, size);
105     return ret;
106 }
107
108 #if defined(CONFIG_MUXERS) || defined(CONFIG_PROTOCOLS)
109 int url_write(URLContext *h, unsigned char *buf, int size)
110 {
111     int ret;
112     if (!(h->flags & (URL_WRONLY | URL_RDWR)))
113         return AVERROR_IO;
114     /* avoid sending too big packets */
115     if (h->max_packet_size && size > h->max_packet_size)
116         return AVERROR_IO;
117     ret = h->prot->url_write(h, buf, size);
118     return ret;
119 }
120 #endif //CONFIG_MUXERS || CONFIG_PROTOCOLS
121
122 offset_t url_seek(URLContext *h, offset_t pos, int whence)
123 {
124     offset_t ret;
125
126     if (!h->prot->url_seek)
127         return AVERROR(EPIPE);
128     ret = h->prot->url_seek(h, pos, whence);
129     return ret;
130 }
131
132 int url_close(URLContext *h)
133 {
134     int ret;
135
136     ret = h->prot->url_close(h);
137     av_free(h);
138     return ret;
139 }
140
141 int url_exist(const char *filename)
142 {
143     URLContext *h;
144     if (url_open(&h, filename, URL_RDONLY) < 0)
145         return 0;
146     url_close(h);
147     return 1;
148 }
149
150 offset_t url_filesize(URLContext *h)
151 {
152     offset_t pos, size;
153
154     size= url_seek(h, 0, AVSEEK_SIZE);
155     if(size<0){
156         pos = url_seek(h, 0, SEEK_CUR);
157         if ((size = url_seek(h, -1, SEEK_END)) < 0)
158             return size;
159         size++;
160         url_seek(h, pos, SEEK_SET);
161     }
162     return size;
163 }
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 void url_set_interrupt_cb(URLInterruptCB *interrupt_cb)
182 {
183     if (!interrupt_cb)
184         interrupt_cb = default_interrupt_cb;
185     url_interrupt_cb = interrupt_cb;
186 }