You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

163 lines
4.0KB

  1. /*
  2. * Various utilities for ffmpeg system
  3. * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
  4. * copyright (c) 2002 Francois Revol
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "config.h"
  23. #include "avformat.h"
  24. #include <unistd.h>
  25. #include <fcntl.h>
  26. #ifndef HAVE_SYS_POLL_H
  27. #if defined(__MINGW32__)
  28. #include <winsock2.h>
  29. #else
  30. #include <sys/select.h>
  31. #endif
  32. #endif
  33. #ifdef CONFIG_NETWORK
  34. #include "network.h"
  35. #if !defined(HAVE_INET_ATON)
  36. #include <stdlib.h>
  37. #include <strings.h>
  38. int inet_aton (const char * str, struct in_addr * add)
  39. {
  40. const char * pch = str;
  41. unsigned int add1 = 0, add2 = 0, add3 = 0, add4 = 0;
  42. add1 = atoi(pch);
  43. pch = strpbrk(pch,".");
  44. if (pch == 0 || ++pch == 0) goto done;
  45. add2 = atoi(pch);
  46. pch = strpbrk(pch,".");
  47. if (pch == 0 || ++pch == 0) goto done;
  48. add3 = atoi(pch);
  49. pch = strpbrk(pch,".");
  50. if (pch == 0 || ++pch == 0) goto done;
  51. add4 = atoi(pch);
  52. done:
  53. add->s_addr=(add4<<24)+(add3<<16)+(add2<<8)+add1;
  54. return 1;
  55. }
  56. #endif /* !defined(HAVE_INET_ATON) */
  57. /* resolve host with also IP address parsing */
  58. int resolve_host(struct in_addr *sin_addr, const char *hostname)
  59. {
  60. struct hostent *hp;
  61. if (!inet_aton(hostname, sin_addr)) {
  62. hp = gethostbyname(hostname);
  63. if (!hp)
  64. return -1;
  65. memcpy(sin_addr, hp->h_addr, sizeof(struct in_addr));
  66. }
  67. return 0;
  68. }
  69. int ff_socket_nonblock(int socket, int enable)
  70. {
  71. #ifdef __MINGW32__
  72. return ioctlsocket(socket, FIONBIO, &enable);
  73. #else
  74. if (enable)
  75. return fcntl(socket, F_SETFL, fcntl(socket, F_GETFL) | O_NONBLOCK);
  76. else
  77. return fcntl(socket, F_SETFL, fcntl(socket, F_GETFL) & ~O_NONBLOCK);
  78. #endif
  79. }
  80. #endif /* CONFIG_NETWORK */
  81. #ifdef CONFIG_FFSERVER
  82. #ifndef HAVE_SYS_POLL_H
  83. int poll(struct pollfd *fds, nfds_t numfds, int timeout)
  84. {
  85. fd_set read_set;
  86. fd_set write_set;
  87. fd_set exception_set;
  88. nfds_t i;
  89. int n;
  90. int rc;
  91. #ifdef __MINGW32__
  92. if (numfds >= FD_SETSIZE) {
  93. errno = EINVAL;
  94. return -1;
  95. }
  96. #endif
  97. FD_ZERO(&read_set);
  98. FD_ZERO(&write_set);
  99. FD_ZERO(&exception_set);
  100. n = -1;
  101. for(i = 0; i < numfds; i++) {
  102. if (fds[i].fd < 0)
  103. continue;
  104. #ifndef __MINGW32__
  105. if (fds[i].fd >= FD_SETSIZE) {
  106. errno = EINVAL;
  107. return -1;
  108. }
  109. #endif
  110. if (fds[i].events & POLLIN) FD_SET(fds[i].fd, &read_set);
  111. if (fds[i].events & POLLOUT) FD_SET(fds[i].fd, &write_set);
  112. if (fds[i].events & POLLERR) FD_SET(fds[i].fd, &exception_set);
  113. if (fds[i].fd > n)
  114. n = fds[i].fd;
  115. };
  116. if (n == -1)
  117. /* Hey!? Nothing to poll, in fact!!! */
  118. return 0;
  119. if (timeout < 0)
  120. rc = select(n+1, &read_set, &write_set, &exception_set, NULL);
  121. else {
  122. struct timeval tv;
  123. tv.tv_sec = timeout / 1000;
  124. tv.tv_usec = 1000 * (timeout % 1000);
  125. rc = select(n+1, &read_set, &write_set, &exception_set, &tv);
  126. };
  127. if (rc < 0)
  128. return rc;
  129. for(i = 0; i < (nfds_t) n; i++) {
  130. fds[i].revents = 0;
  131. if (FD_ISSET(fds[i].fd, &read_set)) fds[i].revents |= POLLIN;
  132. if (FD_ISSET(fds[i].fd, &write_set)) fds[i].revents |= POLLOUT;
  133. if (FD_ISSET(fds[i].fd, &exception_set)) fds[i].revents |= POLLERR;
  134. };
  135. return rc;
  136. }
  137. #endif /* HAVE_SYS_POLL_H */
  138. #endif /* CONFIG_FFSERVER */