postgresql/contrib/tsearch2/snmap.c

99 lines
1.7 KiB
C
Raw Normal View History

2003-08-04 02:43:34 +02:00
/*
2003-07-21 12:27:44 +02:00
* simple but fast map from str to Oid
* Teodor Sigaev <teodor@sigaev.ru>
*/
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include "postgres.h"
#include "snmap.h"
#include "common.h"
static int
2003-08-04 02:43:34 +02:00
compareSNMapEntry(const void *a, const void *b)
{
return strcmp(((SNMapEntry *) a)->key, ((SNMapEntry *) b)->key);
2003-07-21 12:27:44 +02:00
}
2003-08-04 02:43:34 +02:00
void
addSNMap(SNMap * map, char *key, Oid value)
{
if (map->len >= map->reallen)
{
2003-07-21 12:27:44 +02:00
SNMapEntry *tmp;
2003-08-04 02:43:34 +02:00
int len = (map->reallen) ? 2 * map->reallen : 16;
tmp = (SNMapEntry *) realloc(map->list, sizeof(SNMapEntry) * len);
if (!tmp)
ereport(ERROR,
(errcode(ERRCODE_OUT_OF_MEMORY),
errmsg("out of memory")));
2003-08-04 02:43:34 +02:00
map->reallen = len;
map->list = tmp;
2003-07-21 12:27:44 +02:00
}
2003-08-04 02:43:34 +02:00
map->list[map->len].key = strdup(key);
if (!map->list[map->len].key)
ereport(ERROR,
(errcode(ERRCODE_OUT_OF_MEMORY),
errmsg("out of memory")));
2003-08-04 02:43:34 +02:00
map->list[map->len].value = value;
2003-07-21 12:27:44 +02:00
map->len++;
2003-08-04 02:43:34 +02:00
if (map->len > 1)
qsort(map->list, map->len, sizeof(SNMapEntry), compareSNMapEntry);
2003-07-21 12:27:44 +02:00
}
2003-08-04 02:43:34 +02:00
void
addSNMap_t(SNMap * map, text *key, Oid value)
{
char *k = text2char(key);
2003-07-21 12:27:44 +02:00
addSNMap(map, k, value);
pfree(k);
}
2003-08-04 02:43:34 +02:00
Oid
findSNMap(SNMap * map, char *key)
{
2003-07-21 12:27:44 +02:00
SNMapEntry *ptr;
SNMapEntry ks;
ks.key = key;
ks.value = 0;
2003-08-04 02:43:34 +02:00
if (map->len == 0 || !map->list)
return 0;
ptr = (SNMapEntry *) bsearch(&ks, map->list, map->len, sizeof(SNMapEntry), compareSNMapEntry);
2003-07-21 12:27:44 +02:00
return (ptr) ? ptr->value : 0;
}
2003-08-04 02:43:34 +02:00
Oid
findSNMap_t(SNMap * map, text *key)
{
char *k = text2char(key);
int res;
res = findSNMap(map, k);
2003-07-21 12:27:44 +02:00
pfree(k);
return res;
}
2003-08-04 02:43:34 +02:00
void
freeSNMap(SNMap * map)
{
SNMapEntry *entry = map->list;
if (map->list)
{
while (map->len)
{
if (entry->key)
free(entry->key);
entry++;
map->len--;
2003-07-21 12:27:44 +02:00
}
2003-08-04 02:43:34 +02:00
free(map->list);
2003-07-21 12:27:44 +02:00
}
2003-08-04 02:43:34 +02:00
memset(map, 0, sizeof(SNMap));
2003-07-21 12:27:44 +02:00
}