blob: 286a04a53c20119fe567eec4accbaba4d9f04a97 [file] [log] [blame]
Jonathan Tan9e6fabde2017-09-29 15:54:22 -07001#include "cache.h"
2#include "oidmap.h"
3
Jeff Kingcc00e5c2018-08-28 17:22:55 -04004static int oidmap_neq(const void *hashmap_cmp_fn_data,
Eric Wong939af162019-10-06 23:30:37 +00005 const struct hashmap_entry *e1,
6 const struct hashmap_entry *e2,
Jeff Kingcc00e5c2018-08-28 17:22:55 -04007 const void *keydata)
Jonathan Tan9e6fabde2017-09-29 15:54:22 -07008{
Eric Wong939af162019-10-06 23:30:37 +00009 const struct oidmap_entry *a, *b;
10
11 a = container_of(e1, const struct oidmap_entry, internal_entry);
12 b = container_of(e2, const struct oidmap_entry, internal_entry);
13
Jonathan Tan9e6fabde2017-09-29 15:54:22 -070014 if (keydata)
Eric Wong939af162019-10-06 23:30:37 +000015 return !oideq(&a->oid, (const struct object_id *) keydata);
16 return !oideq(&a->oid, &b->oid);
Jonathan Tan9e6fabde2017-09-29 15:54:22 -070017}
18
Jonathan Tan9e6fabde2017-09-29 15:54:22 -070019void oidmap_init(struct oidmap *map, size_t initial_size)
20{
Jeff Kingcc00e5c2018-08-28 17:22:55 -040021 hashmap_init(&map->map, oidmap_neq, NULL, initial_size);
Jonathan Tan9e6fabde2017-09-29 15:54:22 -070022}
23
24void oidmap_free(struct oidmap *map, int free_entries)
25{
26 if (!map)
27 return;
Eric Wongc8e424c2019-10-06 23:30:40 +000028
29 /* TODO: make oidmap itself not depend on struct layouts */
Elijah Newren6da1a252020-11-02 18:55:05 +000030 hashmap_clear_(&map->map, free_entries ? 0 : -1);
Jonathan Tan9e6fabde2017-09-29 15:54:22 -070031}
32
33void *oidmap_get(const struct oidmap *map, const struct object_id *key)
34{
Brandon Williamse2a5a022017-12-22 15:27:29 -080035 if (!map->map.cmpfn)
36 return NULL;
37
Junio C Hamanoc62bff22019-07-19 11:30:19 -070038 return hashmap_get_from_hash(&map->map, oidhash(key), key);
Jonathan Tan9e6fabde2017-09-29 15:54:22 -070039}
40
41void *oidmap_remove(struct oidmap *map, const struct object_id *key)
42{
43 struct hashmap_entry entry;
Brandon Williamse2a5a022017-12-22 15:27:29 -080044
45 if (!map->map.cmpfn)
46 oidmap_init(map, 0);
47
Junio C Hamanoc62bff22019-07-19 11:30:19 -070048 hashmap_entry_init(&entry, oidhash(key));
Jonathan Tan9e6fabde2017-09-29 15:54:22 -070049 return hashmap_remove(&map->map, &entry, key);
50}
51
52void *oidmap_put(struct oidmap *map, void *entry)
53{
54 struct oidmap_entry *to_put = entry;
Brandon Williamse2a5a022017-12-22 15:27:29 -080055
56 if (!map->map.cmpfn)
57 oidmap_init(map, 0);
58
Junio C Hamanoc62bff22019-07-19 11:30:19 -070059 hashmap_entry_init(&to_put->internal_entry, oidhash(&to_put->oid));
Eric Wong26b455f2019-10-06 23:30:32 +000060 return hashmap_put(&map->map, &to_put->internal_entry);
Jonathan Tan9e6fabde2017-09-29 15:54:22 -070061}