qse/ase/stx/hash.c

163 lines
3.8 KiB
C
Raw Normal View History

2005-05-08 15:54:44 +00:00
/*
2005-05-16 14:14:34 +00:00
* $Id: hash.c,v 1.10 2005-05-16 14:14:34 bacon Exp $
2005-05-08 15:54:44 +00:00
*/
#include <xp/stx/hash.h>
2005-05-10 06:08:57 +00:00
#include <xp/stx/object.h>
2005-05-15 18:37:00 +00:00
#include <xp/stx/misc.h>
2005-05-10 06:08:57 +00:00
#include <xp/bas/assert.h>
2005-05-08 15:54:44 +00:00
2005-05-15 18:37:00 +00:00
#define _SYMBOL_LINK_DIMENSION 3
#define _SYMBOL_LINK_LINK 0
#define _SYMBOL_LINK_KEY 1
#define _SYMBOL_LINK_VALUE 2
2005-05-12 15:25:06 +00:00
xp_stx_word_t xp_stx_new_symbol_link (
2005-05-10 06:02:19 +00:00
xp_stx_t* stx, xp_stx_word_t key, xp_stx_word_t value)
2005-05-08 15:54:44 +00:00
{
xp_stx_word_t x;
2005-05-15 18:37:00 +00:00
x = xp_stx_alloc_object (stx, _SYMBOL_LINK_DIMENSION);
2005-05-12 15:25:06 +00:00
XP_STX_CLASS(stx,x) = stx->class_symbol_link;
2005-05-15 18:37:00 +00:00
/* XP_STX_AT(stx,x,_SYMBOL_LINK_LINK) = stx->nil; */
XP_STX_AT(stx,x,_SYMBOL_LINK_KEY) = key;
XP_STX_AT(stx,x,_SYMBOL_LINK_VALUE) = value;
2005-05-08 15:54:44 +00:00
return x;
}
2005-05-10 06:02:19 +00:00
/* returns the entire link */
xp_stx_word_t xp_stx_hash_lookup (
xp_stx_t* stx, xp_stx_word_t table,
xp_stx_word_t hash, xp_stx_word_t key)
2005-05-08 15:54:44 +00:00
{
2005-05-10 08:21:10 +00:00
xp_stx_word_t link;
2005-05-08 15:54:44 +00:00
2005-05-10 06:02:19 +00:00
xp_assert (XP_STX_TYPE(stx,table) == XP_STX_INDEXED);
2005-05-08 15:54:44 +00:00
2005-05-10 06:08:57 +00:00
hash = hash % XP_STX_SIZE(stx,table);
2005-05-10 08:21:10 +00:00
link = XP_STX_AT(stx,table,hash);
2005-05-09 15:55:04 +00:00
2005-05-10 06:02:19 +00:00
while (link != stx->nil) {
2005-05-15 18:37:00 +00:00
if (XP_STX_AT(stx,link,_SYMBOL_LINK_KEY) == key) return link;
link = XP_STX_AT(stx,link,_SYMBOL_LINK_LINK);
}
return stx->nil; /* not found */
}
xp_stx_word_t xp_stx_hash_lookup_symbol (
xp_stx_t* stx, xp_stx_word_t table,
2005-05-16 14:14:34 +00:00
xp_stx_word_t hash, const xp_stx_char_t* key_str)
2005-05-15 18:37:00 +00:00
{
xp_stx_word_t link, key;
xp_assert (XP_STX_TYPE(stx,table) == XP_STX_INDEXED);
hash = hash % XP_STX_SIZE(stx,table);
link = XP_STX_AT(stx,table,hash);
while (link != stx->nil) {
key = XP_STX_AT(stx,link,_SYMBOL_LINK_KEY);
if (XP_STX_CLASS(stx,key) == stx->class_symbol &&
xp_stx_strxcmp (
&XP_STX_CHARAT(stx,key,0),
XP_STX_SIZE(stx,key), key_str) == 0) {
return link;
}
link = XP_STX_AT(stx,link,_SYMBOL_LINK_LINK);
2005-05-09 15:55:04 +00:00
}
2005-05-08 15:54:44 +00:00
2005-05-10 06:02:19 +00:00
return stx->nil; /* not found */
}
2005-05-09 15:55:04 +00:00
2005-05-10 06:02:19 +00:00
void xp_stx_hash_insert (
xp_stx_t* stx, xp_stx_word_t table,
xp_stx_word_t hash, xp_stx_word_t key, xp_stx_word_t value)
{
2005-05-10 08:21:10 +00:00
xp_stx_word_t link, next;
2005-05-08 15:54:44 +00:00
2005-05-10 06:02:19 +00:00
xp_assert (XP_STX_TYPE(stx,table) == XP_STX_INDEXED);
2005-05-10 06:08:57 +00:00
hash = hash % XP_STX_SIZE(stx,table);
2005-05-10 08:21:10 +00:00
link = XP_STX_AT(stx,table,hash);
2005-05-10 06:02:19 +00:00
if (link == stx->nil) {
2005-05-12 15:25:06 +00:00
XP_STX_AT(stx,table,hash) =
xp_stx_new_symbol_link (stx, key, value);
2005-05-10 06:02:19 +00:00
}
else {
for (;;) {
2005-05-12 15:25:06 +00:00
if (XP_STX_AT(stx,link,1) == key) {
2005-05-15 18:37:00 +00:00
XP_STX_AT(stx,link,_SYMBOL_LINK_VALUE) = value;
2005-05-10 06:02:19 +00:00
break;
}
2005-05-15 18:37:00 +00:00
next = XP_STX_AT(stx,link,_SYMBOL_LINK_LINK);
2005-05-10 06:02:19 +00:00
if (next == stx->nil) {
2005-05-15 18:37:00 +00:00
XP_STX_AT(stx,link,_SYMBOL_LINK_LINK) =
2005-05-12 15:25:06 +00:00
xp_stx_new_symbol_link (stx, key, value);
2005-05-10 06:02:19 +00:00
break;
}
2005-05-08 15:54:44 +00:00
2005-05-10 06:02:19 +00:00
link = next;
}
2005-05-08 15:54:44 +00:00
}
}
2005-05-12 15:25:06 +00:00
void xp_stx_hash_traverse (
xp_stx_t* stx, xp_stx_word_t table,
void (*func) (xp_stx_t*,xp_stx_word_t))
{
xp_stx_word_t link;
xp_stx_word_t size = XP_STX_SIZE(stx,table);
while (size-- > 0) {
link = XP_STX_AT(stx,table,size);
while (link != stx->nil) {
func (stx,link);
2005-05-15 18:37:00 +00:00
link = XP_STX_AT(stx,link,_SYMBOL_LINK_LINK);
2005-05-12 15:25:06 +00:00
}
}
}
2005-05-15 18:37:00 +00:00
xp_stx_word_t xp_stx_new_symbol (
xp_stx_t* stx, const xp_stx_char_t* name)
{
xp_stx_word_t x, hash;
hash = xp_stx_strhash(name);
x = xp_stx_hash_lookup_symbol(stx, stx->symbol_table, hash, name);
if (x == stx->nil) {
x = xp_stx_alloc_string_object (stx, name);
XP_STX_CLASS(stx,x) = stx->class_symbol;
xp_stx_hash_insert (stx, stx->symbol_table, hash, x, stx->nil);
}
else x = XP_STX_AT(stx,x,_SYMBOL_LINK_KEY);
return x;
}
xp_stx_word_t xp_stx_new_symbol_pp (
xp_stx_t* stx, const xp_stx_char_t* name,
const xp_stx_char_t* prefix, const xp_stx_char_t* postfix)
{
xp_stx_word_t x, hash;
hash = xp_stx_strhash(name);
x = xp_stx_hash_lookup_symbol(stx, stx->symbol_table, hash, name);
if (x == stx->nil) {
x = xp_stx_allocn_string_object (stx, prefix, name, postfix, XP_NULL);
XP_STX_CLASS(stx,x) = stx->class_symbol;
xp_stx_hash_insert (stx, stx->symbol_table, hash, x, stx->nil);
}
else x = XP_STX_AT(stx,x,_SYMBOL_LINK_KEY);
return x;
}