-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy patharray.h
120 lines (106 loc) · 2.9 KB
/
array.h
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
/*
* Copyright (c) 2018 Mark Heily <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef _ARRAY_H
#define _ARRAY_H
#include <string.h>
#include <stdlib.h>
#include <inttypes.h>
#define string_array_data(_strarr) ((_strarr)->strp)
#define string_array_len(_strarr) ((_strarr)->pos)
struct string_array {
uint32_t size, pos;
char **strp;
};
static inline struct string_array *
string_array_new(void)
{
struct string_array *strarr = calloc(1, sizeof(*strarr));
if (!strarr)
return (NULL);
strarr->strp = calloc(16, sizeof(char *));
strarr->size = 16;
return (strarr);
}
static inline void
string_array_free(struct string_array *strarr)
{
uint32_t i;
if (!strarr)
return;
for (i = 0; i < strarr->pos; i++)
free(strarr->strp[i]);
free(strarr->strp);
free(strarr);
}
static inline int
string_array_get(char **result, struct string_array *strarr, uint32_t index)
{
if (!strarr || index >= strarr->pos) {
*result = NULL;
return (-1);
} else {
*result = strarr->strp[index];
return (0);
}
}
static inline int
string_array_push_back(struct string_array *strarr, char *item)
{
if (item == NULL)
return (-1);
if (!strarr->size || strarr->pos == (strarr->size - 1)) {
if (strarr->size > 8096)
return (-1); // KLUDGE
uint32_t new_size = strarr->size + 16;
char **newbuf = calloc(new_size, sizeof(char *));
if (!newbuf)
return (-1);
if (strarr->strp) {
memcpy(newbuf, strarr->strp, strarr->size);
free(strarr->strp);
}
strarr->strp = newbuf;
strarr->size = new_size;
}
strarr->strp[strarr->pos++] = item;
return (0);
}
static inline int
string_array_contains(struct string_array *haystack, const char *needle)
{
uint32_t i;
if (!haystack || !needle)
return (0);
for (i = 0; i < haystack->pos; i++) {
if (!strcmp(haystack->strp[i], needle))
return (1);
}
return (0);
}
/* Lookup a value in an associative array of [key, value, ...] pairs */
static inline const char *
string_array_dict_lookup(struct string_array *haystack, const char *needle)
{
uint32_t i;
if (!haystack || !needle)
return NULL;
for (i = 0; i < haystack->pos; i += 2) {
if (!strcmp(haystack->strp[i], needle))
return haystack->strp[i+1];
}
return NULL;
}
#endif /* _ARRAY_H */