-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvector.c
562 lines (491 loc) · 15.8 KB
/
vector.c
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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
/*
* Vector handling (counted lists of char *'s).
*
* A vector is a table for handling a list of strings with less overhead than
* linked list. The intention is for vectors, once allocated, to be reused;
* this saves on memory allocations once the array of char *'s reaches a
* stable size.
*
* There are two types of vectors. Standard vectors copy strings when they're
* inserted into the vector, whereas cvectors just accept pointers to external
* strings to store. There are therefore two entry points for every vector
* function, one for vectors and one for cvectors.
*
* Vectors require list of strings, not arbitrary binary data, and cannot
* handle data elements containing nul characters.
*
* There's a whole bunch of code duplication here. This would be a lot
* cleaner with C++ features (either inheritance or templates would probably
* help). One could probably in some places just cast a cvector to a vector
* and perform the same operations, but I'm leery of doing that as I'm not
* sure if it's a violation of the C type aliasing rules.
*
* The canonical version of this file is maintained in the rra-c-util package,
* which can be found at <https://www.eyrie.org/~eagle/software/rra-c-util/>.
*
* Written by Russ Allbery <[email protected]>
* Copyright 2001-2006, 2016, 2020 Russ Allbery <[email protected]>
* Copyright 2005-2006, 2008-2011, 2013-2014
* The Board of Trustees of the Leland Stanford Junior University
*
* Copying and distribution of this file, with or without modification, are
* permitted in any medium without royalty provided the copyright notice and
* this notice are preserved. This file is offered as-is, without any
* warranty.
*
* SPDX-License-Identifier: FSFAP
*/
#include <config.h>
#include <portable/system.h>
#include <assert.h>
#include <util/vector.h>
#include <util/xmalloc.h>
/*
* Allocate a new, empty vector.
*/
struct vector *
vector_new(void)
{
struct vector *vector;
vector = xcalloc(1, sizeof(struct vector));
vector->allocated = 1;
vector->strings = xcalloc(1, sizeof(char *));
return vector;
}
struct cvector *
cvector_new(void)
{
struct cvector *vector;
vector = xcalloc(1, sizeof(struct cvector));
vector->allocated = 1;
vector->strings = xcalloc(1, sizeof(const char *));
return vector;
}
/*
* Resize a vector (using reallocarray to resize the table). Maintain a
* minimum allocated size of 1 so that the strings data element is never NULL.
* This simplifies other code.
*/
void
vector_resize(struct vector *vector, size_t size)
{
size_t i;
assert(vector != NULL);
if (vector->count > size) {
for (i = size; i < vector->count; i++)
free(vector->strings[i]);
vector->count = size;
}
if (size == 0)
size = 1;
vector->strings = xreallocarray(vector->strings, size, sizeof(char *));
vector->allocated = size;
}
void
cvector_resize(struct cvector *vector, size_t size)
{
assert(vector != NULL);
if (vector->count > size)
vector->count = size;
if (size == 0)
size = 1;
vector->strings =
xreallocarray(vector->strings, size, sizeof(const char *));
vector->allocated = size;
}
/*
* Add a new string to the vector, resizing the vector as necessary. The
* vector is resized an element at a time; if a lot of resizes are expected,
* vector_resize should be called explicitly with a more suitable size.
*/
void
vector_add(struct vector *vector, const char *string)
{
assert(vector != NULL);
if (vector->count == vector->allocated)
vector_resize(vector, vector->allocated + 1);
vector->strings[vector->count] = xstrdup(string);
vector->count++;
}
void
cvector_add(struct cvector *vector, const char *string)
{
assert(vector != NULL);
if (vector->count == vector->allocated)
cvector_resize(vector, vector->allocated + 1);
vector->strings[vector->count] = string;
vector->count++;
}
/*
* Add a new string to the vector, copying at most length characters of the
* string, resizing the vector as necessary the same as with vector_add. This
* function is only available for vectors, not cvectors, since it requires the
* duplication of the input string to be sure it's nul-terminated.
*/
void
vector_addn(struct vector *vector, const char *string, size_t length)
{
assert(vector != NULL);
if (vector->count == vector->allocated)
vector_resize(vector, vector->allocated + 1);
vector->strings[vector->count] = xstrndup(string, length);
vector->count++;
}
/*
* Empty a vector but keep the allocated memory for the pointer table.
*/
void
vector_clear(struct vector *vector)
{
size_t i;
assert(vector != NULL);
for (i = 0; i < vector->count; i++)
free(vector->strings[i]);
vector->count = 0;
}
void
cvector_clear(struct cvector *vector)
{
assert(vector != NULL);
vector->count = 0;
}
/*
* Free a vector completely.
*/
void
vector_free(struct vector *vector)
{
if (vector == NULL)
return;
vector_clear(vector);
free(vector->strings);
free(vector);
}
void
cvector_free(struct cvector *vector)
{
if (vector == NULL)
return;
cvector_clear(vector);
free(vector->strings);
free(vector);
}
/*
* Given a vector that we may be reusing, clear it out. If the argument is
* NULL, allocate a new vector. Helper function for vector_split*.
*/
static struct vector *
vector_reuse(struct vector *vector)
{
if (vector == NULL)
return vector_new();
else {
vector_clear(vector);
return vector;
}
}
static struct cvector *
cvector_reuse(struct cvector *vector)
{
if (vector == NULL)
return cvector_new();
else {
cvector_clear(vector);
return vector;
}
}
/*
* Given a string and a separator character, count the number of strings that
* it will split into.
*/
static size_t
split_count(const char *string, char separator)
{
const char *p;
size_t count;
if (*string == '\0')
return 1;
for (count = 1, p = string; *p != '\0'; p++)
if (*p == separator)
count++;
return count;
}
/*
* Given a string and a separator character, form a vector by splitting the
* string at occurrences of that separator. Consecutive occurrences of the
* character will result in empty strings added to the vector. Reuse the
* provided vector if non-NULL.
*/
struct vector *
vector_split(const char *string, char separator, struct vector *vector)
{
const char *p, *start;
size_t i, count;
/* If the vector argument isn't NULL, reuse it. */
vector = vector_reuse(vector);
/* Do a first pass to size the vector. */
count = split_count(string, separator);
if (vector->allocated < count)
vector_resize(vector, count);
/* Walk the string and create the new strings with xstrndup. */
for (start = string, p = string, i = 0; *p != '\0'; p++)
if (*p == separator) {
vector->strings[i++] = xstrndup(start, p - start);
start = p + 1;
}
vector->strings[i++] = xstrndup(start, p - start);
vector->count = i;
return vector;
}
/*
* Given a modifiable string and a separator character, form a cvector by
* modifying the string in-place to add nuls at the separators and then
* building a vector of pointers into the string. Reuse the provided vector
* if non-NULL.
*/
struct cvector *
cvector_split(char *string, char separator, struct cvector *vector)
{
char *p, *start;
size_t i, count;
/* If the vector argument isn't NULL, reuse it. */
vector = cvector_reuse(vector);
/* Do a first pass to size the vector. */
count = split_count(string, separator);
if (vector->allocated < count)
cvector_resize(vector, count);
/*
* Walk the string and replace separators with nul, and store the pointers
* to the start of each string segment.
*/
for (start = string, p = string, i = 0; *p; p++)
if (*p == separator) {
*p = '\0';
vector->strings[i++] = start;
start = p + 1;
}
vector->strings[i++] = start;
vector->count = i;
return vector;
}
/*
* Given a string and a set of separators expressed as a string, count the
* number of strings that it will split into when splitting on those
* separators. Unlike with split_count, multiple consecutive separator
* characters will be treated the same as a single separator.
*/
static size_t
split_multi_count(const char *string, const char *seps)
{
const char *p;
size_t count;
/* The empty string produces no substrings. */
if (*string == '\0')
return 0;
/*
* Walk the string looking for the first separator not preceded by
* another separator (and ignore a separator at the start of the string).
*/
for (count = 1, p = string + 1; *p != '\0'; p++)
if (strchr(seps, *p) != NULL && strchr(seps, p[-1]) == NULL)
count++;
/*
* If the string ends in separators, we've overestimated the number of
* strings by one.
*/
if (strchr(seps, p[-1]) != NULL)
count--;
return count;
}
/*
* Given a string, split it at any of the provided separators to form a
* vector, copying each string segment. Any number of consecutive separators
* are considered a single separator. Reuse the provided vector if non-NULL.
*/
struct vector *
vector_split_multi(const char *string, const char *seps, struct vector *vector)
{
const char *p, *start;
size_t i, count;
/* If the vector argument isn't NULL, reuse it. */
vector = vector_reuse(vector);
/* Count the number of strings we'll create and size the vector. */
count = split_multi_count(string, seps);
if (vector->allocated < count)
vector_resize(vector, count);
/*
* Walk the string and look for separators. start tracks the
* non-separator that starts a new string, so as long as start == p, we're
* tracking a sequence of separators.
*/
for (start = string, p = string, i = 0; *p != '\0'; p++)
if (strchr(seps, *p) != NULL) {
if (start != p)
vector->strings[i++] = xstrndup(start, p - start);
start = p + 1;
}
if (start != p)
vector->strings[i++] = xstrndup(start, p - start);
vector->count = i;
return vector;
}
/*
* Given a string, split it at any of the provided separators to form a
* vector, destructively modifying the string to nul-terminate each segment.
* Any number of consecutive separators are considered a single separator.
* Reuse the provided vector if non-NULL.
*/
struct cvector *
cvector_split_multi(char *string, const char *seps, struct cvector *vector)
{
char *p, *start;
size_t i, count;
/* If the vector argument isn't NULL, reuse it. */
vector = cvector_reuse(vector);
/* Count the number of strings we'll create and size the vector. */
count = split_multi_count(string, seps);
if (vector->allocated < count)
cvector_resize(vector, count);
/*
* Walk the string and look for separators, replacing the ones that
* terminate a substring with a nul. start tracks the non-separator that
* starts a new string, so as long as start == p, we're tracking a
* sequence of separators.
*/
for (start = string, p = string, i = 0; *p != '\0'; p++)
if (strchr(seps, *p) != NULL) {
if (start != p) {
*p = '\0';
vector->strings[i++] = start;
}
start = p + 1;
}
if (start != p)
vector->strings[i++] = start;
vector->count = i;
return vector;
}
/*
* Given a string, split it at whitespace to form a vector, copying each
* string segment. Any number of consecutive whitespace characters are
* considered a single separator. Reuse the provided vector if non-NULL.
* This is just a special case of vector_split_multi.
*/
struct vector *
vector_split_space(const char *string, struct vector *vector)
{
return vector_split_multi(string, " \t", vector);
}
/*
* Given a string, split it at whitespace to form a vector, destructively
* modifying the string to nul-terminate each segment. Any number of
* consecutive whitespace characters are considered a single separator. Reuse
* the provided vector if non-NULL. This is just a special case of
* cvector_split_multi.
*/
struct cvector *
cvector_split_space(char *string, struct cvector *vector)
{
return cvector_split_multi(string, " \t", vector);
}
/*
* Given a vector and a separator string, allocate and build a new string
* composed of all the strings in the vector separated from each other by the
* separator string. Caller is responsible for freeing.
*/
char *
vector_join(const struct vector *vector, const char *separator)
{
char *string;
size_t i, length, offset, size, seplen;
/* If the vector is empty, this is trivial. */
assert(vector != NULL);
if (vector->count == 0)
return xstrdup("");
/*
* Determine the total size of the resulting string. Be careful of
* integer overflow while doing so.
*/
seplen = strlen(separator);
for (size = 0, i = 0; i < vector->count; i++) {
assert(SIZE_MAX - size >= strlen(vector->strings[i]) + seplen + 1);
size += strlen(vector->strings[i]);
}
assert(SIZE_MAX - size >= (vector->count - 1) * seplen + 1);
size += (vector->count - 1) * seplen + 1;
/* Allocate the memory and build up the string. */
string = xmalloc(size);
offset = 0;
for (i = 0; i < vector->count; i++) {
if (i != 0) {
memcpy(string + offset, separator, seplen);
offset += seplen;
}
length = strlen(vector->strings[i]);
memcpy(string + offset, vector->strings[i], length);
offset += length;
assert(offset < size);
}
string[offset] = '\0';
return string;
}
char *
cvector_join(const struct cvector *vector, const char *separator)
{
char *string;
size_t i, length, offset, size, seplen;
/* If the vector is empty, this is trivial. */
assert(vector != NULL);
if (vector->count == 0)
return xstrdup("");
/*
* Determine the total size of the resulting string. Be careful of
* integer overflow while doing so.
*/
seplen = strlen(separator);
for (size = 0, i = 0; i < vector->count; i++) {
assert(SIZE_MAX - size >= strlen(vector->strings[i]));
size += strlen(vector->strings[i]);
}
assert(SIZE_MAX - size >= (vector->count - 1) * seplen + 1);
size += (vector->count - 1) * seplen + 1;
/* Allocate the memory and build up the string. */
string = xmalloc(size);
offset = 0;
for (i = 0; i < vector->count; i++) {
if (i != 0) {
memcpy(string + offset, separator, seplen);
offset += seplen;
}
length = strlen(vector->strings[i]);
memcpy(string + offset, vector->strings[i], length);
offset += length;
assert(offset < size);
}
string[offset] = '\0';
return string;
}
/*
* Given a vector and a path to a program, exec that program with the vector
* as its arguments. This requires adding a NULL terminator to the vector
* (which we do not add to count, so it will be invisible to other users of
* the vector) and casting it appropriately.
*/
int
vector_exec(const char *path, struct vector *vector)
{
assert(vector != NULL);
if (vector->allocated == vector->count)
vector_resize(vector, vector->count + 1);
vector->strings[vector->count] = NULL;
return execv(path, (char *const *) vector->strings);
}
int
cvector_exec(const char *path, struct cvector *vector)
{
assert(vector != NULL);
if (vector->allocated == vector->count)
cvector_resize(vector, vector->count + 1);
vector->strings[vector->count] = NULL;
return execv(path, (char *const *) vector->strings);
}