cosmetix in lz unpacker
[k8jam.git] / src / lists.c
blob828cebf2f3b456191e3d8703cf5f638377703393
1 /*
2 * Copyright 1993, 1995 Christopher Seiwald.
4 * This file is part of Jam - see jam.c for Copyright information.
5 */
7 /*
8 * lists.c - maintain lists of strings
10 * This implementation essentially uses a singly linked list, but
11 * guarantees that the head element of every list has a valid pointer
12 * to the tail of the list, so the new elements can efficiently and
13 * properly be appended to the end of a list.
15 * To avoid massive allocation, list_free() just tacks the whole freed
16 * chain onto freelist and list_new() looks on freelist first for an
17 * available list struct. list_free() does not free the strings in the
18 * chain: it lazily lets list_new() do so.
20 * 08/23/94 (seiwald) - new list_append()
21 * 09/07/00 (seiwald) - documented lol_*() functions
22 * 10/22/02 (seiwald) - list_new() now does its own newstr()/copystr()
23 * 11/04/02 (seiwald) - const-ing for string literals
24 * 12/09/02 (seiwald) - new list_printq() for writing lists to Jambase
26 #include "jam.h"
27 #include "newstr.h"
28 #include "lists.h"
31 static LIST *freelist = NULL; /* junkpile for list_free() */
35 * list_append() - append a list onto another one, returning total
37 LIST *list_append (LIST *l, LIST *nl) {
38 if (!nl) {
39 /* Just return l */
40 } else if (!l) {
41 l = nl;
42 } else {
43 /* graft two non-empty lists */
44 l->tail->next = nl;
45 l->tail = nl->tail;
47 return l;
51 static JAMFA_PURE int contains (LIST *l, const char *str) {
52 for (; l != NULL; l = l->next) if (strcmp(l->string, str) == 0) return 1;
53 return 0;
58 * list_removeall() - remove all occurences of `nl` items from `l`
60 LIST *list_removeall (LIST *l, LIST *nl) {
61 if (nl && l) {
62 LIST *p = NULL, *h = NULL;
64 while (l != NULL) {
65 LIST *n = l->next;
67 if (contains(nl, l->string)) {
68 // remove (i.e. move node to freelist)
69 if (p != NULL) p->next = n;
70 if (n == NULL && h != NULL) h->tail = p;
71 l->next = freelist;
72 freelist = l;
73 } else {
74 // skip
75 if (h == NULL) h = l; // save list head
76 p = l;
77 if (n == NULL && h != NULL) h->tail = l;
79 l = n;
81 l = h;
83 return l;
88 * list_new() - tack a string onto the end of a list of strings
90 /* copy!=0: copystr; else newstr */
91 LIST *list_new (LIST *head, const char *string, int copy) {
92 LIST *l;
94 if (DEBUG_LISTS) printf("list > %s <\n", string);
95 /* copy/newstr as needed */
96 string = copy?copystr(string):newstr(string);
97 /* get list struct from freelist, if one available, otherwise allocate */
98 /* if from freelist, must free string first */
99 if (freelist) {
100 l = freelist;
101 freestr(l->string);
102 freelist = freelist->next;
103 } else {
104 l = (LIST *)malloc(sizeof(*l));
106 /* if first on chain, head points here */
107 /* if adding to chain, tack us on */
108 /* tail must point to this new, last element */
109 if (!head) head = l; else head->tail->next = l;
110 head->tail = l;
111 l->next = 0;
112 l->string = string;
113 return head;
118 * list_copy() - copy a whole list of strings (nl) onto end of another (l)
120 LIST *list_copy (LIST *l, LIST *nl) {
121 for (; nl; nl = list_next(nl)) l = list_new(l, nl->string, 1);
122 return l;
127 * list_sublist() - copy a subset of a list of strings
129 LIST *list_sublist (LIST *l, int start, int count) {
130 LIST *nl = NULL;
132 for (; l && start--; l = list_next(l)) ;
133 for (; l && count--; l = list_next(l)) nl = list_new(nl, l->string, 1);
134 return nl;
138 /* backported from boost-jam; TEST IT!!! */
140 * list_sort() - sort list
142 LIST *list_sort (LIST *l) {
143 LIST *first = NULL, *second = NULL, *merged = l, *result;
145 if (!l) return L0;
146 for (;;) {
147 /* split the list in two */
148 LIST **dst = &first;
149 LIST *src = merged;
150 for (;;) {
151 *dst = list_append(*dst, list_new(0, src->string, 1));
152 if (!src->next) break;
153 if (strcmp(src->string, src->next->string) > 0) dst = (dst==&first)?&second:&first;
154 src = src->next;
156 if (merged != l) list_free(merged);
157 merged = 0;
158 if (second == 0) { result = first; break; }
159 /* merge lists 'first' and 'second' into 'merged' and free 'first'/'second' */
161 LIST *f = first, *s = second;
163 while (f && s) {
164 if (strcmp(f->string, s->string) < 0) {
165 merged = list_append(merged, list_new(0, f->string, 1));
166 f = f->next;
167 } else {
168 merged = list_append(merged, list_new(0, s->string, 1));
169 s = s->next;
172 merged = list_copy(merged, f);
173 merged = list_copy(merged, s);
174 list_free(first);
175 list_free(second);
176 first = second = 0;
179 return result;
184 * list_free() - free a list of strings
186 void list_free (LIST *head) {
187 /* Just tack onto freelist. */
188 if (head) {
189 head->tail->next = freelist;
190 freelist = head;
196 * list_print() - print a list of strings to stdout
198 void list_print (LIST *l) {
199 for (; l; l = list_next(l)) printf("%s ", l->string);
203 #if 0
204 /* FIXME! */
206 * list_printq() - print a list of safely quoted strings to a file
208 void list_printq (FILE *out, LIST *l) {
209 /* dump each word, enclosed in "s */
210 /* suitable for Jambase use. */
211 for (; l; l = list_next(l)) {
212 const char *p = l->string;
213 const char *ep = p+strlen(p);
214 const char *op = p;
216 fputc('\n', out);
217 fputc('\t', out);
218 fputc('"', out);
219 /* any embedded "'s? Escape them */
220 while ((p = (char *)memchr(op, '"', ep-op))) {
221 fwrite(op, p-op, 1, out);
222 fputc('\\', out);
223 fputc('"', out);
224 op = p+1;
226 /* Write remainder */
227 fwrite(op, ep-op, 1, out);
228 fputc('"', out);
229 fputc(' ', out);
232 #endif
236 * list_length() - return the number of items in the list
238 int list_length (LIST *l) {
239 int n;
241 for (n = 0; l; l = list_next(l), ++n) ;
242 return n;
247 * lol_init() - initialize a LOL (list of lists)
249 void lol_init (LOL *lol) {
250 lol->count = 0;
255 * lol_add() - append a LIST onto an LOL
257 void lol_add (LOL *lol, LIST *l) {
258 if (lol->count < LOL_MAX) lol->list[lol->count++] = l;
263 * lol_free() - free the LOL and its LISTs
265 void lol_free (LOL *lol) {
266 int i;
268 for (i = 0; i < lol->count; ++i) list_free(lol->list[i]);
269 lol->count = 0;
274 * lol_get() - return one of the LISTs in the LOL
276 LIST *lol_get (LOL *lol, int i) {
277 return i<lol->count?lol->list[i]:NULL;
282 * lol_print() - debug print LISTS separated by ":"
284 void lol_print (LOL *lol) {
285 int i;
287 for (i = 0; i < lol->count; ++i) {
288 if (i) printf(" : ");
289 list_print(lol->list[i]);