ua_architecture.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /* This work is licensed under a Creative Commons CCZero 1.0 Universal License.
  2. * See http://creativecommons.org/publicdomain/zero/1.0/ for more information.
  3. *
  4. * Copyright 2016-2017 (c) Julius Pfrommer, Fraunhofer IOSB
  5. * Copyright 2017 (c) Stefan Profanter, fortiss GmbH
  6. */
  7. #ifndef PLUGINS_ARCH_VXWORKS_UA_ARCHITECTURE_H_
  8. #define PLUGINS_ARCH_VXWORKS_UA_ARCHITECTURE_H_
  9. #include <../deps/queue.h> //in some compilers there's already a _SYS_QUEUE_H_ who is included first and doesn't have all functions
  10. #include <errno.h>
  11. #include <arpa/inet.h>
  12. #include <netinet/in.h>
  13. #include <netdb.h>
  14. #include <sys/ioctl.h>
  15. #include <hostLib.h>
  16. #include <selectLib.h>
  17. #define UA_sleep_ms(X) \
  18. { \
  19. struct timespec timeToSleep; \
  20. timeToSleep.tv_sec = X / 1000; \
  21. timeToSleep.tv_nsec = 1000000 * (X % 1000); \
  22. nanosleep(&timeToSleep, NULL); \
  23. }
  24. #ifdef UINT32_C
  25. # undef UINT32_C
  26. #endif
  27. #define UINT32_C(x) ((x) + (UINT32_MAX - UINT32_MAX))
  28. #ifdef UA_BINARY_OVERLAYABLE_FLOAT
  29. # undef UA_BINARY_OVERLAYABLE_FLOAT
  30. #endif
  31. #define UA_BINARY_OVERLAYABLE_FLOAT 1
  32. #define OPTVAL_TYPE int
  33. #include <fcntl.h>
  34. #include <unistd.h> // read, write, close
  35. #include <netinet/tcp.h>
  36. #define UA_fd_set(fd, fds) FD_SET((unsigned int)fd, fds)
  37. #define UA_fd_isset(fd, fds) FD_ISSET((unsigned int)fd, fds)
  38. #define UA_access access
  39. #define UA_IPV6 1
  40. #define UA_SOCKET int
  41. #define UA_INVALID_SOCKET -1
  42. #define UA_ERRNO errno
  43. #define UA_INTERRUPTED EINTR
  44. #define UA_AGAIN EAGAIN
  45. #define UA_EAGAIN EAGAIN
  46. #define UA_WOULDBLOCK EWOULDBLOCK
  47. #define UA_ERR_CONNECTION_PROGRESS EINPROGRESS
  48. #define UA_getnameinfo getnameinfo
  49. #define UA_send send
  50. #define UA_recv recv
  51. #define UA_close close
  52. #define UA_select select
  53. #define UA_shutdown shutdown
  54. #define UA_socket socket
  55. #define UA_bind bind
  56. #define UA_listen listen
  57. #define UA_accept accept
  58. #define UA_connect connect
  59. #define UA_getaddrinfo getaddrinfo
  60. #define UA_getsockopt getsockopt
  61. #define UA_setsockopt setsockopt
  62. #define UA_freeaddrinfo freeaddrinfo
  63. #define UA_gethostname gethostname
  64. #include <stdlib.h>
  65. #define UA_free free
  66. #define UA_malloc malloc
  67. #define UA_calloc calloc
  68. #define UA_realloc realloc
  69. #include <stdio.h>
  70. #define UA_snprintf snprintf
  71. #define UA_LOG_SOCKET_ERRNO_WRAP(LOG) { \
  72. char *errno_str = strerror(errno); \
  73. LOG; \
  74. }
  75. #define UA_LOG_SOCKET_ERRNO_GAI_WRAP(LOG) { \
  76. char *errno_str = gai_strerror(errno); \
  77. LOG; \
  78. }
  79. #include "../ua_architecture_functions.h"
  80. #endif /* PLUGINS_ARCH_VXWORKS_UA_ARCHITECTURE_H_ */