-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathutil.cpp
More file actions
393 lines (242 loc) · 6.44 KB
/
Copy pathutil.cpp
File metadata and controls
393 lines (242 loc) · 6.44 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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
// util.cpp
// includes
#include <cctype>
#include <cerrno>
#include <cmath>
#include <cstdarg>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include "posix.h"
#include "util.h"
// variables
static bool Error;
static FILE * LogFile;
// functions
// util_init()
void util_init() {
Error = false;
// init log file
LogFile = NULL;
// switch file buffering off
setbuf(stdin,NULL);
setbuf(stdout,NULL);
}
// my_random_init()
void my_random_init() {
srand(time(NULL));
}
// my_random_int()
int my_random_int(int n) {
int r;
ASSERT(n>0);
r = int(floor(my_random_double()*double(n)));
ASSERT(r>=0&&r<n);
return r;
}
// my_random_double()
double my_random_double() {
double r;
r = double(rand()) / (double(RAND_MAX) + 1.0);
ASSERT(r>=0.0&&r<1.0);
return r;
}
// my_atoll()
sint64 my_atoll(const char string[]) {
sint64 n;
sscanf(string,S64_FORMAT,&n);
return n;
}
// my_round()
int my_round(double x) {
return int(floor(x+0.5));
}
// my_malloc()
void * my_malloc(int size) {
void * address;
ASSERT(size>0);
address = malloc(size);
if (address == NULL) my_fatal("my_malloc(): malloc(): %s\n",strerror(errno));
return address;
}
// my_realloc()
void * my_realloc(void * address, int size) {
ASSERT(address!=NULL);
ASSERT(size>0);
address = realloc(address,size);
if (address == NULL) my_fatal("my_realloc(): realloc(): %s\n",strerror(errno));
return address;
}
// my_free()
void my_free(void * address) {
ASSERT(address!=NULL);
free(address);
}
// my_log_open()
void my_log_open(const char file_name[]) {
ASSERT(file_name!=NULL);
LogFile = fopen(file_name,"a");
if (LogFile != NULL) setvbuf(LogFile,NULL,_IOLBF,0); // line buffering
}
// my_log_close()
void my_log_close() {
if (LogFile != NULL) fclose(LogFile);
}
// my_log()
void my_log(const char format[], ...) {
va_list ap;
ASSERT(format!=NULL);
if (LogFile != NULL) {
va_start(ap,format);
vfprintf(LogFile,format,ap);
va_end(ap);
}
}
// my_fatal()
void my_fatal(const char format[], ...) {
va_list ap;
ASSERT(format!=NULL);
va_start(ap,format);
vfprintf(stderr,format,ap);
if (LogFile != NULL) vfprintf(LogFile,format,ap);
va_end(ap);
if (Error) { // recursive error
my_log("POLYGLOT *** RECURSIVE ERROR ***\n");
exit(EXIT_FAILURE);
// abort();
} else {
Error = true;
// quit();
}
}
// my_file_read_line()
bool my_file_read_line(FILE * file, char string[], int size) {
int src, dst;
int c;
ASSERT(file!=NULL);
ASSERT(string!=NULL);
ASSERT(size>0);
if (fgets(string,size,file) == NULL) {
if (feof(file)) {
return false;
} else { // error
my_fatal("my_file_read_line(): fgets(): %s\n",strerror(errno));
}
}
// remove CRs and LFs
src = 0;
dst = 0;
while ((c=string[src++]) != '\0') {
if (c != '\r' && c != '\n') string[dst++] = c;
}
string[dst] = '\0';
return true;
}
// my_string_empty()
bool my_string_empty(const char string[]) {
return string == NULL || string[0] == '\0';
}
// my_string_equal()
bool my_string_equal(const char string_1[], const char string_2[]) {
ASSERT(string_1!=NULL);
ASSERT(string_2!=NULL);
return strcmp(string_1,string_2) == 0;
}
// my_string_case_equal()
bool my_string_case_equal(const char string_1[], const char string_2[]) {
int c1, c2;
ASSERT(string_1!=NULL);
ASSERT(string_2!=NULL);
while (true) {
c1 = *string_1++;
c2 = *string_2++;
if (tolower(c1) != tolower(c2)) return false;
if (c1 == '\0') return true;
}
return false;
}
// my_strdup()
char * my_strdup(const char string[]) {
char * address;
ASSERT(string!=NULL);
// strdup() is not ANSI C
address = (char *) my_malloc(strlen(string)+1);
strcpy(address,string);
return address;
}
// my_string_clear()
void my_string_clear(const char * * variable) {
ASSERT(variable!=NULL);
if (*variable != NULL) {
my_free((void*)(*variable));
*variable = NULL;
}
}
// my_string_set()
void my_string_set(const char * * variable, const char string[]) {
ASSERT(variable!=NULL);
ASSERT(string!=NULL);
if (*variable != NULL) my_free((void*)(*variable));
*variable = my_strdup(string);
}
// my_timer_reset()
void my_timer_reset(my_timer_t * timer) {
ASSERT(timer!=NULL);
timer->start_real = 0.0;
timer->start_cpu = 0.0;
timer->elapsed_real = 0.0;
timer->elapsed_cpu = 0.0;
timer->running = false;
}
// my_timer_start()
void my_timer_start(my_timer_t * timer) {
ASSERT(timer!=NULL);
ASSERT(timer->start_real==0.0);
ASSERT(timer->start_cpu==0.0);
ASSERT(!timer->running);
timer->running = true;
timer->start_real = now_real();
timer->start_cpu = now_cpu();
}
// my_timer_stop()
void my_timer_stop(my_timer_t * timer) {
ASSERT(timer!=NULL);
ASSERT(timer->running);
timer->elapsed_real += now_real() - timer->start_real;
timer->elapsed_cpu += now_cpu() - timer->start_cpu;
timer->start_real = 0.0;
timer->start_cpu = 0.0;
timer->running = false;
}
// my_timer_elapsed_real()
double my_timer_elapsed_real(const my_timer_t * timer) {
double elapsed;
ASSERT(timer!=NULL);
elapsed = timer->elapsed_real;
if (timer->running) elapsed += now_real() - timer->start_real;
if (elapsed < 0.0) elapsed = 0.0;
return elapsed;
}
// my_timer_elapsed_cpu()
double my_timer_elapsed_cpu(const my_timer_t * timer) {
double elapsed;
ASSERT(timer!=NULL);
elapsed = timer->elapsed_cpu;
if (timer->running) elapsed += now_cpu() - timer->start_cpu;
if (elapsed < 0.0) elapsed = 0.0;
return elapsed;
}
// my_timer_cpu_usage()
double my_timer_cpu_usage(const my_timer_t * timer) {
double real, cpu;
double usage;
ASSERT(timer!=NULL);
real = my_timer_elapsed_real(timer);
cpu = my_timer_elapsed_cpu(timer);
if (real <= 0.0 || cpu <= 0.0) return 0.0;
usage = cpu / real;
if (usage >= 1.0) usage = 1.0;
return usage;
}
// end of util.cpp