annotate avio.c @ 5584:70488b6f7044 libavformat

Make url_read_complete handle EAGAIN more intelligently. Only retry 2 - 5 times in quick succession and afterwards sleep a bit to avoid creating high CPU load without any progress.
author reimar
date Sun, 24 Jan 2010 18:09:46 +0000
parents 07ce73fed19f
children b934eb97fffd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1 /*
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
2 * Unbuffered io for ffmpeg system
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
3 * Copyright (c) 2001 Fabrice Bellard
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
4 *
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 905
diff changeset
5 * This file is part of FFmpeg.
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 905
diff changeset
6 *
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 905
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 905
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
11 *
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 905
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
15 * Lesser General Public License for more details.
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
16 *
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 905
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
896
edbe5c3717f9 Update licensing information: The FSF changed postal address.
diego
parents: 885
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
20 */
3286
6f61c3b36632 Use full path for #includes from another directory.
diego
parents: 3277
diff changeset
21
5584
70488b6f7044 Make url_read_complete handle EAGAIN more intelligently.
reimar
parents: 5580
diff changeset
22 /* needed for usleep() */
70488b6f7044 Make url_read_complete handle EAGAIN more intelligently.
reimar
parents: 5580
diff changeset
23 #define _XOPEN_SOURCE 600
70488b6f7044 Make url_read_complete handle EAGAIN more intelligently.
reimar
parents: 5580
diff changeset
24 #include <unistd.h>
3286
6f61c3b36632 Use full path for #includes from another directory.
diego
parents: 3277
diff changeset
25 #include "libavutil/avstring.h"
6f61c3b36632 Use full path for #includes from another directory.
diego
parents: 3277
diff changeset
26 #include "libavcodec/opt.h"
3994
4d5d9ac28e21 Only special-case absolute DOS paths on systems that support them.
ramiro
parents: 3973
diff changeset
27 #include "os_support.h"
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
28 #include "avformat.h"
3136
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
29
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
30 #if LIBAVFORMAT_VERSION_MAJOR >= 53
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
31 /** @name Logging context. */
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
32 /*@{*/
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
33 static const char *urlcontext_to_name(void *ptr)
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
34 {
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
35 URLContext *h = (URLContext *)ptr;
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
36 if(h->prot) return h->prot->name;
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
37 else return "NULL";
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
38 }
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
39 static const AVOption options[] = {{NULL}};
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
40 static const AVClass urlcontext_class =
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
41 { "URLContext", urlcontext_to_name, options };
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
42 /*@}*/
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
43 #endif
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
44
177
16c4e43f34e5 added primitive aborting system
bellard
parents: 67
diff changeset
45 static int default_interrupt_cb(void);
16c4e43f34e5 added primitive aborting system
bellard
parents: 67
diff changeset
46
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
47 URLProtocol *first_protocol = NULL;
177
16c4e43f34e5 added primitive aborting system
bellard
parents: 67
diff changeset
48 URLInterruptCB *url_interrupt_cb = default_interrupt_cb;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
49
2812
173b5cb7efde av_*_next() API for libavformat
michael
parents: 2778
diff changeset
50 URLProtocol *av_protocol_next(URLProtocol *p)
173b5cb7efde av_*_next() API for libavformat
michael
parents: 2778
diff changeset
51 {
173b5cb7efde av_*_next() API for libavformat
michael
parents: 2778
diff changeset
52 if(p) return p->next;
173b5cb7efde av_*_next() API for libavformat
michael
parents: 2778
diff changeset
53 else return first_protocol;
173b5cb7efde av_*_next() API for libavformat
michael
parents: 2778
diff changeset
54 }
173b5cb7efde av_*_next() API for libavformat
michael
parents: 2778
diff changeset
55
4488
724c0f6a52dc Rename register_protocol() to av_register_protocol() and deprecate
stefano
parents: 3994
diff changeset
56 int av_register_protocol(URLProtocol *protocol)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
57 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
58 URLProtocol **p;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
59 p = &first_protocol;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
60 while (*p != NULL) p = &(*p)->next;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
61 *p = protocol;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
62 protocol->next = NULL;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
63 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
64 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
65
4488
724c0f6a52dc Rename register_protocol() to av_register_protocol() and deprecate
stefano
parents: 3994
diff changeset
66 #if LIBAVFORMAT_VERSION_MAJOR < 53
724c0f6a52dc Rename register_protocol() to av_register_protocol() and deprecate
stefano
parents: 3994
diff changeset
67 int register_protocol(URLProtocol *protocol)
724c0f6a52dc Rename register_protocol() to av_register_protocol() and deprecate
stefano
parents: 3994
diff changeset
68 {
724c0f6a52dc Rename register_protocol() to av_register_protocol() and deprecate
stefano
parents: 3994
diff changeset
69 return av_register_protocol(protocol);
724c0f6a52dc Rename register_protocol() to av_register_protocol() and deprecate
stefano
parents: 3994
diff changeset
70 }
724c0f6a52dc Rename register_protocol() to av_register_protocol() and deprecate
stefano
parents: 3994
diff changeset
71 #endif
724c0f6a52dc Rename register_protocol() to av_register_protocol() and deprecate
stefano
parents: 3994
diff changeset
72
3744
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
73 int url_open_protocol (URLContext **puc, struct URLProtocol *up,
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
74 const char *filename, int flags)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
75 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
76 URLContext *uc;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
77 int err;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
78
1648
90987914ad57 makes the filename member of the URLContext a pointer, so that the
gpoirier
parents: 1613
diff changeset
79 uc = av_malloc(sizeof(URLContext) + strlen(filename) + 1);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
80 if (!uc) {
1787
eb16c64144ee This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents: 1746
diff changeset
81 err = AVERROR(ENOMEM);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
82 goto fail;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
83 }
3136
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
84 #if LIBAVFORMAT_VERSION_MAJOR >= 53
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
85 uc->av_class = &urlcontext_class;
e38d5357f0d0 Add AVClass to URLContext at next major version bump
superdump
parents: 2914
diff changeset
86 #endif
1648
90987914ad57 makes the filename member of the URLContext a pointer, so that the
gpoirier
parents: 1613
diff changeset
87 uc->filename = (char *) &uc[1];
19
81e87c8de3dc added url_get_filename()
bellard
parents: 0
diff changeset
88 strcpy(uc->filename, filename);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
89 uc->prot = up;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
90 uc->flags = flags;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
91 uc->is_streamed = 0; /* default = not streamed */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
92 uc->max_packet_size = 0; /* default: stream file */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
93 err = up->url_open(uc, filename, flags);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
94 if (err < 0) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
95 av_free(uc);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
96 *puc = NULL;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
97 return err;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
98 }
3277
ce8070648576 Check url_seek() in url_open().
michael
parents: 3136
diff changeset
99
5555
9ca204496cb5 Fix comment typo carefull -> careful
mru
parents: 5004
diff changeset
100 //We must be careful here as url_seek() could be slow, for example for http
3277
ce8070648576 Check url_seek() in url_open().
michael
parents: 3136
diff changeset
101 if( (flags & (URL_WRONLY | URL_RDWR))
3744
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
102 || !strcmp(up->name, "file"))
3277
ce8070648576 Check url_seek() in url_open().
michael
parents: 3136
diff changeset
103 if(!uc->is_streamed && url_seek(uc, 0, SEEK_SET) < 0)
ce8070648576 Check url_seek() in url_open().
michael
parents: 3136
diff changeset
104 uc->is_streamed= 1;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
105 *puc = uc;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
106 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
107 fail:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
108 *puc = NULL;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
109 return err;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
110 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
111
3744
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
112 int url_open(URLContext **puc, const char *filename, int flags)
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
113 {
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
114 URLProtocol *up;
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
115 const char *p;
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
116 char proto_str[128], *q;
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
117
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
118 p = filename;
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
119 q = proto_str;
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
120 while (*p != '\0' && *p != ':') {
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
121 /* protocols can only contain alphabetic chars */
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
122 if (!isalpha(*p))
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
123 goto file_proto;
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
124 if ((q - proto_str) < sizeof(proto_str) - 1)
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
125 *q++ = *p;
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
126 p++;
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
127 }
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
128 /* if the protocol has length 1, we consider it is a dos drive */
3994
4d5d9ac28e21 Only special-case absolute DOS paths on systems that support them.
ramiro
parents: 3973
diff changeset
129 if (*p == '\0' || is_dos_path(filename)) {
3744
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
130 file_proto:
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
131 strcpy(proto_str, "file");
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
132 } else {
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
133 *q = '\0';
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
134 }
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
135
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
136 up = first_protocol;
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
137 while (up != NULL) {
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
138 if (!strcmp(proto_str, up->name))
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
139 return url_open_protocol (puc, up, filename, flags);
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
140 up = up->next;
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
141 }
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
142 *puc = NULL;
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
143 return AVERROR(ENOENT);
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
144 }
b140b68a3747 Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents: 3286
diff changeset
145
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
146 int url_read(URLContext *h, unsigned char *buf, int size)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
147 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
148 int ret;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
149 if (h->flags & URL_WRONLY)
2274
b21c2af60bc9 Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents: 2189
diff changeset
150 return AVERROR(EIO);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
151 ret = h->prot->url_read(h, buf, size);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
152 return ret;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
153 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
154
5004
84a7b7a2f252 Move function for reading whole specified amount of data from RTSP
kostya
parents: 4640
diff changeset
155 int url_read_complete(URLContext *h, unsigned char *buf, int size)
84a7b7a2f252 Move function for reading whole specified amount of data from RTSP
kostya
parents: 4640
diff changeset
156 {
84a7b7a2f252 Move function for reading whole specified amount of data from RTSP
kostya
parents: 4640
diff changeset
157 int ret, len;
5584
70488b6f7044 Make url_read_complete handle EAGAIN more intelligently.
reimar
parents: 5580
diff changeset
158 int fast_retries = 5;
5004
84a7b7a2f252 Move function for reading whole specified amount of data from RTSP
kostya
parents: 4640
diff changeset
159
84a7b7a2f252 Move function for reading whole specified amount of data from RTSP
kostya
parents: 4640
diff changeset
160 len = 0;
84a7b7a2f252 Move function for reading whole specified amount of data from RTSP
kostya
parents: 4640
diff changeset
161 while (len < size) {
84a7b7a2f252 Move function for reading whole specified amount of data from RTSP
kostya
parents: 4640
diff changeset
162 ret = url_read(h, buf+len, size-len);
5580
07ce73fed19f Make url_read_complete retry on EAGAIN and return how much data it read
reimar
parents: 5555
diff changeset
163 if (ret == AVERROR(EAGAIN)) {
07ce73fed19f Make url_read_complete retry on EAGAIN and return how much data it read
reimar
parents: 5555
diff changeset
164 ret = 0;
5584
70488b6f7044 Make url_read_complete handle EAGAIN more intelligently.
reimar
parents: 5580
diff changeset
165 if (fast_retries)
70488b6f7044 Make url_read_complete handle EAGAIN more intelligently.
reimar
parents: 5580
diff changeset
166 fast_retries--;
70488b6f7044 Make url_read_complete handle EAGAIN more intelligently.
reimar
parents: 5580
diff changeset
167 else
70488b6f7044 Make url_read_complete handle EAGAIN more intelligently.
reimar
parents: 5580
diff changeset
168 usleep(1000);
5580
07ce73fed19f Make url_read_complete retry on EAGAIN and return how much data it read
reimar
parents: 5555
diff changeset
169 } else if (ret < 1)
07ce73fed19f Make url_read_complete retry on EAGAIN and return how much data it read
reimar
parents: 5555
diff changeset
170 return ret < 0 ? ret : len;
5584
70488b6f7044 Make url_read_complete handle EAGAIN more intelligently.
reimar
parents: 5580
diff changeset
171 if (ret)
70488b6f7044 Make url_read_complete handle EAGAIN more intelligently.
reimar
parents: 5580
diff changeset
172 fast_retries = FFMAX(fast_retries, 2);
5004
84a7b7a2f252 Move function for reading whole specified amount of data from RTSP
kostya
parents: 4640
diff changeset
173 len += ret;
84a7b7a2f252 Move function for reading whole specified amount of data from RTSP
kostya
parents: 4640
diff changeset
174 }
84a7b7a2f252 Move function for reading whole specified amount of data from RTSP
kostya
parents: 4640
diff changeset
175 return len;
84a7b7a2f252 Move function for reading whole specified amount of data from RTSP
kostya
parents: 4640
diff changeset
176 }
84a7b7a2f252 Move function for reading whole specified amount of data from RTSP
kostya
parents: 4640
diff changeset
177
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
178 int url_write(URLContext *h, unsigned char *buf, int size)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
179 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
180 int ret;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
181 if (!(h->flags & (URL_WRONLY | URL_RDWR)))
2274
b21c2af60bc9 Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents: 2189
diff changeset
182 return AVERROR(EIO);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
183 /* avoid sending too big packets */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
184 if (h->max_packet_size && size > h->max_packet_size)
2274
b21c2af60bc9 Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents: 2189
diff changeset
185 return AVERROR(EIO);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
186 ret = h->prot->url_write(h, buf, size);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
187 return ret;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
188 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
189
3973
549a09cf23fe Remove offset_t typedef and use int64_t directly instead.
diego
parents: 3744
diff changeset
190 int64_t url_seek(URLContext *h, int64_t pos, int whence)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
191 {
3973
549a09cf23fe Remove offset_t typedef and use int64_t directly instead.
diego
parents: 3744
diff changeset
192 int64_t ret;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
193
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
194 if (!h->prot->url_seek)
1787
eb16c64144ee This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents: 1746
diff changeset
195 return AVERROR(EPIPE);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
196 ret = h->prot->url_seek(h, pos, whence);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
197 return ret;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
198 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
199
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
200 int url_close(URLContext *h)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
201 {
2757
39cac1b7296e Call prot->url_close only if it is present.
alex
parents: 2710
diff changeset
202 int ret = 0;
2710
00ffc2f02705 Check context before accessing its field.
benoit
parents: 2274
diff changeset
203 if (!h) return 0; /* can happen when url_open fails */
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
204
2757
39cac1b7296e Call prot->url_close only if it is present.
alex
parents: 2710
diff changeset
205 if (h->prot->url_close)
39cac1b7296e Call prot->url_close only if it is present.
alex
parents: 2710
diff changeset
206 ret = h->prot->url_close(h);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
207 av_free(h);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
208 return ret;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
209 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
210
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
211 int url_exist(const char *filename)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
212 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
213 URLContext *h;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
214 if (url_open(&h, filename, URL_RDONLY) < 0)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
215 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
216 url_close(h);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
217 return 1;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
218 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
219
3973
549a09cf23fe Remove offset_t typedef and use int64_t directly instead.
diego
parents: 3744
diff changeset
220 int64_t url_filesize(URLContext *h)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
221 {
3973
549a09cf23fe Remove offset_t typedef and use int64_t directly instead.
diego
parents: 3744
diff changeset
222 int64_t pos, size;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 858
diff changeset
223
1612
a6eaa0762191 seekless filesize retrieving support in 7 lines of code, also doesnt break compatibility
michael
parents: 1358
diff changeset
224 size= url_seek(h, 0, AVSEEK_SIZE);
a6eaa0762191 seekless filesize retrieving support in 7 lines of code, also doesnt break compatibility
michael
parents: 1358
diff changeset
225 if(size<0){
1613
387dc458ba37 fix indention of previous commit
michael
parents: 1612
diff changeset
226 pos = url_seek(h, 0, SEEK_CUR);
1746
2649c0a9c037 protect the size=seek(SEEK_END,-1)+1 results with an if (.. < 0), else the
gpoirier
parents: 1648
diff changeset
227 if ((size = url_seek(h, -1, SEEK_END)) < 0)
2649c0a9c037 protect the size=seek(SEEK_END,-1)+1 results with an if (.. < 0), else the
gpoirier
parents: 1648
diff changeset
228 return size;
2649c0a9c037 protect the size=seek(SEEK_END,-1)+1 results with an if (.. < 0), else the
gpoirier
parents: 1648
diff changeset
229 size++;
1613
387dc458ba37 fix indention of previous commit
michael
parents: 1612
diff changeset
230 url_seek(h, pos, SEEK_SET);
1612
a6eaa0762191 seekless filesize retrieving support in 7 lines of code, also doesnt break compatibility
michael
parents: 1358
diff changeset
231 }
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
232 return size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
233 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
234
4640
b34d9614b887 Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents: 4488
diff changeset
235 int url_get_file_handle(URLContext *h)
b34d9614b887 Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents: 4488
diff changeset
236 {
b34d9614b887 Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents: 4488
diff changeset
237 if (!h->prot->url_get_file_handle)
b34d9614b887 Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents: 4488
diff changeset
238 return -1;
b34d9614b887 Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents: 4488
diff changeset
239 return h->prot->url_get_file_handle(h);
b34d9614b887 Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents: 4488
diff changeset
240 }
b34d9614b887 Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents: 4488
diff changeset
241
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
242 int url_get_max_packet_size(URLContext *h)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
243 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
244 return h->max_packet_size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
245 }
19
81e87c8de3dc added url_get_filename()
bellard
parents: 0
diff changeset
246
81e87c8de3dc added url_get_filename()
bellard
parents: 0
diff changeset
247 void url_get_filename(URLContext *h, char *buf, int buf_size)
81e87c8de3dc added url_get_filename()
bellard
parents: 0
diff changeset
248 {
2189
da71207a7cf1 use new string functions
mru
parents: 1875
diff changeset
249 av_strlcpy(buf, h->filename, buf_size);
19
81e87c8de3dc added url_get_filename()
bellard
parents: 0
diff changeset
250 }
177
16c4e43f34e5 added primitive aborting system
bellard
parents: 67
diff changeset
251
16c4e43f34e5 added primitive aborting system
bellard
parents: 67
diff changeset
252
16c4e43f34e5 added primitive aborting system
bellard
parents: 67
diff changeset
253 static int default_interrupt_cb(void)
16c4e43f34e5 added primitive aborting system
bellard
parents: 67
diff changeset
254 {
16c4e43f34e5 added primitive aborting system
bellard
parents: 67
diff changeset
255 return 0;
16c4e43f34e5 added primitive aborting system
bellard
parents: 67
diff changeset
256 }
16c4e43f34e5 added primitive aborting system
bellard
parents: 67
diff changeset
257
16c4e43f34e5 added primitive aborting system
bellard
parents: 67
diff changeset
258 void url_set_interrupt_cb(URLInterruptCB *interrupt_cb)
16c4e43f34e5 added primitive aborting system
bellard
parents: 67
diff changeset
259 {
16c4e43f34e5 added primitive aborting system
bellard
parents: 67
diff changeset
260 if (!interrupt_cb)
16c4e43f34e5 added primitive aborting system
bellard
parents: 67
diff changeset
261 interrupt_cb = default_interrupt_cb;
16c4e43f34e5 added primitive aborting system
bellard
parents: 67
diff changeset
262 url_interrupt_cb = interrupt_cb;
16c4e43f34e5 added primitive aborting system
bellard
parents: 67
diff changeset
263 }
2778
50e2307414ee Extend URLProtocol with new function pointers and api functions for
andoma
parents: 2757
diff changeset
264
2839
b51319dd86e5 Merge recently added and still unused play and pause functions.
michael
parents: 2834
diff changeset
265 int av_url_read_pause(URLContext *h, int pause)
2778
50e2307414ee Extend URLProtocol with new function pointers and api functions for
andoma
parents: 2757
diff changeset
266 {
50e2307414ee Extend URLProtocol with new function pointers and api functions for
andoma
parents: 2757
diff changeset
267 if (!h->prot->url_read_pause)
50e2307414ee Extend URLProtocol with new function pointers and api functions for
andoma
parents: 2757
diff changeset
268 return AVERROR(ENOSYS);
2839
b51319dd86e5 Merge recently added and still unused play and pause functions.
michael
parents: 2834
diff changeset
269 return h->prot->url_read_pause(h, pause);
2778
50e2307414ee Extend URLProtocol with new function pointers and api functions for
andoma
parents: 2757
diff changeset
270 }
50e2307414ee Extend URLProtocol with new function pointers and api functions for
andoma
parents: 2757
diff changeset
271
3973
549a09cf23fe Remove offset_t typedef and use int64_t directly instead.
diego
parents: 3744
diff changeset
272 int64_t av_url_read_seek(URLContext *h,
2778
50e2307414ee Extend URLProtocol with new function pointers and api functions for
andoma
parents: 2757
diff changeset
273 int stream_index, int64_t timestamp, int flags)
50e2307414ee Extend URLProtocol with new function pointers and api functions for
andoma
parents: 2757
diff changeset
274 {
50e2307414ee Extend URLProtocol with new function pointers and api functions for
andoma
parents: 2757
diff changeset
275 if (!h->prot->url_read_seek)
50e2307414ee Extend URLProtocol with new function pointers and api functions for
andoma
parents: 2757
diff changeset
276 return AVERROR(ENOSYS);
50e2307414ee Extend URLProtocol with new function pointers and api functions for
andoma
parents: 2757
diff changeset
277 return h->prot->url_read_seek(h, stream_index, timestamp, flags);
50e2307414ee Extend URLProtocol with new function pointers and api functions for
andoma
parents: 2757
diff changeset
278 }