]> arthur.barton.de Git - netdata.git/blob - src/common.h
portable way of detecting format of strerror_r
[netdata.git] / src / common.h
1 #ifndef NETDATA_COMMON_H
2 #define NETDATA_COMMON_H 1
3
4 #ifdef HAVE_CONFIG_H
5 #include <config.h>
6 #endif
7
8 #include <pthread.h>
9 #include <errno.h>
10
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <stdarg.h>
14 #include <stddef.h>
15
16 #include <ctype.h>
17 #include <string.h>
18 #include <strings.h>
19
20 #include <arpa/inet.h>
21 #include <netinet/in.h>
22 #include <netinet/tcp.h>
23
24 #include <dirent.h>
25 #include <fcntl.h>
26 #include <getopt.h>
27 #include <grp.h>
28 #include <pwd.h>
29 #include <locale.h>
30 #include <malloc.h>
31 #include <netdb.h>
32 #include <poll.h>
33 #include <signal.h>
34 #include <syslog.h>
35 #include <sys/mman.h>
36 #include <sys/prctl.h>
37 #include <sys/resource.h>
38 #include <sys/socket.h>
39 #include <sys/stat.h>
40 #include <sys/statvfs.h>
41 #include <sys/syscall.h>
42 #include <sys/time.h>
43 #include <sys/types.h>
44 #include <sys/wait.h>
45 #include <time.h>
46 #include <unistd.h>
47 #include <uuid/uuid.h>
48
49 #ifdef STORAGE_WITH_MATH
50 #include <math.h>
51 #endif
52
53 #if defined(HAVE_INTTYPES_H)
54 #include <inttypes.h>
55 #elif defined(HAVE_STDINT_H)
56 #include <stdint.h>
57 #endif
58
59 #ifdef NETDATA_WITH_ZLIB
60 #include <zlib.h>
61 #endif
62
63 #ifndef __ATOMIC_SEQ_CST
64 #define NETDATA_NO_ATOMIC_INSTRUCTIONS 1
65 #endif
66
67 #ifdef __GNUC__
68 #define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
69
70 #if __x86_64__ || __ppc64__
71 #define ENVIRONMENT64
72 #else
73 #define ENVIRONMENT32
74 #endif
75
76 #else // !__GNUC__
77 #define NETDATA_NO_ATOMIC_INSTRUCTIONS 1
78 #define ENVIRONMENT32
79 #endif // __GNUC__
80
81 #include "avl.h"
82 #include "log.h"
83 #include "global_statistics.h"
84 #include "storage_number.h"
85 #include "web_buffer.h"
86 #include "web_buffer_svg.h"
87 #include "url.h"
88 #include "popen.h"
89
90 #include "procfile.h"
91 #include "appconfig.h"
92 #include "dictionary.h"
93 #include "proc_self_mountinfo.h"
94 #include "plugin_checks.h"
95 #include "plugin_idlejitter.h"
96 #include "plugin_nfacct.h"
97 #include "plugin_proc.h"
98 #include "plugin_tc.h"
99 #include "plugins_d.h"
100
101 #include "eval.h"
102 #include "health.h"
103
104 #include "rrd.h"
105 #include "rrd2json.h"
106
107 #include "web_client.h"
108 #include "web_server.h"
109
110 #include "registry.h"
111 #include "daemon.h"
112 #include "main.h"
113 #include "unit_test.h"
114
115 #ifdef abs
116 #undef abs
117 #endif
118 #define abs(x) ((x < 0)? -x : x)
119
120 extern unsigned long long usec_dt(struct timeval *now, struct timeval *old);
121 extern unsigned long long timeval_usec(struct timeval *tv);
122
123 // #define usec_dt(now, last) (((((now)->tv_sec * 1000000ULL) + (now)->tv_usec) - (((last)->tv_sec * 1000000ULL) + (last)->tv_usec)))
124
125 extern void netdata_fix_chart_id(char *s);
126 extern void netdata_fix_chart_name(char *s);
127
128 extern uint32_t simple_hash(const char *name);
129 extern uint32_t simple_uhash(const char *name);
130
131 extern void strreverse(char* begin, char* end);
132 extern char *mystrsep(char **ptr, char *s);
133 extern char *trim(char *s);
134
135 extern char *strncpyz(char *dst, const char *src, size_t n);
136 extern int  vsnprintfz(char *dst, size_t n, const char *fmt, va_list args);
137 extern int  snprintfz(char *dst, size_t n, const char *fmt, ...) __attribute__ (( format (printf, 3, 4)));
138
139 // memory allocation functions that handle failures
140 extern char *strdupz(const char *s);
141 extern void *callocz(size_t nmemb, size_t size);
142 extern void *mallocz(size_t size);
143 extern void freez(void *ptr);
144 extern void *reallocz(void *ptr, size_t size);
145
146 extern void *mymmap(const char *filename, size_t size, int flags, int ksm);
147 extern int savememory(const char *filename, void *mem, size_t size);
148
149 extern int fd_is_valid(int fd);
150
151 extern char *global_host_prefix;
152 extern int enable_ksm;
153
154 extern pid_t gettid(void);
155
156 extern unsigned long long time_usec(void);
157 extern int sleep_usec(unsigned long long usec);
158
159 extern char *fgets_trim_len(char *buf, size_t buf_size, FILE *fp, size_t *len);
160
161 extern int processors;
162 extern long get_system_cpus(void);
163
164 extern pid_t pid_max;
165 extern pid_t get_system_pid_max(void);
166
167 /* Number of ticks per second */
168 extern unsigned int hz;
169 extern void get_system_HZ(void);
170
171
172 /* fix for alpine linux */
173 #ifndef RUSAGE_THREAD
174 #ifdef RUSAGE_CHILDREN
175 #define RUSAGE_THREAD RUSAGE_CHILDREN
176 #endif
177 #endif
178
179 #endif /* NETDATA_COMMON_H */