blob: df9449beb9b56e0ea13aa85ce2670f03a2d95dc2 [file] [log] [blame]
Michal Vasko5aa44c02020-06-29 11:47:02 +02001/**
2 * @file compat.h
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief compatibility functions header
5 *
Michal Vaskod304a082021-05-19 16:36:10 +02006 * Copyright (c) 2021 CESNET, z.s.p.o.
Michal Vasko5aa44c02020-06-29 11:47:02 +02007 *
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 Krejciad97c5f2020-06-30 09:19:28 +020018#include <limits.h>
Michal Vaskod304a082021-05-19 16:36:10 +020019#include <pthread.h>
Christian Hopps6f326212021-03-23 12:37:29 -040020#include <stdarg.h>
Michal Vasko5aa44c02020-06-29 11:47:02 +020021#include <stdio.h>
22#include <sys/types.h>
Michal Vaskod304a082021-05-19 16:36:10 +020023#include <time.h>
Jan Kundrát099b7122021-12-09 23:51:15 +010024#include <unistd.h>
Michal Vasko5aa44c02020-06-29 11:47:02 +020025
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 Vaskoe29489b2020-08-24 10:43:54 +020036# define __INT64_C(c) c ## L
Michal Vasko5aa44c02020-06-29 11:47:02 +020037# define __UINT64_C(c) c ## UL
38# else
Michal Vaskoe29489b2020-08-24 10:43:54 +020039# define __INT64_C(c) c ## LL
Michal Vasko5aa44c02020-06-29 11:47:02 +020040# define __UINT64_C(c) c ## ULL
41# endif
42#endif
43
Jan Kundrát654d9ff2021-12-09 02:48:26 +010044#if defined (__GNUC__) || defined (__llvm__)
Michal Vaskoc5a22832020-08-20 13:21:33 +020045# 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 Vasko5aa44c02020-06-29 11:47:02 +020052#cmakedefine HAVE_VDPRINTF
53#cmakedefine HAVE_ASPRINTF
54#cmakedefine HAVE_VASPRINTF
Michal Vaskod304a082021-05-19 16:36:10 +020055#cmakedefine HAVE_GETLINE
Michal Vasko5aa44c02020-06-29 11:47:02 +020056#cmakedefine HAVE_STRNDUP
57#cmakedefine HAVE_STRNSTR
Michal Vaskod304a082021-05-19 16:36:10 +020058#cmakedefine HAVE_STRDUPA
59#cmakedefine HAVE_STRCHRNUL
Michal Vasko5aa44c02020-06-29 11:47:02 +020060#cmakedefine HAVE_GET_CURRENT_DIR_NAME
Michal Vaskod304a082021-05-19 16:36:10 +020061#cmakedefine HAVE_PTHREAD_MUTEX_TIMEDLOCK
Jan Kundrátaac59c22021-12-09 23:25:15 +010062#cmakedefine HAVE_TM_GMTOFF
63#cmakedefine HAVE_TIME_H_TIMEZONE
Jan Kundráta5b3b992021-12-10 16:13:57 +010064#cmakedefine HAVE_REALPATH
Jan Kundrát447970d2021-12-14 16:18:16 +010065#cmakedefine HAVE_LOCALTIME_R
Jan Kundrát7f8fee02021-12-10 17:37:46 +010066#cmakedefine HAVE_STRPTIME
Jan Kundrát111ce782021-12-12 03:12:23 +010067#cmakedefine HAVE_MMAP
Jan Kundrát55428a52021-12-11 19:37:33 +010068#cmakedefine HAVE_DIRNAME
Jan Kundrát5ea22652021-12-11 20:47:42 +010069#cmakedefine HAVE_STRCASECMP
Jan Kundrát06b507b2021-12-11 23:40:26 +010070#cmakedefine HAVE_SETENV
Michal Vasko5aa44c02020-06-29 11:47:02 +020071
Christian Hopps6f326212021-03-23 12:37:29 -040072#ifndef bswap64
Michal Vasko5aa44c02020-06-29 11:47:02 +020073#define bswap64(val) \
74 ( (((val) >> 56) & 0x00000000000000FF) | (((val) >> 40) & 0x000000000000FF00) | \
75 (((val) >> 24) & 0x0000000000FF0000) | (((val) >> 8) & 0x00000000FF000000) | \
76 (((val) << 8) & 0x000000FF00000000) | (((val) << 24) & 0x0000FF0000000000) | \
77 (((val) << 40) & 0x00FF000000000000) | (((val) << 56) & 0xFF00000000000000) )
Christian Hopps6f326212021-03-23 12:37:29 -040078#endif
Michal Vasko5aa44c02020-06-29 11:47:02 +020079
80#undef le64toh
81#undef htole64
82
83#cmakedefine IS_BIG_ENDIAN
84
85#ifdef IS_BIG_ENDIAN
86# define le64toh(x) bswap64(x)
87# define htole64(x) bswap64(x)
88#else
89# define le64toh(x) (x)
90# define htole64(x) (x)
91#endif
92
Michal Vaskod304a082021-05-19 16:36:10 +020093#cmakedefine HAVE_STDATOMIC
94
95#ifdef HAVE_STDATOMIC
96# include <stdatomic.h>
97
98# define ATOMIC_T atomic_uint_fast32_t
99# define ATOMIC_T_MAX UINT_FAST32_MAX
100
101# define ATOMIC_STORE_RELAXED(var, x) atomic_store_explicit(&(var), x, memory_order_relaxed)
102# define ATOMIC_LOAD_RELAXED(var) atomic_load_explicit(&(var), memory_order_relaxed)
103# define ATOMIC_INC_RELAXED(var) atomic_fetch_add_explicit(&(var), 1, memory_order_relaxed)
104# define ATOMIC_ADD_RELAXED(var, x) atomic_fetch_add_explicit(&(var), x, memory_order_relaxed)
105# define ATOMIC_DEC_RELAXED(var) atomic_fetch_sub_explicit(&(var), 1, memory_order_relaxed)
106# define ATOMIC_SUB_RELAXED(var, x) atomic_fetch_sub_explicit(&(var), x, memory_order_relaxed)
107#else
108# include <stdint.h>
109
110# define ATOMIC_T uint32_t
111# define ATOMIC_T_MAX UINT32_MAX
112
113# define ATOMIC_STORE_RELAXED(var, x) ((var) = (x))
114# define ATOMIC_LOAD_RELAXED(var) (var)
Jan Kundrát8e63fe62021-12-10 01:50:26 +0100115# ifndef _WIN32
116# define ATOMIC_INC_RELAXED(var) __sync_fetch_and_add(&(var), 1)
117# define ATOMIC_ADD_RELAXED(var, x) __sync_fetch_and_add(&(var), x)
118# define ATOMIC_DEC_RELAXED(var) __sync_fetch_and_sub(&(var), 1)
119# define ATOMIC_SUB_RELAXED(var, x) __sync_fetch_and_sub(&(var), x)
120# else
121# include <windows.h>
122# define ATOMIC_INC_RELAXED(var) InterlockedExchangeAdd(&(var), 1)
123# define ATOMIC_ADD_RELAXED(var, x) InterlockedExchangeAdd(&(var), x)
124# define ATOMIC_DEC_RELAXED(var) InterlockedExchangeAdd(&(var), -1)
125# define ATOMIC_SUB_RELAXED(var, x) InterlockedExchangeAdd(&(var), -(x))
126# endif
Michal Vaskod304a082021-05-19 16:36:10 +0200127#endif
128
Michal Vasko5aa44c02020-06-29 11:47:02 +0200129#ifndef HAVE_VDPRINTF
130int vdprintf(int fd, const char *format, va_list ap);
131#endif
132
133#ifndef HAVE_ASPRINTF
134int asprintf(char **strp, const char *fmt, ...);
135#endif
136
137#ifndef HAVE_VASPRINTF
138int vasprintf(char **strp, const char *fmt, va_list ap);
139#endif
140
Michal Vaskod304a082021-05-19 16:36:10 +0200141#ifndef HAVE_GETLINE
142ssize_t getline(char **lineptr, size_t *n, FILE *stream);
143#endif
144
Michal Vasko5aa44c02020-06-29 11:47:02 +0200145#ifndef HAVE_STRNDUP
146char *strndup(const char *s, size_t n);
147#endif
148
149#ifndef HAVE_STRNSTR
150char *strnstr(const char *s, const char *find, size_t slen);
151#endif
152
Michal Vaskod304a082021-05-19 16:36:10 +0200153#ifndef HAVE_STRDUPA
154#define strdupa(s) ( \
155{ \
156 char *buf; \
157 size_t len = strlen(s); \
158 buf = alloca(len + 1); \
159 buf[len] = '\0'; \
160 (char *)memcpy(buf, s, len); \
161})
162#endif
163
164#ifndef HAVE_STRCHRNUL
165char *strchrnul(const char *s, int c);
Michal Vasko5aa44c02020-06-29 11:47:02 +0200166#endif
167
168#ifndef HAVE_GET_CURRENT_DIR_NAME
169char *get_current_dir_name(void);
170#endif
171
Michal Vaskod304a082021-05-19 16:36:10 +0200172#ifndef HAVE_PTHREAD_MUTEX_TIMEDLOCK
173int pthread_mutex_timedlock(pthread_mutex_t *mutex, const struct timespec *abstime);
174#endif
175
Jan Kundráta5b3b992021-12-10 16:13:57 +0100176#ifndef HAVE_REALPATH
177char *realpath(const char *path, char *resolved_path);
178#endif
179
Jan Kundrát447970d2021-12-14 16:18:16 +0100180#ifndef HAVE_LOCALTIME_R
181struct tm *localtime_r(const time_t *timep, struct tm *result);
182#endif
183
Jan Kundrát7f8fee02021-12-10 17:37:46 +0100184#ifndef HAVE_STRPTIME
185char *strptime(const char *s, const char *format, struct tm *tm);
186#endif
187
Jan Kundráta78fb6a2021-12-10 17:40:27 +0100188#if defined (_WIN32)
189# define strtok_r strtok_s
190#endif
191
Jan Kundrát06b507b2021-12-11 23:40:26 +0100192#ifndef HAVE_SETENV
193int setenv(const char *name, const char *value, int overwrite);
194#endif
195
Michal Vasko5aa44c02020-06-29 11:47:02 +0200196#endif /* _COMPAT_H_ */