*** empty log message ***

This commit is contained in:
hyung-hwan 2007-04-24 14:42:24 +00:00
parent 9338ef513d
commit 8ab1af82e4
4 changed files with 76 additions and 61 deletions

View File

@ -1,5 +1,5 @@
/* /*
* $Id: map.c,v 1.38 2007-03-22 10:31:24 bacon Exp $ * $Id: map.c,v 1.39 2007-04-24 14:42:24 bacon Exp $
* *
* {License} * {License}
*/ */
@ -9,13 +9,13 @@
/* TODO: improve the entire map routines. /* TODO: improve the entire map routines.
support automatic bucket resizing and remaping, etc. */ support automatic bucket resizing and remaping, etc. */
static ase_size_t hash (const ase_char_t* key, ase_size_t key_len); static ase_size_t hashkey (const ase_char_t* keyptr, ase_size_t keylen);
#define FREE_PAIR(map,pair) \ #define FREE_PAIR(map,pair) \
do { \ do { \
ASE_AWK_FREE ((map)->awk, (ase_char_t*)(pair)->key); \ ASE_AWK_FREE ((map)->awk, (ase_char_t*)PAIR_KEYPTR(pair)); \
if ((map)->freeval != ASE_NULL) \ if ((map)->freeval != ASE_NULL) \
(map)->freeval ((map)->owner, (pair)->val); \ (map)->freeval ((map)->owner, PAIR_VAL(pair)); \
ASE_AWK_FREE ((map)->awk, pair); \ ASE_AWK_FREE ((map)->awk, pair); \
} while (0) } while (0)
@ -70,7 +70,7 @@ void ase_awk_map_clear (ase_awk_map_t* map)
while (pair != ASE_NULL) while (pair != ASE_NULL)
{ {
next = pair->next; next = PAIR_LNK(pair);
FREE_PAIR (map, pair); FREE_PAIR (map, pair);
map->size--; map->size--;
pair = next; pair = next;
@ -86,52 +86,53 @@ ase_size_t ase_awk_map_getsize (ase_awk_map_t* map)
} }
ase_awk_pair_t* ase_awk_map_get ( ase_awk_pair_t* ase_awk_map_get (
ase_awk_map_t* map, const ase_char_t* key, ase_size_t key_len) ase_awk_map_t* map, const ase_char_t* keyptr, ase_size_t keylen)
{ {
ase_awk_pair_t* pair; ase_awk_pair_t* pair;
ase_size_t hc; ase_size_t hc;
hc = hash(key,key_len) % map->capa; hc = hashkey(keyptr,keylen) % map->capa;
pair = map->buck[hc]; pair = map->buck[hc];
while (pair != ASE_NULL) while (pair != ASE_NULL)
{ {
if (ase_strxncmp ( if (ase_strxncmp (
pair->key, pair->key_len, PAIR_KEYPTR(pair), PAIR_KEYLEN(pair),
key, key_len) == 0) return pair; keyptr, keylen) == 0) return pair;
pair = pair->next; pair = PAIR_LNK(pair);
} }
return ASE_NULL; return ASE_NULL;
} }
ase_awk_pair_t* ase_awk_map_put ( ase_awk_pair_t* ase_awk_map_put (
ase_awk_map_t* map, ase_char_t* key, ase_size_t key_len, void* val) ase_awk_map_t* map, ase_char_t* keyptr, ase_size_t keylen, void* val)
{ {
int n; int n;
ase_awk_pair_t* px; ase_awk_pair_t* px;
n = ase_awk_map_putx (map, key, key_len, val, &px); n = ase_awk_map_putx (map, keyptr, keylen, val, &px);
if (n < 0) return ASE_NULL; if (n < 0) return ASE_NULL;
return px; return px;
} }
int ase_awk_map_putx ( int ase_awk_map_putx (
ase_awk_map_t* map, ase_char_t* key, ase_size_t key_len, ase_awk_map_t* map, ase_char_t* keyptr, ase_size_t keylen,
void* val, ase_awk_pair_t** px) void* val, ase_awk_pair_t** px)
{ {
ase_awk_pair_t* pair; ase_awk_pair_t* pair;
ase_size_t hc; ase_size_t hc;
hc = hash(key,key_len) % map->capa; hc = hashkey(keyptr,keylen) % map->capa;
pair = map->buck[hc]; pair = map->buck[hc];
while (pair != ASE_NULL) while (pair != ASE_NULL)
{ {
if (ase_strxncmp ( if (ase_strxncmp (
pair->key, pair->key_len, key, key_len) == 0) PAIR_KEYPTR(pair), PAIR_KEYLEN(pair),
keyptr, keylen) == 0)
{ {
if (px != ASE_NULL) if (px != ASE_NULL)
*px = ase_awk_map_setpair (map, pair, val); *px = ase_awk_map_setpair (map, pair, val);
@ -140,26 +141,25 @@ int ase_awk_map_putx (
return 0; /* value changed for the existing key */ return 0; /* value changed for the existing key */
} }
pair = pair->next; pair = PAIR_LNK(pair);
} }
pair = (ase_awk_pair_t*) ASE_AWK_MALLOC ( pair = (ase_awk_pair_t*) ASE_AWK_MALLOC (
map->awk, ASE_SIZEOF(ase_awk_pair_t)); map->awk, ASE_SIZEOF(ase_awk_pair_t));
if (pair == ASE_NULL) return -1; /* error */ if (pair == ASE_NULL) return -1; /* error */
/*pair->key = key;*/
/* duplicate the key if it is new */ /* duplicate the key if it is new */
pair->key = ase_strxdup (key, key_len, &map->awk->prmfns.mmgr); PAIR_KEYPTR(pair) = ase_strxdup (
if (pair->key == ASE_NULL) keyptr, keylen, &map->awk->prmfns.mmgr);
if (PAIR_KEYPTR(pair) == ASE_NULL)
{ {
ASE_AWK_FREE (map->awk, pair); ASE_AWK_FREE (map->awk, pair);
return -1; /* error */ return -1; /* error */
} }
pair->key_len = key_len; PAIR_KEYLEN(pair) = keylen;
pair->val = val; PAIR_VAL(pair) = val;
pair->next = map->buck[hc]; PAIR_LNK(pair) = map->buck[hc];
map->buck[hc] = pair; map->buck[hc] = pair;
map->size++; map->size++;
@ -168,35 +168,37 @@ int ase_awk_map_putx (
} }
ase_awk_pair_t* ase_awk_map_set ( ase_awk_pair_t* ase_awk_map_set (
ase_awk_map_t* map, ase_char_t* key, ase_size_t key_len, void* val) ase_awk_map_t* map, ase_char_t* keyptr, ase_size_t keylen, void* val)
{ {
ase_awk_pair_t* pair; ase_awk_pair_t* pair;
ase_size_t hc; ase_size_t hc;
hc = hash(key,key_len) % map->capa; hc = hashkey(keyptr,keylen) % map->capa;
pair = map->buck[hc]; pair = map->buck[hc];
while (pair != ASE_NULL) while (pair != ASE_NULL)
{ {
if (ase_strxncmp ( if (ase_strxncmp (
pair->key, pair->key_len, key, key_len) == 0) PAIR_KEYPTR(pair), PAIR_KEYLEN(pair),
keyptr, keylen) == 0)
{ {
return ase_awk_map_setpair (map, pair, val); return ase_awk_map_setpair (map, pair, val);
} }
pair = pair->next; pair = PAIR_LNK(pair);
} }
return ASE_NULL; return ASE_NULL;
} }
ase_awk_pair_t* ase_awk_map_getpair ( ase_awk_pair_t* ase_awk_map_getpair (
ase_awk_map_t* map, const ase_char_t* key, ase_size_t key_len, void** val) ase_awk_map_t* map, const ase_char_t* keyptr, ase_size_t keylen,
void** val)
{ {
ase_awk_pair_t* pair; ase_awk_pair_t* pair;
pair = ase_awk_map_get (map, key, key_len); pair = ase_awk_map_get (map, keyptr, keylen);
if (pair == ASE_NULL) return ASE_NULL; if (pair == ASE_NULL) return ASE_NULL;
*val = pair->val; *val = PAIR_VAL(pair);
return pair; return pair;
} }
@ -205,35 +207,37 @@ ase_awk_pair_t* ase_awk_map_setpair (
ase_awk_map_t* map, ase_awk_pair_t* pair, void* val) ase_awk_map_t* map, ase_awk_pair_t* pair, void* val)
{ {
/* use this function with care */ /* use this function with care */
if (pair->val != val) if (PAIR_VAL(pair) != val)
{ {
if (map->freeval != ASE_NULL) if (map->freeval != ASE_NULL)
{ {
map->freeval (map->owner, pair->val); map->freeval (map->owner, PAIR_VAL(pair));
} }
pair->val = val; PAIR_VAL(pair) = val;
} }
return pair; return pair;
} }
int ase_awk_map_remove (ase_awk_map_t* map, ase_char_t* key, ase_size_t key_len) int ase_awk_map_remove (
ase_awk_map_t* map, ase_char_t* keyptr, ase_size_t keylen)
{ {
ase_awk_pair_t* pair, * prev; ase_awk_pair_t* pair, * prev;
ase_size_t hc; ase_size_t hc;
hc = hash(key,key_len) % map->capa; hc = hashkey(keyptr,keylen) % map->capa;
pair = map->buck[hc]; pair = map->buck[hc];
prev = ASE_NULL; prev = ASE_NULL;
while (pair != ASE_NULL) while (pair != ASE_NULL)
{ {
if (ase_strxncmp ( if (ase_strxncmp (
pair->key, pair->key_len, key, key_len) == 0) PAIR_KEYPTR(pair), PAIR_KEYLEN(pair),
keyptr, keylen) == 0)
{ {
if (prev == ASE_NULL) if (prev == ASE_NULL)
map->buck[hc] = pair->next; map->buck[hc] = PAIR_LNK(pair);
else prev->next = pair->next; else prev->next = PAIR_LNK(pair);
FREE_PAIR (map, pair); FREE_PAIR (map, pair);
map->size--; map->size--;
@ -242,7 +246,7 @@ int ase_awk_map_remove (ase_awk_map_t* map, ase_char_t* key, ase_size_t key_len)
} }
prev = pair; prev = pair;
pair = pair->next; pair = PAIR_LNK(pair);
} }
return -1; return -1;
@ -260,7 +264,7 @@ int ase_awk_map_walk (ase_awk_map_t* map,
while (pair != ASE_NULL) while (pair != ASE_NULL)
{ {
next = pair->next; next = PAIR_LNK(pair);
if (walker(pair,arg) == -1) return -1; if (walker(pair,arg) == -1) return -1;
pair = next; pair = next;
} }
@ -269,16 +273,16 @@ int ase_awk_map_walk (ase_awk_map_t* map,
return 0; return 0;
} }
static ase_size_t hash (const ase_char_t* key, ase_size_t key_len) static ase_size_t hashkey (const ase_char_t* keyptr, ase_size_t keylen)
{ {
ase_size_t n = 0, i; ase_size_t n = 0, i;
const ase_char_t* end = key + key_len; const ase_char_t* end = keyptr + keylen;
while (key < end) while (keyptr < end)
{ {
ase_byte_t* bp = (ase_byte_t*)key; ase_byte_t* bp = (ase_byte_t*)keyptr;
for (i = 0; i < ASE_SIZEOF(*key); i++) n = n * 31 + *bp++; for (i = 0; i < ASE_SIZEOF(*keyptr); i++) n = n * 31 + *bp++;
key++; keyptr++;
} }
return n; return n;

View File

@ -1,5 +1,5 @@
/* /*
* $Id: map.h,v 1.20 2007-02-11 14:07:28 bacon Exp $ * $Id: map.h,v 1.21 2007-04-24 14:42:24 bacon Exp $
* *
* {License} * {License}
*/ */
@ -16,8 +16,12 @@ typedef struct ase_awk_pair_t ase_awk_pair_t;
struct ase_awk_pair_t struct ase_awk_pair_t
{ {
ase_char_t* key; struct
ase_size_t key_len; {
ase_char_t* ptr;
ase_size_t len;
} key;
void* val; void* val;
ase_awk_pair_t* next; ase_awk_pair_t* next;
}; };
@ -33,6 +37,11 @@ struct ase_awk_map_t
ase_bool_t __dynamic; ase_bool_t __dynamic;
}; };
#define PAIR_KEYPTR(p) ((p)->key.ptr)
#define PAIR_KEYLEN(p) ((p)->key.len)
#define PAIR_VAL(p) ((p)->val)
#define PAIR_LNK(p) ((p)->next)
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
@ -48,25 +57,27 @@ void ase_awk_map_clear (ase_awk_map_t* map);
ase_size_t ase_awk_map_getsize (ase_awk_map_t* map); ase_size_t ase_awk_map_getsize (ase_awk_map_t* map);
ase_awk_pair_t* ase_awk_map_get ( ase_awk_pair_t* ase_awk_map_get (
ase_awk_map_t* map, const ase_char_t* key, ase_size_t key_len); ase_awk_map_t* map, const ase_char_t* keyptr, ase_size_t keylen);
ase_awk_pair_t* ase_awk_map_put ( ase_awk_pair_t* ase_awk_map_put (
ase_awk_map_t* map, ase_char_t* key, ase_size_t key_len, void* val); ase_awk_map_t* map, ase_char_t* keyptr, ase_size_t keylen, void* val);
int ase_awk_map_putx ( int ase_awk_map_putx (
ase_awk_map_t* map, ase_char_t* key, ase_size_t key_len, ase_awk_map_t* map, ase_char_t* keyptr, ase_size_t keylen,
void* val, ase_awk_pair_t** px); void* val, ase_awk_pair_t** px);
ase_awk_pair_t* ase_awk_map_set ( ase_awk_pair_t* ase_awk_map_set (
ase_awk_map_t* map, ase_char_t* key, ase_size_t key_len, void* val); ase_awk_map_t* map, ase_char_t* keyptr, ase_size_t keylen, void* val);
ase_awk_pair_t* ase_awk_map_getpair ( ase_awk_pair_t* ase_awk_map_getpair (
ase_awk_map_t* map, const ase_char_t* key, ase_size_t key_len, void** val); ase_awk_map_t* map, const ase_char_t* keyptr, ase_size_t keylen,
void** val);
ase_awk_pair_t* ase_awk_map_setpair ( ase_awk_pair_t* ase_awk_map_setpair (
ase_awk_map_t* map, ase_awk_pair_t* pair, void* val); ase_awk_map_t* map, ase_awk_pair_t* pair, void* val);
int ase_awk_map_remove (ase_awk_map_t* map, ase_char_t* key, ase_size_t key_len); int ase_awk_map_remove (
ase_awk_map_t* map, ase_char_t* keyptr, ase_size_t keylen);
int ase_awk_map_walk (ase_awk_map_t* map, int ase_awk_map_walk (ase_awk_map_t* map,
int (*walker)(ase_awk_pair_t*,void*), void* arg); int (*walker)(ase_awk_pair_t*,void*), void* arg);

View File

@ -1,5 +1,5 @@
/* /*
* $Id: parse.c,v 1.258 2007-03-22 10:50:13 bacon Exp $ * $Id: parse.c,v 1.259 2007-04-24 14:42:24 bacon Exp $
* *
* {License} * {License}
*/ */
@ -960,8 +960,8 @@ static ase_awk_nde_t* parse_function (ase_awk_t* awk)
/* duplicate functions should have been detected previously */ /* duplicate functions should have been detected previously */
ASE_ASSERT (n != 0); ASE_ASSERT (n != 0);
afn->name = pair->key; /* do some trick to save a string. */ afn->name = PAIR_KEYPTR(pair); /* do some trick to save a string. */
afn->name_len = pair->key_len; afn->name_len = PAIR_KEYLEN(pair);
ASE_AWK_FREE (awk, name_dup); ASE_AWK_FREE (awk, name_dup);
return body; return body;
@ -5015,7 +5015,7 @@ static int deparse_func (ase_awk_pair_t* pair, void* arg)
ase_awk_afn_t* afn = (ase_awk_afn_t*)pair->val; ase_awk_afn_t* afn = (ase_awk_afn_t*)pair->val;
ase_size_t i, n; ase_size_t i, n;
ASE_ASSERT (ase_strxncmp (pair->key, pair->key_len, afn->name, afn->name_len) == 0); ASE_ASSERT (ase_strxncmp (PAIR_KEYPTR(pair), PAIR_KEYLEN(pair), afn->name, afn->name_len) == 0);
if (ase_awk_putsrcstr (df->awk, ASE_T("function ")) == -1) return -1; if (ase_awk_putsrcstr (df->awk, ASE_T("function ")) == -1) return -1;
if (ase_awk_putsrcstr (df->awk, afn->name) == -1) return -1; if (ase_awk_putsrcstr (df->awk, afn->name) == -1) return -1;

View File

@ -1,5 +1,5 @@
/* /*
* $Id: run.c,v 1.349 2007-04-21 12:40:44 bacon Exp $ * $Id: run.c,v 1.350 2007-04-24 14:42:24 bacon Exp $
* *
* {License} * {License}
*/ */
@ -2042,7 +2042,7 @@ static int __walk_foreach (ase_awk_pair_t* pair, void* arg)
ase_awk_val_t* str; ase_awk_val_t* str;
str = (ase_awk_val_t*) ase_awk_makestrval ( str = (ase_awk_val_t*) ase_awk_makestrval (
w->run, pair->key, ase_strlen(pair->key)); w->run, PAIR_KEYPTR(pair), PAIR_KEYLEN(pair));
if (str == ASE_NULL) if (str == ASE_NULL)
{ {
ase_awk_setrunerror ( ase_awk_setrunerror (