Jonathan Tan | 9e6fabde | 2017-09-29 15:54:22 -0700 | [diff] [blame] | 1 | #include "cache.h" |
| 2 | #include "oidmap.h" |
| 3 | |
Jeff King | cc00e5c | 2018-08-28 17:22:55 -0400 | [diff] [blame] | 4 | static int oidmap_neq(const void *hashmap_cmp_fn_data, |
Eric Wong | 939af16 | 2019-10-06 23:30:37 +0000 | [diff] [blame] | 5 | const struct hashmap_entry *e1, |
| 6 | const struct hashmap_entry *e2, |
Jeff King | cc00e5c | 2018-08-28 17:22:55 -0400 | [diff] [blame] | 7 | const void *keydata) |
Jonathan Tan | 9e6fabde | 2017-09-29 15:54:22 -0700 | [diff] [blame] | 8 | { |
Eric Wong | 939af16 | 2019-10-06 23:30:37 +0000 | [diff] [blame] | 9 | 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 Tan | 9e6fabde | 2017-09-29 15:54:22 -0700 | [diff] [blame] | 14 | if (keydata) |
Eric Wong | 939af16 | 2019-10-06 23:30:37 +0000 | [diff] [blame] | 15 | return !oideq(&a->oid, (const struct object_id *) keydata); |
| 16 | return !oideq(&a->oid, &b->oid); |
Jonathan Tan | 9e6fabde | 2017-09-29 15:54:22 -0700 | [diff] [blame] | 17 | } |
| 18 | |
Jonathan Tan | 9e6fabde | 2017-09-29 15:54:22 -0700 | [diff] [blame] | 19 | void oidmap_init(struct oidmap *map, size_t initial_size) |
| 20 | { |
Jeff King | cc00e5c | 2018-08-28 17:22:55 -0400 | [diff] [blame] | 21 | hashmap_init(&map->map, oidmap_neq, NULL, initial_size); |
Jonathan Tan | 9e6fabde | 2017-09-29 15:54:22 -0700 | [diff] [blame] | 22 | } |
| 23 | |
| 24 | void oidmap_free(struct oidmap *map, int free_entries) |
| 25 | { |
| 26 | if (!map) |
| 27 | return; |
Eric Wong | c8e424c | 2019-10-06 23:30:40 +0000 | [diff] [blame] | 28 | |
| 29 | /* TODO: make oidmap itself not depend on struct layouts */ |
Elijah Newren | 6da1a25 | 2020-11-02 18:55:05 +0000 | [diff] [blame] | 30 | hashmap_clear_(&map->map, free_entries ? 0 : -1); |
Jonathan Tan | 9e6fabde | 2017-09-29 15:54:22 -0700 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | void *oidmap_get(const struct oidmap *map, const struct object_id *key) |
| 34 | { |
Brandon Williams | e2a5a02 | 2017-12-22 15:27:29 -0800 | [diff] [blame] | 35 | if (!map->map.cmpfn) |
| 36 | return NULL; |
| 37 | |
Junio C Hamano | c62bff2 | 2019-07-19 11:30:19 -0700 | [diff] [blame] | 38 | return hashmap_get_from_hash(&map->map, oidhash(key), key); |
Jonathan Tan | 9e6fabde | 2017-09-29 15:54:22 -0700 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | void *oidmap_remove(struct oidmap *map, const struct object_id *key) |
| 42 | { |
| 43 | struct hashmap_entry entry; |
Brandon Williams | e2a5a02 | 2017-12-22 15:27:29 -0800 | [diff] [blame] | 44 | |
| 45 | if (!map->map.cmpfn) |
| 46 | oidmap_init(map, 0); |
| 47 | |
Junio C Hamano | c62bff2 | 2019-07-19 11:30:19 -0700 | [diff] [blame] | 48 | hashmap_entry_init(&entry, oidhash(key)); |
Jonathan Tan | 9e6fabde | 2017-09-29 15:54:22 -0700 | [diff] [blame] | 49 | return hashmap_remove(&map->map, &entry, key); |
| 50 | } |
| 51 | |
| 52 | void *oidmap_put(struct oidmap *map, void *entry) |
| 53 | { |
| 54 | struct oidmap_entry *to_put = entry; |
Brandon Williams | e2a5a02 | 2017-12-22 15:27:29 -0800 | [diff] [blame] | 55 | |
| 56 | if (!map->map.cmpfn) |
| 57 | oidmap_init(map, 0); |
| 58 | |
Junio C Hamano | c62bff2 | 2019-07-19 11:30:19 -0700 | [diff] [blame] | 59 | hashmap_entry_init(&to_put->internal_entry, oidhash(&to_put->oid)); |
Eric Wong | 26b455f | 2019-10-06 23:30:32 +0000 | [diff] [blame] | 60 | return hashmap_put(&map->map, &to_put->internal_entry); |
Jonathan Tan | 9e6fabde | 2017-09-29 15:54:22 -0700 | [diff] [blame] | 61 | } |