1997-09-17 03:25:59 +08:00
|
|
|
/*
|
2009-12-17 23:46:44 +08:00
|
|
|
** $Id: lstring.c,v 2.15 2009/12/11 21:31:14 roberto Exp roberto $
|
1997-12-09 21:50:08 +08:00
|
|
|
** String table (keeps all strings handled by Lua)
|
1997-09-17 03:25:59 +08:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2002-12-05 01:38:31 +08:00
|
|
|
#define lstring_c
|
2004-05-01 04:13:38 +08:00
|
|
|
#define LUA_CORE
|
2002-12-05 01:38:31 +08:00
|
|
|
|
2000-06-12 21:52:05 +08:00
|
|
|
#include "lua.h"
|
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
#include "lmem.h"
|
|
|
|
#include "lobject.h"
|
1997-11-20 01:29:23 +08:00
|
|
|
#include "lstate.h"
|
1997-09-17 03:25:59 +08:00
|
|
|
#include "lstring.h"
|
|
|
|
|
|
|
|
|
1997-09-26 23:02:26 +08:00
|
|
|
|
2001-06-07 02:00:19 +08:00
|
|
|
void luaS_resize (lua_State *L, int newsize) {
|
1997-09-17 03:25:59 +08:00
|
|
|
int i;
|
2009-04-30 01:09:41 +08:00
|
|
|
stringtable *tb = &G(L)->strt;
|
2009-12-12 03:14:59 +08:00
|
|
|
/* cannot resize while GC is traversing strings */
|
2009-12-12 05:31:14 +08:00
|
|
|
luaC_runtilstate(L, ~bitmask(GCSsweepstring));
|
2009-04-30 01:09:41 +08:00
|
|
|
if (newsize > tb->size) {
|
|
|
|
luaM_reallocvector(L, tb->hash, tb->size, newsize, GCObject *);
|
|
|
|
for (i = tb->size; i < newsize; i++) tb->hash[i] = NULL;
|
|
|
|
}
|
1997-09-17 03:25:59 +08:00
|
|
|
/* rehash */
|
|
|
|
for (i=0; i<tb->size; i++) {
|
2002-08-31 03:09:21 +08:00
|
|
|
GCObject *p = tb->hash[i];
|
2009-04-30 01:09:41 +08:00
|
|
|
tb->hash[i] = NULL;
|
1999-10-12 00:13:42 +08:00
|
|
|
while (p) { /* for each node in the list */
|
2008-02-20 02:55:09 +08:00
|
|
|
GCObject *next = gch(p)->next; /* save next */
|
2009-04-30 01:09:41 +08:00
|
|
|
unsigned int h = lmod(gco2ts(p)->hash, newsize); /* new position */
|
|
|
|
gch(p)->next = tb->hash[h]; /* chain it */
|
|
|
|
tb->hash[h] = p;
|
1999-10-12 00:13:42 +08:00
|
|
|
p = next;
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
}
|
2009-04-30 01:09:41 +08:00
|
|
|
if (newsize < tb->size) {
|
|
|
|
/* shrinking slice must be empty */
|
|
|
|
lua_assert(tb->hash[newsize] == NULL && tb->hash[tb->size - 1] == NULL);
|
|
|
|
luaM_reallocvector(L, tb->hash, tb->size, newsize, GCObject *);
|
|
|
|
}
|
1999-11-27 02:59:20 +08:00
|
|
|
tb->size = newsize;
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-29 03:26:16 +08:00
|
|
|
static TString *newlstr (lua_State *L, const char *str, size_t l,
|
|
|
|
unsigned int h) {
|
2009-12-17 23:46:44 +08:00
|
|
|
size_t totalsize; /* total size of TString object */
|
|
|
|
GCObject **list; /* (pointer to) list where it will be inserted */
|
2004-11-19 23:52:40 +08:00
|
|
|
TString *ts;
|
2006-07-11 23:53:29 +08:00
|
|
|
stringtable *tb = &G(L)->strt;
|
2004-11-19 23:52:40 +08:00
|
|
|
if (l+1 > (MAX_SIZET - sizeof(TString))/sizeof(char))
|
|
|
|
luaM_toobig(L);
|
2006-07-11 23:53:29 +08:00
|
|
|
if (tb->nuse >= cast(lu_int32, tb->size) && tb->size <= MAX_INT/2)
|
|
|
|
luaS_resize(L, tb->size*2); /* too crowded */
|
2009-12-17 23:46:44 +08:00
|
|
|
totalsize = sizeof(TString) + ((l + 1) * sizeof(char));
|
|
|
|
list = &tb->hash[lmod(h, tb->size)];
|
|
|
|
ts = &luaC_newobj(L, LUA_TSTRING, totalsize, list, 0)->ts;
|
2001-06-16 04:36:57 +08:00
|
|
|
ts->tsv.len = l;
|
|
|
|
ts->tsv.hash = h;
|
2002-08-16 22:45:55 +08:00
|
|
|
ts->tsv.reserved = 0;
|
2002-02-09 06:41:09 +08:00
|
|
|
memcpy(ts+1, str, l*sizeof(char));
|
|
|
|
((char *)(ts+1))[l] = '\0'; /* ending 0 */
|
2001-06-07 23:01:21 +08:00
|
|
|
tb->nuse++;
|
|
|
|
return ts;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-29 04:13:13 +08:00
|
|
|
TString *luaS_newlstr (lua_State *L, const char *str, size_t l) {
|
2002-11-13 19:32:26 +08:00
|
|
|
GCObject *o;
|
2003-04-29 03:26:16 +08:00
|
|
|
unsigned int h = cast(unsigned int, l); /* seed */
|
2001-01-11 01:41:50 +08: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-25 03:16:03 +08:00
|
|
|
h = h ^ ((h<<5)+(h>>2)+cast(unsigned char, str[l1-1]));
|
2002-11-13 19:32:26 +08:00
|
|
|
for (o = G(L)->strt.hash[lmod(h, G(L)->strt.size)];
|
|
|
|
o != NULL;
|
2008-02-20 02:55:09 +08:00
|
|
|
o = gch(o)->next) {
|
2003-12-10 20:13:36 +08:00
|
|
|
TString *ts = rawgco2ts(o);
|
2007-11-10 02:55:07 +08:00
|
|
|
if (h == ts->tsv.hash && ts->tsv.len == l &&
|
|
|
|
(memcmp(str, getstr(ts), l) == 0)) {
|
2009-04-30 01:09:41 +08:00
|
|
|
if (isdead(G(L), o)) /* string is dead (but was not collected yet)? */
|
|
|
|
changewhite(o); /* resurrect it */
|
2002-11-13 19:32:26 +08:00
|
|
|
return ts;
|
2003-12-10 00:56:11 +08:00
|
|
|
}
|
1999-11-05 01:23:12 +08:00
|
|
|
}
|
2009-04-30 01:09:41 +08:00
|
|
|
return newlstr(L, str, l, h); /* not found; create a new string */
|
1998-03-07 00:54:42 +08:00
|
|
|
}
|
|
|
|
|
1999-02-09 00:28:48 +08:00
|
|
|
|
2005-02-18 20:40:02 +08:00
|
|
|
Udata *luaS_newudata (lua_State *L, size_t s, Table *e) {
|
2001-12-06 04:15:18 +08:00
|
|
|
Udata *u;
|
2004-11-19 23:52:40 +08:00
|
|
|
if (s > MAX_SIZET - sizeof(Udata))
|
|
|
|
luaM_toobig(L);
|
2009-12-17 23:46:44 +08:00
|
|
|
u = &luaC_newobj(L, LUA_TUSERDATA, sizeof(Udata) + s, NULL, 0)->u;
|
2001-06-16 04:36:57 +08:00
|
|
|
u->uv.len = s;
|
2003-12-02 02:22:56 +08:00
|
|
|
u->uv.metatable = NULL;
|
2005-02-18 20:40:02 +08:00
|
|
|
u->uv.env = e;
|
2001-06-07 02:00:19 +08:00
|
|
|
return u;
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|