-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathstrvec.c
209 lines (174 loc) · 3.98 KB
/
strvec.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
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
#include "strvec.h"
#include "misc.h"
static void
strvec_inc(strvec_t *vec)
{
if(vec->count + 1 >= vec->capacity) {
vec->capacity = vec->capacity * 2 + 16;
vec->v = realloc(vec->v, sizeof(vec->v[0]) * vec->capacity);
}
}
void
strvec_push(strvec_t *vec, const char *value)
{
strvec_inc(vec);
vec->v[vec->count++] = value ? strdup(value) : NULL;
}
void
strvec_push_alloced(strvec_t *vec, char *value)
{
strvec_inc(vec);
vec->v[vec->count++] = value;
}
void
strvec_pushl(strvec_t *vec, const char *value, size_t len)
{
char *x = malloc_add(len, 1);
memcpy(x, value, len);
x[len] = 0;
strvec_push_alloced(vec, x);
}
void
strvec_pushf(strvec_t *vec, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
strvec_push_alloced(vec, fmtv(fmt, ap));
va_end(ap);
}
void
strvec_reset(strvec_t *vec)
{
for(int i = 0; i < vec->count; i++)
free(vec->v[i]);
vec->count = 0;
vec->capacity = 0;
free(vec->v);
vec->v = NULL;
}
void
strvec_insert(strvec_t *vec, unsigned int position, const char *value)
{
if(position == vec->count)
return strvec_push(vec, value);
if(vec->count + 1 >= vec->capacity) {
vec->capacity = vec->capacity * 2 + 16;
vec->v = realloc(vec->v, sizeof(vec->v[0]) * vec->capacity);
}
memmove(vec->v + position + 1, vec->v + position,
(vec->count - position) * sizeof(vec->v[0]));
vec->v[position] = strdup(value);
vec->count++;
}
void
strvec_delete(strvec_t *vec, unsigned int position)
{
assert(position < vec->count);
free(vec->v[position]);
memmove(vec->v + position, vec->v + position + 1,
(vec->count - position - 1) * sizeof(vec->v[0]));
vec->count--;
}
static int
strvec_search(const strvec_t *vec, const char *value)
{
int imin = 0;
int imax = vec->count;
while(imin < imax) {
int imid = (imin + imax) >> 1;
if(strcmp(vec->v[imid], value) < 0)
imin = imid + 1;
else
imax = imid;
}
return imin;
}
int
strvec_insert_sorted(strvec_t *vec, const char *value)
{
int position = strvec_search(vec, value);
strvec_insert(vec, position, value);
return position;
}
int
strvec_find(const strvec_t *vec, const char *value)
{
if(vec->count == 0)
return -1;
const int pos = strvec_search(vec, value);
return pos < vec->count && !strcmp(vec->v[pos], value) ? pos : -1;
}
int
strvec_delete_value(strvec_t *vec, const char *value)
{
if(vec->count == 0)
return -1;
const int pos = strvec_find(vec, value);
if(pos >= 0)
strvec_delete(vec, pos);
return pos;
}
void
strvec_copy(strvec_t *dst, const strvec_t *src)
{
// We trim the capacity down to the actual size here
dst->count = dst->capacity = src->count;
dst->v = malloc_mul(dst->count, sizeof(dst->v[0]));
for(int i = 0; i < dst->count; i++)
dst->v[i] = src->v[i] ? strdup(src->v[i]) : NULL;
}
char *
strvec_join(const strvec_t *src, const char *sep)
{
int totlen = 1;
const int seplen = strlen(sep);
for(int i = 0; i < src->count; i++) {
if(src->v[i])
totlen += strlen(src->v[i]) + (i ? seplen : 0);
}
char *r = malloc(totlen);
int off = 0;
for(int i = 0; i < src->count; i++) {
if(src->v[i]) {
if(i) {
memcpy(r + off, sep, seplen);
off += seplen;
}
const int len = strlen(src->v[i]);
memcpy(r + off, src->v[i], len);
off += len;
}
}
r[off] = 0;
return r;
}
void
strvec_split(strvec_t *dst, const char *str, const char *sep, int include_empty)
{
size_t seplen = strlen(sep);
while(str) {
const char *next = strstr(str, sep);
size_t len = next ? next - str : strlen(str);
if(len > 0 || include_empty)
strvec_pushl(dst, str, len);
if(next)
next += seplen;
str = next;
}
}
int
strvec_eq(const strvec_t *a, const strvec_t *b)
{
if(a->count != b->count)
return 0;
for(int i = 0; i < a->count; i++) {
if(strcmp(strvec_get(a, i), strvec_get(b, i)))
return 0;
}
return 1;
}