2017-09-30 00:54:22 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "oidmap.h"
|
|
|
|
|
2018-08-28 23:22:55 +02:00
|
|
|
static int oidmap_neq(const void *hashmap_cmp_fn_data,
|
2019-10-07 01:30:37 +02:00
|
|
|
const struct hashmap_entry *e1,
|
|
|
|
const struct hashmap_entry *e2,
|
2018-08-28 23:22:55 +02:00
|
|
|
const void *keydata)
|
2017-09-30 00:54:22 +02:00
|
|
|
{
|
2019-10-07 01:30:37 +02:00
|
|
|
const struct oidmap_entry *a, *b;
|
|
|
|
|
|
|
|
a = container_of(e1, const struct oidmap_entry, internal_entry);
|
|
|
|
b = container_of(e2, const struct oidmap_entry, internal_entry);
|
|
|
|
|
2017-09-30 00:54:22 +02:00
|
|
|
if (keydata)
|
2019-10-07 01:30:37 +02:00
|
|
|
return !oideq(&a->oid, (const struct object_id *) keydata);
|
|
|
|
return !oideq(&a->oid, &b->oid);
|
2017-09-30 00:54:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void oidmap_init(struct oidmap *map, size_t initial_size)
|
|
|
|
{
|
2018-08-28 23:22:55 +02:00
|
|
|
hashmap_init(&map->map, oidmap_neq, NULL, initial_size);
|
2017-09-30 00:54:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void oidmap_free(struct oidmap *map, int free_entries)
|
|
|
|
{
|
|
|
|
if (!map)
|
|
|
|
return;
|
2019-10-07 01:30:40 +02:00
|
|
|
|
|
|
|
/* TODO: make oidmap itself not depend on struct layouts */
|
|
|
|
hashmap_free_(&map->map, free_entries ? 0 : -1);
|
2017-09-30 00:54:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void *oidmap_get(const struct oidmap *map, const struct object_id *key)
|
|
|
|
{
|
2017-12-23 00:27:29 +01:00
|
|
|
if (!map->map.cmpfn)
|
|
|
|
return NULL;
|
|
|
|
|
2019-07-19 20:30:19 +02:00
|
|
|
return hashmap_get_from_hash(&map->map, oidhash(key), key);
|
2017-09-30 00:54:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void *oidmap_remove(struct oidmap *map, const struct object_id *key)
|
|
|
|
{
|
|
|
|
struct hashmap_entry entry;
|
2017-12-23 00:27:29 +01:00
|
|
|
|
|
|
|
if (!map->map.cmpfn)
|
|
|
|
oidmap_init(map, 0);
|
|
|
|
|
2019-07-19 20:30:19 +02:00
|
|
|
hashmap_entry_init(&entry, oidhash(key));
|
2017-09-30 00:54:22 +02:00
|
|
|
return hashmap_remove(&map->map, &entry, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *oidmap_put(struct oidmap *map, void *entry)
|
|
|
|
{
|
|
|
|
struct oidmap_entry *to_put = entry;
|
2017-12-23 00:27:29 +01:00
|
|
|
|
|
|
|
if (!map->map.cmpfn)
|
|
|
|
oidmap_init(map, 0);
|
|
|
|
|
2019-07-19 20:30:19 +02:00
|
|
|
hashmap_entry_init(&to_put->internal_entry, oidhash(&to_put->oid));
|
2019-10-07 01:30:32 +02:00
|
|
|
return hashmap_put(&map->map, &to_put->internal_entry);
|
2017-09-30 00:54:22 +02:00
|
|
|
}
|