-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathutils.c
More file actions
174 lines (153 loc) · 4.67 KB
/
utils.c
File metadata and controls
174 lines (153 loc) · 4.67 KB
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
* bytes_htons, bytes_htonl, gettimeofday_wrap from scamper
* http://www.caida.org/tools/measurement/scamper/
* and re-released under a BSD license with permission from the author.
*
* timeval_subtract code from
* http://www.gnu.org/software/libc/manual/html_node/Elapsed-Time.html
*
* All other code Copyright (C) 2012 The Regents of the University of
* California.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. 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.
*
* 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 HOLDER 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.
*/
#include "config.h"
#include <arpa/inet.h>
#include <assert.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#ifdef HAVE_TIME_H
#include <time.h>
#endif
#include "utils.h"
void bytes_htons(uint8_t *bytes, uint16_t u16)
{
uint16_t tmp = htons(u16);
memcpy(bytes, &tmp, 2);
return;
}
void bytes_htonl(uint8_t *bytes, uint32_t u32)
{
uint32_t tmp = htonl(u32);
memcpy(bytes, &tmp, 4);
return;
}
void bytes_htonll(uint8_t *bytes, uint64_t u64)
{
uint64_t tmp = htonll(u64);
memcpy(bytes, &tmp, 8);
return;
}
uint64_t epoch_msec()
{
struct timeval tv;
gettimeofday(&tv, NULL);
return (uint64_t) ((uint64_t) tv.tv_sec * 1000 + (uint64_t) tv.tv_usec / 1000);
}
uint32_t epoch_sec()
{
struct timeval tv;
gettimeofday(&tv, NULL);
return (uint32_t) tv.tv_sec;
}
void gettimeofday_wrap(struct timeval *tv)
{
struct timezone tz;
gettimeofday(tv, &tz);
return;
}
int timeval_subtract (struct timeval *result,
const struct timeval *a, const struct timeval *b)
{
struct timeval y = *b;
/* Perform the carry for the later subtraction by updating y. */
if (a->tv_usec < b->tv_usec) {
int nsec = (b->tv_usec - a->tv_usec) / 1000000 + 1;
y.tv_usec -= 1000000 * nsec;
y.tv_sec += nsec;
}
if (a->tv_usec - b->tv_usec > 1000000) {
int nsec = (a->tv_usec - b->tv_usec) / 1000000;
y.tv_usec += 1000000 * nsec;
y.tv_sec -= nsec;
}
/* Compute the time remaining to wait.
tv_usec is certainly positive. */
result->tv_sec = a->tv_sec - y.tv_sec;
result->tv_usec = a->tv_usec - y.tv_usec;
/* Return 1 if result is negative. */
return a->tv_sec < y.tv_sec;
}
void chomp(char *line)
{
char *newln;
if((newln = strchr(line, '\n')) != NULL)
{
*newln = '\0';
}
}
#define SEC_PRECISION 10
#define USEC_PRECISION 6
int strntotime(const char *buf, size_t len, uint32_t *sec, uint32_t *usec)
{
static int ten_n[] = {1, 10, 100, 1000, 10000,
100000, 1000000, 10000000, 100000000, 1000000000};
static const uint32_t max_prefix = 429496729;
static const char max_suffix = '5';
if (!sec)
return -1; // missing required parameter
int i;
// parse seconds
for (i = 0; ; i++) {
if (i >= len || buf[i] == '\0') {
return 0; // end of input
} else if (isdigit(buf[i])) {
if (*sec >= max_prefix && (*sec > max_prefix || buf[i] > max_suffix))
return -1; // overflow
*sec = *sec * 10 + (buf[i] - '0');
} else if (buf[i] == '.') {
break;
} else {
return -1; // invalid character
}
}
// parse sub-seconds
int frac_last_pos = i + USEC_PRECISION;
for (i++; ; i++) {
if (i >= len || buf[i] == '\0') {
return 0; // end of input
} else if (isdigit(buf[i])) {
if (usec && i <= frac_last_pos)
*usec += (buf[i] - '0') * ten_n[frac_last_pos - i];
// else, ignore insignificant digits
} else {
return -1; // invalid character
}
}
}