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.

155 lines
3.9KB

  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. #ifdef HAVE_WINSOCK2_H
  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. unsigned int add1 = 0, add2 = 0, add3 = 0, add4 = 0;
  41. if (sscanf(str, "%d.%d.%d.%d", &add1, &add2, &add3, &add4) != 4)
  42. return 0;
  43. if (!add1 || (add1|add2|add3|add4) > 255) return 0;
  44. add->s_addr=(add4<<24)+(add3<<16)+(add2<<8)+add1;
  45. return 1;
  46. }
  47. #endif /* !defined(HAVE_INET_ATON) */
  48. /* resolve host with also IP address parsing */
  49. int resolve_host(struct in_addr *sin_addr, const char *hostname)
  50. {
  51. struct hostent *hp;
  52. if (!inet_aton(hostname, sin_addr)) {
  53. hp = gethostbyname(hostname);
  54. if (!hp)
  55. return -1;
  56. memcpy(sin_addr, hp->h_addr, sizeof(struct in_addr));
  57. }
  58. return 0;
  59. }
  60. int ff_socket_nonblock(int socket, int enable)
  61. {
  62. #ifdef HAVE_WINSOCK2_H
  63. return ioctlsocket(socket, FIONBIO, &enable);
  64. #else
  65. if (enable)
  66. return fcntl(socket, F_SETFL, fcntl(socket, F_GETFL) | O_NONBLOCK);
  67. else
  68. return fcntl(socket, F_SETFL, fcntl(socket, F_GETFL) & ~O_NONBLOCK);
  69. #endif
  70. }
  71. #endif /* CONFIG_NETWORK */
  72. #ifdef CONFIG_FFSERVER
  73. #ifndef HAVE_SYS_POLL_H
  74. int poll(struct pollfd *fds, nfds_t numfds, int timeout)
  75. {
  76. fd_set read_set;
  77. fd_set write_set;
  78. fd_set exception_set;
  79. nfds_t i;
  80. int n;
  81. int rc;
  82. #ifdef HAVE_WINSOCK2_H
  83. if (numfds >= FD_SETSIZE) {
  84. errno = EINVAL;
  85. return -1;
  86. }
  87. #endif
  88. FD_ZERO(&read_set);
  89. FD_ZERO(&write_set);
  90. FD_ZERO(&exception_set);
  91. n = -1;
  92. for(i = 0; i < numfds; i++) {
  93. if (fds[i].fd < 0)
  94. continue;
  95. #ifndef HAVE_WINSOCK2_H
  96. if (fds[i].fd >= FD_SETSIZE) {
  97. errno = EINVAL;
  98. return -1;
  99. }
  100. #endif
  101. if (fds[i].events & POLLIN) FD_SET(fds[i].fd, &read_set);
  102. if (fds[i].events & POLLOUT) FD_SET(fds[i].fd, &write_set);
  103. if (fds[i].events & POLLERR) FD_SET(fds[i].fd, &exception_set);
  104. if (fds[i].fd > n)
  105. n = fds[i].fd;
  106. };
  107. if (n == -1)
  108. /* Hey!? Nothing to poll, in fact!!! */
  109. return 0;
  110. if (timeout < 0)
  111. rc = select(n+1, &read_set, &write_set, &exception_set, NULL);
  112. else {
  113. struct timeval tv;
  114. tv.tv_sec = timeout / 1000;
  115. tv.tv_usec = 1000 * (timeout % 1000);
  116. rc = select(n+1, &read_set, &write_set, &exception_set, &tv);
  117. };
  118. if (rc < 0)
  119. return rc;
  120. for(i = 0; i < (nfds_t) n; i++) {
  121. fds[i].revents = 0;
  122. if (FD_ISSET(fds[i].fd, &read_set)) fds[i].revents |= POLLIN;
  123. if (FD_ISSET(fds[i].fd, &write_set)) fds[i].revents |= POLLOUT;
  124. if (FD_ISSET(fds[i].fd, &exception_set)) fds[i].revents |= POLLERR;
  125. };
  126. return rc;
  127. }
  128. #endif /* HAVE_SYS_POLL_H */
  129. #endif /* CONFIG_FFSERVER */