lua/ltable.c

172 lines
3.7 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: ltable.c,v 1.23 1999/08/16 20:52:00 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Lua tables (hash)
** See Copyright Notice in lua.h
*/
#include <stdlib.h>
#include "lauxlib.h"
#include "lmem.h"
#include "lobject.h"
#include "lstate.h"
1997-09-16 23:25:59 +04:00
#include "ltable.h"
#include "lua.h"
#define gcsize(n) (1+(n/16))
1997-09-16 23:25:59 +04:00
#define nuse(t) ((t)->nuse)
#define nodevector(t) ((t)->node)
#define TagDefault LUA_T_ARRAY;
1999-08-17 00:52:00 +04:00
static long int hashindex (const TObject *ref) {
1997-09-16 23:25:59 +04: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 17:44:55 +03:00
case LUA_T_ARRAY:
h = (IntPoint)avalue(ref);
1997-09-16 23:25:59 +04:00
break;
case LUA_T_PROTO:
h = (IntPoint)tfvalue(ref);
break;
case LUA_T_CPROTO:
h = (IntPoint)fvalue(ref);
break;
1998-01-09 17:44:55 +03:00
case LUA_T_CLOSURE:
h = (IntPoint)clvalue(ref);
1997-09-16 23:25:59 +04:00
break;
default:
lua_error("unexpected type to index table");
1997-12-09 16:50:08 +03:00
h = 0; /* to avoid warnings */
1997-09-16 23:25:59 +04:00
}
return (h >= 0 ? h : -(h+1));
}
1999-08-17 00:52:00 +04:00
Node *luaH_present (const Hash *t, const TObject *key) {
const int tsize = nhash(t);
const long int h = hashindex(key);
1997-09-16 23:25:59 +04:00
int h1 = h%tsize;
1999-01-22 21:47:23 +03:00
Node *n = node(t, h1);
/* keep looking until an entry with "ref" equal to key or nil */
while ((ttype(ref(n)) == ttype(key)) ? !luaO_equalval(key, ref(n))
: ttype(ref(n)) != LUA_T_NIL) {
h1 += (h&(tsize-2)) + 1; /* double hashing */
if (h1 >= tsize) h1 -= tsize;
n = node(t, h1);
1997-09-16 23:25:59 +04:00
}
1999-01-22 21:47:23 +03:00
return n;
1997-09-16 23:25:59 +04:00
}
1999-01-22 21:47:23 +03:00
void luaH_free (Hash *frees) {
1997-09-16 23:25:59 +04:00
while (frees) {
Hash *next = (Hash *)frees->head.next;
L->nblocks -= gcsize(frees->nhash);
1999-01-22 21:47:23 +03:00
luaM_free(nodevector(frees));
luaM_free(frees);
1997-09-16 23:25:59 +04:00
frees = next;
}
}
1999-01-22 21:47:23 +03:00
static Node *hashnodecreate (int nhash) {
Node *const v = luaM_newvector(nhash, Node);
1999-01-22 21:47:23 +03:00
int i;
for (i=0; i<nhash; i++)
ttype(ref(&v[i])) = ttype(val(&v[i])) = LUA_T_NIL;
1999-01-22 21:47:23 +03:00
return v;
}
Hash *luaH_new (int nhash) {
Hash *const t = luaM_new(Hash);
nhash = luaO_redimension(nhash*3/2);
1997-09-16 23:25:59 +04:00
nodevector(t) = hashnodecreate(nhash);
nhash(t) = nhash;
nuse(t) = 0;
t->htag = TagDefault;
luaO_insertlist(&(L->roottable), (GCnode *)t);
L->nblocks += gcsize(nhash);
1997-09-16 23:25:59 +04:00
return t;
}
static int newsize (Hash *t) {
Node *const v = t->node;
const int size = nhash(t);
int realuse = 0;
1997-09-16 23:25:59 +04:00
int i;
for (i=0; i<size; i++) {
if (ttype(val(v+i)) != LUA_T_NIL)
realuse++;
1997-09-16 23:25:59 +04:00
}
return luaO_redimension(realuse*2);
1997-09-16 23:25:59 +04:00
}
1999-01-22 21:47:23 +03:00
static void rehash (Hash *t) {
const int nold = nhash(t);
Node *const vold = nodevector(t);
const int nnew = newsize(t);
1997-09-16 23:25:59 +04:00
int i;
nodevector(t) = hashnodecreate(nnew);
nhash(t) = nnew;
nuse(t) = 0;
1997-09-16 23:25:59 +04:00
for (i=0; i<nold; i++) {
Node *n = vold+i;
if (ttype(val(n)) != LUA_T_NIL) {
*luaH_present(t, ref(n)) = *n; /* copy old node to new hash */
nuse(t)++;
}
1997-09-16 23:25:59 +04:00
}
L->nblocks += gcsize(nnew)-gcsize(nold);
1997-09-16 23:25:59 +04:00
luaM_free(vold);
}
1999-01-22 21:47:23 +03:00
1999-08-17 00:52:00 +04:00
void luaH_set (Hash *t, const TObject *ref, const TObject *val) {
Node *const n = luaH_present(t, ref);
*val(n) = *val;
if (ttype(ref(n)) == LUA_T_NIL) { /* new node? */
*ref(n) = *ref; /* set key */
nuse(t)++; /* count it */
if ((long)nuse(t)*3L > (long)nhash(t)*2L) /* check size */
1997-09-16 23:25:59 +04:00
rehash(t);
}
}
1999-08-17 00:52:00 +04:00
int luaH_pos (const Hash *t, const TObject *r) {
Node *const n = luaH_present(t, r);
luaL_arg_check(ttype(val(n)) != LUA_T_NIL, 2, "key not found");
return n-(t->node);
1997-09-16 23:25:59 +04:00
}
1999-08-17 00:52:00 +04:00
void luaH_setint (Hash *t, int ref, const TObject *val) {
TObject index;
ttype(&index) = LUA_T_NUMBER;
nvalue(&index) = ref;
luaH_set(t, &index, val);
}
1999-08-17 00:52:00 +04:00
TObject *luaH_getint (const Hash *t, int ref) {
TObject index;
ttype(&index) = LUA_T_NUMBER;
nvalue(&index) = ref;
return luaH_get(t, &index);
}