hashmap_get{,_from_hash} return "struct hashmap_entry *"

Update callers to use hashmap_get_entry, hashmap_get_entry_from_hash
or container_of as appropriate.

This is another step towards eliminating the requirement of
hashmap_entry being the first field in a struct.

Signed-off-by: Eric Wong <e@80x24.org>
Reviewed-by: Derrick Stolee <stolee@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Eric Wong 2019-10-06 23:30:36 +00:00 committed by Junio C Hamano
parent f0e63c4113
commit f23a465132
20 changed files with 72 additions and 41 deletions

2
attr.c
View File

@ -101,7 +101,7 @@ static void *attr_hashmap_get(struct attr_hashmap *map,
hashmap_entry_init(&k.ent, memhash(key, keylen)); hashmap_entry_init(&k.ent, memhash(key, keylen));
k.key = key; k.key = key;
k.keylen = keylen; k.keylen = keylen;
e = hashmap_get(&map->map, &k.ent, NULL); e = hashmap_get_entry(&map->map, &k, NULL, struct attr_hash_entry, ent);
return e ? e->value : NULL; return e ? e->value : NULL;
} }

11
blame.c
View File

@ -419,7 +419,8 @@ static void get_fingerprint(struct fingerprint *result,
continue; continue;
hashmap_entry_init(&entry->entry, hash); hashmap_entry_init(&entry->entry, hash);
found_entry = hashmap_get(&result->map, &entry->entry, NULL); found_entry = hashmap_get_entry(&result->map, entry, NULL,
struct fingerprint_entry, entry);
if (found_entry) { if (found_entry) {
found_entry->count += 1; found_entry->count += 1;
} else { } else {
@ -452,7 +453,9 @@ static int fingerprint_similarity(struct fingerprint *a, struct fingerprint *b)
hashmap_iter_init(&b->map, &iter); hashmap_iter_init(&b->map, &iter);
while ((entry_b = hashmap_iter_next(&iter))) { while ((entry_b = hashmap_iter_next(&iter))) {
if ((entry_a = hashmap_get(&a->map, &entry_b->entry, NULL))) { entry_a = hashmap_get_entry(&a->map, entry_b, NULL,
struct fingerprint_entry, entry);
if (entry_a) {
intersection += entry_a->count < entry_b->count ? intersection += entry_a->count < entry_b->count ?
entry_a->count : entry_b->count; entry_a->count : entry_b->count;
} }
@ -471,7 +474,9 @@ static void fingerprint_subtract(struct fingerprint *a, struct fingerprint *b)
hashmap_iter_init(&b->map, &iter); hashmap_iter_init(&b->map, &iter);
while ((entry_b = hashmap_iter_next(&iter))) { while ((entry_b = hashmap_iter_next(&iter))) {
if ((entry_a = hashmap_get(&a->map, &entry_b->entry, NULL))) { entry_a = hashmap_get_entry(&a->map, entry_b, NULL,
struct fingerprint_entry, entry);
if (entry_a) {
if (entry_a->count <= entry_b->count) if (entry_a->count <= entry_b->count)
hashmap_remove(&a->map, &entry_b->entry, NULL); hashmap_remove(&a->map, &entry_b->entry, NULL);
else else

View File

@ -76,7 +76,8 @@ static int commit_name_neq(const void *unused_cmp_data,
static inline struct commit_name *find_commit_name(const struct object_id *peeled) static inline struct commit_name *find_commit_name(const struct object_id *peeled)
{ {
return hashmap_get_from_hash(&names, oidhash(peeled), peeled); return hashmap_get_entry_from_hash(&names, oidhash(peeled), peeled,
struct commit_name, entry);
} }
static int replace_name(struct commit_name *e, static int replace_name(struct commit_name *e,

View File

@ -162,7 +162,7 @@ static void add_left_or_right(struct hashmap *map, const char *path,
FLEX_ALLOC_STR(e, path, path); FLEX_ALLOC_STR(e, path, path);
hashmap_entry_init(&e->entry, strhash(path)); hashmap_entry_init(&e->entry, strhash(path));
existing = hashmap_get(map, &e->entry, NULL); existing = hashmap_get_entry(map, e, NULL, struct pair_entry, entry);
if (existing) { if (existing) {
free(e); free(e);
e = existing; e = existing;

View File

@ -151,7 +151,7 @@ static const void *anonymize_mem(struct hashmap *map,
hashmap_entry_init(&key.hash, memhash(orig, *len)); hashmap_entry_init(&key.hash, memhash(orig, *len));
key.orig = orig; key.orig = orig;
key.orig_len = *len; key.orig_len = *len;
ret = hashmap_get(map, &key.hash, NULL); ret = hashmap_get_entry(map, &key, NULL, struct anonymized_entry, hash);
if (!ret) { if (!ret) {
ret = xmalloc(sizeof(*ret)); ret = xmalloc(sizeof(*ret));

View File

@ -383,8 +383,10 @@ static void find_non_local_tags(const struct ref *refs,
for_each_string_list_item(remote_ref_item, &remote_refs_list) { for_each_string_list_item(remote_ref_item, &remote_refs_list) {
const char *refname = remote_ref_item->string; const char *refname = remote_ref_item->string;
struct ref *rm; struct ref *rm;
unsigned int hash = strhash(refname);
item = hashmap_get_from_hash(&remote_refs, strhash(refname), refname); item = hashmap_get_entry_from_hash(&remote_refs, hash, refname,
struct refname_hash_entry, ent);
if (!item) if (!item)
BUG("unseen remote ref?"); BUG("unseen remote ref?");
@ -516,10 +518,11 @@ static struct ref *get_ref_map(struct remote *remote,
if (rm->peer_ref) { if (rm->peer_ref) {
const char *refname = rm->peer_ref->name; const char *refname = rm->peer_ref->name;
struct refname_hash_entry *peer_item; struct refname_hash_entry *peer_item;
unsigned int hash = strhash(refname);
peer_item = hashmap_get_from_hash(&existing_refs, peer_item = hashmap_get_entry_from_hash(&existing_refs,
strhash(refname), hash, refname,
refname); struct refname_hash_entry, ent);
if (peer_item) { if (peer_item) {
struct object_id *old_oid = &peer_item->oid; struct object_id *old_oid = &peer_item->oid;
oidcpy(&rm->peer_ref->old_oid, old_oid); oidcpy(&rm->peer_ref->old_oid, old_oid);

View File

@ -1863,7 +1863,8 @@ static struct config_set_element *configset_find_element(struct config_set *cs,
hashmap_entry_init(&k.ent, strhash(normalized_key)); hashmap_entry_init(&k.ent, strhash(normalized_key));
k.key = normalized_key; k.key = normalized_key;
found_entry = hashmap_get(&cs->config_hash, &k.ent, NULL); found_entry = hashmap_get_entry(&cs->config_hash, &k, NULL,
struct config_set_element, ent);
free(normalized_key); free(normalized_key);
return found_entry; return found_entry;
} }

View File

@ -186,8 +186,9 @@ void hashmap_free(struct hashmap *map, int free_entries)
memset(map, 0, sizeof(*map)); memset(map, 0, sizeof(*map));
} }
void *hashmap_get(const struct hashmap *map, const struct hashmap_entry *key, struct hashmap_entry *hashmap_get(const struct hashmap *map,
const void *keydata) const struct hashmap_entry *key,
const void *keydata)
{ {
return *find_entry_ptr(map, key, keydata); return *find_entry_ptr(map, key, keydata);
} }
@ -298,7 +299,7 @@ const void *memintern(const void *data, size_t len)
/* lookup interned string in pool */ /* lookup interned string in pool */
hashmap_entry_init(&key.ent, memhash(data, len)); hashmap_entry_init(&key.ent, memhash(data, len));
key.len = len; key.len = len;
e = hashmap_get(&map, &key.ent, data); e = hashmap_get_entry(&map, &key, data, struct pool_entry, ent);
if (!e) { if (!e) {
/* not found: create it */ /* not found: create it */
FLEX_ALLOC_MEM(e, data, data, len); FLEX_ALLOC_MEM(e, data, data, len);

View File

@ -290,8 +290,9 @@ static inline unsigned int hashmap_get_size(struct hashmap *map)
* If an entry with matching hash code is found, `key` and `keydata` are passed * If an entry with matching hash code is found, `key` and `keydata` are passed
* to `hashmap_cmp_fn` to decide whether the entry matches the key. * to `hashmap_cmp_fn` to decide whether the entry matches the key.
*/ */
void *hashmap_get(const struct hashmap *map, const struct hashmap_entry *key, struct hashmap_entry *hashmap_get(const struct hashmap *map,
const void *keydata); const struct hashmap_entry *key,
const void *keydata);
/* /*
* Returns the hashmap entry for the specified hash code and key data, * Returns the hashmap entry for the specified hash code and key data,
@ -305,9 +306,10 @@ void *hashmap_get(const struct hashmap *map, const struct hashmap_entry *key,
* `entry_or_key` parameter of `hashmap_cmp_fn` points to a hashmap_entry * `entry_or_key` parameter of `hashmap_cmp_fn` points to a hashmap_entry
* structure that should not be used in the comparison. * structure that should not be used in the comparison.
*/ */
static inline void *hashmap_get_from_hash(const struct hashmap *map, static inline struct hashmap_entry *hashmap_get_from_hash(
unsigned int hash, const struct hashmap *map,
const void *keydata) unsigned int hash,
const void *keydata)
{ {
struct hashmap_entry key; struct hashmap_entry key;
hashmap_entry_init(&key, hash); hashmap_entry_init(&key, hash);

View File

@ -63,7 +63,8 @@ static struct dir_rename_entry *dir_rename_find_entry(struct hashmap *hashmap,
return NULL; return NULL;
hashmap_entry_init(&key.ent, strhash(dir)); hashmap_entry_init(&key.ent, strhash(dir));
key.dir = dir; key.dir = dir;
return hashmap_get(hashmap, &key.ent, NULL); return hashmap_get_entry(hashmap, &key, NULL,
struct dir_rename_entry, ent);
} }
static int dir_rename_cmp(const void *unused_cmp_data, static int dir_rename_cmp(const void *unused_cmp_data,
@ -99,7 +100,8 @@ static struct collision_entry *collision_find_entry(struct hashmap *hashmap,
hashmap_entry_init(&key.ent, strhash(target_file)); hashmap_entry_init(&key.ent, strhash(target_file));
key.target_file = target_file; key.target_file = target_file;
return hashmap_get(hashmap, &key.ent, NULL); return hashmap_get_entry(hashmap, &key, NULL,
struct collision_entry, ent);
} }
static int collision_cmp(void *unused_cmp_data, static int collision_cmp(void *unused_cmp_data,

View File

@ -35,7 +35,8 @@ static struct dir_entry *find_dir_entry__hash(struct index_state *istate,
struct dir_entry key; struct dir_entry key;
hashmap_entry_init(&key.ent, hash); hashmap_entry_init(&key.ent, hash);
key.namelen = namelen; key.namelen = namelen;
return hashmap_get(&istate->dir_hash, &key.ent, name); return hashmap_get_entry(&istate->dir_hash, &key, name,
struct dir_entry, ent);
} }
static struct dir_entry *find_dir_entry(struct index_state *istate, static struct dir_entry *find_dir_entry(struct index_state *istate,

View File

@ -1381,7 +1381,7 @@ static unsigned int pack_entry_hash(struct packed_git *p, off_t base_offset)
static struct delta_base_cache_entry * static struct delta_base_cache_entry *
get_delta_base_cache_entry(struct packed_git *p, off_t base_offset) get_delta_base_cache_entry(struct packed_git *p, off_t base_offset)
{ {
struct hashmap_entry entry; struct hashmap_entry entry, *e;
struct delta_base_cache_key key; struct delta_base_cache_key key;
if (!delta_base_cache.cmpfn) if (!delta_base_cache.cmpfn)
@ -1390,7 +1390,8 @@ get_delta_base_cache_entry(struct packed_git *p, off_t base_offset)
hashmap_entry_init(&entry, pack_entry_hash(p, base_offset)); hashmap_entry_init(&entry, pack_entry_hash(p, base_offset));
key.p = p; key.p = p;
key.base_offset = base_offset; key.base_offset = base_offset;
return hashmap_get(&delta_base_cache, &entry, &key); e = hashmap_get(&delta_base_cache, &entry, &key);
return e ? container_of(e, struct delta_base_cache_entry, ent) : NULL;
} }
static int delta_base_cache_key_eq(const struct delta_base_cache_key *a, static int delta_base_cache_key_eq(const struct delta_base_cache_key *a,

View File

@ -99,7 +99,8 @@ struct patch_id *has_commit_patch_id(struct commit *commit,
if (init_patch_id_entry(&patch, commit, ids)) if (init_patch_id_entry(&patch, commit, ids))
return NULL; return NULL;
return hashmap_get(&ids->patches, &patch.ent, NULL); return hashmap_get_entry(&ids->patches, &patch, NULL,
struct patch_id, ent);
} }
struct patch_id *add_commit_patch_id(struct commit *commit, struct patch_id *add_commit_patch_id(struct commit *commit,

View File

@ -1585,18 +1585,20 @@ static void lazy_init_worktree_map(void)
static char *get_worktree_path(const struct used_atom *atom, const struct ref_array_item *ref) static char *get_worktree_path(const struct used_atom *atom, const struct ref_array_item *ref)
{ {
struct hashmap_entry entry; struct hashmap_entry entry, *e;
struct ref_to_worktree_entry *lookup_result; struct ref_to_worktree_entry *lookup_result;
lazy_init_worktree_map(); lazy_init_worktree_map();
hashmap_entry_init(&entry, strhash(ref->refname)); hashmap_entry_init(&entry, strhash(ref->refname));
lookup_result = hashmap_get(&(ref_to_worktree_map.map), &entry, ref->refname); e = hashmap_get(&(ref_to_worktree_map.map), &entry, ref->refname);
if (lookup_result) if (!e)
return xstrdup(lookup_result->wt->path);
else
return xstrdup(""); return xstrdup("");
lookup_result = container_of(e, struct ref_to_worktree_entry, ent);
return xstrdup(lookup_result->wt->path);
} }
/* /*

5
refs.c
View File

@ -1815,12 +1815,15 @@ static struct ref_store *lookup_ref_store_map(struct hashmap *map,
const char *name) const char *name)
{ {
struct ref_store_hash_entry *entry; struct ref_store_hash_entry *entry;
unsigned int hash;
if (!map->tablesize) if (!map->tablesize)
/* It's initialized on demand in register_ref_store(). */ /* It's initialized on demand in register_ref_store(). */
return NULL; return NULL;
entry = hashmap_get_from_hash(map, strhash(name), name); hash = strhash(name);
entry = hashmap_get_entry_from_hash(map, hash, name,
struct ref_store_hash_entry, ent);
return entry ? entry->refs : NULL; return entry ? entry->refs : NULL;
} }

View File

@ -135,7 +135,7 @@ static struct remote *make_remote(const char *name, int len)
{ {
struct remote *ret, *replaced; struct remote *ret, *replaced;
struct remotes_hash_key lookup; struct remotes_hash_key lookup;
struct hashmap_entry lookup_entry; struct hashmap_entry lookup_entry, *e;
if (!len) if (!len)
len = strlen(name); len = strlen(name);
@ -145,8 +145,9 @@ static struct remote *make_remote(const char *name, int len)
lookup.len = len; lookup.len = len;
hashmap_entry_init(&lookup_entry, memhash(name, len)); hashmap_entry_init(&lookup_entry, memhash(name, len));
if ((ret = hashmap_get(&remotes_hash, &lookup_entry, &lookup)) != NULL) e = hashmap_get(&remotes_hash, &lookup_entry, &lookup);
return ret; if (e)
return container_of(e, struct remote, ent);
ret = xcalloc(1, sizeof(struct remote)); ret = xcalloc(1, sizeof(struct remote));
ret->prune = -1; /* unspecified */ ret->prune = -1; /* unspecified */

View File

@ -147,7 +147,8 @@ static void paths_and_oids_insert(struct hashmap *map,
key.path = (char *)path; key.path = (char *)path;
oidset_init(&key.trees, 0); oidset_init(&key.trees, 0);
entry = hashmap_get(map, &key.ent, NULL); entry = hashmap_get_entry(map, &key, NULL,
struct path_and_oids_entry, ent);
if (!entry) { if (!entry) {
entry = xcalloc(1, sizeof(struct path_and_oids_entry)); entry = xcalloc(1, sizeof(struct path_and_oids_entry));
hashmap_entry_init(&entry->ent, hash); hashmap_entry_init(&entry->ent, hash);

View File

@ -5217,8 +5217,11 @@ int todo_list_rearrange_squash(struct todo_list *todo_list)
break; break;
} }
if ((entry = hashmap_get_from_hash(&subject2item, entry = hashmap_get_entry_from_hash(&subject2item,
strhash(p), p))) strhash(p), p,
struct subject2item_entry,
entry);
if (entry)
/* found by title */ /* found by title */
i2 = entry->i; i2 = entry->i;
else if (!strchr(p, ' ') && else if (!strchr(p, ' ') &&

View File

@ -22,7 +22,8 @@ struct subprocess_entry *subprocess_find_entry(struct hashmap *hashmap, const ch
hashmap_entry_init(&key.ent, strhash(cmd)); hashmap_entry_init(&key.ent, strhash(cmd));
key.cmd = cmd; key.cmd = cmd;
return hashmap_get(hashmap, &key.ent, NULL); return hashmap_get_entry(hashmap, &key, NULL,
struct subprocess_entry, ent);
} }
int subprocess_read_status(int fd, struct strbuf *status) int subprocess_read_status(int fd, struct strbuf *status)

View File

@ -166,7 +166,8 @@ static const struct submodule *cache_lookup_path(struct submodule_cache *cache,
hashmap_entry_init(&key.ent, hash); hashmap_entry_init(&key.ent, hash);
key.config = &key_config; key.config = &key_config;
entry = hashmap_get(&cache->for_path, &key.ent, NULL); entry = hashmap_get_entry(&cache->for_path, &key, NULL,
struct submodule_entry, ent);
if (entry) if (entry)
return entry->config; return entry->config;
return NULL; return NULL;
@ -186,7 +187,8 @@ static struct submodule *cache_lookup_name(struct submodule_cache *cache,
hashmap_entry_init(&key.ent, hash); hashmap_entry_init(&key.ent, hash);
key.config = &key_config; key.config = &key_config;
entry = hashmap_get(&cache->for_name, &key.ent, NULL); entry = hashmap_get_entry(&cache->for_name, &key, NULL,
struct submodule_entry, ent);
if (entry) if (entry)
return entry->config; return entry->config;
return NULL; return NULL;