chiark / gitweb /
*** empty log message ***
[mLib] / sym.c
CommitLineData
0875b58f 1/* -*-c-*-
2 *
3 * $Id: sym.c,v 1.1 1998/06/17 23:44:42 mdw Exp $
4 *
5 * Symbol table management
6 *
7 * (c) 1998 Straylight/Edgeware
8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of the mLib utilities library.
13 *
14 * mLib is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * mLib is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with mLib; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
28
29/*----- Revision history --------------------------------------------------*
30 *
31 * $Log: sym.c,v $
32 * Revision 1.1 1998/06/17 23:44:42 mdw
33 * Initial revision
34 *
35 */
36
37/*----- Header files ------------------------------------------------------*/
38
39/* --- ANSI headers --- */
40
41#include <stdio.h>
42#include <stdlib.h>
43#include <string.h>
44
45/* --- Local headers --- */
46
47#include "alloc.h"
48#include "crc32.h"
49#include "exc.h"
50#include "sub.h"
51#include "sym.h"
52#include "track.h"
53
54/*----- Tuning parameters -------------------------------------------------*/
55
56/* --- Initial hash table size --- *
57 *
58 * This is the initial @mask@ value. It must be of the form %$2^n - 1$%,
59 * so that it can be used to mask of the bottom bits of a hash value.
60 */
61
62#define SYM_INITSZ 255 /* Size of a new hash table */
63
64/* --- Maximum load factor --- *
65 *
66 * This parameter controls how much the table has to be loaded before the
67 * table is extended. The number of elements %$n$%, the number of bins %$b$%
68 * and the limit %$l$% satisfy the relation %$n < bl$%; if a new item is
69 * added to the table and this relation is found to be false, the table is
70 * doubled in size.
71 *
72 * The current function gives %$l = {3n \over 4}$%, which appears to be
73 * reasonable on the face of things.
74 */
75
76#define SYM_LIMIT(n) (((n) * 3) >> 2) /* Load factor for growing table */
77
78/*----- Useful macros -----------------------------------------------------*/
79
80#define SYM_NAME(sy) \
81 ((sy)->len > SYM_BUFSZ ? (sy)->name.p : (sy)->name.b)
82
83/*----- Main code ---------------------------------------------------------*/
84
85/* --- @sym_createTable@ --- *
86 *
87 * Arguments: @sym_table *t@ = symbol table to initialise
88 *
89 * Returns: ---
90 *
91 * Use: Initialises the given symbol table. Raises @EXC_NOMEM@ if
92 * there isn't enough memory.
93 */
94
95void sym_createTable(sym_table *t)
96{
97 size_t i;
98
99 TRACK_CTX("symbol table creation");
100 TRACK_PUSH;
101
102 t->mask = SYM_INITSZ;
103 t->c = SYM_LIMIT(SYM_INITSZ);
104 t->a = xmalloc((t->mask + 1) * sizeof(sym_base *));
105
106 for (i = 0; i < SYM_INITSZ + 1; i++)
107 t->a[i] = 0;
108
109 TRACK_POP;
110}
111
112/* --- @sym_destroyTable@ --- *
113 *
114 * Arguments: @sym_table *t@ = pointer to symbol table in question
115 *
116 * Returns: ---
117 *
118 * Use: Destroys a symbol table, freeing all the memory it used to
119 * occupy.
120 */
121
122void sym_destroyTable(sym_table *t)
123{
124 size_t i;
125 sym_base *p, *q;
126
127 TRACK_CTX("symbol table deletion");
128 TRACK_PUSH;
129
130 for (i = 0; i <= t->mask; i++) {
131 p = t->a[i];
132 while (p) {
133 q = p->next;
134 if (p->len > SYM_BUFSZ)
135 sub_free(p->name.p, p->len);
136 free(p);
137 p = q;
138 }
139 }
140 free(t->a);
141
142 TRACK_POP;
143}
144
145/* --- @sym_find@ --- *
146 *
147 * Arguments: @sym_table *t@ = pointer to symbol table in question
148 * @const char *n@ = pointer to symbol table to look up
149 * @long l@ = length of the name string or negative to measure
150 * @size_t sz@ = size of desired symbol object, or zero
151 * @unsigned *f@ = pointer to a flag, or null.
152 *
153 * Returns: The address of a @sym_base@ structure, or null if not found
154 * and @sz@ is zero.
155 *
156 * Use: Looks up a symbol in a given symbol table. The name is
157 * passed by the address of its first character. The length
158 * may be given, in which case the name may contain arbitrary
159 * binary data, or it may be given as a negative number, in
160 * which case the length of the name is calculated as
161 * @strlen(n) + 1@.
162 *
163 * The return value is the address of a pointer to a @sym_base@
164 * block (which may have other things on the end, as above). If
165 * the symbol could be found, the return value points to the
166 * symbol block. If the symbol wasn't there, then if @sz@ is
167 * nonzero, a new symbol is created and its address is returned;
168 * otherwise a null pointer is returned. The exception
169 * @EXC_NOMEM@ is raised if the block can't be allocated.
170 *
171 * The value of @*f@ indicates whether a new symbol entry was
172 * created: a nonzero value indicates that an old value was
173 * found.
174 */
175
176void *sym_find(sym_table *t, const char *n, long l, size_t sz, unsigned *f)
177{
178 unsigned long hash; /* Hash value for user's name */
179 size_t len = l < 0 ? strlen(n) + 1 : l; /* Find length of user's name */
180 sym_base *bin; /* Bin containing our item */
181 sym_base *p, *q; /* Pointer wandering through list */
182
183 /* --- Find the correct bin --- */
184
185 CRC32(hash, 0, n, len); /* Find hash value for this name */
186 bin = p = (sym_base *)(t->a + (hash & t->mask));
187
188 /* --- Search the bin list --- */
189
190 while (p->next) {
191 if (hash == p->next->hash && /* Check full hash values first */
192 len == p->next->len && /* Then compare string lengths */
193 !memcmp(n, SYM_NAME(p->next), len)) /* And finally compare names */
194 {
195 /* --- Found a match --- *
196 *
197 * As a minor, and probably pointless, tweak, move the item to the
198 * front of its bin list.
199 */
200
201 q = p->next; /* Find the actual symbol block */
202 p->next = q->next; /* Extract block from bin list */
203 q->next = bin->next; /* Set up symbol's next pointer */
204 bin->next = q; /* And reinsert the block */
205
206 /* --- Return the block --- */
207
208 if (f) *f = 1; /* Didn't fail to find the item */
209 return (q); /* And return the block */
210 }
211
212 p = p->next; /* Move onto the next item */
213 }
214
215 /* --- Couldn't find the item there --- */
216
217 if (f) *f = 0; /* Failed to find the block */
218 if (!sz) return (0); /* Return zero if not creating */
219
220 /* --- Create a new symbol block and initialise it --- */
221
222 {
223 TRACK_CTX("new symbol creation");
224 TRACK_PUSH;
225
226 p = xmalloc(sz); /* Create a new symbol block */
227 p->next = bin->next; /* Set up the next pointer */
228 p->hash = hash; /* Set up the hash value too */
229 p->len = len; /* And set up the string length */
230 if (len <= SYM_BUFSZ)
231 memcpy(p->name.b, n, len); /* And copy the string over */
232 else {
233 TRY {
234 p->name.p = sub_alloc(len); /* Allocate a block for the name */
235 memcpy(p->name.p, n, len); /* And copy the string over */
236 } CATCH {
237 free(p);
238 TRACK_POP;
239 RETHROW;
240 } END_TRY;
241 }
242
243 TRACK_POP;
244 }
245
246 bin->next = p; /* Put the pointer into the bin */
247
248 /* --- Consider growing the array --- */
249
250 if (!--t->c) {
251 unsigned long m = t->mask + 1; /* Next set bit in has word */
252 sym_base *p, *q, *r; /* More useful pointers */
253 size_t i, lim; /* Loop counter and limit */
254
255 TRACK_CTX("symbol table extension");
256 TRACK_PUSH;
257
258 /* --- Update values in the anchor block --- */
259
260 TRY {
261 t->a = xrealloc(t->a, (t->mask + 1) * 2 * sizeof(sym_base *));
262 } CATCH switch (exc_type) {
263 case EXC_NOMEM:
264 TRACK_POP;
265 return (p);
266 default:
267 TRACK_POP;
268 RETHROW;
269 } END_TRY;
270
271 t->c = SYM_LIMIT(t->mask + 1); /* Set load value */
272 t->mask = (t->mask + 1) * 2 - 1; /* Set the new mask value */
273
274 /* --- Now wander through the table rehashing things --- *
275 *
276 * This loop is very careful to avoid problems with aliasing. The items
277 * are dealt with from the end backwards to avoid overwriting bins before
278 * they've been processed.
279 */
280
281 lim = (t->mask + 1) >> 1;
282 for (i = 0; i < lim; i++) {
283
284 /* --- Some initialisation --- */
285
286 r = t->a[i]; /* Find the list we're dissecting */
287 p = (sym_base *)(t->a + i); /* Find bit-clear list */
288 q = (sym_base *)(t->a + i + lim); /* And the bit-set lsit */
289
290 /* --- Now go through the @r@ list --- */
291
292 while (r) {
293 if (r->hash & m) /* Is the next bit set? */
294 q = q->next = r; /* Yes, so fit up previous link */
295 else
296 p = p->next = r; /* No, so fit up previous link */
297 r = r->next; /* Move onto the next item */
298 }
299 p->next = q->next = 0; /* Null terminate the new lists */
300 }
301
302 TRACK_POP;
303 }
304
305 /* --- Finished that, so return the new symbol block --- */
306
307 return (p);
308}
309
310/* --- @sym_remove@ --- *
311 *
312 * Arguments: @sym_table *i@ = pointer to a symbol table object
313 * @void *b@ = pointer to symbol table entry
314 *
315 * Returns: ---
316 *
317 * Use: Removes the object from the symbol table. The space occupied
318 * by the object and its name is freed; anything else attached
319 * to the entry should already be gone by this point.
320 */
321
322void sym_remove(sym_table *t, void *b)
323{
324 /* --- A quick comment --- *
325 *
326 * Since the @sym_base@ block contains the hash, finding the element in the
327 * bin list is really quick -- it's not worth bothering with things like
328 * doubly linked lists.
329 */
330
331 sym_base *p = b;
332 sym_base *bin = (sym_base *)(t->a + (p->hash & t->mask));
333
334 /* --- Find the item in the bin list --- */
335
336 while (bin->next) {
337 if (bin->next == p)
338 break;
339 bin = bin->next;
340 }
341 if (!bin->next)
342 return;
343
344 /* --- Now just remove the item from the list and free it --- *
345 *
346 * Oh, and bump the load counter.
347 */
348
349 bin->next = p->next;
350 if (p->len > SYM_BUFSZ)
351 sub_free(p->name.p, p->len);
352 free(p);
353 t->c++;
354}
355
356/* --- @sym_createIter@ --- *
357 *
358 * Arguments: @sym_iter *i@ = pointer to an iterator object
359 * @sym_table *t@ = pointer to a symbol table object
360 *
361 * Returns: ---
362 *
363 * Use: Creates a new symbol table iterator which may be used to
364 * iterate through a symbol table.
365 */
366
367void sym_createIter(sym_iter *i, sym_table *t)
368{
369 i->t = t;
370 i->i = 0;
371 i->n = 0;
372}
373
374/* --- @sym_next@ --- *
375 *
376 * Arguments: @sym_iter *i@ = pointer to iterator object
377 *
378 * Returns: Pointer to the next symbol found, or null when finished.
379 *
380 * Use: Returns the next symbol from the table. Symbols are not
381 * returned in any particular order.
382 */
383
384void *sym_next(sym_iter *i)
385{
386 sym_base *p;
387
388 /* --- Find the next item --- */
389
390 while (!i->n) {
391 if (i->i > i->t->mask)
392 return (0);
393 i->n = i->t->a[i->i++];
394 }
395
396 /* --- Update the iterator block --- */
397
398 p = i->n;
399 i->n = p->next;
400
401 /* --- Done --- */
402
403 return (p);
404}
405
406/*----- Symbol table test code --------------------------------------------*/
407
408#ifdef TEST_RIG
409
410#include <errno.h>
411#include <time.h>
412
413typedef struct sym_word {
414 sym_base base;
415 size_t i;
416} sym_word;
417
418
419/* --- What it does --- *
420 *
421 * Reads the file /usr/dict/words (change to some other file full of
422 * interesting and appropriate bits of text to taste) into a big buffer and
423 * picks apart into lines. Then picks lines at random and enters them into
424 * the symbol table.
425 */
426
427int main(void)
428{
429 char *buff, *p, *lim;
430 size_t sz, done;
431 FILE *fp;
432 int i;
433 char **line;
434 sym_word **flag;
435 sym_table tbl;
436 int entries;
437
438 /* --- Initialise for reading the file --- */
439
440 sz = BUFSIZ;
441 buff = xmalloc(sz + 1);
442 done = 0;
443 sub_init();
444
445 if ((fp = fopen("/usr/dict/words", "r")) == 0)
446 fprintf(stderr, "buggered ;-( (%s)\n", strerror(errno));
447
448 /* --- Read buffers of text --- *
449 *
450 * Read a buffer. If more to come, double the buffer size and try again.
451 * This is the method I recommended to comp.lang.c, so I may as well try
452 * it.
453 */
454
455 for (;;) {
456 i = fread(buff + done, 1, sz - done, fp);
457 done += i;
458 if (done != sz)
459 break;
460 sz <<= 1;
461 buff = xrealloc(buff, sz + 1);
462 }
463
464 /* --- Count the lines --- */
465
466 lim = buff + done;
467
468 sz = 1;
469 for (p = buff; p < lim; p++)
470 if (*p == '\n') sz++;
471
472 /* --- Build a table of line starts --- */
473
474 line = xmalloc(sz * sizeof(char *));
475 i = 0;
476 line[i++] = buff;
477 for (p = buff; p < lim; p++)
478 if (*p == '\n') *p = 0, line[i++] = p + 1;
479 *lim = 0;
480
481 /* --- Build a table of lines --- *
482 *
483 * This reverses the mapping which the symbol table performs, so that its
484 * accuracy can be tested.
485 */
486
487 flag = xmalloc(sz * sizeof(sym_word *));
488 for (i = 0; i < sz; i++)
489 flag[i] = 0;
490 entries = 0;
491
492 sym_createTable(&tbl);
493
494 for (;;) {
495 i = (unsigned)rand() % sz;
496
497 switch (rand() % 5)
498 {
499 case 0: {
500 sym_word *w;
501
502 printf("find `%s'\n", line[i]);
503 if ((rand() & 1023) == 0) {
504 putchar('.'); fflush(stdout);
505 }
506
507 w = sym_find(&tbl, line[i], -1, 0, 0);
508 if (w != flag[i])
509 printf("*** error: find `%s' gave %p not %p\n",
510 line[i], (void *)w, (void *)flag[i]);
511 else if (w && w->i != i)
512 printf("*** error: find sym for `%s' gives index %i not %i\n",
513 line[i], w->i, i);
514 } break;
515
516 case 1: {
517 unsigned f;
518 sym_word *w;
519
520 printf("create `%s'\n", line[i]);
521 if ((rand() & 1023) == 0) {
522 putchar('+'); fflush(stdout);
523 }
524
525 w = sym_find(&tbl, line[i], -1, sizeof(sym_word), &f);
526 if (f)
527 {
528 if (w != flag[i])
529 printf("*** error: create `%s' gave %p not %p\n",
530 line[i], (void *)w, (void *)flag[i]);
531 else if (w && w->i != i)
532 printf("*** error: create sym for `%s' gives index %i not %i\n",
533 line[i], w->i, i);
534 }
535 else
536 {
537 if (flag[i])
538 printf("*** error: create `%s' gave new block, should be %p\n",
539 line[i], (void *)flag[i]);
540 else {
541 flag[i] = w;
542 w->i = i;
543 entries++;
544 }
545 }
546 } break;
547
548 case 2: {
549 sym_iter it;
550 sym_word *w, **ntbl;
551 int v;
552
553 if (!entries)
554 break;
555 v = (rand() % entries) == 0;
556 if (!v)
557 break;
558 printf("\niterated %i entries\n", entries);
559 break;
560
561 printf("iterate\n");
562
563 ntbl = xmalloc(sz * sizeof(sym_word *));
564 memcpy(ntbl, flag, sz * sizeof(sym_word *));
565 sym_createIter(&it, &tbl);
566
567 while ((w = sym_next(&it)) != 0) {
568 if (ntbl[w->i] == 0)
569 printf("*** error: iterate returned duff item %i\n", w->i);
570 else
571 ntbl[w->i] = 0;
572 }
573
574 for (i = 0; i < sz; i++)
575 if (ntbl[i]) printf("*** error: iterate didn't return item %i\n",
576 i);
577 free(ntbl);
578 } break;
579
580 case 3: {
581 sym_base *b;
582 int v = rand() & 255 ? 0 : 1;
583 break;
584
585 printf("dump\n");
586
587 for (i = 0; i <= tbl.mask; i++) {
588 if (!tbl.a[i]) continue;
589 if (v) printf(" %i: ", i);
590 b = tbl.a[i];
591 while (b) {
592 if ((b->hash & tbl.mask) != i)
593 printf("*** error: bad hash value found");
594 if (v) printf("`%s'(%08lx:%lu) ",
595 line[((sym_word *)b)->i],
596 b->hash,
597 b->hash & tbl.mask);
598 b = b->next;
599 }
600 if (v) putchar('\n');
601 }
602 } break;
603
604 case 4: {
605 if (flag[i]) {
606 printf("remove `%s'\n", SYM_NAME(&flag[i]->base));
607 if ((rand() & 1023) == 0) {
608 putchar('-'); fflush(stdout);
609 }
610 sym_remove(&tbl, flag[i]);
611 flag[i] = 0;
612 entries--;
613 }
614 } break;
615 }
616
617 }
618
619 return (0);
620}
621
622#endif
623
624/*----- That's all, folks -------------------------------------------------*/