1997-09-17 03:25:59 +08:00
|
|
|
/*
|
1999-01-25 20:30:11 +08:00
|
|
|
** $Id: ltable.c,v 1.18 1999/01/22 18:47:23 roberto Exp roberto $
|
1997-09-17 03:25:59 +08:00
|
|
|
** Lua tables (hash)
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "lauxlib.h"
|
|
|
|
#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 "ltable.h"
|
|
|
|
#include "lua.h"
|
|
|
|
|
|
|
|
|
1997-10-24 00:26:37 +08:00
|
|
|
#define gcsize(n) (1+(n/16))
|
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
#define nuse(t) ((t)->nuse)
|
|
|
|
#define nodevector(t) ((t)->node)
|
|
|
|
|
|
|
|
|
|
|
|
#define TagDefault LUA_T_ARRAY;
|
|
|
|
|
|
|
|
|
|
|
|
|
1999-01-23 02:47:23 +08:00
|
|
|
static long int hashindex (TObject *ref) {
|
1997-09-17 03:25:59 +08:00
|
|
|
long int h;
|
|
|
|
switch (ttype(ref)) {
|
|
|
|
case LUA_T_NUMBER:
|
|
|
|
h = (long int)nvalue(ref);
|
|
|
|
break;
|
|
|
|
case LUA_T_STRING: case LUA_T_USERDATA:
|
|
|
|
h = (IntPoint)tsvalue(ref);
|
|
|
|
break;
|
1998-01-09 22:44:55 +08:00
|
|
|
case LUA_T_ARRAY:
|
|
|
|
h = (IntPoint)avalue(ref);
|
1997-09-17 03:25:59 +08:00
|
|
|
break;
|
1997-12-16 00:17:20 +08:00
|
|
|
case LUA_T_PROTO:
|
|
|
|
h = (IntPoint)tfvalue(ref);
|
|
|
|
break;
|
|
|
|
case LUA_T_CPROTO:
|
|
|
|
h = (IntPoint)fvalue(ref);
|
|
|
|
break;
|
1998-01-09 22:44:55 +08:00
|
|
|
case LUA_T_CLOSURE:
|
|
|
|
h = (IntPoint)clvalue(ref);
|
1997-09-17 03:25:59 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
lua_error("unexpected type to index table");
|
1997-12-09 21:50:08 +08:00
|
|
|
h = 0; /* to avoid warnings */
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
return (h >= 0 ? h : -(h+1));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-01-25 20:30:11 +08:00
|
|
|
Node *luaH_present (Hash *t, TObject *ref) {
|
1997-09-17 03:25:59 +08:00
|
|
|
int tsize = nhash(t);
|
1999-01-25 20:30:11 +08:00
|
|
|
long int h = hashindex(ref);
|
1997-09-17 03:25:59 +08:00
|
|
|
int h1 = h%tsize;
|
1999-01-23 02:47:23 +08:00
|
|
|
Node *n = node(t, h1);
|
1999-01-25 20:30:11 +08:00
|
|
|
/* keep looking until an entry with "ref" equal to ref or nil */
|
|
|
|
if ((ttype(ref(n)) == ttype(ref) ? !luaO_equalval(ref, ref(n))
|
1999-01-23 02:47:23 +08:00
|
|
|
: ttype(ref(n)) != LUA_T_NIL)) {
|
1997-09-17 03:25:59 +08:00
|
|
|
int h2 = h%(tsize-2) + 1;
|
|
|
|
do {
|
1998-01-14 02:06:27 +08:00
|
|
|
h1 += h2;
|
|
|
|
if (h1 >= tsize) h1 -= tsize;
|
1999-01-23 02:47:23 +08:00
|
|
|
n = node(t, h1);
|
1999-01-25 20:30:11 +08:00
|
|
|
} while ((ttype(ref(n)) == ttype(ref) ? !luaO_equalval(ref, ref(n))
|
1999-01-23 02:47:23 +08:00
|
|
|
: ttype(ref(n)) != LUA_T_NIL));
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
1999-01-23 02:47:23 +08:00
|
|
|
return n;
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-01-23 02:47:23 +08:00
|
|
|
void luaH_free (Hash *frees) {
|
1997-09-17 03:25:59 +08:00
|
|
|
while (frees) {
|
|
|
|
Hash *next = (Hash *)frees->head.next;
|
1997-11-20 01:29:23 +08:00
|
|
|
L->nblocks -= gcsize(frees->nhash);
|
1999-01-23 02:47:23 +08:00
|
|
|
luaM_free(nodevector(frees));
|
|
|
|
luaM_free(frees);
|
1997-09-17 03:25:59 +08:00
|
|
|
frees = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-01-23 02:47:23 +08:00
|
|
|
static Node *hashnodecreate (int nhash) {
|
|
|
|
Node *v = luaM_newvector(nhash, Node);
|
|
|
|
int i;
|
|
|
|
for (i=0; i<nhash; i++)
|
1999-01-25 20:30:11 +08:00
|
|
|
ttype(ref(&v[i])) = ttype(val(&v[i])) = LUA_T_NIL;
|
1999-01-23 02:47:23 +08:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-08-12 00:38:34 +08:00
|
|
|
Hash *luaH_new (int nhash) {
|
1997-09-17 03:25:59 +08:00
|
|
|
Hash *t = luaM_new(Hash);
|
1998-08-12 00:38:34 +08:00
|
|
|
nhash = luaO_redimension(nhash*3/2);
|
1997-09-17 03:25:59 +08:00
|
|
|
nodevector(t) = hashnodecreate(nhash);
|
|
|
|
nhash(t) = nhash;
|
|
|
|
nuse(t) = 0;
|
|
|
|
t->htag = TagDefault;
|
1997-11-20 01:29:23 +08:00
|
|
|
luaO_insertlist(&(L->roottable), (GCnode *)t);
|
|
|
|
L->nblocks += gcsize(nhash);
|
1997-09-17 03:25:59 +08:00
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-08-11 05:36:32 +08:00
|
|
|
static int newsize (Hash *t) {
|
1998-01-29 00:50:33 +08:00
|
|
|
Node *v = t->node;
|
|
|
|
int size = nhash(t);
|
|
|
|
int realuse = 0;
|
1997-09-17 03:25:59 +08:00
|
|
|
int i;
|
1998-01-29 00:50:33 +08:00
|
|
|
for (i=0; i<size; i++) {
|
1999-01-25 20:30:11 +08:00
|
|
|
if (ttype(val(v+i)) != LUA_T_NIL)
|
1998-01-29 00:50:33 +08:00
|
|
|
realuse++;
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
1998-08-11 05:36:32 +08:00
|
|
|
return luaO_redimension((realuse+1)*2); /* +1 is the new element */
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
1999-01-23 02:47:23 +08:00
|
|
|
|
1998-08-12 00:38:34 +08:00
|
|
|
static void rehash (Hash *t) {
|
1998-01-29 00:50:33 +08:00
|
|
|
int nold = nhash(t);
|
1997-09-17 03:25:59 +08:00
|
|
|
Node *vold = nodevector(t);
|
1998-01-29 00:50:33 +08:00
|
|
|
int nnew = newsize(t);
|
1997-09-17 03:25:59 +08:00
|
|
|
int i;
|
1998-01-29 00:50:33 +08:00
|
|
|
nodevector(t) = hashnodecreate(nnew);
|
|
|
|
nhash(t) = nnew;
|
1998-08-12 00:38:34 +08:00
|
|
|
nuse(t) = 0;
|
1997-09-17 03:25:59 +08:00
|
|
|
for (i=0; i<nold; i++) {
|
|
|
|
Node *n = vold+i;
|
1999-01-25 20:30:11 +08:00
|
|
|
if (ttype(val(n)) != LUA_T_NIL) {
|
|
|
|
*luaH_present(t, ref(n)) = *n; /* copy old node to new hash */
|
1998-08-12 00:38:34 +08:00
|
|
|
nuse(t)++;
|
|
|
|
}
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
1998-01-29 00:50:33 +08:00
|
|
|
L->nblocks += gcsize(nnew)-gcsize(nold);
|
1997-09-17 03:25:59 +08:00
|
|
|
luaM_free(vold);
|
|
|
|
}
|
|
|
|
|
1999-01-23 02:47:23 +08:00
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
/*
|
1999-01-23 02:47:23 +08:00
|
|
|
** If the hash node is present, return its pointer, otherwise create a new
|
1997-09-17 03:25:59 +08:00
|
|
|
** node for the given reference and also return its pointer.
|
|
|
|
*/
|
1999-01-23 02:47:23 +08:00
|
|
|
TObject *luaH_set (Hash *t, TObject *ref) {
|
1999-01-25 20:30:11 +08:00
|
|
|
Node *n = luaH_present(t, ref);
|
1997-09-17 03:25:59 +08:00
|
|
|
if (ttype(ref(n)) == LUA_T_NIL) {
|
1998-08-12 00:38:34 +08:00
|
|
|
if ((long)nuse(t)*3L > (long)nhash(t)*2L) {
|
1997-09-17 03:25:59 +08:00
|
|
|
rehash(t);
|
1999-01-25 20:30:11 +08:00
|
|
|
n = luaH_present(t, ref);
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
1998-08-12 00:38:34 +08:00
|
|
|
nuse(t)++;
|
1997-09-17 03:25:59 +08:00
|
|
|
*ref(n) = *ref;
|
|
|
|
}
|
|
|
|
return (val(n));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-12-30 21:14:46 +08:00
|
|
|
static Node *hashnext (Hash *t, int i) {
|
1997-09-17 03:25:59 +08:00
|
|
|
Node *n;
|
|
|
|
int tsize = nhash(t);
|
|
|
|
if (i >= tsize)
|
|
|
|
return NULL;
|
|
|
|
n = node(t, i);
|
1999-01-25 20:30:11 +08:00
|
|
|
while (ttype(val(n)) == LUA_T_NIL) {
|
1997-09-17 03:25:59 +08:00
|
|
|
if (++i >= tsize)
|
|
|
|
return NULL;
|
|
|
|
n = node(t, i);
|
|
|
|
}
|
1999-01-23 02:47:23 +08:00
|
|
|
return n;
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
1998-12-30 21:14:46 +08:00
|
|
|
Node *luaH_next (Hash *t, TObject *r) {
|
1997-09-17 03:25:59 +08:00
|
|
|
if (ttype(r) == LUA_T_NIL)
|
|
|
|
return hashnext(t, 0);
|
|
|
|
else {
|
1999-01-25 20:30:11 +08:00
|
|
|
Node *n = luaH_present(t, r);
|
|
|
|
luaL_arg_check(ttype(val(n)) != LUA_T_NIL, 2, "key not found");
|
1999-01-23 02:47:23 +08:00
|
|
|
return hashnext(t, (n-(t->node))+1);
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
}
|
1998-07-13 00:15:19 +08:00
|
|
|
|
|
|
|
|
|
|
|
void luaH_setint (Hash *t, int ref, TObject *val) {
|
|
|
|
TObject index;
|
|
|
|
ttype(&index) = LUA_T_NUMBER;
|
|
|
|
nvalue(&index) = ref;
|
|
|
|
*(luaH_set(t, &index)) = *val;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TObject *luaH_getint (Hash *t, int ref) {
|
|
|
|
TObject index;
|
|
|
|
ttype(&index) = LUA_T_NUMBER;
|
|
|
|
nvalue(&index) = ref;
|
|
|
|
return luaH_get(t, &index);
|
|
|
|
}
|
|
|
|
|
1999-01-04 20:54:33 +08:00
|
|
|
|
|
|
|
void luaH_move (Hash *t, int from, int to) {
|
|
|
|
TObject index;
|
|
|
|
TObject *toadd;
|
|
|
|
ttype(&index) = LUA_T_NUMBER;
|
|
|
|
nvalue(&index) = to;
|
|
|
|
toadd = luaH_set(t, &index);
|
|
|
|
nvalue(&index) = from;
|
|
|
|
*toadd = *luaH_get(t, &index);
|
|
|
|
}
|