1997-09-16 16:25:59 -03:00
|
|
|
/*
|
2008-02-19 15:55:09 -03:00
|
|
|
** $Id: lstring.c,v 2.10 2007/11/09 18:55:07 roberto Exp roberto $
|
1997-12-09 11:50:08 -02:00
|
|
|
** String table (keeps all strings handled by Lua)
|
1997-09-16 16:25:59 -03:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2002-12-04 15:38:31 -02:00
|
|
|
#define lstring_c
|
2004-04-30 17:13:38 -03:00
|
|
|
#define LUA_CORE
|
2002-12-04 15:38:31 -02:00
|
|
|
|
2000-06-12 10:52:05 -03:00
|
|
|
#include "lua.h"
|
|
|
|
|
1997-09-16 16:25:59 -03:00
|
|
|
#include "lmem.h"
|
|
|
|
#include "lobject.h"
|
1997-11-19 15:29:23 -02:00
|
|
|
#include "lstate.h"
|
1997-09-16 16:25:59 -03:00
|
|
|
#include "lstring.h"
|
|
|
|
|
|
|
|
|
1997-09-26 12:02:26 -03:00
|
|
|
|
2001-06-06 15:00:19 -03:00
|
|
|
void luaS_resize (lua_State *L, int newsize) {
|
2003-12-04 15:22:42 -02:00
|
|
|
GCObject **newhash;
|
|
|
|
stringtable *tb;
|
1997-09-16 16:25:59 -03:00
|
|
|
int i;
|
2004-08-24 17:12:06 -03:00
|
|
|
if (G(L)->gcstate == GCSsweepstring)
|
|
|
|
return; /* cannot resize during GC traverse */
|
2003-12-04 15:22:42 -02:00
|
|
|
newhash = luaM_newvector(L, newsize, GCObject *);
|
|
|
|
tb = &G(L)->strt;
|
1999-11-26 16:59:20 -02:00
|
|
|
for (i=0; i<newsize; i++) newhash[i] = NULL;
|
1997-09-16 16:25:59 -03:00
|
|
|
/* rehash */
|
|
|
|
for (i=0; i<tb->size; i++) {
|
2002-08-30 16:09:21 -03:00
|
|
|
GCObject *p = tb->hash[i];
|
1999-10-11 14:13:42 -02:00
|
|
|
while (p) { /* for each node in the list */
|
2008-02-19 15:55:09 -03:00
|
|
|
GCObject *next = gch(p)->next; /* save next */
|
2003-12-10 10:13:36 -02:00
|
|
|
unsigned int h = gco2ts(p)->hash;
|
2001-01-10 15:41:50 -02:00
|
|
|
int h1 = lmod(h, newsize); /* new position */
|
2005-12-22 14:19:56 -02:00
|
|
|
lua_assert(cast_int(h%newsize) == lmod(h, newsize));
|
2008-02-19 15:55:09 -03:00
|
|
|
gch(p)->next = newhash[h1]; /* chain it */
|
2000-05-08 16:32:53 -03:00
|
|
|
newhash[h1] = p;
|
1999-10-11 14:13:42 -02:00
|
|
|
p = next;
|
1997-09-16 16:25:59 -03:00
|
|
|
}
|
|
|
|
}
|
2000-12-28 10:55:41 -02:00
|
|
|
luaM_freearray(L, tb->hash, tb->size, TString *);
|
1999-11-26 16:59:20 -02:00
|
|
|
tb->size = newsize;
|
1997-09-16 16:25:59 -03:00
|
|
|
tb->hash = newhash;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-28 16:26:16 -03:00
|
|
|
static TString *newlstr (lua_State *L, const char *str, size_t l,
|
|
|
|
unsigned int h) {
|
2004-11-19 13:52:40 -02:00
|
|
|
TString *ts;
|
2006-07-11 12:53:29 -03:00
|
|
|
stringtable *tb = &G(L)->strt;
|
2004-11-19 13:52:40 -02:00
|
|
|
if (l+1 > (MAX_SIZET - sizeof(TString))/sizeof(char))
|
|
|
|
luaM_toobig(L);
|
2006-07-11 12:53:29 -03:00
|
|
|
if (tb->nuse >= cast(lu_int32, tb->size) && tb->size <= MAX_INT/2)
|
|
|
|
luaS_resize(L, tb->size*2); /* too crowded */
|
2004-11-19 13:52:40 -02:00
|
|
|
ts = cast(TString *, luaM_malloc(L, (l+1)*sizeof(char)+sizeof(TString)));
|
2001-06-15 17:36:57 -03:00
|
|
|
ts->tsv.len = l;
|
|
|
|
ts->tsv.hash = h;
|
2003-12-03 18:03:07 -02:00
|
|
|
ts->tsv.marked = luaC_white(G(L));
|
2002-08-30 16:09:21 -03:00
|
|
|
ts->tsv.tt = LUA_TSTRING;
|
2002-08-16 11:45:55 -03:00
|
|
|
ts->tsv.reserved = 0;
|
2002-02-08 20:41:09 -02:00
|
|
|
memcpy(ts+1, str, l*sizeof(char));
|
|
|
|
((char *)(ts+1))[l] = '\0'; /* ending 0 */
|
2001-06-07 12:01:21 -03:00
|
|
|
h = lmod(h, tb->size);
|
2002-08-30 16:09:21 -03:00
|
|
|
ts->tsv.next = tb->hash[h]; /* chain new entry */
|
2003-12-10 10:13:36 -02:00
|
|
|
tb->hash[h] = obj2gco(ts);
|
2001-06-07 12:01:21 -03:00
|
|
|
tb->nuse++;
|
|
|
|
return ts;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-28 18:13:13 -02:00
|
|
|
TString *luaS_newlstr (lua_State *L, const char *str, size_t l) {
|
2002-11-13 09:32:26 -02:00
|
|
|
GCObject *o;
|
2003-04-28 16:26:16 -03:00
|
|
|
unsigned int h = cast(unsigned int, l); /* seed */
|
2001-01-10 15:41:50 -02:00
|
|
|
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 */
|
2004-11-24 17:16:03 -02:00
|
|
|
h = h ^ ((h<<5)+(h>>2)+cast(unsigned char, str[l1-1]));
|
2002-11-13 09:32:26 -02:00
|
|
|
for (o = G(L)->strt.hash[lmod(h, G(L)->strt.size)];
|
|
|
|
o != NULL;
|
2008-02-19 15:55:09 -03:00
|
|
|
o = gch(o)->next) {
|
2003-12-10 10:13:36 -02:00
|
|
|
TString *ts = rawgco2ts(o);
|
2007-11-09 16:55:07 -02:00
|
|
|
if (h == ts->tsv.hash && ts->tsv.len == l &&
|
|
|
|
(memcmp(str, getstr(ts), l) == 0)) {
|
2003-12-09 14:56:11 -02:00
|
|
|
/* string may be dead */
|
|
|
|
if (isdead(G(L), o)) changewhite(o);
|
2002-11-13 09:32:26 -02:00
|
|
|
return ts;
|
2003-12-09 14:56:11 -02:00
|
|
|
}
|
1999-11-04 15:23:12 -02:00
|
|
|
}
|
2001-06-07 12:01:21 -03:00
|
|
|
return newlstr(L, str, l, h); /* not found */
|
1998-03-06 13:54:42 -03:00
|
|
|
}
|
|
|
|
|
1999-02-08 14:28:48 -02:00
|
|
|
|
2005-02-18 10:40:02 -02:00
|
|
|
Udata *luaS_newudata (lua_State *L, size_t s, Table *e) {
|
2001-12-05 18:15:18 -02:00
|
|
|
Udata *u;
|
2004-11-19 13:52:40 -02:00
|
|
|
if (s > MAX_SIZET - sizeof(Udata))
|
|
|
|
luaM_toobig(L);
|
|
|
|
u = cast(Udata *, luaM_malloc(L, s + sizeof(Udata)));
|
2008-02-19 15:55:09 -03:00
|
|
|
luaC_link(L, obj2gco(u), LUA_TUSERDATA);
|
2001-06-15 17:36:57 -03:00
|
|
|
u->uv.len = s;
|
2003-12-01 16:22:56 -02:00
|
|
|
u->uv.metatable = NULL;
|
2005-02-18 10:40:02 -02:00
|
|
|
u->uv.env = e;
|
2001-06-06 15:00:19 -03:00
|
|
|
return u;
|
1997-09-16 16:25:59 -03:00
|
|
|
}
|
|
|
|
|