Skip to content

Commit

Permalink
hashmap_add takes "struct hashmap_entry *"
Browse files Browse the repository at this point in the history
This is less error-prone than "void *" as the compiler now
detects invalid types being passed.

Signed-off-by: Eric Wong <e@80x24.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Eric Wong authored and gitster committed Aug 26, 2019
1 parent f3b5b29 commit e1c7b97
Show file tree
Hide file tree
Showing 20 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion attr.c
Expand Up @@ -122,7 +122,7 @@ static void attr_hashmap_add(struct attr_hashmap *map,
e->keylen = keylen;
e->value = value;

hashmap_add(&map->map, e);
hashmap_add(&map->map, &e->ent);
}

struct all_attrs_item {
Expand Down
2 changes: 1 addition & 1 deletion blame.c
Expand Up @@ -424,7 +424,7 @@ static void get_fingerprint(struct fingerprint *result,
found_entry->count += 1;
} else {
entry->count = 1;
hashmap_add(&result->map, entry);
hashmap_add(&result->map, &entry->entry);
++entry;
}
}
Expand Down
2 changes: 1 addition & 1 deletion builtin/describe.c
Expand Up @@ -124,7 +124,7 @@ static void add_to_known_names(const char *path,
e = xmalloc(sizeof(struct commit_name));
oidcpy(&e->peeled, peeled);
hashmap_entry_init(&e->entry, oidhash(peeled));
hashmap_add(&names, e);
hashmap_add(&names, &e->entry);
e->path = NULL;
}
e->tag = tag;
Expand Down
6 changes: 3 additions & 3 deletions builtin/difftool.c
Expand Up @@ -168,7 +168,7 @@ static void add_left_or_right(struct hashmap *map, const char *path,
e = existing;
} else {
e->left[0] = e->right[0] = '\0';
hashmap_add(map, e);
hashmap_add(map, &e->entry);
}
strlcpy(is_right ? e->right : e->left, content, PATH_MAX);
}
Expand Down Expand Up @@ -235,7 +235,7 @@ static void changed_files(struct hashmap *result, const char *index_path,
struct path_entry *entry;
FLEX_ALLOC_STR(entry, path, buf.buf);
hashmap_entry_init(&entry->entry, strhash(buf.buf));
hashmap_add(result, entry);
hashmap_add(result, &entry->entry);
}
fclose(fp);
if (finish_command(&diff_files))
Expand Down Expand Up @@ -466,7 +466,7 @@ static int run_dir_diff(const char *extcmd, int symlinks, const char *prefix,
free(entry);
continue;
}
hashmap_add(&working_tree_dups, entry);
hashmap_add(&working_tree_dups, &entry->entry);

if (!use_wt_file(workdir, dst_path, &roid)) {
if (checkout_path(rmode, &roid, dst_path,
Expand Down
2 changes: 1 addition & 1 deletion builtin/fetch.c
Expand Up @@ -278,7 +278,7 @@ static struct refname_hash_entry *refname_hash_add(struct hashmap *map,
FLEX_ALLOC_MEM(ent, refname, refname, len);
hashmap_entry_init(&ent->ent, strhash(refname));
oidcpy(&ent->oid, oid);
hashmap_add(map, ent);
hashmap_add(map, &ent->ent);
return ent;
}

Expand Down
2 changes: 1 addition & 1 deletion config.c
Expand Up @@ -1885,7 +1885,7 @@ static int configset_add_value(struct config_set *cs, const char *key, const cha
hashmap_entry_init(&e->ent, strhash(key));
e->key = xstrdup(key);
string_list_init(&e->value_list, 1);
hashmap_add(&cs->config_hash, e);
hashmap_add(&cs->config_hash, &e->ent);
}
si = string_list_append_nodup(&e->value_list, xstrdup_or_null(value));

Expand Down
2 changes: 1 addition & 1 deletion diff.c
Expand Up @@ -1003,7 +1003,7 @@ static void add_lines_to_move_detection(struct diff_options *o,
if (prev_line && prev_line->es->s == o->emitted_symbols->buf[n].s)
prev_line->next_line = key;

hashmap_add(hm, key);
hashmap_add(hm, &key->ent);
prev_line = key;
}
}
Expand Down
2 changes: 1 addition & 1 deletion diffcore-rename.c
Expand Up @@ -330,7 +330,7 @@ static void insert_file_table(struct repository *r,
entry->filespec = filespec;

hashmap_entry_init(&entry->entry, hash_filespec(r, filespec));
hashmap_add(table, entry);
hashmap_add(table, &entry->entry);
}

/*
Expand Down
6 changes: 3 additions & 3 deletions hashmap.c
Expand Up @@ -201,12 +201,12 @@ void *hashmap_get_next(const struct hashmap *map,
return NULL;
}

void hashmap_add(struct hashmap *map, void *entry)
void hashmap_add(struct hashmap *map, struct hashmap_entry *entry)
{
unsigned int b = bucket(map, entry);

/* add entry */
((struct hashmap_entry *) entry)->next = map->table[b];
entry->next = map->table[b];
map->table[b] = entry;

/* fix size and rehash if appropriate */
Expand Down Expand Up @@ -303,7 +303,7 @@ const void *memintern(const void *data, size_t len)
FLEX_ALLOC_MEM(e, data, data, len);
hashmap_entry_init(&e->ent, hash);
e->len = len;
hashmap_add(&map, e);
hashmap_add(&map, &e->ent);
}
return e->data;
}
4 changes: 2 additions & 2 deletions hashmap.h
Expand Up @@ -50,7 +50,7 @@
* FLEX_ALLOC_STR(e, value, value);
* hashmap_entry_init(&e->ent, memhash(&key, sizeof(long)));
* e->key = key;
* hashmap_add(&map, e);
* hashmap_add(&map, &e->ent);
* }
*
* if (!strcmp("print_all_by_key", action)) {
Expand Down Expand Up @@ -328,7 +328,7 @@ void *hashmap_get_next(const struct hashmap *map,
* `map` is the hashmap structure.
* `entry` is the entry to add.
*/
void hashmap_add(struct hashmap *map, void *entry);
void hashmap_add(struct hashmap *map, struct hashmap_entry *entry);

/*
* Adds or replaces a hashmap entry. If the hashmap contains duplicate
Expand Down
4 changes: 2 additions & 2 deletions merge-recursive.c
Expand Up @@ -455,7 +455,7 @@ static int save_files_dirs(const struct object_id *oid,

FLEX_ALLOC_MEM(entry, path, base->buf, base->len);
hashmap_entry_init(&entry->e, path_hash(entry->path));
hashmap_add(&opt->current_file_dir_set, entry);
hashmap_add(&opt->current_file_dir_set, &entry->e);

strbuf_setlen(base, baselen);
return (S_ISDIR(mode) ? READ_TREE_RECURSIVE : 0);
Expand Down Expand Up @@ -732,7 +732,7 @@ static char *unique_path(struct merge_options *opt, const char *path, const char

FLEX_ALLOC_MEM(entry, path, newpath.buf, newpath.len);
hashmap_entry_init(&entry->e, path_hash(entry->path));
hashmap_add(&opt->current_file_dir_set, entry);
hashmap_add(&opt->current_file_dir_set, &entry->e);
return strbuf_detach(&newpath, NULL);
}

Expand Down
8 changes: 4 additions & 4 deletions name-hash.c
Expand Up @@ -70,7 +70,7 @@ static struct dir_entry *hash_dir_entry(struct index_state *istate,
FLEX_ALLOC_MEM(dir, name, ce->name, namelen);
hashmap_entry_init(&dir->ent, memihash(ce->name, namelen));
dir->namelen = namelen;
hashmap_add(&istate->dir_hash, dir);
hashmap_add(&istate->dir_hash, &dir->ent);

/* recursively add missing parent directories */
dir->parent = hash_dir_entry(istate, ce, namelen);
Expand Down Expand Up @@ -107,7 +107,7 @@ static void hash_index_entry(struct index_state *istate, struct cache_entry *ce)
return;
ce->ce_flags |= CE_HASHED;
hashmap_entry_init(&ce->ent, memihash(ce->name, ce_namelen(ce)));
hashmap_add(&istate->name_hash, ce);
hashmap_add(&istate->name_hash, &ce->ent);

if (ignore_case)
add_dir_entry(istate, ce);
Expand Down Expand Up @@ -283,7 +283,7 @@ static struct dir_entry *hash_dir_entry_with_parent_and_prefix(
hashmap_entry_init(&dir->ent, hash);
dir->namelen = prefix->len;
dir->parent = parent;
hashmap_add(&istate->dir_hash, dir);
hashmap_add(&istate->dir_hash, &dir->ent);

if (parent) {
unlock_dir_mutex(lock_nr);
Expand Down Expand Up @@ -474,7 +474,7 @@ static void *lazy_name_thread_proc(void *_data)
struct cache_entry *ce_k = d->istate->cache[k];
ce_k->ce_flags |= CE_HASHED;
hashmap_entry_init(&ce_k->ent, d->lazy_entries[k].hash_name);
hashmap_add(&d->istate->name_hash, ce_k);
hashmap_add(&d->istate->name_hash, &ce_k->ent);
}

return NULL;
Expand Down
2 changes: 1 addition & 1 deletion packfile.c
Expand Up @@ -1488,7 +1488,7 @@ static void add_delta_base_cache(struct packed_git *p, off_t base_offset,
if (!delta_base_cache.cmpfn)
hashmap_init(&delta_base_cache, delta_base_cache_hash_cmp, NULL, 0);
hashmap_entry_init(&ent->ent, pack_entry_hash(p, base_offset));
hashmap_add(&delta_base_cache, ent);
hashmap_add(&delta_base_cache, &ent->ent);
}

int packed_object_info(struct repository *r, struct packed_git *p,
Expand Down
2 changes: 1 addition & 1 deletion patch-ids.c
Expand Up @@ -116,6 +116,6 @@ struct patch_id *add_commit_patch_id(struct commit *commit,
return NULL;
}

hashmap_add(&ids->patches, key);
hashmap_add(&ids->patches, &key->ent);
return key;
}
2 changes: 1 addition & 1 deletion range-diff.c
Expand Up @@ -218,7 +218,7 @@ static void find_exact_matches(struct string_list *a, struct string_list *b)
util->patch = a->items[i].string;
util->diff = util->patch + util->diff_offset;
hashmap_entry_init(&util->e, strhash(util->diff));
hashmap_add(&map, util);
hashmap_add(&map, &util->e);
}

/* Now try to find exact matches in b */
Expand Down
2 changes: 1 addition & 1 deletion ref-filter.c
Expand Up @@ -1568,7 +1568,7 @@ static void populate_worktree_map(struct hashmap *map, struct worktree **worktre
hashmap_entry_init(&entry->ent,
strhash(worktrees[i]->head_ref));

hashmap_add(map, entry);
hashmap_add(map, &entry->ent);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion sequencer.c
Expand Up @@ -4539,7 +4539,7 @@ static const char *label_oid(struct object_id *oid, const char *label,

FLEX_ALLOC_STR(labels_entry, label, label);
hashmap_entry_init(&labels_entry->entry, strihash(label));
hashmap_add(&state->labels, labels_entry);
hashmap_add(&state->labels, &labels_entry->entry);

FLEX_ALLOC_STR(string_entry, string, label);
oidcpy(&string_entry->entry.oid, oid);
Expand Down
2 changes: 1 addition & 1 deletion sub-process.c
Expand Up @@ -105,7 +105,7 @@ int subprocess_start(struct hashmap *hashmap, struct subprocess_entry *entry, co
return err;
}

hashmap_add(hashmap, entry);
hashmap_add(hashmap, &entry->ent);
return 0;
}

Expand Down
2 changes: 1 addition & 1 deletion submodule-config.c
Expand Up @@ -149,7 +149,7 @@ static void cache_add(struct submodule_cache *cache,
struct submodule_entry *e = xmalloc(sizeof(*e));
hashmap_entry_init(&e->ent, hash);
e->config = submodule;
hashmap_add(&cache->for_name, e);
hashmap_add(&cache->for_name, &e->ent);
}

static const struct submodule *cache_lookup_path(struct submodule_cache *cache,
Expand Down
6 changes: 3 additions & 3 deletions t/helper/test-hashmap.c
Expand Up @@ -104,7 +104,7 @@ static void perf_hashmap(unsigned int method, unsigned int rounds)
/* add entries */
for (i = 0; i < TEST_SIZE; i++) {
hashmap_entry_init(&entries[i]->ent, hashes[i]);
hashmap_add(&map, entries[i]);
hashmap_add(&map, &entries[i]->ent);
}

hashmap_free(&map, 0);
Expand All @@ -117,7 +117,7 @@ static void perf_hashmap(unsigned int method, unsigned int rounds)
j = (method & TEST_SPARSE) ? TEST_SIZE / 10 : TEST_SIZE;
for (i = 0; i < j; i++) {
hashmap_entry_init(&entries[i]->ent, hashes[i]);
hashmap_add(&map, entries[i]);
hashmap_add(&map, &entries[i]->ent);
}

for (j = 0; j < rounds; j++) {
Expand Down Expand Up @@ -179,7 +179,7 @@ int cmd__hashmap(int argc, const char **argv)
entry = alloc_test_entry(hash, p1, p2);

/* add to hashmap */
hashmap_add(&map, entry);
hashmap_add(&map, &entry->ent);

} else if (!strcmp("put", cmd) && p1 && p2) {

Expand Down

0 comments on commit e1c7b97

Please sign in to comment.