1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-08 12:06:09 +02:00

hashmap: use *_entry APIs for iteration

Inspired by list_for_each_entry in the Linux kernel.
Once again, these are somewhat compromised usability-wise
by compilers lacking __typeof__ support.

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:38 +00:00 committed by Junio C Hamano
parent 939af16eac
commit 87571c3f71
13 changed files with 70 additions and 47 deletions

5
attr.c
View File

@ -163,12 +163,13 @@ static void all_attrs_init(struct attr_hashmap *map, struct attr_check *check)
if (size != check->all_attrs_nr) { if (size != check->all_attrs_nr) {
struct attr_hash_entry *e; struct attr_hash_entry *e;
struct hashmap_iter iter; struct hashmap_iter iter;
hashmap_iter_init(&map->map, &iter);
REALLOC_ARRAY(check->all_attrs, size); REALLOC_ARRAY(check->all_attrs, size);
check->all_attrs_nr = size; check->all_attrs_nr = size;
while ((e = hashmap_iter_next(&iter))) { hashmap_for_each_entry(&map->map, &iter, e,
struct attr_hash_entry,
ent /* member name */) {
const struct git_attr *a = e->value; const struct git_attr *a = e->value;
check->all_attrs[a->attr_nr].attr = a; check->all_attrs[a->attr_nr].attr = a;
} }

10
blame.c
View File

@ -450,9 +450,9 @@ static int fingerprint_similarity(struct fingerprint *a, struct fingerprint *b)
struct hashmap_iter iter; struct hashmap_iter iter;
const struct fingerprint_entry *entry_a, *entry_b; const struct fingerprint_entry *entry_a, *entry_b;
hashmap_iter_init(&b->map, &iter); hashmap_for_each_entry(&b->map, &iter, entry_b,
const struct fingerprint_entry,
while ((entry_b = hashmap_iter_next(&iter))) { entry /* member name */) {
entry_a = hashmap_get_entry(&a->map, entry_b, NULL, entry_a = hashmap_get_entry(&a->map, entry_b, NULL,
struct fingerprint_entry, entry); struct fingerprint_entry, entry);
if (entry_a) { if (entry_a) {
@ -473,7 +473,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))) { hashmap_for_each_entry(&b->map, &iter, entry_b,
const struct fingerprint_entry,
entry /* member name */) {
entry_a = hashmap_get_entry(&a->map, entry_b, NULL, entry_a = hashmap_get_entry(&a->map, entry_b, NULL,
struct fingerprint_entry, entry); struct fingerprint_entry, entry);
if (entry_a) { if (entry_a) {

View File

@ -333,8 +333,8 @@ static void describe_commit(struct object_id *oid, struct strbuf *dst)
struct commit_name *n; struct commit_name *n;
init_commit_names(&commit_names); init_commit_names(&commit_names);
n = hashmap_iter_first(&names, &iter); hashmap_for_each_entry(&names, &iter, n, struct commit_name,
for (; n; n = hashmap_iter_next(&iter)) { entry /* member name */) {
c = lookup_commit_reference_gently(the_repository, c = lookup_commit_reference_gently(the_repository,
&n->peeled, 1); &n->peeled, 1);
if (c) if (c)

View File

@ -538,8 +538,8 @@ static int run_dir_diff(const char *extcmd, int symlinks, const char *prefix,
* temporary file to both the left and right directories to show the * temporary file to both the left and right directories to show the
* change in the recorded SHA1 for the submodule. * change in the recorded SHA1 for the submodule.
*/ */
hashmap_iter_init(&submodules, &iter); hashmap_for_each_entry(&submodules, &iter, entry,
while ((entry = hashmap_iter_next(&iter))) { struct pair_entry, entry /* member name */) {
if (*entry->left) { if (*entry->left) {
add_path(&ldir, ldir_len, entry->path); add_path(&ldir, ldir_len, entry->path);
ensure_leading_directories(ldir.buf); ensure_leading_directories(ldir.buf);
@ -557,8 +557,8 @@ static int run_dir_diff(const char *extcmd, int symlinks, const char *prefix,
* shows only the link itself, not the contents of the link target. * shows only the link itself, not the contents of the link target.
* This loop replicates that behavior. * This loop replicates that behavior.
*/ */
hashmap_iter_init(&symlinks2, &iter); hashmap_for_each_entry(&symlinks2, &iter, entry,
while ((entry = hashmap_iter_next(&iter))) { struct pair_entry, entry /* member name */) {
if (*entry->left) { if (*entry->left) {
add_path(&ldir, ldir_len, entry->path); add_path(&ldir, ldir_len, entry->path);
ensure_leading_directories(ldir.buf); ensure_leading_directories(ldir.buf);

View File

@ -1942,8 +1942,9 @@ void git_configset_clear(struct config_set *cs)
if (!cs->hash_initialized) if (!cs->hash_initialized)
return; return;
hashmap_iter_init(&cs->config_hash, &iter); hashmap_for_each_entry(&cs->config_hash, &iter, entry,
while ((entry = hashmap_iter_next(&iter))) { struct config_set_element,
ent /* member name */) {
free(entry->key); free(entry->key);
string_list_clear(&entry->value_list, 1); string_list_clear(&entry->value_list, 1);
} }

View File

@ -256,7 +256,7 @@ void hashmap_iter_init(struct hashmap *map, struct hashmap_iter *iter)
iter->next = NULL; iter->next = NULL;
} }
void *hashmap_iter_next(struct hashmap_iter *iter) struct hashmap_entry *hashmap_iter_next(struct hashmap_iter *iter)
{ {
struct hashmap_entry *current = iter->next; struct hashmap_entry *current = iter->next;
for (;;) { for (;;) {

View File

@ -382,16 +382,27 @@ struct hashmap_iter {
void hashmap_iter_init(struct hashmap *map, struct hashmap_iter *iter); void hashmap_iter_init(struct hashmap *map, struct hashmap_iter *iter);
/* Returns the next hashmap_entry, or NULL if there are no more entries. */ /* Returns the next hashmap_entry, or NULL if there are no more entries. */
void *hashmap_iter_next(struct hashmap_iter *iter); struct hashmap_entry *hashmap_iter_next(struct hashmap_iter *iter);
/* Initializes the iterator and returns the first entry, if any. */ /* Initializes the iterator and returns the first entry, if any. */
static inline void *hashmap_iter_first(struct hashmap *map, static inline struct hashmap_entry *hashmap_iter_first(struct hashmap *map,
struct hashmap_iter *iter) struct hashmap_iter *iter)
{ {
hashmap_iter_init(map, iter); hashmap_iter_init(map, iter);
return hashmap_iter_next(iter); return hashmap_iter_next(iter);
} }
#define hashmap_iter_next_entry(iter, type, member) \
container_of_or_null(hashmap_iter_next(iter), type, member)
#define hashmap_iter_first_entry(map, iter, type, member) \
container_of_or_null(hashmap_iter_first(map, iter), type, member)
#define hashmap_for_each_entry(map, iter, var, type, member) \
for (var = hashmap_iter_first_entry(map, iter, type, member); \
var; \
var = hashmap_iter_next_entry(iter, type, member))
/* /*
* returns a @pointer of @type matching @keyvar, or NULL if nothing found. * returns a @pointer of @type matching @keyvar, or NULL if nothing found.
* @keyvar is a pointer of @type * @keyvar is a pointer of @type

View File

@ -2135,8 +2135,9 @@ static void handle_directory_level_conflicts(struct merge_options *opt,
struct string_list remove_from_head = STRING_LIST_INIT_NODUP; struct string_list remove_from_head = STRING_LIST_INIT_NODUP;
struct string_list remove_from_merge = STRING_LIST_INIT_NODUP; struct string_list remove_from_merge = STRING_LIST_INIT_NODUP;
hashmap_iter_init(dir_re_head, &iter); hashmap_for_each_entry(dir_re_head, &iter, head_ent,
while ((head_ent = hashmap_iter_next(&iter))) { struct dir_rename_entry,
ent /* member name */) {
merge_ent = dir_rename_find_entry(dir_re_merge, head_ent->dir); merge_ent = dir_rename_find_entry(dir_re_merge, head_ent->dir);
if (merge_ent && if (merge_ent &&
!head_ent->non_unique_new_dir && !head_ent->non_unique_new_dir &&
@ -2160,8 +2161,9 @@ static void handle_directory_level_conflicts(struct merge_options *opt,
remove_hashmap_entries(dir_re_head, &remove_from_head); remove_hashmap_entries(dir_re_head, &remove_from_head);
remove_hashmap_entries(dir_re_merge, &remove_from_merge); remove_hashmap_entries(dir_re_merge, &remove_from_merge);
hashmap_iter_init(dir_re_merge, &iter); hashmap_for_each_entry(dir_re_merge, &iter, merge_ent,
while ((merge_ent = hashmap_iter_next(&iter))) { struct dir_rename_entry,
ent /* member name */) {
head_ent = dir_rename_find_entry(dir_re_head, merge_ent->dir); head_ent = dir_rename_find_entry(dir_re_head, merge_ent->dir);
if (tree_has_path(opt->repo, merge, merge_ent->dir)) { if (tree_has_path(opt->repo, merge, merge_ent->dir)) {
/* 2. This wasn't a directory rename after all */ /* 2. This wasn't a directory rename after all */
@ -2265,8 +2267,9 @@ static struct hashmap *get_directory_renames(struct diff_queue_struct *pairs)
* we set non_unique_new_dir. Once we've determined the winner (or * we set non_unique_new_dir. Once we've determined the winner (or
* that there is no winner), we no longer need possible_new_dirs. * that there is no winner), we no longer need possible_new_dirs.
*/ */
hashmap_iter_init(dir_renames, &iter); hashmap_for_each_entry(dir_renames, &iter, entry,
while ((entry = hashmap_iter_next(&iter))) { struct dir_rename_entry,
ent /* member name */) {
int max = 0; int max = 0;
int bad_max = 0; int bad_max = 0;
char *best = NULL; char *best = NULL;
@ -2624,8 +2627,9 @@ static struct string_list *get_renames(struct merge_options *opt,
entries); entries);
} }
hashmap_iter_init(&collisions, &iter); hashmap_for_each_entry(&collisions, &iter, e,
while ((e = hashmap_iter_next(&iter))) { struct collision_entry,
ent /* member name */) {
free(e->target_file); free(e->target_file);
string_list_clear(&e->source_files, 0); string_list_clear(&e->source_files, 0);
} }
@ -2842,8 +2846,9 @@ static void initial_cleanup_rename(struct diff_queue_struct *pairs,
struct hashmap_iter iter; struct hashmap_iter iter;
struct dir_rename_entry *e; struct dir_rename_entry *e;
hashmap_iter_init(dir_renames, &iter); hashmap_for_each_entry(dir_renames, &iter, e,
while ((e = hashmap_iter_next(&iter))) { struct dir_rename_entry,
ent /* member name */) {
free(e->dir); free(e->dir);
strbuf_release(&e->new_dir); strbuf_release(&e->new_dir);
/* possible_new_dirs already cleared in get_directory_renames */ /* possible_new_dirs already cleared in get_directory_renames */

View File

@ -78,14 +78,16 @@ static inline void oidmap_iter_init(struct oidmap *map, struct oidmap_iter *iter
static inline void *oidmap_iter_next(struct oidmap_iter *iter) static inline void *oidmap_iter_next(struct oidmap_iter *iter)
{ {
return hashmap_iter_next(&iter->h_iter); /* TODO: this API could be reworked to do compile-time type checks */
return (void *)hashmap_iter_next(&iter->h_iter);
} }
static inline void *oidmap_iter_first(struct oidmap *map, static inline void *oidmap_iter_first(struct oidmap *map,
struct oidmap_iter *iter) struct oidmap_iter *iter)
{ {
oidmap_iter_init(map, iter); oidmap_iter_init(map, iter);
return oidmap_iter_next(iter); /* TODO: this API could be reworked to do compile-time type checks */
return (void *)oidmap_iter_next(iter);
} }
#endif #endif

View File

@ -128,9 +128,10 @@ static void paths_and_oids_clear(struct hashmap *map)
{ {
struct hashmap_iter iter; struct hashmap_iter iter;
struct path_and_oids_entry *entry; struct path_and_oids_entry *entry;
hashmap_iter_init(map, &iter);
while ((entry = (struct path_and_oids_entry *)hashmap_iter_next(&iter))) { hashmap_for_each_entry(map, &iter, entry,
struct path_and_oids_entry,
ent /* member name */) {
oidset_clear(&entry->trees); oidset_clear(&entry->trees);
free(entry->path); free(entry->path);
} }
@ -242,8 +243,9 @@ void mark_trees_uninteresting_sparse(struct repository *r,
add_children_by_path(r, tree, &map); add_children_by_path(r, tree, &map);
} }
hashmap_iter_init(&map, &map_iter); hashmap_for_each_entry(&map, &map_iter, entry,
while ((entry = hashmap_iter_next(&map_iter))) struct path_and_oids_entry,
ent /* member name */)
mark_trees_uninteresting_sparse(r, &entry->trees); mark_trees_uninteresting_sparse(r, &entry->trees);
paths_and_oids_clear(&map); paths_and_oids_clear(&map);

View File

@ -99,8 +99,8 @@ static void submodule_cache_clear(struct submodule_cache *cache)
* allocation of struct submodule entries. Each is allocated by * allocation of struct submodule entries. Each is allocated by
* their .gitmodules blob sha1 and submodule name. * their .gitmodules blob sha1 and submodule name.
*/ */
hashmap_iter_init(&cache->for_name, &iter); hashmap_for_each_entry(&cache->for_name, &iter, entry,
while ((entry = hashmap_iter_next(&iter))) struct submodule_entry, ent /* member name */)
free_one_config(entry); free_one_config(entry);
hashmap_free(&cache->for_path, 1); hashmap_free(&cache->for_path, 1);
@ -556,7 +556,9 @@ static const struct submodule *config_from(struct submodule_cache *cache,
struct hashmap_iter iter; struct hashmap_iter iter;
struct submodule_entry *entry; struct submodule_entry *entry;
entry = hashmap_iter_first(&cache->for_name, &iter); entry = hashmap_iter_first_entry(&cache->for_name, &iter,
struct submodule_entry,
ent /* member name */);
if (!entry) if (!entry)
return NULL; return NULL;
return entry->config; return entry->config;

View File

@ -222,10 +222,11 @@ int cmd__hashmap(int argc, const char **argv)
free(entry); free(entry);
} else if (!strcmp("iterate", cmd)) { } else if (!strcmp("iterate", cmd)) {
struct hashmap_iter iter; struct hashmap_iter iter;
hashmap_iter_init(&map, &iter);
while ((entry = hashmap_iter_next(&iter))) hashmap_for_each_entry(&map, &iter, entry,
struct test_entry,
ent /* member name */)
printf("%s %s\n", entry->key, get_value(entry)); printf("%s %s\n", entry->key, get_value(entry));
} else if (!strcmp("size", cmd)) { } else if (!strcmp("size", cmd)) {

View File

@ -41,17 +41,13 @@ static void dump_run(void)
die("non-threaded code path used"); die("non-threaded code path used");
} }
dir = hashmap_iter_first(&the_index.dir_hash, &iter_dir); hashmap_for_each_entry(&the_index.dir_hash, &iter_dir, dir,
while (dir) { struct dir_entry, ent /* member name */)
printf("dir %08x %7d %s\n", dir->ent.hash, dir->nr, dir->name); printf("dir %08x %7d %s\n", dir->ent.hash, dir->nr, dir->name);
dir = hashmap_iter_next(&iter_dir);
}
ce = hashmap_iter_first(&the_index.name_hash, &iter_cache); hashmap_for_each_entry(&the_index.name_hash, &iter_cache, ce,
while (ce) { struct cache_entry, ent /* member name */)
printf("name %08x %s\n", ce->ent.hash, ce->name); printf("name %08x %s\n", ce->ent.hash, ce->name);
ce = hashmap_iter_next(&iter_cache);
}
discard_cache(); discard_cache();
} }