]> git.ipfire.org Git - thirdparty/git.git/commitdiff
hashmap_get_next returns "struct hashmap_entry *"
authorEric Wong <e@80x24.org>
Sun, 6 Oct 2019 23:30:34 +0000 (23:30 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 7 Oct 2019 01:20:10 +0000 (10:20 +0900)
This is a step towards removing the requirement for
hashmap_entry being the first field 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>
diff.c
diffcore-rename.c
hashmap.c
hashmap.h
name-hash.c
t/helper/test-hashmap.c

diff --git a/diff.c b/diff.c
index 72d3c6aa1907e008a5a35f86736d0afa02a76559..097881408643ca32ecbc70f09c6311691c6f81eb 100644 (file)
--- a/diff.c
+++ b/diff.c
@@ -1035,8 +1035,10 @@ static void pmb_advance_or_null_multi_match(struct diff_options *o,
 {
        int i;
        char *got_match = xcalloc(1, pmb_nr);
+       struct hashmap_entry *ent;
 
-       for (; match; match = hashmap_get_next(hm, &match->ent)) {
+       for (ent = &match->ent; ent; ent = hashmap_get_next(hm, ent)) {
+               match = container_of(ent, struct moved_entry, ent);
                for (i = 0; i < pmb_nr; i++) {
                        struct moved_entry *prev = pmb[i].match;
                        struct moved_entry *cur = (prev && prev->next_line) ?
@@ -1135,8 +1137,9 @@ static void mark_color_as_moved(struct diff_options *o,
 
        for (n = 0; n < o->emitted_symbols->nr; n++) {
                struct hashmap *hm = NULL;
+               struct hashmap_entry *ent = NULL;
                struct moved_entry *key;
-               struct moved_entry *match = NULL;
+               struct moved_entry *match;
                struct emitted_diff_symbol *l = &o->emitted_symbols->buf[n];
                enum diff_symbol last_symbol = 0;
 
@@ -1144,20 +1147,20 @@ static void mark_color_as_moved(struct diff_options *o,
                case DIFF_SYMBOL_PLUS:
                        hm = del_lines;
                        key = prepare_entry(o, n);
-                       match = hashmap_get(hm, &key->ent, NULL);
+                       ent = hashmap_get(hm, &key->ent, NULL);
                        free(key);
                        break;
                case DIFF_SYMBOL_MINUS:
                        hm = add_lines;
                        key = prepare_entry(o, n);
-                       match = hashmap_get(hm, &key->ent, NULL);
+                       ent = hashmap_get(hm, &key->ent, NULL);
                        free(key);
                        break;
                default:
                        flipped_block = 0;
                }
 
-               if (!match) {
+               if (!ent) {
                        int i;
 
                        adjust_last_block(o, n, block_length);
@@ -1169,6 +1172,7 @@ static void mark_color_as_moved(struct diff_options *o,
                        last_symbol = l->s;
                        continue;
                }
+               match = container_of(ent, struct moved_entry, ent);
 
                if (o->color_moved == COLOR_MOVED_PLAIN) {
                        last_symbol = l->s;
@@ -1189,8 +1193,9 @@ static void mark_color_as_moved(struct diff_options *o,
                         * The current line is the start of a new block.
                         * Setup the set of potential blocks.
                         */
-                       for (; match; match = hashmap_get_next(hm,
-                                                               &match->ent)) {
+                       for (; ent; ent = hashmap_get_next(hm, ent)) {
+                               match = container_of(ent, struct moved_entry,
+                                                       ent);
                                ALLOC_GROW(pmb, pmb_nr + 1, pmb_alloc);
                                if (o->color_moved_ws_handling &
                                    COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE) {
index 4670a40179df75b81f6d3e839a37ba9bb9207fd5..71aa240a68d991754ed0f7aba76d26a2a1955898 100644 (file)
@@ -274,7 +274,7 @@ static int find_identical_files(struct hashmap *srcs,
                                struct diff_options *options)
 {
        int renames = 0;
-
+       struct hashmap_entry *ent;
        struct diff_filespec *target = rename_dst[dst_index].two;
        struct file_similarity *p, *best = NULL;
        int i = 100, best_score = -1;
@@ -282,12 +282,15 @@ static int find_identical_files(struct hashmap *srcs,
        /*
         * Find the best source match for specified destination.
         */
-       p = hashmap_get_from_hash(srcs,
+       ent = hashmap_get_from_hash(srcs,
                                  hash_filespec(options->repo, target),
                                  NULL);
-       for (; p; p = hashmap_get_next(srcs, &p->entry)) {
+       for (; ent; ent = hashmap_get_next(srcs, ent)) {
                int score;
-               struct diff_filespec *source = p->filespec;
+               struct diff_filespec *source;
+
+               p = container_of(ent, struct file_similarity, entry);
+               source = p->filespec;
 
                /* False hash collision? */
                if (!oideq(&source->oid, &target->oid))
index 9b83e73d03346f18073a42547ba20f9983e02ac4..22bc7c5b3bd6395847ecaa0bd086a832d59c9117 100644 (file)
--- a/hashmap.c
+++ b/hashmap.c
@@ -192,7 +192,7 @@ void *hashmap_get(const struct hashmap *map, const struct hashmap_entry *key,
        return *find_entry_ptr(map, key, keydata);
 }
 
-void *hashmap_get_next(const struct hashmap *map,
+struct hashmap_entry *hashmap_get_next(const struct hashmap *map,
                        const struct hashmap_entry *entry)
 {
        struct hashmap_entry *e = entry->next;
index d122c75d0f13ef61a1462e0188b1a5a871d1de6c..21bc8aff2bc7e8485d2a5524b7a8ec0b476a7de9 100644 (file)
--- a/hashmap.h
+++ b/hashmap.h
  *
  *         if (!strcmp("print_all_by_key", action)) {
  *             struct long2string k, *e;
+ *             struct hashmap_entry *ent;
  *             hashmap_entry_init(&k->ent, memhash(&key, sizeof(long)));
  *             k.key = key;
  *
  *             flags &= ~COMPARE_VALUE;
- *             e = hashmap_get(&map, &k, NULL);
- *             if (e) {
+ *             ent = hashmap_get(&map, &k, NULL);
+ *             if (ent) {
+ *                 e = container_of(ent, struct long2string, ent);
  *                 printf("first: %ld %s\n", e->key, e->value);
- *                 while ((e = hashmap_get_next(&map, e)))
+ *                 while ((ent = hashmap_get_next(&map, ent))) {
+ *                     e = container_of(ent, struct long2string, ent);
  *                     printf("found more: %ld %s\n", e->key, e->value);
+ *                 }
  *             }
  *         }
  *
@@ -320,7 +324,7 @@ static inline void *hashmap_get_from_hash(const struct hashmap *map,
  * `entry` is the hashmap_entry to start the search from, obtained via a previous
  * call to `hashmap_get` or `hashmap_get_next`.
  */
-void *hashmap_get_next(const struct hashmap *map,
+struct hashmap_entry *hashmap_get_next(const struct hashmap *map,
                        const struct hashmap_entry *entry);
 
 /*
index 44d788f1cedbb0119dc9c91fb942201d17fdc26e..dbacb34f50d197122df0aeaeb07b8ae909e8140a 100644 (file)
@@ -702,15 +702,17 @@ void adjust_dirname_case(struct index_state *istate, char *name)
 struct cache_entry *index_file_exists(struct index_state *istate, const char *name, int namelen, int icase)
 {
        struct cache_entry *ce;
+       struct hashmap_entry *ent;
 
        lazy_init_name_hash(istate);
 
-       ce = hashmap_get_from_hash(&istate->name_hash,
+       ent = hashmap_get_from_hash(&istate->name_hash,
                                   memihash(name, namelen), NULL);
-       while (ce) {
+       while (ent) {
+               ce = container_of(ent, struct cache_entry, ent);
                if (same_name(ce, name, namelen, icase))
                        return ce;
-               ce = hashmap_get_next(&istate->name_hash, &ce->ent);
+               ent = hashmap_get_next(&istate->name_hash, ent);
        }
        return NULL;
 }
index de2bd083b9b1f630450bc9ba9a2c308f9a3cc1aa..d85b8dc58eda22ebbffb33d412f5a9543db6cb2b 100644 (file)
@@ -194,16 +194,18 @@ int cmd__hashmap(int argc, const char **argv)
                        free(entry);
 
                } else if (!strcmp("get", cmd) && p1) {
+                       struct hashmap_entry *e;
 
                        /* lookup entry in hashmap */
-                       entry = hashmap_get_from_hash(&map, hash, p1);
+                       e = hashmap_get_from_hash(&map, hash, p1);
 
                        /* print result */
-                       if (!entry)
+                       if (!e)
                                puts("NULL");
-                       while (entry) {
+                       while (e) {
+                               entry = container_of(e, struct test_entry, ent);
                                puts(get_value(entry));
-                               entry = hashmap_get_next(&map, &entry->ent);
+                               e = hashmap_get_next(&map, e);
                        }
 
                } else if (!strcmp("remove", cmd) && p1) {