| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- /*
- ** $Id: lstring.c,v 1.21 1999/09/28 12:27:06 roberto Exp roberto $
- ** String table (keeps all strings handled by Lua)
- ** See Copyright Notice in lua.h
- */
- #include <string.h>
- #include "lmem.h"
- #include "lobject.h"
- #include "lstate.h"
- #include "lstring.h"
- #include "lua.h"
- #define gcsizestring(l) (1+(l/64)) /* "weight" for a string with length 'l' */
- TaggedString luaS_EMPTY = {NULL, MAX_INT, 0L, 0,
- {{{LUA_T_NIL, {NULL}}, 0L}}, {0}};
- /*
- ** to avoid hash tables with size = 0 (cannot hash with size=0), all
- ** hash tables are initialized with this `array'. Elements are never
- ** written here, because this table (with size=1) must grow to get an
- ** element, and before it grows we replace it for a `real' table.
- **
- */
- static TaggedString *init_hash[1] = {NULL};
- void luaS_init (void) {
- int i;
- L->string_root = luaM_newvector(NUM_HASHS, stringtable);
- for (i=0; i<NUM_HASHS; i++) {
- L->string_root[i].size = 1;
- L->string_root[i].nuse = 0;
- L->string_root[i].hash = init_hash;
- }
- }
- void luaS_freeall (void) {
- int i;
- for (i=0; i<NUM_HASHS; i++) {
- if (L->string_root[i].hash != init_hash)
- luaM_free(L->string_root[i].hash);
- }
- luaM_free(L->string_root);
- }
- static unsigned long hash_s (const char *s, long l) {
- unsigned long h = 0; /* seed */
- while (l--)
- h = h ^ ((h<<5)+(h>>2)+(unsigned char)*(s++));
- return h;
- }
- static int newsize (const stringtable *tb) {
- int realuse = 0;
- int i;
- /* count how many entries are really in use */
- for (i=0; i<tb->size; i++) {
- if (tb->hash[i] != NULL && tb->hash[i] != &luaS_EMPTY)
- realuse++;
- }
- return luaO_redimension(realuse*2);
- }
- static void grow (stringtable *tb) {
- int ns = newsize(tb);
- TaggedString **newhash = luaM_newvector(ns, TaggedString *);
- int i;
- for (i=0; i<ns; i++)
- newhash[i] = NULL;
- /* rehash */
- tb->nuse = 0;
- for (i=0; i<tb->size; i++) {
- if (tb->hash[i] != NULL && tb->hash[i] != &luaS_EMPTY) {
- unsigned long h = tb->hash[i]->hash;
- int h1 = h%ns;
- while (newhash[h1]) {
- h1 += (h&(ns-2)) + 1; /* double hashing */
- if (h1 >= ns) h1 -= ns;
- }
- newhash[h1] = tb->hash[i];
- tb->nuse++;
- }
- }
- luaM_free(tb->hash);
- tb->size = ns;
- tb->hash = newhash;
- }
- static TaggedString *newone_s (const char *str, long l, unsigned long h) {
- TaggedString *ts = (TaggedString *)luaM_malloc(sizeof(TaggedString)+l);
- memcpy(ts->str, str, l);
- ts->str[l] = 0; /* ending 0 */
- ts->u.s.globalval.ttype = LUA_T_NIL; /* initialize global value */
- ts->u.s.len = l;
- ts->constindex = 0;
- L->nblocks += gcsizestring(l);
- ts->marked = 0;
- ts->next = ts; /* signal it is in no list */
- ts->hash = h;
- return ts;
- }
- static TaggedString *newone_u (void *buff, int tag, unsigned long h) {
- TaggedString *ts = luaM_new(TaggedString);
- ts->u.d.v = buff;
- ts->u.d.tag = (tag == LUA_ANYTAG) ? 0 : tag;
- ts->constindex = -1; /* tag -> this is a userdata */
- L->nblocks++;
- ts->marked = 0;
- ts->next = ts; /* signal it is in no list */
- ts->hash = h;
- return ts;
- }
- static void newentry (stringtable *tb, TaggedString *ts, int h1) {
- tb->nuse++;
- if ((long)tb->nuse*3 < (long)tb->size*2) /* still have room? */
- tb->hash[h1] = ts;
- else { /* must grow */
- if (tb->hash == init_hash) { /* cannot change init_hash */
- LUA_ASSERT(h1==0, "`init_hash' has size 1");
- tb->hash = luaM_newvector(1, TaggedString *); /* so, `clone' it */
- }
- tb->hash[h1] = ts;
- grow(tb);
- }
- }
- static TaggedString *insert_s (const char *str, long l, stringtable *tb) {
- TaggedString *ts;
- unsigned long h = hash_s(str, l);
- int size = tb->size;
- int j = -1; /* last empty place found (or -1) */
- int h1 = h%size;
- while ((ts = tb->hash[h1]) != NULL) {
- if (ts == &luaS_EMPTY)
- j = h1;
- else if (ts->u.s.len == l && (memcmp(str, ts->str, l) == 0))
- return ts;
- h1 += (h&(size-2)) + 1; /* double hashing */
- if (h1 >= size) h1 -= size;
- }
- /* not found */
- ts = newone_s(str, l, h); /* create new entry */
- if (j != -1) /* is there an EMPTY space? */
- tb->hash[j] = ts; /* use it for new element */
- else
- newentry(tb, ts, h1); /* no EMPTY places; must use a virgin one */
- return ts;
- }
- static TaggedString *insert_u (void *buff, int tag, stringtable *tb) {
- TaggedString *ts;
- unsigned long h = (unsigned long)buff;
- int size = tb->size;
- int j = -1;
- int h1 = h%size;
- while ((ts = tb->hash[h1]) != NULL) {
- if (ts == &luaS_EMPTY)
- j = h1;
- else if ((tag == ts->u.d.tag || tag == LUA_ANYTAG) && buff == ts->u.d.v)
- return ts;
- h1 += (h&(size-2)) + 1;
- if (h1 >= size) h1 -= size;
- }
- ts = newone_u(buff, tag, h);
- if (j != -1)
- tb->hash[j] = ts;
- else
- newentry(tb, ts, h1);
- return ts;
- }
- TaggedString *luaS_createudata (void *udata, int tag) {
- int t = ((unsigned int)udata%NUM_HASHUDATA)+NUM_HASHSTR;
- return insert_u(udata, tag, &L->string_root[t]);
- }
- TaggedString *luaS_newlstr (const char *str, long l) {
- int t = (l==0) ? 0 : ((int)((unsigned char)str[0]+l))%NUM_HASHSTR;
- return insert_s(str, l, &L->string_root[t]);
- }
- TaggedString *luaS_new (const char *str) {
- return luaS_newlstr(str, strlen(str));
- }
- TaggedString *luaS_newfixedstring (const char *str) {
- TaggedString *ts = luaS_new(str);
- if (ts->marked == 0) ts->marked = 2; /* avoid GC */
- return ts;
- }
- void luaS_free (TaggedString *t) {
- L->nblocks -= (t->constindex == -1) ? 1 : gcsizestring(t->u.s.len);
- luaM_free(t);
- }
- void luaS_rawsetglobal (TaggedString *ts, const TObject *newval) {
- ts->u.s.globalval = *newval;
- if (ts->next == ts) { /* is not in list? */
- ts->next = L->rootglobal;
- L->rootglobal = ts;
- }
- }
- int luaS_globaldefined (const char *name) {
- TaggedString *ts = luaS_new(name);
- return ts->u.s.globalval.ttype != LUA_T_NIL;
- }
|