1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2001-02-09 12:29:33 -08:00
|
|
|
** $Id: lstring.c,v 1.57 2001/02/09 20:22:29 roberto Exp roberto $
|
1997-12-09 05:50:08 -08:00
|
|
|
** String table (keeps all strings handled by Lua)
|
1997-09-16 12:25:59 -07:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2000-06-12 06:52:05 -07:00
|
|
|
#include "lua.h"
|
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
#include "lmem.h"
|
|
|
|
#include "lobject.h"
|
1997-11-19 09:29:23 -08:00
|
|
|
#include "lstate.h"
|
1997-09-16 12:25:59 -07:00
|
|
|
#include "lstring.h"
|
|
|
|
|
|
|
|
|
1997-09-26 08:02:26 -07:00
|
|
|
|
1999-11-22 05:12:07 -08:00
|
|
|
void luaS_init (lua_State *L) {
|
2001-01-19 05:20:30 -08:00
|
|
|
luaS_resize(L, &G(L)->strt, MINPOWER2);
|
|
|
|
luaS_resize(L, &G(L)->udt, MINPOWER2);
|
1997-11-04 07:27:53 -08:00
|
|
|
}
|
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
|
1999-11-22 05:12:07 -08:00
|
|
|
void luaS_freeall (lua_State *L) {
|
2001-01-19 05:20:30 -08:00
|
|
|
lua_assert(G(L)->strt.nuse==0);
|
|
|
|
luaM_freearray(L, G(L)->strt.hash, G(L)->strt.size, TString *);
|
|
|
|
lua_assert(G(L)->udt.nuse==0);
|
|
|
|
luaM_freearray(L, G(L)->udt.hash, G(L)->udt.size, TString *);
|
1999-10-04 10:51:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-26 10:59:20 -08:00
|
|
|
void luaS_resize (lua_State *L, stringtable *tb, int newsize) {
|
2000-03-10 10:37:44 -08:00
|
|
|
TString **newhash = luaM_newvector(L, newsize, TString *);
|
1997-09-16 12:25:59 -07:00
|
|
|
int i;
|
1999-11-26 10:59:20 -08:00
|
|
|
for (i=0; i<newsize; i++) newhash[i] = NULL;
|
1997-09-16 12:25:59 -07:00
|
|
|
/* rehash */
|
|
|
|
for (i=0; i<tb->size; i++) {
|
2000-03-10 10:37:44 -08:00
|
|
|
TString *p = tb->hash[i];
|
1999-10-11 09:13:42 -07:00
|
|
|
while (p) { /* for each node in the list */
|
2000-03-10 10:37:44 -08:00
|
|
|
TString *next = p->nexthash; /* save next */
|
2001-01-19 05:20:30 -08:00
|
|
|
luint32 h = (tb == &G(L)->strt) ? p->u.s.hash : IntPoint(p->u.d.value);
|
2001-01-10 09:41:50 -08:00
|
|
|
int h1 = lmod(h, newsize); /* new position */
|
2001-01-19 05:20:30 -08:00
|
|
|
lua_assert((int)(h%newsize) == lmod(h, newsize));
|
2000-05-08 12:32:53 -07:00
|
|
|
p->nexthash = newhash[h1]; /* chain it in new position */
|
|
|
|
newhash[h1] = p;
|
1999-10-11 09:13:42 -07:00
|
|
|
p = next;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
}
|
2000-12-28 04:55:41 -08:00
|
|
|
luaM_freearray(L, tb->hash, tb->size, TString *);
|
1999-11-26 10:59:20 -08:00
|
|
|
tb->size = newsize;
|
1997-09-16 12:25:59 -07:00
|
|
|
tb->hash = newhash;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-10 10:37:44 -08:00
|
|
|
static void newentry (lua_State *L, stringtable *tb, TString *ts, int h) {
|
1999-10-11 09:13:42 -07:00
|
|
|
ts->nexthash = tb->hash[h]; /* chain new entry */
|
|
|
|
tb->hash[h] = ts;
|
1999-11-22 10:24:50 -08:00
|
|
|
tb->nuse++;
|
2000-11-24 09:39:56 -08:00
|
|
|
if (tb->nuse > (luint32)tb->size && tb->size < MAX_INT/2) /* too crowded? */
|
1999-11-26 10:59:20 -08:00
|
|
|
luaS_resize(L, tb, tb->size*2);
|
1999-09-28 05:27:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-10 09:33:20 -07:00
|
|
|
|
2000-05-24 06:54:49 -07:00
|
|
|
TString *luaS_newlstr (lua_State *L, const char *str, size_t l) {
|
2000-03-10 10:37:44 -08:00
|
|
|
TString *ts;
|
2001-01-10 09:41:50 -08:00
|
|
|
luint32 h = l; /* seed */
|
|
|
|
size_t step = (l>>5)+1; /* if string is too long, don't hash all its chars */
|
|
|
|
size_t l1;
|
|
|
|
for (l1=l; l1>=step; l1-=step) /* compute hash */
|
|
|
|
h = h ^ ((h<<5)+(h>>2)+(unsigned char)str[l1-1]);
|
2001-01-19 05:20:30 -08:00
|
|
|
for (ts = G(L)->strt.hash[lmod(h, G(L)->strt.size)]; ts; ts = ts->nexthash) {
|
2001-02-09 12:22:29 -08:00
|
|
|
if (ts->len == l && (memcmp(str, getstr(ts), l) == 0))
|
1999-02-08 08:28:48 -08:00
|
|
|
return ts;
|
1999-11-04 09:23:12 -08:00
|
|
|
}
|
1998-03-06 08:54:42 -08:00
|
|
|
/* not found */
|
2000-09-29 05:42:13 -07:00
|
|
|
ts = (TString *)luaM_malloc(L, sizestring(l));
|
2000-05-10 09:33:20 -07:00
|
|
|
ts->marked = 0;
|
|
|
|
ts->nexthash = NULL;
|
2000-10-26 05:47:05 -07:00
|
|
|
ts->len = l;
|
2000-05-10 09:33:20 -07:00
|
|
|
ts->u.s.hash = h;
|
|
|
|
ts->u.s.constindex = 0;
|
2001-02-09 12:22:29 -08:00
|
|
|
memcpy(getstr(ts), str, l);
|
|
|
|
getstr(ts)[l] = 0; /* ending 0 */
|
2001-01-19 05:20:30 -08:00
|
|
|
newentry(L, &G(L)->strt, ts, lmod(h, G(L)->strt.size)); /* insert it */
|
1998-03-06 08:54:42 -08:00
|
|
|
return ts;
|
|
|
|
}
|
|
|
|
|
1999-02-08 08:28:48 -08:00
|
|
|
|
2000-10-26 05:47:05 -07:00
|
|
|
TString *luaS_newudata (lua_State *L, size_t s, void *udata) {
|
2001-02-09 12:29:33 -08:00
|
|
|
TString *ts = (TString *)luaM_malloc(L, sizeudata(s));
|
2000-10-26 05:47:05 -07:00
|
|
|
ts->marked = 0;
|
|
|
|
ts->nexthash = NULL;
|
|
|
|
ts->len = s;
|
|
|
|
ts->u.d.tag = 0;
|
2001-02-09 12:29:33 -08:00
|
|
|
ts->u.d.value = (s > 0) ? getstr(ts) : udata;
|
2000-12-28 04:55:41 -08:00
|
|
|
/* insert it on table */
|
2001-01-19 05:20:30 -08:00
|
|
|
newentry(L, &G(L)->udt, ts, lmod(IntPoint(ts->u.d.value), G(L)->udt.size));
|
2000-10-26 05:47:05 -07:00
|
|
|
return ts;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-09 11:53:16 -08:00
|
|
|
int luaS_createudata (lua_State *L, void *udata, TObject *o) {
|
2001-01-19 05:20:30 -08:00
|
|
|
int h1 = lmod(IntPoint(udata), G(L)->udt.size);
|
2000-03-10 10:37:44 -08:00
|
|
|
TString *ts;
|
2001-01-19 05:20:30 -08:00
|
|
|
for (ts = G(L)->udt.hash[h1]; ts; ts = ts->nexthash) {
|
2001-02-09 11:53:16 -08:00
|
|
|
if (udata == ts->u.d.value) {
|
|
|
|
setuvalue(o, ts);
|
|
|
|
return 0;
|
|
|
|
}
|
1999-11-04 09:23:12 -08:00
|
|
|
}
|
1999-10-11 09:13:42 -07:00
|
|
|
/* not found */
|
2001-02-09 11:53:16 -08:00
|
|
|
setuvalue(o, luaS_newudata(L, 0, udata));
|
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|