-
Notifications
You must be signed in to change notification settings - Fork 0
/
array.c
424 lines (408 loc) · 8.88 KB
/
array.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
// LICENSE: MIT
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <stddef.h>
#include <string.h>
#ifdef WIN32
#define pointer char *
#else
#define pointer void *
#endif
/**
* @defgroup array array
* @brief Growable vector
*
* @code{.c}
* // Create a vector of ints 'i'
* int *v = xarray_new('i');
* v = xarray_append(v, 0);
* v = xarray_append(v, 1);
* v = xarray_append(v, 2);
* assert(xarray_length(v) == 3);
* assert(v == {0, 1, 2});
*
* // Remove the last item
* xarray_pop(v);
* assert(xarray_length(v) == 2);
* assert(v == {0, 1});
*
* // Add two more items
* v = xarray_append(v, 3);
* v = xarray_append(v, 4);
* assert(v == {0, 1, 3, 4});
*
* // Remove the item at index 2, i.e. the number 3 (index starts at 0)
* xarray_delete(v, 2);
* assert(v == {0, 1, 4});
*
* // Remove the item at index 0, i.e. the number 0
* xarray_delete(v, 0);
* assert(v == {1, 4});
*
* // Create a vector of pointers with length 10
* sac **p = xarray_new_with_len('p', 3);
* p = xarray_append(p, sac_new()));
* p = xarray_append(p, sac_new()));
* p = xarray_append(p, sac_new()));
*
* // Accesss is most easily done directly
* for(int i = 0; i < xarray_length(p); i++) {
* printf("%p\n", p[i]);
* }
*
* @endcode
*/
/**
* @brief xarray header structure
* @private
* @ingroup array
*/
struct xarray_header {
size_t len; /** number of items in array */
size_t nalloc; /** number of items allocated */
char type; /** type of array */
size_t size; /** size of item */
char buf[]; /** data storage */
};
/**
* @brief Growable list or vector
* @ingroup array
*
* @details This really does not exist, but allows the grouping of similar itesm
*
*/
struct xarray { };
/**
* @brief Get the xarray header from an xarray list
*
* @private
* @ingroup array
*
* @memberof xarray
*
* @param a xarray list
*
* @return xarray_header
*/
struct xarray_header *
xarray_header(void *a) {
struct xarray_header *ah;
if (!a ||
!(ah =
(struct xarray_header *) ((pointer) a -
offsetof(struct xarray_header, buf)))) {
return NULL;
}
return ah;
}
/**
* @brief Get the length of an xarray list
*
* @memberof xarray
* @ingroup array
*
* @param a xarray list
*
* @return length of the list
*/
int
xarray_length(void *a) {
struct xarray_header *ah;
if (!(ah = xarray_header(a))) {
return 0;
}
return (int) ah->len;
}
/**
* @brief Create a new xarray list with a length of type t
*
* @memberof xarray
* @ingroup array
*
* @param t type of list
* @param n length of list
*
* @return new xarray list of type t, items are not initialized
*/
void *
xarray_new_with_len(char t, size_t n) {
struct xarray_header *ah;
size_t size;
size_t nalloc = 2;
switch (t) {
case 'p':
size = sizeof(void *);
break;
case 'i':
size = sizeof(int);
break;
case 'f':
size = sizeof(float);
break;
case 'd':
size = sizeof(double);
break;
case 'c':
size = sizeof(char);
break;
default:
size = 0;
break;
}
if (size == 0) {
printf("arr invalid element type\n");
return NULL;
}
while (n > nalloc) {
nalloc *= 2;
}
ah = malloc(sizeof *ah + size * nalloc);
if (!ah) {
return NULL;
}
ah->len = n;
ah->nalloc = nalloc;
ah->type = t;
ah->size = size;
return (void *) ah->buf;
}
/**
* @brief create a new xarray vector with type t
*
* @details create a new xarray vector with type t
*
* @memberof xarray
* @ingroup array
*
* @param t - Type of thing to store
* - 'p' - pointers
* - 'i' - integers
* - 'f' - floats, single precision floating point
* - 'd' - doubles, double precision floating point
* - 'c' - characters, probably best to use an string handling routine
*
* @note Two items are initially allocated
*
* @return pointer to memory of allocated memory
*
*/
void *
xarray_new(char t) {
return xarray_new_with_len(t, 0);
}
/**
* @brief Free an xarray list
*
* @memberof xarray
* @ingroup array
*
* @param a list to free
*
*/
void
xarray_free(void *a) {
struct xarray_header *ah;
if (!(ah = xarray_header(a))) {
return;
}
free(ah);
}
/**
* @brief Clear an xarray
*
* @memberof xarray
* @ingroup array
*
* @param a list to clear
*
*/
void
xarray_clear(void *a) {
struct xarray_header *ah;
if (!(ah = xarray_header(a))) {
return;
}
memset(a, 0, ah->size * ah->nalloc);
ah->len = 0;
}
/**
* @brief Grow an array if needed, expand by factors of 2, memory is reallocated
*
* @memberof xarray
* @ingroup array
* @private
*
* @param ah xarray header
* @param n new size
*
* @return new xarray header, different if reallocated
*/
struct xarray_header *
xarray_grow(struct xarray_header *ah, size_t n) {
struct xarray_header *new;
if (n < ah->nalloc) {
return ah;
}
while (n >= ah->nalloc) {
ah->nalloc *= 2;
}
new = realloc(ah, sizeof(struct xarray_header) + ah->size * ah->nalloc);
if (!new) {
return NULL;
}
return new;
}
/**
* @brief Append to a xarray list
*
* @memberof xarray
* @ingroup array
*
* @param a xarray list to append to
* @param ... value to append
*
* @return possibly new updated version of the xarray, if reallocated
*/
void *
xarray_append(void *a, ...) {
struct xarray_header *ah;
va_list ap;
if (!(ah = xarray_header(a))) {
return NULL;
}
ah = xarray_grow(ah, ah->len + 1);
va_start(ap, a);
switch (ah->type) {
case 'p':
((void **) (ah->buf))[ah->len] = va_arg(ap, void *);
break;
case 'i':
((int *) (ah->buf))[ah->len] = va_arg(ap, int);
break;
case 'f':
((float *) (ah->buf))[ah->len] = (float) va_arg(ap, double);
break;
case 'd':
((double *) (ah->buf))[ah->len] = va_arg(ap, double);
break;
case 'c':
((char *) (ah->buf))[ah->len] = (char) va_arg(ap, int);
break;
default:
break;
}
va_end(ap);
ah->len++;
return ah->buf;
}
/**
* @brief Delete a value from the xarray at index i
*
* @memberof xarray
* @ingroup array
*
* @param a xarray list to remove item from
* @param i index to remove
*
*/
void
xarray_delete(void *a, int i) {
size_t n = 0;
size_t ui = 0;
struct xarray_header *ah;
if (!(ah = xarray_header(a))) {
return;
}
if (i < 0 || (size_t) i > ah->len) {
printf("xarray: attempt to delete a non-existant value\n");
return;
}
ui = (size_t) i;
n = ah->len - 1 - ui;
memmove((pointer) a + ah->size * (size_t) i, (pointer) a + ah->size * (ui + 1),
ah->size * n);
ah->len--;
}
/**
* @brief Get an item at index i
*
* @param a xarray list to get item from
* @param i index to get item
*
* @return value at a[i]
*/
void *
xarray_index(void *a, size_t i) {
struct xarray_header *ah;
if (!(ah = xarray_header(a))) {
return NULL;
}
if(i >= ah->len) {
printf("xarray: attempt to index for non-existant value\n");
return NULL;
}
return (pointer) a + (ah->size * i);
}
/**
* @brief Remove last item in a xarray
*
* @memberof xarray
* @ingroup array
*
* @param a xarray to remove last item from
*
*/
void
xarray_pop(void *a) {
struct xarray_header *ah;
if (!(ah = xarray_header(a))) {
return;
}
xarray_delete(a, (int)ah->len - 1);
}
/**
* @brief Sort a xarray list base on the compare function
*
* @memberof xarray
* @ingroup array
* @param a xarray list to sort
* @param compare comparison function
*
*/
void
xarray_sort(void *a, int (*compare) (const void *a, const void *b)) {
struct xarray_header *ah;
if (!(ah = xarray_header(a))) {
return;
}
qsort(a, ah->len, ah->size, compare);
}
/**
* @brief Free items in an enclosed xarray list
*
* @memberof xarray
* @ingroup array
*
* @param a xarray list
* @param free_data how to free indiviual items
*
* @note only useful for list of pointers
*
*/
void
xarray_free_items(void *a, void (*free_data) (void *) ) {
struct xarray_header *ah = NULL;
if(!a) {
return;
}
if (!(ah = xarray_header(a))) {
return;
}
if(ah->type != 'p') {
return;
}
for(size_t i = 0; i < (size_t) xarray_length(a); i++) {
free_data( *(void **) xarray_index(a, i) );
}
}