3 * Symbol table management
5 * (c) 1998 Straylight/Edgeware
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of the mLib utilities library.
12 * mLib is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
17 * mLib is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
22 * You should have received a copy of the GNU Library General Public
23 * License along with mLib; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
28 /*----- Header files ------------------------------------------------------*/
30 /* --- ANSI headers --- */
34 /* --- Local headers --- */
46 /*----- Main code ---------------------------------------------------------*/
48 /* --- @sym_create@ --- *
50 * Arguments: @sym_table *t@ = symbol table to initialize
54 * Use: Initializes the given symbol table. Raises @EXC_NOMEM@ if
55 * there isn't enough memory.
58 void sym_create(sym_table *t)
60 hash_create(&t->t, SYM_INITSZ);
62 t->load = SYM_LIMIT(SYM_INITSZ);
65 /* --- @sym_destroy@ --- *
67 * Arguments: @sym_table *t@ = pointer to symbol table in question
71 * Use: Destroys a symbol table, freeing all the memory it used to
75 void sym_destroy(sym_table *t)
90 /* --- @sym_find@ --- *
92 * Arguments: @sym_table *t@ = pointer to symbol table in question
93 * @const char *n@ = pointer to symbol name to look up
94 * @long l@ = length of the name string or negative to measure
95 * @size_t sz@ = size of desired symbol object, or zero
96 * @unsigned *f@ = pointer to a flag, or null.
98 * Returns: The address of a @sym_base@ structure, or null if not found
101 * Use: Looks up a symbol in a given symbol table. The name is
102 * passed by the address of its first character. The length
103 * may be given, in which case the name may contain arbitrary
104 * binary data, or it may be given as a negative number, in
105 * which case the length of the name is calculated as
108 * The return value is the address of a pointer to a @sym_base@
109 * block (which may have other things on the end, as above). If
110 * the symbol could be found, the return value points to the
111 * symbol block. If the symbol wasn't there, then if @sz@ is
112 * nonzero, a new symbol is created and its address is returned;
113 * otherwise a null pointer is returned. The exception
114 * @EXC_NOMEM@ is raised if the block can't be allocated.
116 * The value of @*f@ indicates whether a new symbol entry was
117 * created: a nonzero value indicates that an old value was
121 void *sym_find(sym_table *t, const char *n, long l, size_t sz, unsigned *f)
125 hash_base **bin, **p;
128 /* --- Find the correct bin --- */
130 len = l < 0 ? strlen(n) : l;
131 hash = UNIHASH(&unihash_global, n, len);
132 bin = HASH_BIN(&t->t, hash);
134 /* --- Search the bin list --- */
136 for (p = bin; *p; p = &(*p)->next) {
138 if (hash == q->b.hash && len == q->len &&
139 MEMCMP(n, ==, SYM_NAME(q), len)) {
141 /* --- Found a match --- *
143 * As a minor, and probably pointless, tweak, move the item to the
144 * front of its bin list.
151 /* --- Return the block --- */
158 /* --- Couldn't find the item there --- */
163 /* --- Create a new symbol block and initialize it --- *
165 * The name is attached to the end of the symbol block.
168 q = x_alloc(t->t.a, sz + len + 1);
171 q->name = (char *)q + sz;
172 memcpy(q->name, n, len);
177 /* --- Consider growing the array --- */
181 if (!t->load && hash_extend(&t->t))
182 t->load = SYM_LIMIT(t->t.mask + 1);
184 /* --- Finished that, so return the new symbol block --- */
189 /* --- @sym_remove@ --- *
191 * Arguments: @sym_table *t@ = pointer to a symbol table object
192 * @void *p@ = pointer to symbol table entry
196 * Use: Removes the object from the symbol table. The space occupied
197 * by the object and its name is freed; anything else attached
198 * to the entry should already be gone by this point.
201 void sym_remove(sym_table *t, void *p)
204 hash_remove(&t->t, &q->b);
209 /* --- @sym_mkiter@ --- *
211 * Arguments: @sym_iter *i@ = pointer to an iterator object
212 * @sym_table *t@ = pointer to a symbol table object
216 * Use: Creates a new symbol table iterator which may be used to
217 * iterate through a symbol table.
220 void sym_mkiter(sym_iter *i, sym_table *t) { SYM_MKITER(i, t); }
222 /* --- @sym_next@ --- *
224 * Arguments: @sym_iter *i@ = pointer to iterator object
226 * Returns: Pointer to the next symbol found, or null when finished.
228 * Use: Returns the next symbol from the table. Symbols are not
229 * returned in any particular order.
232 void *sym_next(sym_iter *i)
239 /*----- That's all, folks -------------------------------------------------*/