Mercurial > libavformat.hg
annotate tcp.c @ 3148:f00aeedea66a libavformat
MSN TCP Webcam stream demuxer.
| author | ramiro |
|---|---|
| date | Tue, 18 Mar 2008 19:54:47 +0000 |
| parents | 69b7efa1e0cb |
| children | 4ef51601582d |
| rev | line source |
|---|---|
| 0 | 1 /* |
| 2 * TCP protocol | |
| 3 * Copyright (c) 2002 Fabrice Bellard. | |
| 4 * | |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
923
diff
changeset
|
5 * This file is part of FFmpeg. |
|
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
923
diff
changeset
|
6 * |
|
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
923
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
| 0 | 8 * modify it under the terms of the GNU Lesser General Public |
| 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:
923
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
| 0 | 11 * |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
923
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
| 0 | 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 | |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
923
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 | 20 */ |
| 21 #include "avformat.h" | |
| 22 #include <unistd.h> | |
| 1754 | 23 #include "network.h" |
| 2773 | 24 #include "os_support.h" |
| 180 | 25 #include <sys/time.h> |
| 0 | 26 |
| 27 typedef struct TCPContext { | |
| 28 int fd; | |
| 29 } TCPContext; | |
| 30 | |
| 31 /* return non zero if error */ | |
| 32 static int tcp_open(URLContext *h, const char *uri, int flags) | |
| 33 { | |
| 34 struct sockaddr_in dest_addr; | |
| 35 char hostname[1024], *q; | |
| 36 int port, fd = -1; | |
|
683
095009fc2f35
kill warnings patch by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
511
diff
changeset
|
37 TCPContext *s = NULL; |
| 180 | 38 fd_set wfds; |
| 39 int fd_max, ret; | |
| 40 struct timeval tv; | |
| 41 socklen_t optlen; | |
|
511
056991ab9f10
HTTP Authentication Patch by (Petr Doubek <doubek at vision dot ee dot ethz dot ch>)
michael
parents:
482
diff
changeset
|
42 char proto[1024],path[1024],tmp[1024]; // PETR: protocol and path strings |
|
056991ab9f10
HTTP Authentication Patch by (Petr Doubek <doubek at vision dot ee dot ethz dot ch>)
michael
parents:
482
diff
changeset
|
43 |
|
056991ab9f10
HTTP Authentication Patch by (Petr Doubek <doubek at vision dot ee dot ethz dot ch>)
michael
parents:
482
diff
changeset
|
44 url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname), |
|
056991ab9f10
HTTP Authentication Patch by (Petr Doubek <doubek at vision dot ee dot ethz dot ch>)
michael
parents:
482
diff
changeset
|
45 &port, path, sizeof(path), uri); // PETR: use url_split |
|
056991ab9f10
HTTP Authentication Patch by (Petr Doubek <doubek at vision dot ee dot ethz dot ch>)
michael
parents:
482
diff
changeset
|
46 if (strcmp(proto,"tcp")) goto fail; // PETR: check protocol |
|
056991ab9f10
HTTP Authentication Patch by (Petr Doubek <doubek at vision dot ee dot ethz dot ch>)
michael
parents:
482
diff
changeset
|
47 if ((q = strchr(hostname,'@'))) { strcpy(tmp,q+1); strcpy(hostname,tmp); } // PETR: take only the part after '@' for tcp protocol |
| 885 | 48 |
| 0 | 49 s = av_malloc(sizeof(TCPContext)); |
| 50 if (!s) | |
|
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1754
diff
changeset
|
51 return AVERROR(ENOMEM); |
| 0 | 52 h->priv_data = s; |
|
3114
69b7efa1e0cb
Set TCP protocol to is_streamed=1 as seeking is not possible.
diego
parents:
2773
diff
changeset
|
53 h->is_streamed = 1; |
| 885 | 54 |
| 0 | 55 if (port <= 0 || port >= 65536) |
| 56 goto fail; | |
| 885 | 57 |
|
2351
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2321
diff
changeset
|
58 if(!ff_network_init()) |
|
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2321
diff
changeset
|
59 return AVERROR(EIO); |
|
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2321
diff
changeset
|
60 |
| 0 | 61 dest_addr.sin_family = AF_INET; |
| 62 dest_addr.sin_port = htons(port); | |
| 63 if (resolve_host(&dest_addr.sin_addr, hostname) < 0) | |
| 64 goto fail; | |
| 65 | |
|
1810
d85795da84ab
change PF_INET to AF_INET to be consistent in the whole project. PF_INET is deprecated, while AF_INET is referred by the POSIX standards
alex
parents:
1787
diff
changeset
|
66 fd = socket(AF_INET, SOCK_STREAM, 0); |
| 0 | 67 if (fd < 0) |
| 68 goto fail; | |
|
2057
857fbfeb2fa0
implement ff_socket_nonblock and use it in networking code
alex
parents:
2056
diff
changeset
|
69 ff_socket_nonblock(fd, 1); |
| 885 | 70 |
| 180 | 71 redo: |
| 885 | 72 ret = connect(fd, (struct sockaddr *)&dest_addr, |
| 180 | 73 sizeof(dest_addr)); |
| 74 if (ret < 0) { | |
|
2056
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
2050
diff
changeset
|
75 if (ff_neterrno() == FF_NETERROR(EINTR)) |
| 180 | 76 goto redo; |
| 2321 | 77 if (ff_neterrno() != FF_NETERROR(EINPROGRESS) && |
| 78 ff_neterrno() != FF_NETERROR(EAGAIN)) | |
| 180 | 79 goto fail; |
| 0 | 80 |
| 180 | 81 /* wait until we are connected or until abort */ |
| 82 for(;;) { | |
| 83 if (url_interrupt_cb()) { | |
|
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1754
diff
changeset
|
84 ret = AVERROR(EINTR); |
| 180 | 85 goto fail1; |
| 86 } | |
| 87 fd_max = fd; | |
| 88 FD_ZERO(&wfds); | |
| 89 FD_SET(fd, &wfds); | |
| 90 tv.tv_sec = 0; | |
| 91 tv.tv_usec = 100 * 1000; | |
| 92 ret = select(fd_max + 1, NULL, &wfds, NULL, &tv); | |
| 93 if (ret > 0 && FD_ISSET(fd, &wfds)) | |
| 94 break; | |
| 95 } | |
| 885 | 96 |
| 180 | 97 /* test error */ |
| 98 optlen = sizeof(ret); | |
| 99 getsockopt (fd, SOL_SOCKET, SO_ERROR, &ret, &optlen); | |
| 100 if (ret != 0) | |
| 101 goto fail; | |
| 102 } | |
| 0 | 103 s->fd = fd; |
| 104 return 0; | |
| 105 | |
| 106 fail: | |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2057
diff
changeset
|
107 ret = AVERROR(EIO); |
| 180 | 108 fail1: |
| 0 | 109 if (fd >= 0) |
| 1670 | 110 closesocket(fd); |
| 0 | 111 av_free(s); |
| 180 | 112 return ret; |
| 0 | 113 } |
| 114 | |
| 65 | 115 static int tcp_read(URLContext *h, uint8_t *buf, int size) |
| 0 | 116 { |
| 117 TCPContext *s = h->priv_data; | |
|
388
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
118 int len, fd_max, ret; |
| 180 | 119 fd_set rfds; |
| 120 struct timeval tv; | |
| 0 | 121 |
|
385
2f56d366a787
no read loop tcp/http and http CRLF fix by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
261
diff
changeset
|
122 for (;;) { |
| 180 | 123 if (url_interrupt_cb()) |
|
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1754
diff
changeset
|
124 return AVERROR(EINTR); |
| 180 | 125 fd_max = s->fd; |
| 126 FD_ZERO(&rfds); | |
| 127 FD_SET(s->fd, &rfds); | |
| 128 tv.tv_sec = 0; | |
| 129 tv.tv_usec = 100 * 1000; | |
|
388
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
130 ret = select(fd_max + 1, &rfds, NULL, NULL, &tv); |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
131 if (ret > 0 && FD_ISSET(s->fd, &rfds)) { |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
132 len = recv(s->fd, buf, size, 0); |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
133 if (len < 0) { |
|
2056
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
2050
diff
changeset
|
134 if (ff_neterrno() != FF_NETERROR(EINTR) && |
|
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
2050
diff
changeset
|
135 ff_neterrno() != FF_NETERROR(EAGAIN)) |
|
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1754
diff
changeset
|
136 return AVERROR(errno); |
|
388
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
137 } else return len; |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
138 } else if (ret < 0) { |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
139 return -1; |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
140 } |
| 0 | 141 } |
| 142 } | |
| 143 | |
| 65 | 144 static int tcp_write(URLContext *h, uint8_t *buf, int size) |
| 0 | 145 { |
| 146 TCPContext *s = h->priv_data; | |
|
388
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
147 int ret, size1, fd_max, len; |
| 180 | 148 fd_set wfds; |
| 149 struct timeval tv; | |
| 0 | 150 |
| 151 size1 = size; | |
| 152 while (size > 0) { | |
| 180 | 153 if (url_interrupt_cb()) |
|
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1754
diff
changeset
|
154 return AVERROR(EINTR); |
| 180 | 155 fd_max = s->fd; |
| 156 FD_ZERO(&wfds); | |
| 157 FD_SET(s->fd, &wfds); | |
| 158 tv.tv_sec = 0; | |
| 159 tv.tv_usec = 100 * 1000; | |
|
388
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
160 ret = select(fd_max + 1, NULL, &wfds, NULL, &tv); |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
161 if (ret > 0 && FD_ISSET(s->fd, &wfds)) { |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
162 len = send(s->fd, buf, size, 0); |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
163 if (len < 0) { |
|
2056
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
2050
diff
changeset
|
164 if (ff_neterrno() != FF_NETERROR(EINTR) && |
|
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
2050
diff
changeset
|
165 ff_neterrno() != FF_NETERROR(EAGAIN)) |
|
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1754
diff
changeset
|
166 return AVERROR(errno); |
|
388
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
167 continue; |
|
261
5f27f90ed496
Fix a very nasty problem with extra bytes appearing in TCP data streams.
philipjsg
parents:
229
diff
changeset
|
168 } |
|
388
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
169 size -= len; |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
170 buf += len; |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
171 } else if (ret < 0) { |
|
9af30d452a0a
tcp select() check and enables pressing 'q' when reading/(writing) from
michael
parents:
385
diff
changeset
|
172 return -1; |
|
261
5f27f90ed496
Fix a very nasty problem with extra bytes appearing in TCP data streams.
philipjsg
parents:
229
diff
changeset
|
173 } |
| 0 | 174 } |
| 175 return size1 - size; | |
| 176 } | |
| 177 | |
| 178 static int tcp_close(URLContext *h) | |
| 179 { | |
| 180 TCPContext *s = h->priv_data; | |
| 181 closesocket(s->fd); | |
|
2351
b9a881c0967e
Add initialization and cleanup functions for Winsock
ramiro
parents:
2321
diff
changeset
|
182 ff_network_close(); |
| 0 | 183 av_free(s); |
| 184 return 0; | |
| 185 } | |
| 186 | |
| 187 URLProtocol tcp_protocol = { | |
| 188 "tcp", | |
| 189 tcp_open, | |
| 190 tcp_read, | |
| 191 tcp_write, | |
| 192 NULL, /* seek */ | |
| 193 tcp_close, | |
| 194 }; |
