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
|
/*
Copyright 2006,2007,2008,2012 Martin Pärtel <martin.partel@gmail.com>
This file is part of bindfs.
bindfs is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
bindfs is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with bindfs. If not, see <http://www.gnu.org/licenses/>.
*/
#include "misc.h"
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
int count_chars(const char *s, char ch)
{
int count = 0;
assert(s != NULL);
while (*s != '\0') {
if (*s == ch)
++count;
++s;
}
return count;
}
int count_substrs(const char *s, const char *sub)
{
int count = 0;
int sublen = strlen(sub);
int left = strlen(s);
assert(s != NULL && sub != NULL);
while (left > sublen) {
if (strncmp(s, sub, sublen) == 0)
++count;
--left;
++s;
}
return count;
}
char *strdup_until(const char *s, const char *endchars)
{
char *endloc = strpbrk(s, endchars);
char *ret;
if (!endloc) {
ret = malloc((strlen(s) + 1) * sizeof(char));
strcpy(ret, s);
return ret;
} else {
ret = malloc((endloc - s + 1) * sizeof(char));
memcpy(ret, s, (endloc - s) * sizeof(char));
ret[(endloc - s)] = '\0';
return ret;
}
}
char *sprintf_new(const char *format, ...)
{
va_list ap;
size_t buffer_size = strlen(format) + 32;
char *buffer = malloc(buffer_size);
if (buffer == NULL) {
return NULL;
}
while (1) {
va_start(ap, format);
size_t len = (size_t)vsnprintf(buffer, buffer_size, format, ap);
va_end(ap);
if (len < buffer_size) {
return buffer;
}
free(buffer);
buffer_size *= 2;
buffer = malloc(buffer_size);
if (buffer == NULL) {
return NULL;
}
}
}
const char *my_basename(const char *path)
{
const char *p;
if (path == NULL)
return NULL;
p = strrchr(path, '/');
if (p != NULL)
return p + 1;
else
return path;
}
const char *my_dirname(char *path)
{
if (strcmp(path, ".") == 0) {
return "..";
} else if (strcmp(path, "/") == 0) {
return "/";
} else {
size_t len = strlen(path);
char *p = path + len - 1;
while (p > path) {
if (*p == '/') {
break;
}
--p;
}
if (p > path) {
*p = '\0';
return path;
} else if (*path == '/') {
return "/";
} else {
return ".";
}
}
}
static const char* find_last_char_between(const char* start, const char* end, char ch) {
assert(start != NULL && end != NULL);
const char* p = end - 1;
while (p >= start) {
if (*p == ch) {
return p;
}
--p;
}
return NULL;
}
bool path_starts_with(const char *path, const char* prefix, size_t prefix_len)
{
size_t path_len = strlen(path);
while (prefix_len > 0 && prefix[prefix_len - 1] == '/') {
--prefix_len;
}
while (path_len > 0 && path[path_len - 1] == '/') {
--path_len;
}
if (strncmp(path, prefix, prefix_len) == 0) {
// We still need to check that the last path component of
// 'path' does not simply start with the last path component of 'prefix'.
const char* prefix_slash = find_last_char_between(prefix, prefix + prefix_len, '/');
const char* prefix_part = prefix_slash ? prefix_slash + 1 : prefix;
size_t prefix_part_len = (prefix + prefix_len - prefix_part);
const char* path_part = path + (prefix_part - prefix);
const char* path_slash = strchr(path_part, '/');
size_t path_part_len = path_slash ? (size_t)(path_slash - path_part) : path_len - (path_part - path);
return prefix_part_len == path_part_len;
}
return false;
}
static char **dup_argv(int argc, const char * const *argv, struct arena *arena)
{
char **pointer_list = arena_malloc(arena, (argc + 1) * sizeof(char*));
char **next_ptr = pointer_list;
for (int i = 0; i < argc; ++i) {
size_t len = strlen(argv[i]);
char *str = arena_malloc(arena, len + 1);
memcpy(str, argv[i], len + 1);
*next_ptr = str;
++next_ptr;
}
*next_ptr = NULL;
return pointer_list;
}
/* Converts all ("-o", "...") into ("-o..."). */
static void merge_o_args(
int *argc,
char **argv,
struct arena *arena
)
{
int i = 0;
while (i < *argc) {
char *arg = argv[i];
if (strcmp(arg, "-o") == 0) {
if (i + 1 < *argc) {
char *merged = arena_malloc(arena, 2 + strlen(argv[i + 1]) + 1);
merged[0] = '-';
merged[1] = 'o';
strcpy(&merged[2], argv[i + 1]);
argv[i] = merged;
for (int j = i + 1; j < *argc - 1; ++j) {
argv[j] = argv[j + 1];
}
}
--*argc;
}
++i;
}
}
void filter_o_opts(
bool (*keep)(const char* opt),
int orig_argc,
const char * const *orig_argv,
int *new_argc,
char ***new_argv,
struct arena* arena
)
{
int argc = orig_argc;
char **argv = dup_argv(argc, orig_argv, arena);
merge_o_args(&argc, argv, arena);
for (int i = 0; i < argc; i++) {
char *arg = argv[i];
if (strncmp(arg, "-o", 2) == 0) {
char *filtered = arena_malloc(arena, strlen(arg) + 1);
char *filtered_end = filtered;
const char *tok = strtok(arg + 2, ",");
while (tok != NULL) {
size_t tok_len = strlen(tok);
if ((*keep)(tok)) {
if (filtered_end == filtered) {
*(filtered_end++) = '-';
*(filtered_end++) = 'o';
} else {
*(filtered_end++) = ',';
}
memcpy(filtered_end, tok, tok_len + 1);
filtered_end += tok_len; // We'll overwrite the null terminator if we append more.
}
tok = strtok(NULL, ",");
}
if (filtered != filtered_end) {
argv[i] = filtered;
} else {
for (int j = i; j < argc - 1; ++j) {
argv[j] = argv[j + 1];
}
--argc;
}
}
}
*new_argc = argc;
*new_argv = argv;
}
void grow_array_impl(void **array, int *capacity, int member_size)
{
int new_cap = *capacity;
if (new_cap == 0) {
new_cap = 8;
} else {
new_cap *= 2;
}
*array = realloc(*array, new_cap * member_size);
*capacity = new_cap;
}
int parse_byte_count(const char *str, double *result)
{
char* end;
double base = strtod(str, &end);
long long mul = 1;
if (*end == '\0') {
mul = 1L;
} else if (strcmp(end, "k") == 0) {
mul = 1024L;
} else if (strcmp(end, "M") == 0) {
mul = 1024L * 1024L;
} else if (strcmp(end, "G") == 0) {
mul = 1024L * 1024L * 1024L;
} else if (strcmp(end, "T") == 0) {
mul = 1024LL * 1024LL * 1024LL * 1024LL;
} else {
return 0;
}
*result = base * mul;
return 1;
}
void init_memory_block(struct memory_block *a, size_t initial_capacity)
{
a->size = 0;
a->capacity = initial_capacity;
if (initial_capacity > 0) {
a->ptr = (char *)malloc(initial_capacity);
} else {
a->ptr = NULL;
}
}
void grow_memory_block(struct memory_block *a, size_t amount)
{
size_t new_cap;
a->size += amount;
if (a->size >= a->capacity) {
new_cap = a->capacity;
while (new_cap < a->size) {
if (new_cap == 0) {
new_cap = 8;
} else {
new_cap *= 2;
}
if (new_cap < 0) { // Overflow
fprintf(stderr, "Memory block too large.");
abort();
}
}
a->ptr = (char *)realloc(a->ptr, new_cap);
a->capacity = new_cap;
}
}
int append_to_memory_block(struct memory_block *a, const void *src, size_t src_size)
{
size_t dest = a->size;
grow_memory_block(a, src_size);
memcpy(&a->ptr[dest], src, src_size);
return dest;
}
void free_memory_block(struct memory_block *a)
{
free(a->ptr);
init_memory_block(a, 0);
}
|