lua/ltable.c

252 lines
7.2 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
2000-05-11 22:57:19 +04:00
** $Id: ltable.c,v 1.41 2000/05/08 19:32:53 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Lua tables (hash)
** See Copyright Notice in lua.h
*/
1999-10-14 23:13:31 +04:00
/*
** Implementation of tables (aka arrays, objects, or hash tables);
** uses a mix of chained scatter table with Brent's variation.
** A main invariant of these tables is that, if an element is not
** in its main position (i.e. the `original' position that its hash gives
** to it), then the colliding element is in its own main position.
** In other words, there are collisions only when two elements have the
** same main position (i.e. the same hash values for that table size).
** Because of that, the load factor of these tables can be 100% without
** performance penalties.
*/
#define LUA_REENTRANT
1997-09-16 23:25:59 +04:00
#include "lauxlib.h"
#include "lmem.h"
#include "lobject.h"
#include "lstate.h"
#include "lstring.h"
1997-09-16 23:25:59 +04:00
#include "ltable.h"
#include "lua.h"
#define gcsize(L, n) numblocks(L, n*2, sizeof(Hash))
1997-09-16 23:25:59 +04:00
2000-03-28 00:10:21 +04:00
#define TagDefault TAG_TABLE
1997-09-16 23:25:59 +04:00
1999-10-14 23:13:31 +04:00
/*
** returns the `main' position of an element in a table (that is, the index
** of its hash value)
*/
1999-12-07 15:05:34 +03:00
Node *luaH_mainposition (const Hash *t, const TObject *key) {
1999-10-14 23:13:31 +04:00
unsigned long h;
switch (ttype(key)) {
2000-03-10 21:37:44 +03:00
case TAG_NUMBER:
1999-10-14 23:13:31 +04:00
h = (unsigned long)(long)nvalue(key);
1997-09-16 23:25:59 +04:00
break;
case TAG_STRING:
h = tsvalue(key)->u.s.hash;
break;
case TAG_USERDATA:
h = IntPoint(tsvalue(key));
1997-09-16 23:25:59 +04:00
break;
2000-03-28 00:10:21 +04:00
case TAG_TABLE:
h = IntPoint(avalue(key));
1997-09-16 23:25:59 +04:00
break;
2000-03-10 21:37:44 +03:00
case TAG_LCLOSURE: case TAG_CCLOSURE:
h = IntPoint(clvalue(key));
1997-09-16 23:25:59 +04:00
break;
default:
1999-12-07 15:05:34 +03:00
return NULL; /* invalid key */
1997-09-16 23:25:59 +04:00
}
LUA_ASSERT(L, h%(unsigned int)t->size == (h&((unsigned int)t->size-1)),
"a&(x-1) == a%x, for x power of 2");
2000-04-25 20:55:09 +04:00
return &t->node[h&(t->size-1)];
1997-09-16 23:25:59 +04:00
}
2000-04-25 20:55:09 +04:00
static const TObject *luaH_getany (lua_State *L, const Hash *t,
const TObject *key) {
1999-12-07 15:05:34 +03:00
Node *n = luaH_mainposition(t, key);
if (!n)
lua_error(L, "unexpected type to index table");
else do {
1999-10-14 23:13:31 +04:00
if (luaO_equalObj(key, &n->key))
return &n->val;
n = n->next;
} while (n);
1999-12-07 15:05:34 +03:00
return &luaO_nilobject; /* key not found */
1999-10-14 23:13:31 +04:00
}
2000-04-25 20:55:09 +04:00
/* specialized version for numbers */
const TObject *luaH_getnum (const Hash *t, Number key) {
Node *n = &t->node[(unsigned long)(long)key&(t->size-1)];
do {
if (ttype(&n->key) == TAG_NUMBER && nvalue(&n->key) == key)
return &n->val;
n = n->next;
} while (n);
return &luaO_nilobject; /* key not found */
}
/* specialized version for strings */
const TObject *luaH_getstr (const Hash *t, TString *key) {
Node *n = &t->node[key->u.s.hash&(t->size-1)];
2000-04-25 20:55:09 +04:00
do {
if (ttype(&n->key) == TAG_STRING && tsvalue(&n->key) == key)
return &n->val;
n = n->next;
} while (n);
return &luaO_nilobject; /* key not found */
}
const TObject *luaH_get (lua_State *L, const Hash *t, const TObject *key) {
switch (ttype(key)) {
case TAG_NUMBER: return luaH_getnum(t, nvalue(key));
case TAG_STRING: return luaH_getstr(t, tsvalue(key));
default: return luaH_getany(L, t, key);
}
}
int luaH_pos (lua_State *L, const Hash *t, const TObject *key) {
const TObject *v = luaH_get(L, t, key);
1999-10-14 23:13:31 +04:00
return (v == &luaO_nilobject) ? -1 : /* key not found */
2000-02-08 19:39:42 +03:00
(int)(((const char *)v - (const char *)(&t->node[0].val))/sizeof(Node));
1997-09-16 23:25:59 +04:00
}
2000-05-11 22:57:19 +04:00
static void setnodevector (lua_State *L, Hash *t, int size) {
1999-01-22 21:47:23 +03:00
int i;
2000-05-11 22:57:19 +04:00
t->node = luaM_newvector(L, size, Node);
for (i=0; i<size; i++) {
ttype(&t->node[i].key) = ttype(&t->node[i].val) = TAG_NIL;
t->node[i].next = NULL;
1999-10-14 23:13:31 +04:00
}
t->size = size;
t->firstfree = &t->node[size-1]; /* first free position to be used */
L->nblocks += gcsize(L, size);
1999-10-14 23:13:31 +04:00
}
Hash *luaH_new (lua_State *L, int size) {
Hash *t = luaM_new(L, Hash);
setnodevector(L, t, luaO_power2(size));
1997-09-16 23:25:59 +04:00
t->htag = TagDefault;
t->next = L->roottable;
L->roottable = t;
t->marked = 0;
1997-09-16 23:25:59 +04:00
return t;
}
void luaH_free (lua_State *L, Hash *t) {
L->nblocks -= gcsize(L, t->size);
luaM_free(L, t->node);
luaM_free(L, t);
}
static int newsize (const Hash *t) {
1999-10-14 23:13:31 +04:00
Node *v = t->node;
int size = t->size;
int realuse = 0;
1997-09-16 23:25:59 +04:00
int i;
for (i=0; i<size; i++) {
2000-03-10 21:37:44 +03:00
if (ttype(&v[i].val) != TAG_NIL)
realuse++;
1997-09-16 23:25:59 +04:00
}
return luaO_power2(realuse+realuse/4+1);
1997-09-16 23:25:59 +04:00
}
1999-01-22 21:47:23 +03:00
static void rehash (lua_State *L, Hash *t) {
1999-10-14 23:13:31 +04:00
int oldsize = t->size;
Node *nold = t->node;
int i;
L->nblocks -= gcsize(L, oldsize);
setnodevector(L, t, newsize(t)); /* create new array of nodes */
1999-10-14 23:13:31 +04:00
for (i=0; i<oldsize; i++) {
Node *old = nold+i;
2000-03-10 21:37:44 +03:00
if (ttype(&old->val) != TAG_NIL)
1999-12-07 15:05:34 +03:00
luaH_set(L, t, &old->key, &old->val);
1999-10-14 23:13:31 +04:00
}
luaM_free(L, nold); /* free old array */
1997-09-16 23:25:59 +04:00
}
1999-10-14 23:13:31 +04:00
/*
** sets a pair key-value in a hash table; first, check whether key is
** already present; if not, check whether key's main position is free;
** if not, check whether colliding node is in its main position or not;
** if it is not, move colliding node to an empty place and put new pair
** in its main position; otherwise (colliding node is in its main position),
** new pair goes to an empty position.
** Tricky point: the only place where an old element is moved is when
** we move the colliding node to an empty place; nevertheless, its old
** value is still in that position until we set the value for the new
** pair; therefore, even when `val' points to an element of this table
** (this happens when we use `luaH_move'), there is no problem.
*/
void luaH_set (lua_State *L, Hash *t, const TObject *key, const TObject *val) {
1999-12-07 15:05:34 +03:00
Node *mp = luaH_mainposition(t, key);
1999-10-14 23:13:31 +04:00
Node *n = mp;
1999-12-07 15:05:34 +03:00
if (!mp)
lua_error(L, "unexpected type to index table");
1999-10-14 23:13:31 +04:00
do { /* check whether `key' is somewhere in the chain */
if (luaO_equalObj(key, &n->key)) {
n->val = *val; /* update value */
return; /* that's all */
}
else n = n->next;
} while (n);
/* `key' not found; must insert it */
2000-03-10 21:37:44 +03:00
if (ttype(&mp->key) != TAG_NIL) { /* main position is not free? */
1999-10-14 23:13:31 +04:00
Node *othern; /* main position of colliding node */
n = t->firstfree; /* get a free place */
/* is colliding node out of its main position? (can only happens if
its position if after "firstfree") */
1999-12-07 15:05:34 +03:00
if (mp > n && (othern=luaH_mainposition(t, &mp->key)) != mp) {
1999-10-14 23:13:31 +04:00
/* yes; move colliding node into free position */
while (othern->next != mp) othern = othern->next; /* find previous */
othern->next = n; /* redo the chain with `n' in place of `mp' */
*n = *mp; /* copy colliding node into free pos. (mp->next also goes) */
mp->next = NULL; /* now `mp' is free */
}
else { /* colliding node is in its own main position */
/* new node will go into free position */
n->next = mp->next; /* chain new position */
mp->next = n;
mp = n;
}
}
mp->key = *key;
mp->val = *val;
for (;;) { /* check free places */
2000-03-31 20:28:45 +04:00
if (ttype(&t->firstfree->key) == TAG_NIL)
1999-10-14 23:13:31 +04:00
return; /* OK; table still has a free place */
else if (t->firstfree == t->node) break; /* cannot decrement from here */
else (t->firstfree)--;
}
rehash(L, t); /* no more free places */
1997-09-16 23:25:59 +04:00
}
void luaH_setint (lua_State *L, Hash *t, int key, const TObject *val) {
TObject index;
2000-03-10 21:37:44 +03:00
ttype(&index) = TAG_NUMBER;
1999-10-14 23:13:31 +04:00
nvalue(&index) = key;
luaH_set(L, t, &index, val);
}
const TObject *luaH_getglobal (lua_State *L, const char *name) {
return luaH_getstr(L->gt, luaS_new(L, name));
}