forked from phaag/nfdump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.h
132 lines (100 loc) · 3.86 KB
/
util.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
* Copyright (c) 2009-2020, Peter Haag
* Copyright (c) 2004-2008, SWITCH - Teleinformatikdienste fuer Lehre und Forschung
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* * Neither the name of the author nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
#ifndef _UTIL_H
#define _UTIL_H 1
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include <time.h>
#ifdef DEVEL
# include <stdio.h>
# include <assert.h>
# define dbg_printf(...) printf(__VA_ARGS__)
# define dbg_assert(a) assert(a)
# define dbg(a) a
#else
# define dbg_printf(...) /* printf(__VA_ARGS__) */
# define dbg_assert(a) /* assert(a) */
# define dbg(a) /* a */
#endif
#define UNUSED(expr) do { (void)(expr); } while (0)
#define EBUFF_SIZE 256
#ifndef HAVE_HTONLL
#ifdef WORDS_BIGENDIAN
# define ntohll(n) (n)
# define htonll(n) (n)
#else
# define ntohll(n) (((uint64_t)ntohl(n)) << 32) + ntohl((n) >> 32)
# define htonll(n) (((uint64_t)htonl(n)) << 32) + htonl((n) >> 32)
#endif
#endif
#if ( SIZEOF_VOID_P == 8 )
typedef uint64_t pointer_addr_t;
#else
typedef uint32_t pointer_addr_t;
#endif
#define _1KB (double)(1000.0)
#define _1MB (double)(1000.0 * 1000.0)
#define _1GB (double)(1000.0 * 1000.0 * 1000.0)
#define _1TB (double)(1000.0 * 1000.0 * 1000.0 * 1000.0)
#define SetFlag(var, flag) (var |= flag)
#define ClearFlag(var, flag) (var &= ~flag)
#define TestFlag(var, flag) (var & flag)
typedef struct stringlist_s {
uint32_t block_size;
uint32_t max_index;
uint32_t num_strings;
char **list;
} stringlist_t;
void xsleep(long sec);
void EndLog(void);
int InitLog(int want_syslog, char *name, char *facility, int verbose_log);
void LogError(char *format, ...);
void LogInfo(char *format, ...);
void InitStringlist(stringlist_t *list, int block_size);
void InsertString(stringlist_t *list, char *string);
int ScanTimeFrame(char *tstring, time_t *t_start, time_t *t_end);
char *TimeString(time_t start, time_t end);
char *UNIX2ISO(time_t t);
time_t ISO2UNIX(char *timestring);
#define NUMBER_STRING_SIZE 32
#define FIXED_WIDTH 1
#define VAR_LENGTH 0
void format_number(uint64_t num, char *s, int printPlain, int fixed_width);
void SetupInputFileSequence(char *multiple_dirs, char *single_file, char *multiple_files);
char *GetCurrentFilename(void);
void Setv6Mode(int mode);
void inet_ntop_mask(uint32_t ipv4, int mask, char *s, size_t sSize);
void inet6_ntop_mask(uint64_t ipv6[2], int mask, char *s, size_t sSize);
#endif //_UTIL_H