123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- /* This work is licensed under a Creative Commons CCZero 1.0 Universal License.
- * See http://creativecommons.org/publicdomain/zero/1.0/ for more information.
- *
- * Copyright 2016-2017 (c) Julius Pfrommer, Fraunhofer IOSB
- * Copyright 2017 (c) Stefan Profanter, fortiss GmbH
- */
- #ifdef UA_ARCHITECTURE_WIN32
- #ifndef PLUGINS_ARCH_WIN32_UA_ARCHITECTURE_H_
- #define PLUGINS_ARCH_WIN32_UA_ARCHITECTURE_H_
- #include <open62541/architecture_base.h>
- #ifndef _BSD_SOURCE
- # define _BSD_SOURCE
- #endif
- /* Disable some security warnings on MSVC */
- #if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS)
- # define _CRT_SECURE_NO_WARNINGS
- #endif
- /* Assume that Windows versions are newer than Windows XP */
- #if defined(__MINGW32__) && (!defined(WINVER) || WINVER < 0x501)
- # undef WINVER
- # undef _WIN32_WINDOWS
- # undef _WIN32_WINNT
- # define WINVER 0x0600
- # define _WIN32_WINDOWS 0x0600
- # define _WIN32_WINNT 0x0600 //windows vista version, which included InepPton
- #endif
- #include <stdlib.h>
- #if defined(_WIN32) && !defined(__clang__)
- # include <malloc.h>
- #endif
- #include <stdio.h>
- #include <errno.h>
- #include <winsock2.h>
- #include <windows.h>
- #include <ws2tcpip.h>
- #if defined (_MSC_VER) || defined(__clang__)
- # ifndef UNDER_CE
- # include <io.h> //access
- # define UA_access _access
- # endif
- #else
- # include <unistd.h> //access and tests
- # define UA_access access
- #endif
- #define ssize_t int
- #define OPTVAL_TYPE char
- #ifndef UA_sleep_ms
- # define UA_sleep_ms(X) Sleep(X)
- #endif
- // Windows does not support ansi colors
- // #define UA_ENABLE_LOG_COLORS
- #define UA_IPV6 1
- #if defined(__MINGW32__) && !defined(__clang__) //mingw defines SOCKET as long long unsigned int, giving errors in logging and when comparing with UA_Int32
- # define UA_SOCKET int
- # define UA_INVALID_SOCKET -1
- #else
- # define UA_SOCKET SOCKET
- # define UA_INVALID_SOCKET INVALID_SOCKET
- #endif
- #define UA_ERRNO WSAGetLastError()
- #define UA_INTERRUPTED WSAEINTR
- #define UA_AGAIN WSAEWOULDBLOCK
- #define UA_EAGAIN EAGAIN
- #define UA_WOULDBLOCK WSAEWOULDBLOCK
- #define UA_ERR_CONNECTION_PROGRESS WSAEWOULDBLOCK
- #define UA_fd_set(fd, fds) FD_SET((UA_SOCKET)fd, fds)
- #define UA_fd_isset(fd, fds) FD_ISSET((UA_SOCKET)fd, fds)
- #ifdef UNDER_CE
- # define errno
- #endif
- #define UA_getnameinfo getnameinfo
- #define UA_send(sockfd, buf, len, flags) send(sockfd, buf, (int)(len), flags)
- #define UA_recv(sockfd, buf, len, flags) recv(sockfd, buf, (int)(len), flags)
- #define UA_sendto(sockfd, buf, len, flags, dest_addr, addrlen) sendto(sockfd, (const char*)(buf), (int)(len), flags, dest_addr, (int) (addrlen))
- #define UA_recvfrom(sockfd, buf, len, flags, src_addr, addrlen) recvfrom(sockfd, (char*)(buf), (int)(len), flags, src_addr, addrlen)
- #define UA_htonl htonl
- #define UA_ntohl ntohl
- #define UA_close closesocket
- #define UA_select(nfds, readfds, writefds, exceptfds, timeout) select((int)(nfds), readfds, writefds, exceptfds, timeout)
- #define UA_shutdown shutdown
- #define UA_socket socket
- #define UA_bind bind
- #define UA_listen listen
- #define UA_accept accept
- #define UA_connect(sockfd, addr, addrlen) connect(sockfd, addr, (int)(addrlen))
- #define UA_getaddrinfo getaddrinfo
- #define UA_getsockopt getsockopt
- #define UA_setsockopt(sockfd, level, optname, optval, optlen) setsockopt(sockfd, level, optname, (const char*) (optval), optlen)
- #define UA_freeaddrinfo freeaddrinfo
- #define UA_gethostname gethostname
- #define UA_getsockname getsockname
- #define UA_inet_pton InetPton
- #if UA_IPV6
- # include <iphlpapi.h>
- # define UA_if_nametoindex if_nametoindex
- #endif
- #ifdef maxStringLength //defined in mingw64
- # undef maxStringLength
- #endif
- #ifndef UA_free
- #define UA_free free
- #endif
- #ifndef UA_malloc
- #define UA_malloc malloc
- #endif
- #ifndef UA_calloc
- #define UA_calloc calloc
- #endif
- #ifndef UA_realloc
- #define UA_realloc realloc
- #endif
- /* 3rd Argument is the string */
- #define UA_snprintf(source, size, ...) _snprintf_s(source, size, _TRUNCATE, __VA_ARGS__)
- #define UA_LOG_SOCKET_ERRNO_WRAP(LOG) { \
- char *errno_str = NULL; \
- FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, \
- NULL, WSAGetLastError(), \
- MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), \
- (LPSTR)&errno_str, 0, NULL); \
- LOG; \
- LocalFree(errno_str); \
- }
- #define UA_LOG_SOCKET_ERRNO_GAI_WRAP UA_LOG_SOCKET_ERRNO_WRAP
- #if UA_MULTITHREADING >= 100
- #define UA_LOCK_TYPE(mutexName) CRITICAL_SECTION mutexName; \
- int mutexName##Counter;
- #define UA_LOCK_INIT(mutexName) InitializeCriticalSection(&mutexName); \
- mutexName##Counter = 0;;
- #define UA_LOCK_DESTROY(mutexName) DeleteCriticalSection(&mutexName);
- #define UA_LOCK(mutexName) EnterCriticalSection(&mutexName); \
- UA_assert(++(mutexName##Counter) == 1);
- #define UA_UNLOCK(mutexName) UA_assert(--(mutexName##Counter) == 0); \
- LeaveCriticalSection(&mutexName);
- #define UA_LOCK_ASSERT(mutexName, num) UA_assert(mutexName##Counter == num);
- #else
- #define UA_LOCK_TYPE(mutexName)
- #define UA_LOCK_TYPE_POINTER(mutexName)
- #define UA_LOCK_INIT(mutexName)
- #define UA_LOCK_DESTROY(mutexName)
- #define UA_LOCK(mutexName)
- #define UA_UNLOCK(mutexName)
- #define UA_LOCK_ASSERT(mutexName, num)
- #endif
- #include <open62541/architecture_functions.h>
- /* Fix redefinition of SLIST_ENTRY on mingw winnt.h */
- #if !defined(_SYS_QUEUE_H_) && defined(SLIST_ENTRY)
- # undef SLIST_ENTRY
- #endif
- #endif /* PLUGINS_ARCH_WIN32_UA_ARCHITECTURE_H_ */
- #endif /* UA_ARCHITECTURE_WIN32 */
|