lua/lstring.c

133 lines
3.5 KiB
C
Raw Normal View History

/*
2000-08-09 21:16:57 +02:00
** $Id: lstring.c,v 1.41 2000/08/04 19:38:35 roberto Exp roberto $
1997-12-09 14:50:08 +01:00
** String table (keeps all strings handled by Lua)
** See Copyright Notice in lua.h
*/
#include <string.h>
#include "lua.h"
#include "lmem.h"
#include "lobject.h"
#include "lstate.h"
#include "lstring.h"
void luaS_init (lua_State *L) {
2000-05-10 18:33:20 +02:00
L->strt.hash = luaM_newvector(L, 1, TString *);
L->udt.hash = luaM_newvector(L, 1, TString *);
L->strt.size = L->udt.size = 1;
L->strt.nuse = L->udt.nuse = 0;
2000-05-10 18:33:20 +02:00
L->strt.hash[0] = L->udt.hash[0] = NULL;
}
void luaS_freeall (lua_State *L) {
2000-06-30 16:35:17 +02:00
LUA_ASSERT(L->strt.nuse==0, "non-empty string table");
2000-05-10 18:33:20 +02:00
luaM_free(L, L->strt.hash);
2000-06-30 16:35:17 +02:00
LUA_ASSERT(L->udt.nuse==0, "non-empty udata table");
2000-05-10 18:33:20 +02:00
luaM_free(L, L->udt.hash);
}
2000-05-24 15:54:49 +02:00
static unsigned long hash_s (const char *s, size_t l) {
unsigned long h = l; /* seed */
size_t step = (l>>5)|1; /* if string is too long, don't hash all its chars */
2000-05-24 15:54:49 +02:00
for (; l>=step; l-=step)
2000-03-10 15:38:10 +01:00
h = h ^ ((h<<5)+(h>>2)+(unsigned char)*(s++));
return h;
}
void luaS_resize (lua_State *L, stringtable *tb, int newsize) {
2000-03-10 19:37:44 +01:00
TString **newhash = luaM_newvector(L, newsize, TString *);
int i;
for (i=0; i<newsize; i++) newhash[i] = NULL;
/* rehash */
for (i=0; i<tb->size; i++) {
2000-03-10 19:37:44 +01:00
TString *p = tb->hash[i];
while (p) { /* for each node in the list */
2000-03-10 19:37:44 +01:00
TString *next = p->nexthash; /* save next */
2000-05-10 18:33:20 +02:00
unsigned long h = (tb == &L->strt) ? p->u.s.hash : IntPoint(p->u.d.value);
int h1 = h&(newsize-1); /* new position */
2000-06-30 16:35:17 +02:00
LUA_ASSERT(h%newsize == (h&(newsize-1)),
"a&(x-1) == a%x, for x power of 2");
p->nexthash = newhash[h1]; /* chain it in new position */
newhash[h1] = p;
p = next;
}
}
luaM_free(L, tb->hash);
tb->size = newsize;
tb->hash = newhash;
}
2000-03-10 19:37:44 +01:00
static void newentry (lua_State *L, stringtable *tb, TString *ts, int h) {
ts->nexthash = tb->hash[h]; /* chain new entry */
tb->hash[h] = ts;
1999-11-22 19:24:50 +01:00
tb->nuse++;
2000-05-24 15:54:49 +02:00
if (tb->nuse > (lint32)tb->size && tb->size < MAX_INT/2) /* too crowded? */
luaS_resize(L, tb, tb->size*2);
}
2000-05-10 18:33:20 +02:00
2000-05-24 15:54:49 +02:00
TString *luaS_newlstr (lua_State *L, const char *str, size_t l) {
unsigned long h = hash_s(str, l);
2000-05-10 18:33:20 +02:00
int h1 = h&(L->strt.size-1);
2000-03-10 19:37:44 +01:00
TString *ts;
2000-05-10 18:33:20 +02:00
for (ts = L->strt.hash[h1]; ts; ts = ts->nexthash) {
if (ts->u.s.len == l && (memcmp(str, ts->str, l) == 0))
return ts;
}
1998-03-06 17:54:42 +01:00
/* not found */
2000-05-24 15:54:49 +02:00
ts = (TString *)luaM_malloc(L, sizeof(TString)+(lint32)l*sizeof(char));
2000-05-10 18:33:20 +02:00
ts->marked = 0;
ts->nexthash = NULL;
ts->u.s.len = l;
ts->u.s.hash = h;
ts->u.s.constindex = 0;
memcpy(ts->str, str, l);
ts->str[l] = 0; /* ending 0 */
L->nblocks += gcsizestring(L, l);
newentry(L, &L->strt, ts, h1); /* insert it on table */
1998-03-06 17:54:42 +01:00
return ts;
}
2000-03-10 19:37:44 +01:00
TString *luaS_createudata (lua_State *L, void *udata, int tag) {
unsigned long h = IntPoint(udata);
2000-05-10 18:33:20 +02:00
int h1 = h&(L->udt.size-1);
2000-03-10 19:37:44 +01:00
TString *ts;
2000-05-10 18:33:20 +02:00
for (ts = L->udt.hash[h1]; ts; ts = ts->nexthash) {
if (udata == ts->u.d.value && (tag == ts->u.d.tag || tag == LUA_ANYTAG))
return ts;
}
/* not found */
2000-05-10 18:33:20 +02:00
ts = luaM_new(L, TString);
ts->marked = 0;
ts->nexthash = NULL;
ts->u.d.value = udata;
ts->u.d.tag = (tag == LUA_ANYTAG) ? 0 : tag;
L->nblocks += gcsizeudata;
newentry(L, &L->udt, ts, h1); /* insert it on table */
return ts;
}
2000-03-10 19:37:44 +01:00
TString *luaS_new (lua_State *L, const char *str) {
return luaS_newlstr(L, str, strlen(str));
}
2000-05-10 18:33:20 +02:00
2000-03-10 19:37:44 +01:00
TString *luaS_newfixed (lua_State *L, const char *str) {
TString *ts = luaS_new(L, str);
if (ts->marked == 0) ts->marked = FIXMARK; /* avoid GC */
return ts;
}