Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file compat.h |
| 3 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 4 | * @brief compatibility functions header |
| 5 | * |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 6 | * Copyright (c) 2021 CESNET, z.s.p.o. |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 7 | * |
| 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * https://opensource.org/licenses/BSD-3-Clause |
| 13 | */ |
| 14 | |
| 15 | #ifndef _COMPAT_H_ |
| 16 | #define _COMPAT_H_ |
| 17 | |
Radek Krejci | ad97c5f | 2020-06-30 09:19:28 +0200 | [diff] [blame] | 18 | #include <limits.h> |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 19 | #include <pthread.h> |
Christian Hopps | 6f32621 | 2021-03-23 12:37:29 -0400 | [diff] [blame] | 20 | #include <stdarg.h> |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 21 | #include <stdio.h> |
| 22 | #include <sys/types.h> |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 23 | #include <time.h> |
Jan Kundrát | 099b712 | 2021-12-09 23:51:15 +0100 | [diff] [blame^] | 24 | #include <unistd.h> |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 25 | |
| 26 | #ifndef __WORDSIZE |
| 27 | # if defined __x86_64__ && !defined __ILP32__ |
| 28 | # define __WORDSIZE 64 |
| 29 | # else |
| 30 | # define __WORDSIZE 32 |
| 31 | # endif |
| 32 | #endif |
| 33 | |
| 34 | #ifndef __INT64_C |
| 35 | # if __WORDSIZE == 64 |
Michal Vasko | e29489b | 2020-08-24 10:43:54 +0200 | [diff] [blame] | 36 | # define __INT64_C(c) c ## L |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 37 | # define __UINT64_C(c) c ## UL |
| 38 | # else |
Michal Vasko | e29489b | 2020-08-24 10:43:54 +0200 | [diff] [blame] | 39 | # define __INT64_C(c) c ## LL |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 40 | # define __UINT64_C(c) c ## ULL |
| 41 | # endif |
| 42 | #endif |
| 43 | |
Jan Kundrát | 654d9ff | 2021-12-09 02:48:26 +0100 | [diff] [blame] | 44 | #if defined (__GNUC__) || defined (__llvm__) |
Michal Vasko | c5a2283 | 2020-08-20 13:21:33 +0200 | [diff] [blame] | 45 | # define UNUSED(x) UNUSED_ ## x __attribute__((__unused__)) |
| 46 | # define _PACKED __attribute__((__packed__)) |
| 47 | #else |
| 48 | # define UNUSED(x) UNUSED_ ## x |
| 49 | # define _PACKED |
| 50 | #endif |
| 51 | |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 52 | #cmakedefine HAVE_VDPRINTF |
| 53 | #cmakedefine HAVE_ASPRINTF |
| 54 | #cmakedefine HAVE_VASPRINTF |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 55 | #cmakedefine HAVE_GETLINE |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 56 | #cmakedefine HAVE_STRNDUP |
| 57 | #cmakedefine HAVE_STRNSTR |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 58 | #cmakedefine HAVE_STRDUPA |
| 59 | #cmakedefine HAVE_STRCHRNUL |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 60 | #cmakedefine HAVE_GET_CURRENT_DIR_NAME |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 61 | #cmakedefine HAVE_PTHREAD_MUTEX_TIMEDLOCK |
Jan Kundrát | aac59c2 | 2021-12-09 23:25:15 +0100 | [diff] [blame] | 62 | #cmakedefine HAVE_TM_GMTOFF |
| 63 | #cmakedefine HAVE_TIME_H_TIMEZONE |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 64 | |
Christian Hopps | 6f32621 | 2021-03-23 12:37:29 -0400 | [diff] [blame] | 65 | #ifndef bswap64 |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 66 | #define bswap64(val) \ |
| 67 | ( (((val) >> 56) & 0x00000000000000FF) | (((val) >> 40) & 0x000000000000FF00) | \ |
| 68 | (((val) >> 24) & 0x0000000000FF0000) | (((val) >> 8) & 0x00000000FF000000) | \ |
| 69 | (((val) << 8) & 0x000000FF00000000) | (((val) << 24) & 0x0000FF0000000000) | \ |
| 70 | (((val) << 40) & 0x00FF000000000000) | (((val) << 56) & 0xFF00000000000000) ) |
Christian Hopps | 6f32621 | 2021-03-23 12:37:29 -0400 | [diff] [blame] | 71 | #endif |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 72 | |
| 73 | #undef le64toh |
| 74 | #undef htole64 |
| 75 | |
| 76 | #cmakedefine IS_BIG_ENDIAN |
| 77 | |
| 78 | #ifdef IS_BIG_ENDIAN |
| 79 | # define le64toh(x) bswap64(x) |
| 80 | # define htole64(x) bswap64(x) |
| 81 | #else |
| 82 | # define le64toh(x) (x) |
| 83 | # define htole64(x) (x) |
| 84 | #endif |
| 85 | |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 86 | #cmakedefine HAVE_STDATOMIC |
| 87 | |
| 88 | #ifdef HAVE_STDATOMIC |
| 89 | # include <stdatomic.h> |
| 90 | |
| 91 | # define ATOMIC_T atomic_uint_fast32_t |
| 92 | # define ATOMIC_T_MAX UINT_FAST32_MAX |
| 93 | |
| 94 | # define ATOMIC_STORE_RELAXED(var, x) atomic_store_explicit(&(var), x, memory_order_relaxed) |
| 95 | # define ATOMIC_LOAD_RELAXED(var) atomic_load_explicit(&(var), memory_order_relaxed) |
| 96 | # define ATOMIC_INC_RELAXED(var) atomic_fetch_add_explicit(&(var), 1, memory_order_relaxed) |
| 97 | # define ATOMIC_ADD_RELAXED(var, x) atomic_fetch_add_explicit(&(var), x, memory_order_relaxed) |
| 98 | # define ATOMIC_DEC_RELAXED(var) atomic_fetch_sub_explicit(&(var), 1, memory_order_relaxed) |
| 99 | # define ATOMIC_SUB_RELAXED(var, x) atomic_fetch_sub_explicit(&(var), x, memory_order_relaxed) |
| 100 | #else |
| 101 | # include <stdint.h> |
| 102 | |
| 103 | # define ATOMIC_T uint32_t |
| 104 | # define ATOMIC_T_MAX UINT32_MAX |
| 105 | |
| 106 | # define ATOMIC_STORE_RELAXED(var, x) ((var) = (x)) |
| 107 | # define ATOMIC_LOAD_RELAXED(var) (var) |
| 108 | # define ATOMIC_INC_RELAXED(var) __sync_fetch_and_add(&(var), 1) |
| 109 | # define ATOMIC_ADD_RELAXED(var, x) __sync_fetch_and_add(&(var), x) |
| 110 | # define ATOMIC_DEC_RELAXED(var) __sync_fetch_and_sub(&(var), 1) |
| 111 | # define ATOMIC_SUB_RELAXED(var, x) __sync_fetch_and_sub(&(var), x) |
| 112 | #endif |
| 113 | |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 114 | #ifndef HAVE_VDPRINTF |
| 115 | int vdprintf(int fd, const char *format, va_list ap); |
| 116 | #endif |
| 117 | |
| 118 | #ifndef HAVE_ASPRINTF |
| 119 | int asprintf(char **strp, const char *fmt, ...); |
| 120 | #endif |
| 121 | |
| 122 | #ifndef HAVE_VASPRINTF |
| 123 | int vasprintf(char **strp, const char *fmt, va_list ap); |
| 124 | #endif |
| 125 | |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 126 | #ifndef HAVE_GETLINE |
| 127 | ssize_t getline(char **lineptr, size_t *n, FILE *stream); |
| 128 | #endif |
| 129 | |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 130 | #ifndef HAVE_STRNDUP |
| 131 | char *strndup(const char *s, size_t n); |
| 132 | #endif |
| 133 | |
| 134 | #ifndef HAVE_STRNSTR |
| 135 | char *strnstr(const char *s, const char *find, size_t slen); |
| 136 | #endif |
| 137 | |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 138 | #ifndef HAVE_STRDUPA |
| 139 | #define strdupa(s) ( \ |
| 140 | { \ |
| 141 | char *buf; \ |
| 142 | size_t len = strlen(s); \ |
| 143 | buf = alloca(len + 1); \ |
| 144 | buf[len] = '\0'; \ |
| 145 | (char *)memcpy(buf, s, len); \ |
| 146 | }) |
| 147 | #endif |
| 148 | |
| 149 | #ifndef HAVE_STRCHRNUL |
| 150 | char *strchrnul(const char *s, int c); |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 151 | #endif |
| 152 | |
| 153 | #ifndef HAVE_GET_CURRENT_DIR_NAME |
| 154 | char *get_current_dir_name(void); |
| 155 | #endif |
| 156 | |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 157 | #ifndef HAVE_PTHREAD_MUTEX_TIMEDLOCK |
| 158 | int pthread_mutex_timedlock(pthread_mutex_t *mutex, const struct timespec *abstime); |
| 159 | #endif |
| 160 | |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 161 | #endif /* _COMPAT_H_ */ |