2023-02-24 00:09:23 +00:00
|
|
|
#include "git-compat-util.h"
|
2023-04-22 20:17:20 +00:00
|
|
|
#include "hash.h"
|
2017-09-29 22:54:22 +00:00
|
|
|
#include "oidmap.h"
|
|
|
|
|
2022-08-25 17:09:48 +00:00
|
|
|
static int oidmap_neq(const void *hashmap_cmp_fn_data UNUSED,
|
2019-10-06 23:30:37 +00:00
|
|
|
const struct hashmap_entry *e1,
|
|
|
|
const struct hashmap_entry *e2,
|
2018-08-28 21:22:55 +00:00
|
|
|
const void *keydata)
|
2017-09-29 22:54:22 +00:00
|
|
|
{
|
2019-10-06 23:30:37 +00: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-29 22:54:22 +00:00
|
|
|
if (keydata)
|
2019-10-06 23:30:37 +00:00
|
|
|
return !oideq(&a->oid, (const struct object_id *) keydata);
|
|
|
|
return !oideq(&a->oid, &b->oid);
|
2017-09-29 22:54:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void oidmap_init(struct oidmap *map, size_t initial_size)
|
|
|
|
{
|
2018-08-28 21:22:55 +00:00
|
|
|
hashmap_init(&map->map, oidmap_neq, NULL, initial_size);
|
2017-09-29 22:54:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void oidmap_free(struct oidmap *map, int free_entries)
|
|
|
|
{
|
|
|
|
if (!map)
|
|
|
|
return;
|
2019-10-06 23:30:40 +00:00
|
|
|
|
|
|
|
/* TODO: make oidmap itself not depend on struct layouts */
|
2020-11-02 18:55:05 +00:00
|
|
|
hashmap_clear_(&map->map, free_entries ? 0 : -1);
|
2017-09-29 22:54:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void *oidmap_get(const struct oidmap *map, const struct object_id *key)
|
|
|
|
{
|
2017-12-22 23:27:29 +00:00
|
|
|
if (!map->map.cmpfn)
|
|
|
|
return NULL;
|
|
|
|
|
2019-07-19 18:30:19 +00:00
|
|
|
return hashmap_get_from_hash(&map->map, oidhash(key), key);
|
2017-09-29 22:54:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void *oidmap_remove(struct oidmap *map, const struct object_id *key)
|
|
|
|
{
|
|
|
|
struct hashmap_entry entry;
|
2017-12-22 23:27:29 +00:00
|
|
|
|
|
|
|
if (!map->map.cmpfn)
|
|
|
|
oidmap_init(map, 0);
|
|
|
|
|
2019-07-19 18:30:19 +00:00
|
|
|
hashmap_entry_init(&entry, oidhash(key));
|
2017-09-29 22:54:22 +00:00
|
|
|
return hashmap_remove(&map->map, &entry, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *oidmap_put(struct oidmap *map, void *entry)
|
|
|
|
{
|
|
|
|
struct oidmap_entry *to_put = entry;
|
2017-12-22 23:27:29 +00:00
|
|
|
|
|
|
|
if (!map->map.cmpfn)
|
|
|
|
oidmap_init(map, 0);
|
|
|
|
|
2019-07-19 18:30:19 +00:00
|
|
|
hashmap_entry_init(&to_put->internal_entry, oidhash(&to_put->oid));
|
2019-10-06 23:30:32 +00:00
|
|
|
return hashmap_put(&map->map, &to_put->internal_entry);
|
2017-09-29 22:54:22 +00:00
|
|
|
}
|