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