1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-10 11:56:09 +02:00

hashmap_cmp_fn takes hashmap_entry params

Another step in eliminating the requirement of hashmap_entry
being the first member of 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:37 +00:00 committed by Junio C Hamano
parent f23a465132
commit 939af16eac
23 changed files with 204 additions and 115 deletions

10
attr.c
View File

@ -70,12 +70,14 @@ struct attr_hash_entry {
/* attr_hashmap comparison function */ /* attr_hashmap comparison function */
static int attr_hash_entry_cmp(const void *unused_cmp_data, static int attr_hash_entry_cmp(const void *unused_cmp_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *unused_keydata) const void *unused_keydata)
{ {
const struct attr_hash_entry *a = entry; const struct attr_hash_entry *a, *b;
const struct attr_hash_entry *b = entry_or_key;
a = container_of(eptr, const struct attr_hash_entry, ent);
b = container_of(entry_or_key, const struct attr_hash_entry, ent);
return (a->keylen != b->keylen) || strncmp(a->key, b->key, a->keylen); return (a->keylen != b->keylen) || strncmp(a->key, b->key, a->keylen);
} }

View File

@ -64,12 +64,14 @@ static const char *prio_names[] = {
}; };
static int commit_name_neq(const void *unused_cmp_data, static int commit_name_neq(const void *unused_cmp_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *peeled) const void *peeled)
{ {
const struct commit_name *cn1 = entry; const struct commit_name *cn1, *cn2;
const struct commit_name *cn2 = entry_or_key;
cn1 = container_of(eptr, const struct commit_name, entry);
cn2 = container_of(entry_or_key, const struct commit_name, entry);
return !oideq(&cn1->peeled, peeled ? peeled : &cn2->peeled); return !oideq(&cn1->peeled, peeled ? peeled : &cn2->peeled);
} }

View File

@ -125,12 +125,15 @@ struct working_tree_entry {
}; };
static int working_tree_entry_cmp(const void *unused_cmp_data, static int working_tree_entry_cmp(const void *unused_cmp_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *unused_keydata) const void *unused_keydata)
{ {
const struct working_tree_entry *a = entry; const struct working_tree_entry *a, *b;
const struct working_tree_entry *b = entry_or_key;
a = container_of(eptr, const struct working_tree_entry, entry);
b = container_of(entry_or_key, const struct working_tree_entry, entry);
return strcmp(a->path, b->path); return strcmp(a->path, b->path);
} }
@ -145,12 +148,14 @@ struct pair_entry {
}; };
static int pair_cmp(const void *unused_cmp_data, static int pair_cmp(const void *unused_cmp_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *unused_keydata) const void *unused_keydata)
{ {
const struct pair_entry *a = entry; const struct pair_entry *a, *b;
const struct pair_entry *b = entry_or_key;
a = container_of(eptr, const struct pair_entry, entry);
b = container_of(entry_or_key, const struct pair_entry, entry);
return strcmp(a->path, b->path); return strcmp(a->path, b->path);
} }
@ -179,12 +184,14 @@ struct path_entry {
}; };
static int path_entry_cmp(const void *unused_cmp_data, static int path_entry_cmp(const void *unused_cmp_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *key) const void *key)
{ {
const struct path_entry *a = entry; const struct path_entry *a, *b;
const struct path_entry *b = entry_or_key;
a = container_of(eptr, const struct path_entry, entry);
b = container_of(entry_or_key, const struct path_entry, entry);
return strcmp(a->path, key ? key : b->path); return strcmp(a->path, key ? key : b->path);
} }

View File

@ -126,10 +126,15 @@ struct anonymized_entry {
}; };
static int anonymized_entry_cmp(const void *unused_cmp_data, static int anonymized_entry_cmp(const void *unused_cmp_data,
const void *va, const void *vb, const struct hashmap_entry *eptr,
const struct hashmap_entry *entry_or_key,
const void *unused_keydata) const void *unused_keydata)
{ {
const struct anonymized_entry *a = va, *b = vb; const struct anonymized_entry *a, *b;
a = container_of(eptr, const struct anonymized_entry, hash);
b = container_of(entry_or_key, const struct anonymized_entry, hash);
return a->orig_len != b->orig_len || return a->orig_len != b->orig_len ||
memcmp(a->orig, b->orig, a->orig_len); memcmp(a->orig, b->orig, a->orig_len);
} }

View File

@ -258,13 +258,14 @@ struct refname_hash_entry {
}; };
static int refname_hash_entry_cmp(const void *hashmap_cmp_fn_data, static int refname_hash_entry_cmp(const void *hashmap_cmp_fn_data,
const void *e1_, const struct hashmap_entry *eptr,
const void *e2_, const struct hashmap_entry *entry_or_key,
const void *keydata) const void *keydata)
{ {
const struct refname_hash_entry *e1 = e1_; const struct refname_hash_entry *e1, *e2;
const struct refname_hash_entry *e2 = e2_;
e1 = container_of(eptr, const struct refname_hash_entry, ent);
e2 = container_of(entry_or_key, const struct refname_hash_entry, ent);
return strcmp(e1->refname, keydata ? keydata : e2->refname); return strcmp(e1->refname, keydata ? keydata : e2->refname);
} }

View File

@ -1914,12 +1914,14 @@ static int configset_add_value(struct config_set *cs, const char *key, const cha
} }
static int config_set_element_cmp(const void *unused_cmp_data, static int config_set_element_cmp(const void *unused_cmp_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *unused_keydata) const void *unused_keydata)
{ {
const struct config_set_element *e1 = entry; const struct config_set_element *e1, *e2;
const struct config_set_element *e2 = entry_or_key;
e1 = container_of(eptr, const struct config_set_element, ent);
e2 = container_of(entry_or_key, const struct config_set_element, ent);
return strcmp(e1->key, e2->key); return strcmp(e1->key, e2->key);
} }

12
diff.c
View File

@ -933,16 +933,18 @@ static int cmp_in_block_with_wsd(const struct diff_options *o,
} }
static int moved_entry_cmp(const void *hashmap_cmp_fn_data, static int moved_entry_cmp(const void *hashmap_cmp_fn_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *keydata) const void *keydata)
{ {
const struct diff_options *diffopt = hashmap_cmp_fn_data; const struct diff_options *diffopt = hashmap_cmp_fn_data;
const struct moved_entry *a = entry; const struct moved_entry *a, *b;
const struct moved_entry *b = entry_or_key;
unsigned flags = diffopt->color_moved_ws_handling unsigned flags = diffopt->color_moved_ws_handling
& XDF_WHITESPACE_FLAGS; & XDF_WHITESPACE_FLAGS;
a = container_of(eptr, const struct moved_entry, ent);
b = container_of(entry_or_key, const struct moved_entry, ent);
if (diffopt->color_moved_ws_handling & if (diffopt->color_moved_ws_handling &
COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE) COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE)
/* /*
@ -1019,7 +1021,7 @@ static void pmb_advance_or_null(struct diff_options *o,
struct moved_entry *prev = pmb[i].match; struct moved_entry *prev = pmb[i].match;
struct moved_entry *cur = (prev && prev->next_line) ? struct moved_entry *cur = (prev && prev->next_line) ?
prev->next_line : NULL; prev->next_line : NULL;
if (cur && !hm->cmpfn(o, cur, match, NULL)) { if (cur && !hm->cmpfn(o, &cur->ent, &match->ent, NULL)) {
pmb[i].match = cur; pmb[i].match = cur;
} else { } else {
pmb[i].match = NULL; pmb[i].match = NULL;

View File

@ -140,8 +140,8 @@ static inline struct hashmap_entry **find_entry_ptr(const struct hashmap *map,
} }
static int always_equal(const void *unused_cmp_data, static int always_equal(const void *unused_cmp_data,
const void *unused1, const struct hashmap_entry *unused1,
const void *unused2, const struct hashmap_entry *unused2,
const void *unused_keydata) const void *unused_keydata)
{ {
return 0; return 0;
@ -279,10 +279,15 @@ struct pool_entry {
}; };
static int pool_entry_cmp(const void *unused_cmp_data, static int pool_entry_cmp(const void *unused_cmp_data,
const struct pool_entry *e1, const struct hashmap_entry *eptr,
const struct pool_entry *e2, const struct hashmap_entry *entry_or_key,
const unsigned char *keydata) const void *keydata)
{ {
const struct pool_entry *e1, *e2;
e1 = container_of(eptr, const struct pool_entry, ent);
e2 = container_of(entry_or_key, const struct pool_entry, ent);
return e1->data != keydata && return e1->data != keydata &&
(e1->len != e2->len || memcmp(e1->data, keydata, e1->len)); (e1->len != e2->len || memcmp(e1->data, keydata, e1->len));
} }
@ -294,7 +299,7 @@ const void *memintern(const void *data, size_t len)
/* initialize string pool hashmap */ /* initialize string pool hashmap */
if (!map.tablesize) if (!map.tablesize)
hashmap_init(&map, (hashmap_cmp_fn) pool_entry_cmp, NULL, 0); hashmap_init(&map, pool_entry_cmp, NULL, 0);
/* 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));

View File

@ -21,12 +21,16 @@
* #define COMPARE_VALUE 1 * #define COMPARE_VALUE 1
* *
* static int long2string_cmp(const void *hashmap_cmp_fn_data, * static int long2string_cmp(const void *hashmap_cmp_fn_data,
* const struct long2string *e1, * const struct hashmap_entry *eptr,
* const struct long2string *e2, * const struct hashmap_entry *entry_or_key,
* const void *keydata) * const void *keydata)
* { * {
* const char *string = keydata; * const char *string = keydata;
* unsigned flags = *(unsigned *)hashmap_cmp_fn_data; * unsigned flags = *(unsigned *)hashmap_cmp_fn_data;
* const struct long2string *e1, *e2;
*
* e1 = container_of(eptr, const struct long2string, ent);
* e2 = container_of(entry_or_key, const struct long2string, ent);
* *
* if (flags & COMPARE_VALUE) * if (flags & COMPARE_VALUE)
* return e1->key != e2->key || * return e1->key != e2->key ||
@ -41,7 +45,7 @@
* char value[255], action[32]; * char value[255], action[32];
* unsigned flags = 0; * unsigned flags = 0;
* *
* hashmap_init(&map, (hashmap_cmp_fn) long2string_cmp, &flags, 0); * hashmap_init(&map, long2string_cmp, &flags, 0);
* *
* while (scanf("%s %ld %s", action, &key, value)) { * while (scanf("%s %ld %s", action, &key, value)) {
* *
@ -172,7 +176,8 @@ struct hashmap_entry {
* The `hashmap_cmp_fn_data` entry is the pointer given in the init function. * The `hashmap_cmp_fn_data` entry is the pointer given in the init function.
*/ */
typedef int (*hashmap_cmp_fn)(const void *hashmap_cmp_fn_data, typedef int (*hashmap_cmp_fn)(const void *hashmap_cmp_fn_data,
const void *entry, const void *entry_or_key, const struct hashmap_entry *entry,
const struct hashmap_entry *entry_or_key,
const void *keydata); const void *keydata);
/* /*

View File

@ -35,14 +35,16 @@ struct path_hashmap_entry {
}; };
static int path_hashmap_cmp(const void *cmp_data, static int path_hashmap_cmp(const void *cmp_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *keydata) const void *keydata)
{ {
const struct path_hashmap_entry *a = entry; const struct path_hashmap_entry *a, *b;
const struct path_hashmap_entry *b = entry_or_key;
const char *key = keydata; const char *key = keydata;
a = container_of(eptr, const struct path_hashmap_entry, e);
b = container_of(entry_or_key, const struct path_hashmap_entry, e);
if (ignore_case) if (ignore_case)
return strcasecmp(a->path, key ? key : b->path); return strcasecmp(a->path, key ? key : b->path);
else else
@ -68,12 +70,14 @@ static struct dir_rename_entry *dir_rename_find_entry(struct hashmap *hashmap,
} }
static int dir_rename_cmp(const void *unused_cmp_data, static int dir_rename_cmp(const void *unused_cmp_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *unused_keydata) const void *unused_keydata)
{ {
const struct dir_rename_entry *e1 = entry; const struct dir_rename_entry *e1, *e2;
const struct dir_rename_entry *e2 = entry_or_key;
e1 = container_of(eptr, const struct dir_rename_entry, ent);
e2 = container_of(entry_or_key, const struct dir_rename_entry, ent);
return strcmp(e1->dir, e2->dir); return strcmp(e1->dir, e2->dir);
} }
@ -104,17 +108,22 @@ static struct collision_entry *collision_find_entry(struct hashmap *hashmap,
struct collision_entry, ent); struct collision_entry, ent);
} }
static int collision_cmp(void *unused_cmp_data, static int collision_cmp(const void *unused_cmp_data,
const struct collision_entry *e1, const struct hashmap_entry *eptr,
const struct collision_entry *e2, const struct hashmap_entry *entry_or_key,
const void *unused_keydata) const void *unused_keydata)
{ {
const struct collision_entry *e1, *e2;
e1 = container_of(eptr, const struct collision_entry, ent);
e2 = container_of(entry_or_key, const struct collision_entry, ent);
return strcmp(e1->target_file, e2->target_file); return strcmp(e1->target_file, e2->target_file);
} }
static void collision_init(struct hashmap *map) static void collision_init(struct hashmap *map)
{ {
hashmap_init(map, (hashmap_cmp_fn) collision_cmp, NULL, 0); hashmap_init(map, collision_cmp, NULL, 0);
} }
static void flush_output(struct merge_options *opt) static void flush_output(struct merge_options *opt)

View File

@ -17,14 +17,16 @@ struct dir_entry {
}; };
static int dir_entry_cmp(const void *unused_cmp_data, static int dir_entry_cmp(const void *unused_cmp_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *keydata) const void *keydata)
{ {
const struct dir_entry *e1 = entry; const struct dir_entry *e1, *e2;
const struct dir_entry *e2 = entry_or_key;
const char *name = keydata; const char *name = keydata;
e1 = container_of(eptr, const struct dir_entry, ent);
e2 = container_of(entry_or_key, const struct dir_entry, ent);
return e1->namelen != e2->namelen || strncasecmp(e1->name, return e1->namelen != e2->namelen || strncasecmp(e1->name,
name ? name : e2->name, e1->namelen); name ? name : e2->name, e1->namelen);
} }
@ -115,12 +117,15 @@ static void hash_index_entry(struct index_state *istate, struct cache_entry *ce)
} }
static int cache_entry_cmp(const void *unused_cmp_data, static int cache_entry_cmp(const void *unused_cmp_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *remove) const void *remove)
{ {
const struct cache_entry *ce1 = entry; const struct cache_entry *ce1, *ce2;
const struct cache_entry *ce2 = entry_or_key;
ce1 = container_of(eptr, const struct cache_entry, ent);
ce2 = container_of(entry_or_key, const struct cache_entry, ent);
/* /*
* For remove_name_hash, find the exact entry (pointer equality); for * For remove_name_hash, find the exact entry (pointer equality); for
* index_file_exists, find all entries with matching hash code and * index_file_exists, find all entries with matching hash code and

View File

@ -2,14 +2,18 @@
#include "oidmap.h" #include "oidmap.h"
static int oidmap_neq(const void *hashmap_cmp_fn_data, static int oidmap_neq(const void *hashmap_cmp_fn_data,
const void *entry, const void *entry_or_key, const struct hashmap_entry *e1,
const struct hashmap_entry *e2,
const void *keydata) const void *keydata)
{ {
const struct oidmap_entry *entry_ = entry; 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);
if (keydata) if (keydata)
return !oideq(&entry_->oid, (const struct object_id *) keydata); return !oideq(&a->oid, (const struct object_id *) keydata);
return !oideq(&entry_->oid, return !oideq(&a->oid, &b->oid);
&((const struct oidmap_entry *) entry_or_key)->oid);
} }
void oidmap_init(struct oidmap *map, size_t initial_size) void oidmap_init(struct oidmap *map, size_t initial_size)

View File

@ -1401,11 +1401,16 @@ static int delta_base_cache_key_eq(const struct delta_base_cache_key *a,
} }
static int delta_base_cache_hash_cmp(const void *unused_cmp_data, static int delta_base_cache_hash_cmp(const void *unused_cmp_data,
const void *va, const void *vb, const struct hashmap_entry *va,
const struct hashmap_entry *vb,
const void *vkey) const void *vkey)
{ {
const struct delta_base_cache_entry *a = va, *b = vb; const struct delta_base_cache_entry *a, *b;
const struct delta_base_cache_key *key = vkey; const struct delta_base_cache_key *key = vkey;
a = container_of(va, const struct delta_base_cache_entry, ent);
b = container_of(vb, const struct delta_base_cache_entry, ent);
if (key) if (key)
return !delta_base_cache_key_eq(&a->key, key); return !delta_base_cache_key_eq(&a->key, key);
else else

View File

@ -36,14 +36,16 @@ int commit_patch_id(struct commit *commit, struct diff_options *options,
* any significance; only that it is non-zero matters. * any significance; only that it is non-zero matters.
*/ */
static int patch_id_neq(const void *cmpfn_data, static int patch_id_neq(const void *cmpfn_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *unused_keydata) const void *unused_keydata)
{ {
/* NEEDSWORK: const correctness? */ /* NEEDSWORK: const correctness? */
struct diff_options *opt = (void *)cmpfn_data; struct diff_options *opt = (void *)cmpfn_data;
struct patch_id *a = (void *)entry; struct patch_id *a, *b;
struct patch_id *b = (void *)entry_or_key;
a = container_of(eptr, struct patch_id, ent);
b = container_of(entry_or_key, struct patch_id, ent);
if (is_null_oid(&a->patch_id) && if (is_null_oid(&a->patch_id) &&
commit_patch_id(a->commit, opt, &a->patch_id, 0, 0)) commit_patch_id(a->commit, opt, &a->patch_id, 0, 0))

View File

@ -84,12 +84,15 @@ struct ref_to_worktree_entry {
}; };
static int ref_to_worktree_map_cmpfnc(const void *unused_lookupdata, static int ref_to_worktree_map_cmpfnc(const void *unused_lookupdata,
const void *existing_hashmap_entry_to_test, const struct hashmap_entry *eptr,
const void *key, const struct hashmap_entry *kptr,
const void *keydata_aka_refname) const void *keydata_aka_refname)
{ {
const struct ref_to_worktree_entry *e = existing_hashmap_entry_to_test; const struct ref_to_worktree_entry *e, *k;
const struct ref_to_worktree_entry *k = key;
e = container_of(eptr, const struct ref_to_worktree_entry, ent);
k = container_of(kptr, const struct ref_to_worktree_entry, ent);
return strcmp(e->wt->head_ref, return strcmp(e->wt->head_ref,
keydata_aka_refname ? keydata_aka_refname : k->wt->head_ref); keydata_aka_refname ? keydata_aka_refname : k->wt->head_ref);
} }

11
refs.c
View File

@ -1781,11 +1781,16 @@ struct ref_store_hash_entry
}; };
static int ref_store_hash_cmp(const void *unused_cmp_data, static int ref_store_hash_cmp(const void *unused_cmp_data,
const void *entry, const void *entry_or_key, const struct hashmap_entry *eptr,
const struct hashmap_entry *entry_or_key,
const void *keydata) const void *keydata)
{ {
const struct ref_store_hash_entry *e1 = entry, *e2 = entry_or_key; const struct ref_store_hash_entry *e1, *e2;
const char *name = keydata ? keydata : e2->name; const char *name;
e1 = container_of(eptr, const struct ref_store_hash_entry, ent);
e2 = container_of(entry_or_key, const struct ref_store_hash_entry, ent);
name = keydata ? keydata : e2->name;
return strcmp(e1->name, name); return strcmp(e1->name, name);
} }

View File

@ -111,14 +111,16 @@ struct remotes_hash_key {
}; };
static int remotes_hash_cmp(const void *unused_cmp_data, static int remotes_hash_cmp(const void *unused_cmp_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *keydata) const void *keydata)
{ {
const struct remote *a = entry; const struct remote *a, *b;
const struct remote *b = entry_or_key;
const struct remotes_hash_key *key = keydata; const struct remotes_hash_key *key = keydata;
a = container_of(eptr, const struct remote, ent);
b = container_of(entry_or_key, const struct remote, ent);
if (key) if (key)
return strncmp(a->name, key->str, key->len) || a->name[key->len]; return strncmp(a->name, key->str, key->len) || a->name[key->len];
else else

View File

@ -107,16 +107,21 @@ struct path_and_oids_entry {
}; };
static int path_and_oids_cmp(const void *hashmap_cmp_fn_data, static int path_and_oids_cmp(const void *hashmap_cmp_fn_data,
const struct path_and_oids_entry *e1, const struct hashmap_entry *eptr,
const struct path_and_oids_entry *e2, const struct hashmap_entry *entry_or_key,
const void *keydata) const void *keydata)
{ {
const struct path_and_oids_entry *e1, *e2;
e1 = container_of(eptr, const struct path_and_oids_entry, ent);
e2 = container_of(entry_or_key, const struct path_and_oids_entry, ent);
return strcmp(e1->path, e2->path); return strcmp(e1->path, e2->path);
} }
static void paths_and_oids_init(struct hashmap *map) static void paths_and_oids_init(struct hashmap *map)
{ {
hashmap_init(map, (hashmap_cmp_fn) path_and_oids_cmp, NULL, 0); hashmap_init(map, path_and_oids_cmp, NULL, 0);
} }
static void paths_and_oids_clear(struct hashmap *map) static void paths_and_oids_clear(struct hashmap *map)

View File

@ -4440,9 +4440,14 @@ struct labels_entry {
char label[FLEX_ARRAY]; char label[FLEX_ARRAY];
}; };
static int labels_cmp(const void *fndata, const struct labels_entry *a, static int labels_cmp(const void *fndata, const struct hashmap_entry *eptr,
const struct labels_entry *b, const void *key) const struct hashmap_entry *entry_or_key, const void *key)
{ {
const struct labels_entry *a, *b;
a = container_of(eptr, const struct labels_entry, entry);
b = container_of(entry_or_key, const struct labels_entry, entry);
return key ? strcmp(a->label, key) : strcmp(a->label, b->label); return key ? strcmp(a->label, key) : strcmp(a->label, b->label);
} }
@ -4573,7 +4578,7 @@ static int make_script_with_merges(struct pretty_print_context *pp,
oidmap_init(&commit2todo, 0); oidmap_init(&commit2todo, 0);
oidmap_init(&state.commit2label, 0); oidmap_init(&state.commit2label, 0);
hashmap_init(&state.labels, (hashmap_cmp_fn) labels_cmp, NULL, 0); hashmap_init(&state.labels, labels_cmp, NULL, 0);
strbuf_init(&state.buf, 32); strbuf_init(&state.buf, 32);
if (revs->cmdline.nr && (revs->cmdline.rev[0].flags & BOTTOM)) { if (revs->cmdline.nr && (revs->cmdline.rev[0].flags & BOTTOM)) {
@ -5138,9 +5143,15 @@ struct subject2item_entry {
}; };
static int subject2item_cmp(const void *fndata, static int subject2item_cmp(const void *fndata,
const struct subject2item_entry *a, const struct hashmap_entry *eptr,
const struct subject2item_entry *b, const void *key) const struct hashmap_entry *entry_or_key,
const void *key)
{ {
const struct subject2item_entry *a, *b;
a = container_of(eptr, const struct subject2item_entry, entry);
b = container_of(entry_or_key, const struct subject2item_entry, entry);
return key ? strcmp(a->subject, key) : strcmp(a->subject, b->subject); return key ? strcmp(a->subject, key) : strcmp(a->subject, b->subject);
} }
@ -5173,8 +5184,7 @@ int todo_list_rearrange_squash(struct todo_list *todo_list)
* In that case, last[i] will indicate the index of the latest item to * In that case, last[i] will indicate the index of the latest item to
* be moved to appear after the i'th. * be moved to appear after the i'th.
*/ */
hashmap_init(&subject2item, (hashmap_cmp_fn) subject2item_cmp, hashmap_init(&subject2item, subject2item_cmp, NULL, todo_list->nr);
NULL, todo_list->nr);
ALLOC_ARRAY(next, todo_list->nr); ALLOC_ARRAY(next, todo_list->nr);
ALLOC_ARRAY(tail, todo_list->nr); ALLOC_ARRAY(tail, todo_list->nr);
ALLOC_ARRAY(subjects, todo_list->nr); ALLOC_ARRAY(subjects, todo_list->nr);

View File

@ -6,12 +6,14 @@
#include "pkt-line.h" #include "pkt-line.h"
int cmd2process_cmp(const void *unused_cmp_data, int cmd2process_cmp(const void *unused_cmp_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *unused_keydata) const void *unused_keydata)
{ {
const struct subprocess_entry *e1 = entry; const struct subprocess_entry *e1, *e2;
const struct subprocess_entry *e2 = entry_or_key;
e1 = container_of(eptr, const struct subprocess_entry, ent);
e2 = container_of(entry_or_key, const struct subprocess_entry, ent);
return strcmp(e1->cmd, e2->cmd); return strcmp(e1->cmd, e2->cmd);
} }

View File

@ -43,8 +43,8 @@ struct subprocess_capability {
/* Function to test two subprocess hashmap entries for equality. */ /* Function to test two subprocess hashmap entries for equality. */
int cmd2process_cmp(const void *unused_cmp_data, int cmd2process_cmp(const void *unused_cmp_data,
const void *e1, const struct hashmap_entry *e,
const void *e2, const struct hashmap_entry *entry_or_key,
const void *unused_keydata); const void *unused_keydata);
/* /*

View File

@ -38,24 +38,28 @@ enum lookup_type {
}; };
static int config_path_cmp(const void *unused_cmp_data, static int config_path_cmp(const void *unused_cmp_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *unused_keydata) const void *unused_keydata)
{ {
const struct submodule_entry *a = entry; const struct submodule_entry *a, *b;
const struct submodule_entry *b = entry_or_key;
a = container_of(eptr, const struct submodule_entry, ent);
b = container_of(entry_or_key, const struct submodule_entry, ent);
return strcmp(a->config->path, b->config->path) || return strcmp(a->config->path, b->config->path) ||
!oideq(&a->config->gitmodules_oid, &b->config->gitmodules_oid); !oideq(&a->config->gitmodules_oid, &b->config->gitmodules_oid);
} }
static int config_name_cmp(const void *unused_cmp_data, static int config_name_cmp(const void *unused_cmp_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *unused_keydata) const void *unused_keydata)
{ {
const struct submodule_entry *a = entry; const struct submodule_entry *a, *b;
const struct submodule_entry *b = entry_or_key;
a = container_of(eptr, const struct submodule_entry, ent);
b = container_of(entry_or_key, const struct submodule_entry, ent);
return strcmp(a->config->name, b->config->name) || return strcmp(a->config->name, b->config->name) ||
!oideq(&a->config->gitmodules_oid, &b->config->gitmodules_oid); !oideq(&a->config->gitmodules_oid, &b->config->gitmodules_oid);

View File

@ -16,15 +16,17 @@ static const char *get_value(const struct test_entry *e)
} }
static int test_entry_cmp(const void *cmp_data, static int test_entry_cmp(const void *cmp_data,
const void *entry, const struct hashmap_entry *eptr,
const void *entry_or_key, const struct hashmap_entry *entry_or_key,
const void *keydata) const void *keydata)
{ {
const int ignore_case = cmp_data ? *((int *)cmp_data) : 0; const int ignore_case = cmp_data ? *((int *)cmp_data) : 0;
const struct test_entry *e1 = entry; const struct test_entry *e1, *e2;
const struct test_entry *e2 = entry_or_key;
const char *key = keydata; const char *key = keydata;
e1 = container_of(eptr, const struct test_entry, ent);
e2 = container_of(entry_or_key, const struct test_entry, ent);
if (ignore_case) if (ignore_case)
return strcasecmp(e1->key, key ? key : e2->key); return strcasecmp(e1->key, key ? key : e2->key);
else else