4 static int oidmap_neq(const void *hashmap_cmp_fn_data,
5 const struct hashmap_entry *e1,
6 const struct hashmap_entry *e2,
9 const struct oidmap_entry *a, *b;
11 a = container_of(e1, const struct oidmap_entry, internal_entry);
12 b = container_of(e2, const struct oidmap_entry, internal_entry);
15 return !oideq(&a->oid, (const struct object_id *) keydata);
16 return !oideq(&a->oid, &b->oid);
19 void oidmap_init(struct oidmap *map, size_t initial_size)
21 hashmap_init(&map->map, oidmap_neq, NULL, initial_size);
24 void oidmap_free(struct oidmap *map, int free_entries)
28 hashmap_free(&map->map, free_entries);
31 void *oidmap_get(const struct oidmap *map, const struct object_id *key)
36 return hashmap_get_from_hash(&map->map, oidhash(key), key);
39 void *oidmap_remove(struct oidmap *map, const struct object_id *key)
41 struct hashmap_entry entry;
46 hashmap_entry_init(&entry, oidhash(key));
47 return hashmap_remove(&map->map, &entry, key);
50 void *oidmap_put(struct oidmap *map, void *entry)
52 struct oidmap_entry *to_put = entry;
57 hashmap_entry_init(&to_put->internal_entry, oidhash(&to_put->oid));
58 return hashmap_put(&map->map, &to_put->internal_entry);