Skip to content

Commit a7db4c1

Browse files
committed
Merge branch 'jk/oidhash'
Code clean-up to remove hardcoded SHA-1 hash from many places. * jk/oidhash: hashmap: convert sha1hash() to oidhash() hash.h: move object_id definition from cache.h khash: rename oid helper functions khash: drop sha1-specific map types pack-bitmap: convert khash_sha1 maps into kh_oid_map delta-islands: convert island_marks khash to use oids khash: rename kh_oid_t to kh_oid_set khash: drop broken oid_map typedef object: convert create_object() to use object_id object: convert internal hash_obj() to object_id object: convert lookup_object() to use object_id object: convert lookup_unknown_object() to use object_id pack-objects: convert locate_object_entry_hash() to object_id pack-objects: convert packlist_find() to use object_id pack-bitmap-write: convert some helpers to use object_id upload-pack: rename a "sha1" variable to "oid" describe: fix accidental oid/hash type-punning
2 parents a4c8352 + d40abc8 commit a7db4c1

37 files changed

+156
-168
lines changed

blob.c

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@ const char *blob_type = "blob";
77

88
struct blob *lookup_blob(struct repository *r, const struct object_id *oid)
99
{
10-
struct object *obj = lookup_object(r, oid->hash);
10+
struct object *obj = lookup_object(r, oid);
1111
if (!obj)
12-
return create_object(r, oid->hash,
13-
alloc_blob_node(r));
12+
return create_object(r, oid, alloc_blob_node(r));
1413
return object_as_type(r, obj, OBJ_BLOB, 0);
1514
}
1615

builtin/describe.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ static int commit_name_neq(const void *unused_cmp_data,
7676

7777
static inline struct commit_name *find_commit_name(const struct object_id *peeled)
7878
{
79-
return hashmap_get_from_hash(&names, sha1hash(peeled->hash), peeled->hash);
79+
return hashmap_get_from_hash(&names, oidhash(peeled), peeled);
8080
}
8181

8282
static int replace_name(struct commit_name *e,
@@ -123,7 +123,7 @@ static void add_to_known_names(const char *path,
123123
if (!e) {
124124
e = xmalloc(sizeof(struct commit_name));
125125
oidcpy(&e->peeled, peeled);
126-
hashmap_entry_init(e, sha1hash(peeled->hash));
126+
hashmap_entry_init(e, oidhash(peeled));
127127
hashmap_add(&names, e);
128128
e->path = NULL;
129129
}

builtin/fast-export.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ static void export_blob(const struct object_id *oid)
275275
if (is_null_oid(oid))
276276
return;
277277

278-
object = lookup_object(the_repository, oid->hash);
278+
object = lookup_object(the_repository, oid);
279279
if (object && object->flags & SHOWN)
280280
return;
281281

@@ -453,7 +453,7 @@ static void show_filemodify(struct diff_queue_struct *q,
453453
&spec->oid));
454454
else {
455455
struct object *object = lookup_object(the_repository,
456-
spec->oid.hash);
456+
&spec->oid);
457457
printf("M %06o :%d ", spec->mode,
458458
get_object_mark(object));
459459
}

builtin/fsck.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ static int mark_used(struct object *obj, int type, void *data, struct fsck_optio
238238
static void mark_unreachable_referents(const struct object_id *oid)
239239
{
240240
struct fsck_options options = FSCK_OPTIONS_DEFAULT;
241-
struct object *obj = lookup_object(the_repository, oid->hash);
241+
struct object *obj = lookup_object(the_repository, oid);
242242

243243
if (!obj || !(obj->flags & HAS_OBJ))
244244
return; /* not part of our original set */
@@ -497,7 +497,7 @@ static void fsck_handle_reflog_oid(const char *refname, struct object_id *oid,
497497
struct object *obj;
498498

499499
if (!is_null_oid(oid)) {
500-
obj = lookup_object(the_repository, oid->hash);
500+
obj = lookup_object(the_repository, oid);
501501
if (obj && (obj->flags & HAS_OBJ)) {
502502
if (timestamp && name_objects)
503503
add_decoration(fsck_walk_options.object_names,
@@ -756,7 +756,7 @@ static int fsck_cache_tree(struct cache_tree *it)
756756

757757
static void mark_object_for_connectivity(const struct object_id *oid)
758758
{
759-
struct object *obj = lookup_unknown_object(oid->hash);
759+
struct object *obj = lookup_unknown_object(oid);
760760
obj->flags |= HAS_OBJ;
761761
}
762762

@@ -879,7 +879,7 @@ int cmd_fsck(int argc, const char **argv, const char *prefix)
879879
struct object_id oid;
880880
if (!get_oid(arg, &oid)) {
881881
struct object *obj = lookup_object(the_repository,
882-
oid.hash);
882+
&oid);
883883

884884
if (!obj || !(obj->flags & HAS_OBJ)) {
885885
if (is_promisor_object(&oid))

builtin/name-rev.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -378,8 +378,7 @@ static void name_rev_line(char *p, struct name_ref_data *data)
378378
*(p+1) = 0;
379379
if (!get_oid(p - (hexsz - 1), &oid)) {
380380
struct object *o =
381-
lookup_object(the_repository,
382-
oid.hash);
381+
lookup_object(the_repository, &oid);
383382
if (o)
384383
name = get_rev_name(o, &buf);
385384
}

builtin/pack-objects.c

+11-10
Original file line numberDiff line numberDiff line change
@@ -606,12 +606,12 @@ static int mark_tagged(const char *path, const struct object_id *oid, int flag,
606606
void *cb_data)
607607
{
608608
struct object_id peeled;
609-
struct object_entry *entry = packlist_find(&to_pack, oid->hash, NULL);
609+
struct object_entry *entry = packlist_find(&to_pack, oid, NULL);
610610

611611
if (entry)
612612
entry->tagged = 1;
613613
if (!peel_ref(path, &peeled)) {
614-
entry = packlist_find(&to_pack, peeled.hash, NULL);
614+
entry = packlist_find(&to_pack, &peeled, NULL);
615615
if (entry)
616616
entry->tagged = 1;
617617
}
@@ -996,7 +996,7 @@ static int have_duplicate_entry(const struct object_id *oid,
996996
{
997997
struct object_entry *entry;
998998

999-
entry = packlist_find(&to_pack, oid->hash, index_pos);
999+
entry = packlist_find(&to_pack, oid, index_pos);
10001000
if (!entry)
10011001
return 0;
10021002

@@ -1494,11 +1494,13 @@ static int can_reuse_delta(const unsigned char *base_sha1,
14941494
if (!base_sha1)
14951495
return 0;
14961496

1497+
oidread(&base_oid, base_sha1);
1498+
14971499
/*
14981500
* First see if we're already sending the base (or it's explicitly in
14991501
* our "excluded" list).
15001502
*/
1501-
base = packlist_find(&to_pack, base_sha1, NULL);
1503+
base = packlist_find(&to_pack, &base_oid, NULL);
15021504
if (base) {
15031505
if (!in_same_island(&delta->idx.oid, &base->idx.oid))
15041506
return 0;
@@ -1511,7 +1513,6 @@ static int can_reuse_delta(const unsigned char *base_sha1,
15111513
* even if it was buried too deep in history to make it into the
15121514
* packing list.
15131515
*/
1514-
oidread(&base_oid, base_sha1);
15151516
if (thin && bitmap_has_oid_in_uninteresting(bitmap_git, &base_oid)) {
15161517
if (use_delta_islands) {
15171518
if (!in_same_island(&delta->idx.oid, &base_oid))
@@ -2571,7 +2572,7 @@ static void add_tag_chain(const struct object_id *oid)
25712572
* it was included via bitmaps, we would not have parsed it
25722573
* previously).
25732574
*/
2574-
if (packlist_find(&to_pack, oid->hash, NULL))
2575+
if (packlist_find(&to_pack, oid, NULL))
25752576
return;
25762577

25772578
tag = lookup_tag(the_repository, oid);
@@ -2595,7 +2596,7 @@ static int add_ref_tag(const char *path, const struct object_id *oid, int flag,
25952596

25962597
if (starts_with(path, "refs/tags/") && /* is a tag? */
25972598
!peel_ref(path, &peeled) && /* peelable? */
2598-
packlist_find(&to_pack, peeled.hash, NULL)) /* object packed? */
2599+
packlist_find(&to_pack, &peeled, NULL)) /* object packed? */
25992600
add_tag_chain(oid);
26002601
return 0;
26012602
}
@@ -2795,7 +2796,7 @@ static void show_object(struct object *obj, const char *name, void *data)
27952796
for (p = strchr(name, '/'); p; p = strchr(p + 1, '/'))
27962797
depth++;
27972798

2798-
ent = packlist_find(&to_pack, obj->oid.hash, NULL);
2799+
ent = packlist_find(&to_pack, &obj->oid, NULL);
27992800
if (ent && depth > oe_tree_depth(&to_pack, ent))
28002801
oe_set_tree_depth(&to_pack, ent, depth);
28012802
}
@@ -2922,7 +2923,7 @@ static void add_objects_in_unpacked_packs(void)
29222923

29232924
for (i = 0; i < p->num_objects; i++) {
29242925
nth_packed_object_oid(&oid, p, i);
2925-
o = lookup_unknown_object(oid.hash);
2926+
o = lookup_unknown_object(&oid);
29262927
if (!(o->flags & OBJECT_ADDED))
29272928
mark_in_pack_object(o, p, &in_pack);
29282929
o->flags |= OBJECT_ADDED;
@@ -3026,7 +3027,7 @@ static void loosen_unused_packed_objects(void)
30263027

30273028
for (i = 0; i < p->num_objects; i++) {
30283029
nth_packed_object_oid(&oid, p, i);
3029-
if (!packlist_find(&to_pack, oid.hash, NULL) &&
3030+
if (!packlist_find(&to_pack, &oid, NULL) &&
30303031
!has_sha1_pack_kept_or_nonlocal(&oid) &&
30313032
!loosened_object_can_be_discarded(&oid, p->mtime))
30323033
if (force_object_loose(&oid, p->mtime))

builtin/prune.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ static int is_object_reachable(const struct object_id *oid,
5353

5454
perform_reachability_traversal(revs);
5555

56-
obj = lookup_object(the_repository, oid->hash);
56+
obj = lookup_object(the_repository, oid);
5757
return obj && (obj->flags & SEEN);
5858
}
5959

builtin/unpack-objects.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ static int resolve_against_held(unsigned nr, const struct object_id *base,
332332
{
333333
struct object *obj;
334334
struct obj_buffer *obj_buffer;
335-
obj = lookup_object(the_repository, base->hash);
335+
obj = lookup_object(the_repository, base);
336336
if (!obj)
337337
return 0;
338338
obj_buffer = lookup_object_buffer(obj);

cache.h

-24
Original file line numberDiff line numberDiff line change
@@ -43,30 +43,6 @@ int git_deflate_end_gently(git_zstream *);
4343
int git_deflate(git_zstream *, int flush);
4444
unsigned long git_deflate_bound(git_zstream *, unsigned long);
4545

46-
/* The length in bytes and in hex digits of an object name (SHA-1 value). */
47-
#define GIT_SHA1_RAWSZ 20
48-
#define GIT_SHA1_HEXSZ (2 * GIT_SHA1_RAWSZ)
49-
/* The block size of SHA-1. */
50-
#define GIT_SHA1_BLKSZ 64
51-
52-
/* The length in bytes and in hex digits of an object name (SHA-256 value). */
53-
#define GIT_SHA256_RAWSZ 32
54-
#define GIT_SHA256_HEXSZ (2 * GIT_SHA256_RAWSZ)
55-
/* The block size of SHA-256. */
56-
#define GIT_SHA256_BLKSZ 64
57-
58-
/* The length in byte and in hex digits of the largest possible hash value. */
59-
#define GIT_MAX_RAWSZ GIT_SHA256_RAWSZ
60-
#define GIT_MAX_HEXSZ GIT_SHA256_HEXSZ
61-
/* The largest possible block size for any supported hash. */
62-
#define GIT_MAX_BLKSZ GIT_SHA256_BLKSZ
63-
64-
struct object_id {
65-
unsigned char hash[GIT_MAX_RAWSZ];
66-
};
67-
68-
#define the_hash_algo the_repository->hash_algo
69-
7046
#if defined(DT_UNKNOWN) && !defined(NO_D_TYPE_IN_DIRENT)
7147
#define DTYPE(de) ((de)->d_type)
7248
#else

commit-graph.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1279,7 +1279,7 @@ int verify_commit_graph(struct repository *r, struct commit_graph *g)
12791279
hashcpy(cur_oid.hash, g->chunk_oid_lookup + g->hash_len * i);
12801280

12811281
graph_commit = lookup_commit(r, &cur_oid);
1282-
odb_commit = (struct commit *)create_object(r, cur_oid.hash, alloc_commit_node(r));
1282+
odb_commit = (struct commit *)create_object(r, &cur_oid, alloc_commit_node(r));
12831283
if (parse_commit_internal(odb_commit, 0, 0)) {
12841284
graph_report(_("failed to parse commit %s from object database for commit-graph"),
12851285
oid_to_hex(&cur_oid));

commit.c

+2-3
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,9 @@ struct commit *lookup_commit_or_die(const struct object_id *oid, const char *ref
5757

5858
struct commit *lookup_commit(struct repository *r, const struct object_id *oid)
5959
{
60-
struct object *obj = lookup_object(r, oid->hash);
60+
struct object *obj = lookup_object(r, oid);
6161
if (!obj)
62-
return create_object(r, oid->hash,
63-
alloc_commit_node(r));
62+
return create_object(r, oid, alloc_commit_node(r));
6463
return object_as_type(r, obj, OBJ_COMMIT, 0);
6564
}
6665

decorate.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
static unsigned int hash_obj(const struct object *obj, unsigned int n)
1010
{
11-
return sha1hash(obj->oid.hash) % n;
11+
return oidhash(&obj->oid) % n;
1212
}
1313

1414
static void *insert_decoration(struct decoration *n, const struct object *base, void *decoration)

delta-islands.c

+12-12
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
KHASH_INIT(str, const char *, void *, 1, kh_str_hash_func, kh_str_hash_equal)
2424

25-
static khash_sha1 *island_marks;
25+
static kh_oid_map_t *island_marks;
2626
static unsigned island_counter;
2727
static unsigned island_counter_core;
2828

@@ -105,15 +105,15 @@ int in_same_island(const struct object_id *trg_oid, const struct object_id *src_
105105
* If we don't have a bitmap for the target, we can delta it
106106
* against anything -- it's not an important object
107107
*/
108-
trg_pos = kh_get_sha1(island_marks, trg_oid->hash);
108+
trg_pos = kh_get_oid_map(island_marks, *trg_oid);
109109
if (trg_pos >= kh_end(island_marks))
110110
return 1;
111111

112112
/*
113113
* if the source (our delta base) doesn't have a bitmap,
114114
* we don't want to base any deltas on it!
115115
*/
116-
src_pos = kh_get_sha1(island_marks, src_oid->hash);
116+
src_pos = kh_get_oid_map(island_marks, *src_oid);
117117
if (src_pos >= kh_end(island_marks))
118118
return 0;
119119

@@ -129,11 +129,11 @@ int island_delta_cmp(const struct object_id *a, const struct object_id *b)
129129
if (!island_marks)
130130
return 0;
131131

132-
a_pos = kh_get_sha1(island_marks, a->hash);
132+
a_pos = kh_get_oid_map(island_marks, *a);
133133
if (a_pos < kh_end(island_marks))
134134
a_bitmap = kh_value(island_marks, a_pos);
135135

136-
b_pos = kh_get_sha1(island_marks, b->hash);
136+
b_pos = kh_get_oid_map(island_marks, *b);
137137
if (b_pos < kh_end(island_marks))
138138
b_bitmap = kh_value(island_marks, b_pos);
139139

@@ -154,7 +154,7 @@ static struct island_bitmap *create_or_get_island_marks(struct object *obj)
154154
khiter_t pos;
155155
int hash_ret;
156156

157-
pos = kh_put_sha1(island_marks, obj->oid.hash, &hash_ret);
157+
pos = kh_put_oid_map(island_marks, obj->oid, &hash_ret);
158158
if (hash_ret)
159159
kh_value(island_marks, pos) = island_bitmap_new(NULL);
160160

@@ -167,7 +167,7 @@ static void set_island_marks(struct object *obj, struct island_bitmap *marks)
167167
khiter_t pos;
168168
int hash_ret;
169169

170-
pos = kh_put_sha1(island_marks, obj->oid.hash, &hash_ret);
170+
pos = kh_put_oid_map(island_marks, obj->oid, &hash_ret);
171171
if (hash_ret) {
172172
/*
173173
* We don't have one yet; make a copy-on-write of the
@@ -279,7 +279,7 @@ void resolve_tree_islands(struct repository *r,
279279
struct name_entry entry;
280280
khiter_t pos;
281281

282-
pos = kh_get_sha1(island_marks, ent->idx.oid.hash);
282+
pos = kh_get_oid_map(island_marks, ent->idx.oid);
283283
if (pos >= kh_end(island_marks))
284284
continue;
285285

@@ -296,7 +296,7 @@ void resolve_tree_islands(struct repository *r,
296296
if (S_ISGITLINK(entry.mode))
297297
continue;
298298

299-
obj = lookup_object(r, entry.oid.hash);
299+
obj = lookup_object(r, &entry.oid);
300300
if (!obj)
301301
continue;
302302

@@ -456,7 +456,7 @@ static void deduplicate_islands(struct repository *r)
456456

457457
void load_delta_islands(struct repository *r, int progress)
458458
{
459-
island_marks = kh_init_sha1();
459+
island_marks = kh_init_oid_map();
460460
remote_islands = kh_init_str();
461461

462462
git_config(island_config_callback, NULL);
@@ -469,7 +469,7 @@ void load_delta_islands(struct repository *r, int progress)
469469

470470
void propagate_island_marks(struct commit *commit)
471471
{
472-
khiter_t pos = kh_get_sha1(island_marks, commit->object.oid.hash);
472+
khiter_t pos = kh_get_oid_map(island_marks, commit->object.oid);
473473

474474
if (pos < kh_end(island_marks)) {
475475
struct commit_list *p;
@@ -491,7 +491,7 @@ int compute_pack_layers(struct packing_data *to_pack)
491491

492492
for (i = 0; i < to_pack->nr_objects; ++i) {
493493
struct object_entry *entry = &to_pack->objects[i];
494-
khiter_t pos = kh_get_sha1(island_marks, entry->idx.oid.hash);
494+
khiter_t pos = kh_get_oid_map(island_marks, entry->idx.oid);
495495

496496
oe_set_layer(to_pack, entry, 1);
497497

diffcore-rename.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ static unsigned int hash_filespec(struct repository *r,
266266
hash_object_file(filespec->data, filespec->size, "blob",
267267
&filespec->oid);
268268
}
269-
return sha1hash(filespec->oid.hash);
269+
return oidhash(&filespec->oid);
270270
}
271271

272272
static int find_identical_files(struct hashmap *srcs,

0 commit comments

Comments
 (0)