OSDN Git Service

imdct/x86: Use "s->mdct_size" instead of "1 << s->mdct_bits".
[coroid/libav_saccubus.git] / libavformat / tcp.c
1 /*
2  * TCP protocol
3  * Copyright (c) 2002 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 #include <unistd.h>
23 #include "internal.h"
24 #include "network.h"
25 #include "os_support.h"
26 #if HAVE_SYS_SELECT_H
27 #include <sys/select.h>
28 #endif
29 #include <sys/time.h>
30
31 typedef struct TCPContext {
32     int fd;
33 } TCPContext;
34
35 /* return non zero if error */
36 static int tcp_open(URLContext *h, const char *uri, int flags)
37 {
38     struct addrinfo hints, *ai, *cur_ai;
39     int port, fd = -1;
40     TCPContext *s = NULL;
41     fd_set wfds;
42     int fd_max, ret;
43     struct timeval tv;
44     socklen_t optlen;
45     char hostname[1024],proto[1024],path[1024];
46     char portstr[10];
47
48     av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname),
49         &port, path, sizeof(path), uri);
50     if (strcmp(proto,"tcp") || port <= 0 || port >= 65536)
51         return AVERROR(EINVAL);
52
53     memset(&hints, 0, sizeof(hints));
54     hints.ai_family = AF_UNSPEC;
55     hints.ai_socktype = SOCK_STREAM;
56     snprintf(portstr, sizeof(portstr), "%d", port);
57     ret = getaddrinfo(hostname, portstr, &hints, &ai);
58     if (ret) {
59         av_log(NULL, AV_LOG_ERROR,
60                "Failed to resolve hostname %s: %s\n",
61                hostname, gai_strerror(ret));
62         return AVERROR(EIO);
63     }
64
65     cur_ai = ai;
66
67  restart:
68     fd = socket(cur_ai->ai_family, cur_ai->ai_socktype, cur_ai->ai_protocol);
69     if (fd < 0)
70         goto fail;
71     ff_socket_nonblock(fd, 1);
72
73  redo:
74     ret = connect(fd, cur_ai->ai_addr, cur_ai->ai_addrlen);
75     if (ret < 0) {
76         if (ff_neterrno() == FF_NETERROR(EINTR))
77             goto redo;
78         if (ff_neterrno() != FF_NETERROR(EINPROGRESS) &&
79             ff_neterrno() != FF_NETERROR(EAGAIN))
80             goto fail;
81
82         /* wait until we are connected or until abort */
83         for(;;) {
84             if (url_interrupt_cb()) {
85                 ret = AVERROR(EINTR);
86                 goto fail1;
87             }
88             fd_max = fd;
89             FD_ZERO(&wfds);
90             FD_SET(fd, &wfds);
91             tv.tv_sec = 0;
92             tv.tv_usec = 100 * 1000;
93             ret = select(fd_max + 1, NULL, &wfds, NULL, &tv);
94             if (ret > 0 && FD_ISSET(fd, &wfds))
95                 break;
96         }
97
98         /* test error */
99         optlen = sizeof(ret);
100         getsockopt (fd, SOL_SOCKET, SO_ERROR, &ret, &optlen);
101         if (ret != 0) {
102             av_log(NULL, AV_LOG_ERROR,
103                    "TCP connection to %s:%d failed: %s\n",
104                    hostname, port, strerror(ret));
105             goto fail;
106         }
107     }
108     s = av_malloc(sizeof(TCPContext));
109     if (!s) {
110         freeaddrinfo(ai);
111         return AVERROR(ENOMEM);
112     }
113     h->priv_data = s;
114     h->is_streamed = 1;
115     s->fd = fd;
116     freeaddrinfo(ai);
117     return 0;
118
119  fail:
120     if (cur_ai->ai_next) {
121         /* Retry with the next sockaddr */
122         cur_ai = cur_ai->ai_next;
123         if (fd >= 0)
124             closesocket(fd);
125         goto restart;
126     }
127     ret = AVERROR(EIO);
128  fail1:
129     if (fd >= 0)
130         closesocket(fd);
131     freeaddrinfo(ai);
132     return ret;
133 }
134
135 static int tcp_read(URLContext *h, uint8_t *buf, int size)
136 {
137     TCPContext *s = h->priv_data;
138     int len, fd_max, ret;
139     fd_set rfds;
140     struct timeval tv;
141
142     for (;;) {
143         if (url_interrupt_cb())
144             return AVERROR(EINTR);
145         fd_max = s->fd;
146         FD_ZERO(&rfds);
147         FD_SET(s->fd, &rfds);
148         tv.tv_sec = 0;
149         tv.tv_usec = 100 * 1000;
150         ret = select(fd_max + 1, &rfds, NULL, NULL, &tv);
151         if (ret > 0 && FD_ISSET(s->fd, &rfds)) {
152             len = recv(s->fd, buf, size, 0);
153             if (len < 0) {
154                 if (ff_neterrno() != FF_NETERROR(EINTR) &&
155                     ff_neterrno() != FF_NETERROR(EAGAIN))
156                     return AVERROR(ff_neterrno());
157             } else return len;
158         } else if (ret < 0) {
159             if (ff_neterrno() == FF_NETERROR(EINTR))
160                 continue;
161             return -1;
162         }
163     }
164 }
165
166 static int tcp_write(URLContext *h, const uint8_t *buf, int size)
167 {
168     TCPContext *s = h->priv_data;
169     int ret, size1, fd_max, len;
170     fd_set wfds;
171     struct timeval tv;
172
173     size1 = size;
174     while (size > 0) {
175         if (url_interrupt_cb())
176             return AVERROR(EINTR);
177         fd_max = s->fd;
178         FD_ZERO(&wfds);
179         FD_SET(s->fd, &wfds);
180         tv.tv_sec = 0;
181         tv.tv_usec = 100 * 1000;
182         ret = select(fd_max + 1, NULL, &wfds, NULL, &tv);
183         if (ret > 0 && FD_ISSET(s->fd, &wfds)) {
184             len = send(s->fd, buf, size, 0);
185             if (len < 0) {
186                 if (ff_neterrno() != FF_NETERROR(EINTR) &&
187                     ff_neterrno() != FF_NETERROR(EAGAIN))
188                     return AVERROR(ff_neterrno());
189                 continue;
190             }
191             size -= len;
192             buf += len;
193         } else if (ret < 0) {
194             if (ff_neterrno() == FF_NETERROR(EINTR))
195                 continue;
196             return -1;
197         }
198     }
199     return size1 - size;
200 }
201
202 static int tcp_close(URLContext *h)
203 {
204     TCPContext *s = h->priv_data;
205     closesocket(s->fd);
206     av_free(s);
207     return 0;
208 }
209
210 static int tcp_get_file_handle(URLContext *h)
211 {
212     TCPContext *s = h->priv_data;
213     return s->fd;
214 }
215
216 URLProtocol tcp_protocol = {
217     "tcp",
218     tcp_open,
219     tcp_read,
220     tcp_write,
221     NULL, /* seek */
222     tcp_close,
223     .url_get_file_handle = tcp_get_file_handle,
224 };