2007-05-02 01:07:00 +00:00
|
|
|
/*
|
2008-10-09 05:43:56 +00:00
|
|
|
* $Id: map.c 409 2008-10-08 11:43:56Z baconevi $
|
2007-05-02 01:07:00 +00:00
|
|
|
*
|
|
|
|
* {License}
|
|
|
|
*/
|
|
|
|
|
2008-02-13 01:39:56 +00:00
|
|
|
#include <ase/cmn/map.h>
|
2008-08-19 05:21:48 +00:00
|
|
|
#include "mem.h"
|
2007-05-02 01:07:00 +00:00
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
#define map_t ase_map_t
|
|
|
|
#define pair_t ase_map_pair_t
|
|
|
|
#define copier_t ase_map_copier_t
|
|
|
|
#define freeer_t ase_map_freeer_t
|
|
|
|
#define hasher_t ase_map_hasher_t
|
|
|
|
#define comper_t ase_map_comper_t
|
2008-09-24 08:47:23 +00:00
|
|
|
#define keeper_t ase_map_keeper_t
|
|
|
|
#define sizer_t ase_map_sizer_t
|
2008-08-23 09:23:09 +00:00
|
|
|
#define walker_t ase_map_walker_t
|
2007-05-02 01:07:00 +00:00
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
#define KPTR(p) ASE_MAP_KPTR(p)
|
|
|
|
#define KLEN(p) ASE_MAP_KLEN(p)
|
|
|
|
#define VPTR(p) ASE_MAP_VPTR(p)
|
|
|
|
#define VLEN(p) ASE_MAP_VLEN(p)
|
2008-08-27 04:31:24 +00:00
|
|
|
#define NEXT(p) ASE_MAP_NEXT(p)
|
2007-05-02 01:07:00 +00:00
|
|
|
|
2008-08-29 04:29:53 +00:00
|
|
|
#define SIZEOF(x) ASE_SIZEOF(x)
|
2008-09-28 03:51:23 +00:00
|
|
|
#define size_t ase_size_t
|
|
|
|
#define byte_t ase_byte_t
|
|
|
|
#define uint_t ase_uint_t
|
|
|
|
#define mmgr_t ase_mmgr_t
|
2008-08-23 09:23:09 +00:00
|
|
|
|
2008-09-26 05:06:33 +00:00
|
|
|
#define KTOB(map,len) ((len)*(map)->scale[ASE_MAP_KEY])
|
|
|
|
#define VTOB(map,len) ((len)*(map)->scale[ASE_MAP_VAL])
|
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
static int reorganize (map_t* map);
|
|
|
|
|
|
|
|
static size_t hash_key (map_t* map, const void* kptr, size_t klen)
|
2007-05-02 01:07:00 +00:00
|
|
|
{
|
2008-08-23 09:23:09 +00:00
|
|
|
size_t n = 0;
|
|
|
|
const byte_t* p = (const byte_t*)kptr;
|
|
|
|
const byte_t* bound = p + klen;
|
2007-05-06 19:44:00 +00:00
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
while (p < bound)
|
|
|
|
{
|
|
|
|
n = n * 31 + *p++;
|
|
|
|
p++;
|
|
|
|
}
|
2007-05-02 01:07:00 +00:00
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
return n;
|
|
|
|
}
|
2007-05-02 01:07:00 +00:00
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
static int comp_key (map_t* map,
|
|
|
|
const void* kptr1, size_t klen1,
|
|
|
|
const void* kptr2, size_t klen2)
|
|
|
|
{
|
2008-09-26 05:06:33 +00:00
|
|
|
if (klen1 == klen2) return ASE_MEMCMP (kptr1, kptr2, KTOB(map,klen1));
|
2008-08-27 05:04:16 +00:00
|
|
|
/* it just returns 1 to indicate that they are different. */
|
2008-08-23 09:23:09 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static pair_t* alloc_pair (map_t* map,
|
|
|
|
void* kptr, size_t klen, void* vptr, size_t vlen)
|
|
|
|
{
|
|
|
|
pair_t* n;
|
|
|
|
copier_t kcop = map->copier[ASE_MAP_KEY];
|
|
|
|
copier_t vcop = map->copier[ASE_MAP_VAL];
|
|
|
|
|
2008-08-29 04:29:53 +00:00
|
|
|
size_t as = SIZEOF(pair_t);
|
2008-09-26 05:06:33 +00:00
|
|
|
if (kcop == ASE_MAP_COPIER_INLINE) as += KTOB(map,klen);
|
|
|
|
if (vcop == ASE_MAP_COPIER_INLINE) as += VTOB(map,vlen);
|
2008-08-23 09:23:09 +00:00
|
|
|
|
2008-09-25 01:18:50 +00:00
|
|
|
n = (pair_t*) ASE_MMGR_ALLOC (map->mmgr, as);
|
2008-08-23 09:23:09 +00:00
|
|
|
if (n == ASE_NULL) return ASE_NULL;
|
|
|
|
|
2008-08-27 04:31:24 +00:00
|
|
|
NEXT(n) = ASE_NULL;
|
2008-08-23 09:23:09 +00:00
|
|
|
|
|
|
|
KLEN(n) = klen;
|
2008-10-09 05:43:56 +00:00
|
|
|
if (kcop == ASE_MAP_COPIER_SIMPLE)
|
2008-08-23 09:23:09 +00:00
|
|
|
{
|
|
|
|
KPTR(n) = kptr;
|
|
|
|
}
|
|
|
|
else if (kcop == ASE_MAP_COPIER_INLINE)
|
2007-05-02 01:07:00 +00:00
|
|
|
{
|
2008-08-23 09:23:09 +00:00
|
|
|
KPTR(n) = n + 1;
|
2008-09-26 05:06:33 +00:00
|
|
|
ASE_MEMCPY (KPTR(n), kptr, KTOB(map,klen));
|
2008-08-23 09:23:09 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-09-25 01:18:50 +00:00
|
|
|
KPTR(n) = kcop (map, kptr, klen);
|
|
|
|
if (KPTR(n) == ASE_NULL)
|
2008-08-23 09:23:09 +00:00
|
|
|
{
|
|
|
|
ASE_MMGR_FREE (map->mmgr, n);
|
|
|
|
return ASE_NULL;
|
|
|
|
}
|
2007-05-02 01:07:00 +00:00
|
|
|
}
|
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
VLEN(n) = vlen;
|
2008-10-09 05:43:56 +00:00
|
|
|
if (vcop == ASE_MAP_COPIER_SIMPLE)
|
2008-08-23 09:23:09 +00:00
|
|
|
{
|
|
|
|
VPTR(n) = vptr;
|
|
|
|
}
|
|
|
|
else if (vcop == ASE_MAP_COPIER_INLINE)
|
|
|
|
{
|
|
|
|
VPTR(n) = n + 1;
|
2008-09-25 01:18:50 +00:00
|
|
|
if (kcop == ASE_MAP_COPIER_INLINE)
|
2008-09-26 05:06:33 +00:00
|
|
|
VPTR(n) = (byte_t*)VPTR(n) + KTOB(map,klen);
|
|
|
|
ASE_MEMCPY (VPTR(n), vptr, VTOB(map,vlen));
|
2008-08-23 09:23:09 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-09-28 03:51:23 +00:00
|
|
|
VPTR(n) = vcop (map, vptr, vlen);
|
|
|
|
if (VPTR(n) != ASE_NULL)
|
2008-08-23 09:23:09 +00:00
|
|
|
{
|
|
|
|
if (map->freeer[ASE_MAP_KEY] != ASE_NULL)
|
2008-09-28 03:51:23 +00:00
|
|
|
map->freeer[ASE_MAP_KEY] (map, KPTR(n), KLEN(n));
|
2008-08-23 09:23:09 +00:00
|
|
|
ASE_MMGR_FREE (map->mmgr, n);
|
|
|
|
return ASE_NULL;
|
|
|
|
}
|
|
|
|
}
|
2007-05-02 01:07:00 +00:00
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
return n;
|
|
|
|
}
|
2007-07-29 23:42:00 +00:00
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
static void free_pair (map_t* map, pair_t* pair)
|
|
|
|
{
|
|
|
|
if (map->freeer[ASE_MAP_KEY] != ASE_NULL)
|
|
|
|
map->freeer[ASE_MAP_KEY] (map, KPTR(pair), KLEN(pair));
|
|
|
|
if (map->freeer[ASE_MAP_VAL] != ASE_NULL)
|
|
|
|
map->freeer[ASE_MAP_VAL] (map, VPTR(pair), VLEN(pair));
|
|
|
|
ASE_MMGR_FREE (map->mmgr, pair);
|
2007-05-02 01:07:00 +00:00
|
|
|
}
|
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
static pair_t* change_pair_val (
|
|
|
|
map_t* map, pair_t* pair, void* vptr, size_t vlen)
|
2007-05-02 01:07:00 +00:00
|
|
|
{
|
2008-09-27 01:26:20 +00:00
|
|
|
if (VPTR(pair) == vptr && VLEN(pair) == vlen)
|
2008-08-23 09:23:09 +00:00
|
|
|
{
|
|
|
|
/* if the old value and the new value are the same,
|
|
|
|
* it just calls the handler for this condition.
|
|
|
|
* No value replacement occurs. */
|
2008-09-24 08:47:23 +00:00
|
|
|
if (map->keeper != ASE_NULL)
|
2008-08-23 09:23:09 +00:00
|
|
|
{
|
2008-09-24 08:47:23 +00:00
|
|
|
map->keeper (map, vptr, vlen);
|
2008-08-23 09:23:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
copier_t vcop = map->copier[ASE_MAP_VAL];
|
|
|
|
void* ovptr = VPTR(pair);
|
|
|
|
size_t ovlen = VLEN(pair);
|
|
|
|
|
|
|
|
/* place the new value according to the copier */
|
2008-10-09 05:43:56 +00:00
|
|
|
if (vcop == ASE_MAP_COPIER_SIMPLE)
|
2008-08-23 09:23:09 +00:00
|
|
|
{
|
|
|
|
VPTR(pair) = vptr;
|
|
|
|
VLEN(pair) = vlen;
|
|
|
|
}
|
|
|
|
else if (vcop == ASE_MAP_COPIER_INLINE)
|
|
|
|
{
|
|
|
|
if (ovlen == vlen)
|
|
|
|
{
|
2008-09-26 05:06:33 +00:00
|
|
|
ASE_MEMCPY (VPTR(pair), vptr, VTOB(map,vlen));
|
2008-08-23 09:23:09 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* need to reconstruct the pair */
|
|
|
|
pair_t* p = alloc_pair (map,
|
|
|
|
KPTR(pair), KLEN(pair),
|
|
|
|
vptr, vlen);
|
|
|
|
if (p == ASE_NULL) return ASE_NULL;
|
|
|
|
free_pair (map, pair);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
void* nvptr = vcop (map, vptr, vlen);
|
|
|
|
if (nvptr == ASE_NULL) return ASE_NULL;
|
|
|
|
VPTR(pair) = nvptr;
|
|
|
|
VLEN(pair) = vlen;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free up the old value */
|
|
|
|
if (map->freeer[ASE_MAP_VAL] != ASE_NULL)
|
|
|
|
{
|
|
|
|
map->freeer[ASE_MAP_VAL] (map, ovptr, ovlen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return pair;
|
2007-05-02 01:07:00 +00:00
|
|
|
}
|
|
|
|
|
2008-09-26 05:06:33 +00:00
|
|
|
map_t* ase_map_open (mmgr_t* mmgr, size_t ext, size_t capa, int factor)
|
2007-05-02 01:07:00 +00:00
|
|
|
{
|
2008-08-23 09:23:09 +00:00
|
|
|
map_t* map;
|
2007-05-02 01:07:00 +00:00
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
if (mmgr == ASE_NULL)
|
2008-02-29 00:50:10 +00:00
|
|
|
{
|
2008-08-23 09:23:09 +00:00
|
|
|
mmgr = ASE_MMGR_GETDFL();
|
|
|
|
|
|
|
|
ASE_ASSERTX (mmgr != ASE_NULL,
|
|
|
|
"Set the memory manager with ASE_MMGR_SETDFL()");
|
|
|
|
|
|
|
|
if (mmgr == ASE_NULL) return ASE_NULL;
|
2008-02-29 00:50:10 +00:00
|
|
|
}
|
2008-08-23 09:23:09 +00:00
|
|
|
|
2008-09-25 01:18:50 +00:00
|
|
|
map = (ase_map_t*) ASE_MMGR_ALLOC (mmgr, ASE_SIZEOF(ase_map_t) + ext);
|
|
|
|
if (map == ASE_NULL) return ASE_NULL;
|
|
|
|
|
2008-08-30 09:02:26 +00:00
|
|
|
if (ase_map_init (map, mmgr, capa, factor) == ASE_NULL)
|
|
|
|
{
|
|
|
|
ASE_MMGR_FREE (mmgr, map);
|
|
|
|
return ASE_NULL;
|
|
|
|
}
|
|
|
|
|
2008-09-01 04:56:47 +00:00
|
|
|
return map;
|
2008-08-30 09:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ase_map_close (map_t* map)
|
|
|
|
{
|
|
|
|
ase_map_fini (map);
|
|
|
|
ASE_MMGR_FREE (map->mmgr, map);
|
|
|
|
}
|
|
|
|
|
2008-09-26 05:06:33 +00:00
|
|
|
map_t* ase_map_init (map_t* map, mmgr_t* mmgr, size_t capa, int factor)
|
2008-08-30 09:02:26 +00:00
|
|
|
{
|
2008-09-24 05:37:38 +00:00
|
|
|
ASE_ASSERTX (capa > 0,
|
|
|
|
"The initial capacity should be greater than 0. Otherwise, it is adjusted to 1 in the release mode");
|
2008-08-30 09:02:26 +00:00
|
|
|
ASE_ASSERTX (factor >= 0 && factor <= 100,
|
2008-09-24 05:37:38 +00:00
|
|
|
"The load factor should be between 0 and 100 inclusive. In the release mode, a value out of the range is adjusted to 100");
|
|
|
|
|
|
|
|
/* some initial adjustment */
|
|
|
|
if (capa <= 0) capa = 1;
|
|
|
|
if (factor > 100) factor = 100;
|
2008-08-29 04:29:53 +00:00
|
|
|
|
2008-08-30 09:02:26 +00:00
|
|
|
/* do not zero out the extension */
|
2008-10-01 05:14:20 +00:00
|
|
|
ASE_MEMSET (map, 0, SIZEOF(*map));
|
2008-08-30 09:02:26 +00:00
|
|
|
map->mmgr = mmgr;
|
2008-08-23 09:23:09 +00:00
|
|
|
|
2008-08-30 09:02:26 +00:00
|
|
|
map->bucket = ASE_MMGR_ALLOC (mmgr, capa*SIZEOF(pair_t*));
|
2008-09-01 05:16:52 +00:00
|
|
|
if (map->bucket == ASE_NULL) return ASE_NULL;
|
2008-08-29 04:29:53 +00:00
|
|
|
|
2008-09-25 01:18:50 +00:00
|
|
|
/*for (i = 0; i < capa; i++) map->bucket[i] = ASE_NULL;*/
|
|
|
|
ASE_MEMSET (map->bucket, 0, capa*SIZEOF(pair_t*));
|
|
|
|
|
2008-09-26 05:06:33 +00:00
|
|
|
map->scale[ASE_MAP_KEY] = 1;
|
|
|
|
map->scale[ASE_MAP_VAL] = 1;
|
|
|
|
map->factor = factor;
|
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
map->size = 0;
|
2008-08-29 08:21:25 +00:00
|
|
|
map->capa = capa;
|
2008-09-25 01:18:50 +00:00
|
|
|
map->threshold = map->capa * map->factor / 100;
|
2008-09-27 01:26:20 +00:00
|
|
|
if (map->capa > 0 && map->threshold <= 0) map->threshold = 1;
|
2008-08-23 09:23:09 +00:00
|
|
|
|
|
|
|
map->hasher = hash_key;
|
|
|
|
map->comper = comp_key;
|
2008-10-09 05:43:56 +00:00
|
|
|
map->copier[ASE_MAP_KEY] = ASE_MAP_COPIER_SIMPLE;
|
|
|
|
map->copier[ASE_MAP_VAL] = ASE_MAP_COPIER_SIMPLE;
|
2008-08-29 04:29:53 +00:00
|
|
|
|
2008-09-25 01:18:50 +00:00
|
|
|
/*
|
|
|
|
map->freeer[ASE_MAP_KEY] = ASE_NULL;
|
|
|
|
map->freeer[ASE_MAP_VAL] = ASE_NULL;
|
|
|
|
map->keeper = ASE_NULL;
|
|
|
|
map->sizer = ASE_NULL;
|
|
|
|
*/
|
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
2008-08-30 09:02:26 +00:00
|
|
|
void ase_map_fini (map_t* map)
|
2008-08-27 02:50:12 +00:00
|
|
|
{
|
|
|
|
ase_map_clear (map);
|
2008-08-30 09:02:26 +00:00
|
|
|
ASE_MMGR_FREE (map->mmgr, map->bucket);
|
2008-08-27 02:50:12 +00:00
|
|
|
}
|
|
|
|
|
2008-09-28 03:51:23 +00:00
|
|
|
void* ase_map_getextension (map_t* map)
|
2008-08-27 02:50:12 +00:00
|
|
|
{
|
2008-09-28 03:51:23 +00:00
|
|
|
return map + 1;
|
|
|
|
}
|
2008-08-27 02:50:12 +00:00
|
|
|
|
2008-09-28 03:51:23 +00:00
|
|
|
mmgr_t* ase_map_getmmgr (map_t* map)
|
|
|
|
{
|
|
|
|
return map->mmgr;
|
|
|
|
}
|
2008-08-27 02:50:12 +00:00
|
|
|
|
2008-09-28 03:51:23 +00:00
|
|
|
void ase_map_setmmgr (map_t* map, mmgr_t* mmgr)
|
|
|
|
{
|
|
|
|
map->mmgr = mmgr;
|
|
|
|
}
|
2008-08-27 02:50:12 +00:00
|
|
|
|
2008-09-30 01:11:08 +00:00
|
|
|
int ase_map_getscale (map_t* map, ase_map_id_t id)
|
2008-09-26 05:06:33 +00:00
|
|
|
{
|
|
|
|
ASE_ASSERTX (id == ASE_MAP_KEY || id == ASE_MAP_VAL,
|
|
|
|
"The ID should be either ASE_MAP_KEY or ASE_MAP_VAL");
|
|
|
|
return map->scale[id];
|
|
|
|
}
|
|
|
|
|
2008-09-30 01:11:08 +00:00
|
|
|
void ase_map_setscale (map_t* map, ase_map_id_t id, int scale)
|
2008-09-26 05:06:33 +00:00
|
|
|
{
|
|
|
|
ASE_ASSERTX (id == ASE_MAP_KEY || id == ASE_MAP_VAL,
|
|
|
|
"The ID should be either ASE_MAP_KEY or ASE_MAP_VAL");
|
|
|
|
|
|
|
|
ASE_ASSERTX (scale > 0 && scale <= ASE_TYPE_MAX(ase_byte_t),
|
|
|
|
"The scale should be larger than 0 and less than or equal to the maximum value that the ase_byte_t type can hold");
|
|
|
|
|
|
|
|
if (scale <= 0) scale = 1;
|
|
|
|
if (scale > ASE_TYPE_MAX(ase_byte_t)) scale = ASE_TYPE_MAX(ase_byte_t);
|
|
|
|
|
|
|
|
map->scale[id] = scale;
|
|
|
|
}
|
|
|
|
|
2008-09-30 01:11:08 +00:00
|
|
|
copier_t ase_map_getcopier (map_t* map, ase_map_id_t id)
|
2008-08-23 09:23:09 +00:00
|
|
|
{
|
|
|
|
ASE_ASSERTX (id == ASE_MAP_KEY || id == ASE_MAP_VAL,
|
|
|
|
"The ID should be either ASE_MAP_KEY or ASE_MAP_VAL");
|
|
|
|
return map->copier[id];
|
|
|
|
}
|
|
|
|
|
2008-09-30 01:11:08 +00:00
|
|
|
void ase_map_setcopier (map_t* map, ase_map_id_t id, copier_t copier)
|
2008-08-23 09:23:09 +00:00
|
|
|
{
|
|
|
|
ASE_ASSERTX (id == ASE_MAP_KEY || id == ASE_MAP_VAL,
|
|
|
|
"The ID should be either ASE_MAP_KEY or ASE_MAP_VAL");
|
2008-10-09 05:43:56 +00:00
|
|
|
if (copier == ASE_NULL) copier = ASE_MAP_COPIER_SIMPLE;
|
2008-08-23 09:23:09 +00:00
|
|
|
map->copier[id] = copier;
|
|
|
|
}
|
|
|
|
|
2008-09-30 01:11:08 +00:00
|
|
|
freeer_t ase_map_getfreeer (map_t* map, ase_map_id_t id)
|
2008-08-23 09:23:09 +00:00
|
|
|
{
|
|
|
|
ASE_ASSERTX (id == ASE_MAP_KEY || id == ASE_MAP_VAL,
|
|
|
|
"The ID should be either ASE_MAP_KEY or ASE_MAP_VAL");
|
|
|
|
return map->freeer[id];
|
|
|
|
}
|
|
|
|
|
2008-09-30 01:11:08 +00:00
|
|
|
void ase_map_setfreeer (map_t* map, ase_map_id_t id, freeer_t freeer)
|
2008-08-23 09:23:09 +00:00
|
|
|
{
|
|
|
|
ASE_ASSERTX (id == ASE_MAP_KEY || id == ASE_MAP_VAL,
|
|
|
|
"The ID should be either ASE_MAP_KEY or ASE_MAP_VAL");
|
|
|
|
map->freeer[id] = freeer;
|
|
|
|
}
|
|
|
|
|
|
|
|
hasher_t ase_map_gethasher (map_t* map)
|
|
|
|
{
|
|
|
|
return map->hasher;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ase_map_sethasher (map_t* map, hasher_t hasher)
|
|
|
|
{
|
2008-08-30 08:51:04 +00:00
|
|
|
if (hasher == ASE_NULL) hasher = hash_key;
|
2008-08-23 09:23:09 +00:00
|
|
|
map->hasher = hasher;
|
|
|
|
}
|
|
|
|
|
|
|
|
comper_t ase_map_getcomper (map_t* map)
|
|
|
|
{
|
|
|
|
return map->comper;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ase_map_setcomper (map_t* map, comper_t comper)
|
|
|
|
{
|
2008-08-30 08:51:04 +00:00
|
|
|
if (comper == ASE_NULL) comper = comp_key;
|
2008-08-23 09:23:09 +00:00
|
|
|
map->comper = comper;
|
|
|
|
}
|
|
|
|
|
2008-09-24 08:47:23 +00:00
|
|
|
keeper_t ase_map_getkeeper (map_t* map)
|
|
|
|
{
|
|
|
|
return map->keeper;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ase_map_setkeeper (map_t* map, keeper_t keeper)
|
|
|
|
{
|
|
|
|
map->keeper = keeper;
|
|
|
|
}
|
|
|
|
|
|
|
|
sizer_t ase_map_getsizer (map_t* map)
|
2008-09-24 05:27:24 +00:00
|
|
|
{
|
|
|
|
return map->sizer;
|
|
|
|
}
|
|
|
|
|
2008-09-24 08:47:23 +00:00
|
|
|
void ase_map_setsizer (map_t* map, sizer_t sizer)
|
2008-09-24 05:27:24 +00:00
|
|
|
{
|
|
|
|
map->sizer = sizer;
|
|
|
|
}
|
|
|
|
|
2008-10-08 05:30:16 +00:00
|
|
|
size_t ase_map_getsize (map_t* map)
|
|
|
|
{
|
|
|
|
return map->size;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t ase_map_getcapa (map_t* map)
|
|
|
|
{
|
|
|
|
return map->capa;
|
|
|
|
}
|
|
|
|
|
2008-08-30 08:51:04 +00:00
|
|
|
pair_t* ase_map_search (map_t* map, const void* kptr, size_t klen)
|
2007-05-02 01:07:00 +00:00
|
|
|
{
|
2008-08-23 09:23:09 +00:00
|
|
|
pair_t* pair;
|
|
|
|
size_t hc;
|
2007-05-02 01:07:00 +00:00
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
hc = map->hasher(map,kptr,klen) % map->capa;
|
2008-08-30 09:02:26 +00:00
|
|
|
pair = map->bucket[hc];
|
2007-05-02 01:07:00 +00:00
|
|
|
|
|
|
|
while (pair != ASE_NULL)
|
|
|
|
{
|
2008-08-27 02:50:12 +00:00
|
|
|
if (map->comper (map, KPTR(pair), KLEN(pair), kptr, klen) == 0)
|
|
|
|
{
|
|
|
|
return pair;
|
|
|
|
}
|
2007-05-02 01:07:00 +00:00
|
|
|
|
2008-08-27 04:31:24 +00:00
|
|
|
pair = NEXT(pair);
|
2007-05-02 01:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ASE_NULL;
|
|
|
|
}
|
|
|
|
|
2008-08-30 08:51:04 +00:00
|
|
|
int ase_map_put (
|
2008-08-23 09:23:09 +00:00
|
|
|
map_t* map, void* kptr, size_t klen,
|
|
|
|
void* vptr, size_t vlen, pair_t** px)
|
2007-05-02 01:07:00 +00:00
|
|
|
{
|
2008-08-27 04:31:24 +00:00
|
|
|
pair_t* pair, * p, * prev, * next;
|
2008-08-23 09:23:09 +00:00
|
|
|
size_t hc;
|
2007-05-02 01:07:00 +00:00
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
hc = map->hasher(map,kptr,klen) % map->capa;
|
2008-08-30 09:02:26 +00:00
|
|
|
pair = map->bucket[hc];
|
2008-08-27 04:31:24 +00:00
|
|
|
prev = ASE_NULL;
|
2007-05-02 01:07:00 +00:00
|
|
|
|
|
|
|
while (pair != ASE_NULL)
|
|
|
|
{
|
2008-08-27 04:31:24 +00:00
|
|
|
next = NEXT(pair);
|
2007-05-02 01:07:00 +00:00
|
|
|
|
2008-08-27 02:50:12 +00:00
|
|
|
if (map->comper (map, KPTR(pair), KLEN(pair), kptr, klen) == 0)
|
2008-08-23 09:23:09 +00:00
|
|
|
{
|
|
|
|
p = change_pair_val (map, pair, vptr, vlen);
|
|
|
|
if (p == ASE_NULL) return -1; /* change error */
|
|
|
|
if (p != pair)
|
|
|
|
{
|
|
|
|
/* the pair has been reallocated. relink it */
|
2008-08-30 09:02:26 +00:00
|
|
|
if (prev == ASE_NULL) map->bucket[hc] = p;
|
2008-08-27 04:31:24 +00:00
|
|
|
else NEXT(prev) = p;
|
|
|
|
NEXT(p) = next;
|
2008-08-23 09:23:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (px != ASE_NULL) *px = p;
|
2007-05-02 01:07:00 +00:00
|
|
|
return 0; /* value changed for the existing key */
|
|
|
|
}
|
2008-08-23 09:23:09 +00:00
|
|
|
|
|
|
|
prev = pair;
|
|
|
|
pair = next;
|
2007-05-02 01:07:00 +00:00
|
|
|
}
|
|
|
|
|
2008-08-30 09:02:26 +00:00
|
|
|
if (map->threshold > 0 && map->size >= map->threshold)
|
2007-07-29 23:42:00 +00:00
|
|
|
{
|
2008-08-23 09:23:09 +00:00
|
|
|
if (reorganize(map) == 0) /* ignore the error */
|
2007-07-29 23:42:00 +00:00
|
|
|
{
|
2008-08-23 09:23:09 +00:00
|
|
|
hc = map->hasher(map,kptr,klen) % map->capa;
|
2007-07-29 23:42:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-29 00:50:10 +00:00
|
|
|
ASE_ASSERT (pair == ASE_NULL);
|
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
pair = alloc_pair (map, kptr, klen, vptr, vlen);
|
|
|
|
if (pair == ASE_NULL) return -1; /* error */
|
|
|
|
|
2008-08-30 09:02:26 +00:00
|
|
|
NEXT(pair) = map->bucket[hc];
|
|
|
|
map->bucket[hc] = pair;
|
2007-05-02 01:07:00 +00:00
|
|
|
map->size++;
|
|
|
|
|
|
|
|
if (px != ASE_NULL) *px = pair;
|
|
|
|
return 1; /* new key added */
|
|
|
|
}
|
|
|
|
|
2008-08-30 08:51:04 +00:00
|
|
|
pair_t* ase_map_upsert (
|
|
|
|
map_t* map, void* kptr, size_t klen, void* vptr, size_t vlen)
|
|
|
|
{
|
|
|
|
/* update if the key exists, otherwise insert a new pair */
|
|
|
|
int n;
|
|
|
|
pair_t* px;
|
|
|
|
|
|
|
|
n = ase_map_put (map, kptr, klen, vptr, vlen, &px);
|
|
|
|
if (n < 0) return ASE_NULL;
|
|
|
|
return px;
|
|
|
|
}
|
|
|
|
|
2008-09-26 05:06:33 +00:00
|
|
|
pair_t* ase_map_insert (map_t* map, void* kptr, size_t klen, void* vptr, size_t vlen)
|
2008-08-27 05:04:16 +00:00
|
|
|
{
|
|
|
|
pair_t* pair;
|
|
|
|
size_t hc;
|
|
|
|
|
|
|
|
hc = map->hasher(map,kptr,klen) % map->capa;
|
2008-08-30 09:02:26 +00:00
|
|
|
pair = map->bucket[hc];
|
2008-08-27 05:04:16 +00:00
|
|
|
|
|
|
|
while (pair != ASE_NULL)
|
|
|
|
{
|
|
|
|
if (map->comper (map, KPTR(pair), KLEN(pair), kptr, klen) == 0)
|
|
|
|
{
|
|
|
|
return ASE_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
pair = NEXT(pair);
|
|
|
|
}
|
|
|
|
|
2008-08-30 09:02:26 +00:00
|
|
|
if (map->threshold > 0 && map->size >= map->threshold)
|
2008-08-27 05:04:16 +00:00
|
|
|
{
|
|
|
|
if (reorganize(map) == 0) /* ignore the error */
|
|
|
|
{
|
|
|
|
hc = map->hasher(map,kptr,klen) % map->capa;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ASE_ASSERT (pair == ASE_NULL);
|
|
|
|
|
|
|
|
pair = alloc_pair (map, kptr, klen, vptr, vlen);
|
|
|
|
if (pair == ASE_NULL) return ASE_NULL;
|
|
|
|
|
2008-08-30 09:02:26 +00:00
|
|
|
NEXT(pair) = map->bucket[hc];
|
|
|
|
map->bucket[hc] = pair;
|
2008-08-27 05:04:16 +00:00
|
|
|
map->size++;
|
|
|
|
|
|
|
|
return pair;
|
|
|
|
}
|
|
|
|
|
2008-09-26 05:06:33 +00:00
|
|
|
pair_t* ase_map_update (map_t* map, void* kptr, size_t klen, void* vptr, size_t vlen)
|
2007-05-02 01:07:00 +00:00
|
|
|
{
|
2008-08-27 04:31:24 +00:00
|
|
|
pair_t* pair, * p, * prev, * next;
|
2008-08-23 09:23:09 +00:00
|
|
|
size_t hc;
|
2007-05-02 01:07:00 +00:00
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
hc = map->hasher(map,kptr,klen) % map->capa;
|
2008-08-30 09:02:26 +00:00
|
|
|
pair = map->bucket[hc];
|
2008-08-27 04:31:24 +00:00
|
|
|
prev = ASE_NULL;
|
2007-05-02 01:07:00 +00:00
|
|
|
|
|
|
|
while (pair != ASE_NULL)
|
|
|
|
{
|
2008-08-27 04:31:24 +00:00
|
|
|
next = NEXT(pair);
|
|
|
|
|
2008-08-27 02:50:12 +00:00
|
|
|
if (map->comper (map, KPTR(pair), KLEN(pair), kptr, klen) == 0)
|
2007-05-02 01:07:00 +00:00
|
|
|
{
|
2008-08-27 04:31:24 +00:00
|
|
|
p = change_pair_val (map, pair, vptr, vlen);
|
|
|
|
|
|
|
|
if (p == ASE_NULL) return ASE_NULL; /* change error */
|
|
|
|
if (p != pair)
|
|
|
|
{
|
|
|
|
/* the pair has been reallocated. relink it */
|
2008-08-30 09:02:26 +00:00
|
|
|
if (prev == ASE_NULL) map->bucket[hc] = p;
|
2008-08-27 04:31:24 +00:00
|
|
|
else NEXT(prev) = p;
|
|
|
|
NEXT(p) = next;
|
|
|
|
}
|
|
|
|
|
2008-09-25 01:18:50 +00:00
|
|
|
return p; /* value changed for the existing key */
|
2007-05-02 01:07:00 +00:00
|
|
|
}
|
2008-08-27 04:31:24 +00:00
|
|
|
|
|
|
|
prev = pair;
|
|
|
|
pair = next;
|
2007-05-02 01:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ASE_NULL;
|
|
|
|
}
|
|
|
|
|
2008-08-27 04:31:24 +00:00
|
|
|
int ase_map_delete (map_t* map, const void* kptr, size_t klen)
|
2007-05-02 01:07:00 +00:00
|
|
|
{
|
2008-08-23 09:23:09 +00:00
|
|
|
pair_t* pair, * prev;
|
|
|
|
size_t hc;
|
2007-05-02 01:07:00 +00:00
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
hc = map->hasher(map,kptr,klen) % map->capa;
|
2008-08-30 09:02:26 +00:00
|
|
|
pair = map->bucket[hc];
|
2007-05-02 01:07:00 +00:00
|
|
|
prev = ASE_NULL;
|
|
|
|
|
|
|
|
while (pair != ASE_NULL)
|
|
|
|
{
|
2008-08-27 02:50:12 +00:00
|
|
|
if (map->comper (map, KPTR(pair), KLEN(pair), kptr, klen) == 0)
|
2007-05-02 01:07:00 +00:00
|
|
|
{
|
|
|
|
if (prev == ASE_NULL)
|
2008-08-30 09:02:26 +00:00
|
|
|
map->bucket[hc] = NEXT(pair);
|
2008-08-27 04:31:24 +00:00
|
|
|
else NEXT(prev) = NEXT(pair);
|
2008-02-29 00:50:10 +00:00
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
free_pair (map, pair);
|
2007-05-02 01:07:00 +00:00
|
|
|
map->size--;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
prev = pair;
|
2008-08-27 04:31:24 +00:00
|
|
|
pair = NEXT(pair);
|
2007-05-02 01:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-09-28 03:51:23 +00:00
|
|
|
void ase_map_clear (map_t* map)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
pair_t* pair, * next;
|
|
|
|
|
|
|
|
for (i = 0; i < map->capa; i++)
|
|
|
|
{
|
|
|
|
pair = map->bucket[i];
|
|
|
|
|
|
|
|
while (pair != ASE_NULL)
|
|
|
|
{
|
|
|
|
next = NEXT(pair);
|
|
|
|
free_pair (map, pair);
|
|
|
|
map->size--;
|
|
|
|
pair = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
map->bucket[i] = ASE_NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-27 02:50:12 +00:00
|
|
|
void ase_map_walk (map_t* map, walker_t walker, void* arg)
|
2007-05-02 01:07:00 +00:00
|
|
|
{
|
2008-08-23 09:23:09 +00:00
|
|
|
size_t i;
|
|
|
|
pair_t* pair, * next;
|
2007-05-02 01:07:00 +00:00
|
|
|
|
|
|
|
for (i = 0; i < map->capa; i++)
|
|
|
|
{
|
2008-08-30 09:02:26 +00:00
|
|
|
pair = map->bucket[i];
|
2007-05-02 01:07:00 +00:00
|
|
|
|
|
|
|
while (pair != ASE_NULL)
|
|
|
|
{
|
2008-08-27 04:31:24 +00:00
|
|
|
next = NEXT(pair);
|
2008-08-27 02:50:12 +00:00
|
|
|
if (walker(map, pair, arg) == ASE_MAP_WALK_STOP) return;
|
2007-05-02 01:07:00 +00:00
|
|
|
pair = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
pair_t* ase_map_getfirstpair (map_t* map, size_t* buckno)
|
2007-10-02 00:22:00 +00:00
|
|
|
{
|
2008-08-23 09:23:09 +00:00
|
|
|
size_t i;
|
|
|
|
pair_t* pair;
|
2007-10-02 00:22:00 +00:00
|
|
|
|
|
|
|
for (i = 0; i < map->capa; i++)
|
|
|
|
{
|
2008-08-30 09:02:26 +00:00
|
|
|
pair = map->bucket[i];
|
2007-10-02 00:22:00 +00:00
|
|
|
if (pair != ASE_NULL)
|
|
|
|
{
|
|
|
|
*buckno = i;
|
|
|
|
return pair;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ASE_NULL;
|
|
|
|
}
|
|
|
|
|
2008-08-29 04:29:53 +00:00
|
|
|
pair_t* ase_map_getnextpair (map_t* map, pair_t* pair, size_t* buckno)
|
2007-10-02 00:22:00 +00:00
|
|
|
{
|
2008-08-23 09:23:09 +00:00
|
|
|
size_t i;
|
|
|
|
pair_t* next;
|
2007-10-02 00:22:00 +00:00
|
|
|
|
2008-08-27 04:31:24 +00:00
|
|
|
next = NEXT(pair);
|
2007-10-02 00:22:00 +00:00
|
|
|
if (next != ASE_NULL)
|
|
|
|
{
|
|
|
|
/* no change in bucket number */
|
|
|
|
return next;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = (*buckno)+1; i < map->capa; i++)
|
|
|
|
{
|
2008-08-30 09:02:26 +00:00
|
|
|
pair = map->bucket[i];
|
2007-10-02 00:22:00 +00:00
|
|
|
if (pair != ASE_NULL)
|
|
|
|
{
|
|
|
|
*buckno = i;
|
|
|
|
return pair;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ASE_NULL;
|
|
|
|
}
|
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
static int reorganize (map_t* map)
|
2007-07-29 23:42:00 +00:00
|
|
|
{
|
2008-08-23 09:23:09 +00:00
|
|
|
size_t i, hc, new_capa;
|
|
|
|
pair_t** new_buck;
|
2007-07-29 23:42:00 +00:00
|
|
|
|
2008-09-24 05:27:24 +00:00
|
|
|
if (map->sizer)
|
|
|
|
{
|
|
|
|
new_capa = map->sizer (map, map->capa + 1);
|
|
|
|
|
|
|
|
/* if no change in capacity, return success
|
|
|
|
* without reorganization */
|
|
|
|
if (new_capa == map->capa) return 0;
|
2008-09-24 05:37:38 +00:00
|
|
|
|
|
|
|
/* adjust to 1 if the new capacity is not reasonable */
|
|
|
|
if (new_capa <= 0) new_capa = 1;
|
2008-09-24 05:27:24 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* the bucket is doubled until it grows up to 65536 slots.
|
|
|
|
* once it has reached it, it grows by 65536 slots */
|
|
|
|
new_capa = (map->capa >= 65536)? (map->capa + 65536): (map->capa << 1);
|
|
|
|
}
|
2007-07-29 23:42:00 +00:00
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
new_buck = (pair_t**) ASE_MMGR_ALLOC (
|
2008-09-25 01:18:50 +00:00
|
|
|
map->mmgr, new_capa*SIZEOF(pair_t*));
|
2007-07-29 23:42:00 +00:00
|
|
|
if (new_buck == ASE_NULL)
|
|
|
|
{
|
2008-08-29 04:29:53 +00:00
|
|
|
/* reorganization is disabled once it fails */
|
2008-08-30 09:02:26 +00:00
|
|
|
map->threshold = 0;
|
2007-07-29 23:42:00 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-09-25 01:18:50 +00:00
|
|
|
/*for (i = 0; i < new_capa; i++) new_buck[i] = ASE_NULL;*/
|
|
|
|
ASE_MEMSET (new_buck, 0, new_capa*SIZEOF(pair_t*));
|
2007-07-29 23:42:00 +00:00
|
|
|
|
|
|
|
for (i = 0; i < map->capa; i++)
|
|
|
|
{
|
2008-08-30 09:02:26 +00:00
|
|
|
pair_t* pair = map->bucket[i];
|
2007-07-29 23:42:00 +00:00
|
|
|
|
|
|
|
while (pair != ASE_NULL)
|
|
|
|
{
|
2008-08-27 04:31:24 +00:00
|
|
|
pair_t* next = NEXT(pair);
|
2007-07-29 23:42:00 +00:00
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
hc = map->hasher (map,
|
|
|
|
KPTR(pair),
|
|
|
|
KLEN(pair)) % new_capa;
|
2007-07-29 23:42:00 +00:00
|
|
|
|
2008-08-27 04:31:24 +00:00
|
|
|
NEXT(pair) = new_buck[hc];
|
2007-07-29 23:42:00 +00:00
|
|
|
new_buck[hc] = pair;
|
|
|
|
|
|
|
|
pair = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-30 09:02:26 +00:00
|
|
|
ASE_MMGR_FREE (map->mmgr, map->bucket);
|
|
|
|
map->bucket = new_buck;
|
2007-07-29 23:42:00 +00:00
|
|
|
map->capa = new_capa;
|
2008-08-30 09:02:26 +00:00
|
|
|
map->threshold = map->capa * map->factor / 100;
|
2007-07-29 23:42:00 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2008-08-23 09:23:09 +00:00
|
|
|
|
2008-10-08 05:30:16 +00:00
|
|
|
void* ase_map_copysimple (map_t* map, void* dptr, size_t dlen)
|
|
|
|
{
|
|
|
|
return dptr;
|
|
|
|
}
|
|
|
|
|
2008-08-23 09:23:09 +00:00
|
|
|
void* ase_map_copyinline (map_t* map, void* dptr, size_t dlen)
|
|
|
|
{
|
|
|
|
/* this is a dummy copier */
|
|
|
|
return ASE_NULL;
|
|
|
|
}
|