2 * UCW Library -- A simple growing array of an arbitrary type
4 * (c) 2010 Martin Mares <mj@ucw.cz>
13 gary_init(size_t elt_size, size_t num_elts)
15 DBG("GARY: Init to %zd elements", num_elts);
16 struct gary_hdr *h = xmalloc(GARY_HDR_SIZE + elt_size * num_elts);
17 h->num_elts = h->have_space = num_elts;
18 h->elt_size = elt_size;
19 return (byte *)h + GARY_HDR_SIZE;
23 gary_free(void *array)
25 xfree(GARY_HDR(array));
28 static struct gary_hdr *
29 gary_realloc(struct gary_hdr *h, size_t n)
31 if (n > 2*h->have_space)
35 DBG("GARY: Resize to %zd elements (need %zd)", h->have_space, n);
36 return xrealloc(h, GARY_HDR_SIZE + h->have_space * h->elt_size);
40 gary_set_size(void *array, size_t n)
42 struct gary_hdr *h = GARY_HDR(array);
44 if (n <= h->have_space)
47 h = gary_realloc(h, n);
52 gary_push_helper(void *array, size_t n, byte **cptr)
54 struct gary_hdr *h = GARY_HDR(array);
55 h = gary_realloc(h, h->num_elts);
56 *cptr = GARY_BODY(h) + (h->num_elts - n) * h->elt_size;
63 struct gary_hdr *h = GARY_HDR(array);
64 if (h->num_elts != h->have_space)
66 h = xrealloc(h, GARY_HDR_SIZE + h->num_elts * h->elt_size);
67 h->have_space = h->num_elts;
81 for (int i=0; i<5; i++)
84 *GARY_PUSH(a, 1) = 10;
85 *GARY_PUSH(a, 1) = 20;
86 *GARY_PUSH(a, 1) = 30;
90 for (int i=0; i<(int)GARY_SIZE(a); i++)