Skip to content

Commit e8e7184

Browse files
committed
Merge branch 'jk/nth-packed-object-id'
Code cleanup to use "struct object_id" more by replacing use of "char *sha1" * jk/nth-packed-object-id: packfile: drop nth_packed_object_sha1() packed_object_info(): use object_id internally for delta base packed_object_info(): use object_id for returning delta base pack-check: push oid lookup into loop pack-check: convert "internal error" die to a BUG() pack-bitmap: use object_id when loading on-disk bitmaps pack-objects: use object_id struct in pack-reuse code pack-objects: convert oe_set_delta_ext() to use object_id pack-objects: read delta base oid into object_id struct nth_packed_object_oid(): use customary integer return
2 parents a0ab37d + 2fecc48 commit e8e7184

13 files changed

+95
-114
lines changed

builtin/cat-file.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ static void expand_atom(struct strbuf *sb, const char *atom, int len,
262262
strbuf_addstr(sb, data->rest);
263263
} else if (is_atom("deltabase", atom, len)) {
264264
if (data->mark_query)
265-
data->info.delta_base_sha1 = data->delta_base_oid.hash;
265+
data->info.delta_base_oid = &data->delta_base_oid;
266266
else
267267
strbuf_addstr(sb,
268268
oid_to_hex(&data->delta_base_oid));

builtin/pack-objects.c

+25-23
Original file line numberDiff line numberDiff line change
@@ -872,14 +872,15 @@ static void write_reused_pack_one(size_t pos, struct hashfile *out,
872872
/* Convert to REF_DELTA if we must... */
873873
if (!allow_ofs_delta) {
874874
int base_pos = find_revindex_position(reuse_packfile, base_offset);
875-
const unsigned char *base_sha1 =
876-
nth_packed_object_sha1(reuse_packfile,
877-
reuse_packfile->revindex[base_pos].nr);
875+
struct object_id base_oid;
876+
877+
nth_packed_object_id(&base_oid, reuse_packfile,
878+
reuse_packfile->revindex[base_pos].nr);
878879

879880
len = encode_in_pack_object_header(header, sizeof(header),
880881
OBJ_REF_DELTA, size);
881882
hashwrite(out, header, len);
882-
hashwrite(out, base_sha1, 20);
883+
hashwrite(out, base_oid.hash, 20);
883884
copy_pack_data(out, reuse_packfile, w_curs, cur, next - cur);
884885
return;
885886
}
@@ -1618,23 +1619,17 @@ static void cleanup_preferred_base(void)
16181619
* deltify other objects against, in order to avoid
16191620
* circular deltas.
16201621
*/
1621-
static int can_reuse_delta(const unsigned char *base_sha1,
1622+
static int can_reuse_delta(const struct object_id *base_oid,
16221623
struct object_entry *delta,
16231624
struct object_entry **base_out)
16241625
{
16251626
struct object_entry *base;
1626-
struct object_id base_oid;
1627-
1628-
if (!base_sha1)
1629-
return 0;
1630-
1631-
oidread(&base_oid, base_sha1);
16321627

16331628
/*
16341629
* First see if we're already sending the base (or it's explicitly in
16351630
* our "excluded" list).
16361631
*/
1637-
base = packlist_find(&to_pack, &base_oid);
1632+
base = packlist_find(&to_pack, base_oid);
16381633
if (base) {
16391634
if (!in_same_island(&delta->idx.oid, &base->idx.oid))
16401635
return 0;
@@ -1647,9 +1642,9 @@ static int can_reuse_delta(const unsigned char *base_sha1,
16471642
* even if it was buried too deep in history to make it into the
16481643
* packing list.
16491644
*/
1650-
if (thin && bitmap_has_oid_in_uninteresting(bitmap_git, &base_oid)) {
1645+
if (thin && bitmap_has_oid_in_uninteresting(bitmap_git, base_oid)) {
16511646
if (use_delta_islands) {
1652-
if (!in_same_island(&delta->idx.oid, &base_oid))
1647+
if (!in_same_island(&delta->idx.oid, base_oid))
16531648
return 0;
16541649
}
16551650
*base_out = NULL;
@@ -1666,7 +1661,8 @@ static void check_object(struct object_entry *entry)
16661661
if (IN_PACK(entry)) {
16671662
struct packed_git *p = IN_PACK(entry);
16681663
struct pack_window *w_curs = NULL;
1669-
const unsigned char *base_ref = NULL;
1664+
int have_base = 0;
1665+
struct object_id base_ref;
16701666
struct object_entry *base_entry;
16711667
unsigned long used, used_0;
16721668
unsigned long avail;
@@ -1707,9 +1703,13 @@ static void check_object(struct object_entry *entry)
17071703
unuse_pack(&w_curs);
17081704
return;
17091705
case OBJ_REF_DELTA:
1710-
if (reuse_delta && !entry->preferred_base)
1711-
base_ref = use_pack(p, &w_curs,
1712-
entry->in_pack_offset + used, NULL);
1706+
if (reuse_delta && !entry->preferred_base) {
1707+
oidread(&base_ref,
1708+
use_pack(p, &w_curs,
1709+
entry->in_pack_offset + used,
1710+
NULL));
1711+
have_base = 1;
1712+
}
17131713
entry->in_pack_header_size = used + the_hash_algo->rawsz;
17141714
break;
17151715
case OBJ_OFS_DELTA:
@@ -1739,13 +1739,15 @@ static void check_object(struct object_entry *entry)
17391739
revidx = find_pack_revindex(p, ofs);
17401740
if (!revidx)
17411741
goto give_up;
1742-
base_ref = nth_packed_object_sha1(p, revidx->nr);
1742+
if (!nth_packed_object_id(&base_ref, p, revidx->nr))
1743+
have_base = 1;
17431744
}
17441745
entry->in_pack_header_size = used + used_0;
17451746
break;
17461747
}
17471748

1748-
if (can_reuse_delta(base_ref, entry, &base_entry)) {
1749+
if (have_base &&
1750+
can_reuse_delta(&base_ref, entry, &base_entry)) {
17491751
oe_set_type(entry, entry->in_pack_type);
17501752
SET_SIZE(entry, in_pack_size); /* delta size */
17511753
SET_DELTA_SIZE(entry, in_pack_size);
@@ -1755,7 +1757,7 @@ static void check_object(struct object_entry *entry)
17551757
entry->delta_sibling_idx = base_entry->delta_child_idx;
17561758
SET_DELTA_CHILD(base_entry, entry);
17571759
} else {
1758-
SET_DELTA_EXT(entry, base_ref);
1760+
SET_DELTA_EXT(entry, &base_ref);
17591761
}
17601762

17611763
unuse_pack(&w_curs);
@@ -3053,7 +3055,7 @@ static void add_objects_in_unpacked_packs(void)
30533055
in_pack.alloc);
30543056

30553057
for (i = 0; i < p->num_objects; i++) {
3056-
nth_packed_object_oid(&oid, p, i);
3058+
nth_packed_object_id(&oid, p, i);
30573059
o = lookup_unknown_object(&oid);
30583060
if (!(o->flags & OBJECT_ADDED))
30593061
mark_in_pack_object(o, p, &in_pack);
@@ -3157,7 +3159,7 @@ static void loosen_unused_packed_objects(void)
31573159
die(_("cannot open pack index"));
31583160

31593161
for (i = 0; i < p->num_objects; i++) {
3160-
nth_packed_object_oid(&oid, p, i);
3162+
nth_packed_object_id(&oid, p, i);
31613163
if (!packlist_find(&to_pack, &oid) &&
31623164
!has_sha1_pack_kept_or_nonlocal(&oid) &&
31633165
!loosened_object_can_be_discarded(&oid, p->mtime))

midx.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ static void fill_pack_entry(uint32_t pack_int_id,
534534
uint32_t cur_object,
535535
struct pack_midx_entry *entry)
536536
{
537-
if (!nth_packed_object_oid(&entry->oid, p, cur_object))
537+
if (nth_packed_object_id(&entry->oid, p, cur_object) < 0)
538538
die(_("failed to locate object %d in packfile"), cur_object);
539539

540540
entry->pack_int_id = pack_int_id;

object-store.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ struct object_info {
300300
enum object_type *typep;
301301
unsigned long *sizep;
302302
off_t *disk_sizep;
303-
unsigned char *delta_base_sha1;
303+
struct object_id *delta_base_oid;
304304
struct strbuf *type_name;
305305
void **contentp;
306306

pack-bitmap.c

+9-9
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ static int load_bitmap_header(struct bitmap_index *index)
170170

171171
static struct stored_bitmap *store_bitmap(struct bitmap_index *index,
172172
struct ewah_bitmap *root,
173-
const unsigned char *hash,
173+
const struct object_id *oid,
174174
struct stored_bitmap *xor_with,
175175
int flags)
176176
{
@@ -182,15 +182,15 @@ static struct stored_bitmap *store_bitmap(struct bitmap_index *index,
182182
stored->root = root;
183183
stored->xor = xor_with;
184184
stored->flags = flags;
185-
oidread(&stored->oid, hash);
185+
oidcpy(&stored->oid, oid);
186186

187187
hash_pos = kh_put_oid_map(index->bitmaps, stored->oid, &ret);
188188

189189
/* a 0 return code means the insertion succeeded with no changes,
190190
* because the SHA1 already existed on the map. this is bad, there
191191
* shouldn't be duplicated commits in the index */
192192
if (ret == 0) {
193-
error("Duplicate entry in bitmap index: %s", hash_to_hex(hash));
193+
error("Duplicate entry in bitmap index: %s", oid_to_hex(oid));
194194
return NULL;
195195
}
196196

@@ -222,13 +222,13 @@ static int load_bitmap_entries_v1(struct bitmap_index *index)
222222
struct ewah_bitmap *bitmap = NULL;
223223
struct stored_bitmap *xor_bitmap = NULL;
224224
uint32_t commit_idx_pos;
225-
const unsigned char *sha1;
225+
struct object_id oid;
226226

227227
commit_idx_pos = read_be32(index->map, &index->map_pos);
228228
xor_offset = read_u8(index->map, &index->map_pos);
229229
flags = read_u8(index->map, &index->map_pos);
230230

231-
sha1 = nth_packed_object_sha1(index->pack, commit_idx_pos);
231+
nth_packed_object_id(&oid, index->pack, commit_idx_pos);
232232

233233
bitmap = read_bitmap_1(index);
234234
if (!bitmap)
@@ -245,7 +245,7 @@ static int load_bitmap_entries_v1(struct bitmap_index *index)
245245
}
246246

247247
recent_bitmaps[i % MAX_XOR_OFFSET] = store_bitmap(
248-
index, bitmap, sha1, xor_bitmap, flags);
248+
index, bitmap, &oid, xor_bitmap, flags);
249249
}
250250

251251
return 0;
@@ -691,7 +691,7 @@ static void show_objects_for_type(
691691
offset += ewah_bit_ctz64(word >> offset);
692692

693693
entry = &bitmap_git->pack->revindex[pos + offset];
694-
nth_packed_object_oid(&oid, bitmap_git->pack, entry->nr);
694+
nth_packed_object_id(&oid, bitmap_git->pack, entry->nr);
695695

696696
if (bitmap_git->hashes)
697697
hash = get_be32(bitmap_git->hashes + entry->nr);
@@ -796,7 +796,7 @@ static unsigned long get_size_by_pos(struct bitmap_index *bitmap_git,
796796
if (packed_object_info(the_repository, pack,
797797
entry->offset, &oi) < 0) {
798798
struct object_id oid;
799-
nth_packed_object_oid(&oid, pack, entry->nr);
799+
nth_packed_object_id(&oid, pack, entry->nr);
800800
die(_("unable to get size of %s"), oid_to_hex(&oid));
801801
}
802802
} else {
@@ -1342,7 +1342,7 @@ int rebuild_existing_bitmaps(struct bitmap_index *bitmap_git,
13421342
struct object_entry *oe;
13431343

13441344
entry = &bitmap_git->pack->revindex[i];
1345-
nth_packed_object_oid(&oid, bitmap_git->pack, entry->nr);
1345+
nth_packed_object_id(&oid, bitmap_git->pack, entry->nr);
13461346
oe = packlist_find(mapping, &oid);
13471347

13481348
if (oe)

pack-check.c

+10-12
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88

99
struct idx_entry {
1010
off_t offset;
11-
union idx_entry_object {
12-
const unsigned char *hash;
13-
struct object_id *oid;
14-
} oid;
1511
unsigned int nr;
1612
};
1713

@@ -97,29 +93,31 @@ static int verify_packfile(struct repository *r,
9793
entries[nr_objects].offset = pack_sig_ofs;
9894
/* first sort entries by pack offset, since unpacking them is more efficient that way */
9995
for (i = 0; i < nr_objects; i++) {
100-
entries[i].oid.hash = nth_packed_object_sha1(p, i);
101-
if (!entries[i].oid.hash)
102-
die("internal error pack-check nth-packed-object");
10396
entries[i].offset = nth_packed_object_offset(p, i);
10497
entries[i].nr = i;
10598
}
10699
QSORT(entries, nr_objects, compare_entries);
107100

108101
for (i = 0; i < nr_objects; i++) {
109102
void *data;
103+
struct object_id oid;
110104
enum object_type type;
111105
unsigned long size;
112106
off_t curpos;
113107
int data_valid;
114108

109+
if (nth_packed_object_id(&oid, p, entries[i].nr) < 0)
110+
BUG("unable to get oid of object %lu from %s",
111+
(unsigned long)entries[i].nr, p->pack_name);
112+
115113
if (p->index_version > 1) {
116114
off_t offset = entries[i].offset;
117115
off_t len = entries[i+1].offset - offset;
118116
unsigned int nr = entries[i].nr;
119117
if (check_pack_crc(p, w_curs, offset, len, nr))
120118
err = error("index CRC mismatch for object %s "
121119
"from %s at offset %"PRIuMAX"",
122-
oid_to_hex(entries[i].oid.oid),
120+
oid_to_hex(&oid),
123121
p->pack_name, (uintmax_t)offset);
124122
}
125123

@@ -142,14 +140,14 @@ static int verify_packfile(struct repository *r,
142140

143141
if (data_valid && !data)
144142
err = error("cannot unpack %s from %s at offset %"PRIuMAX"",
145-
oid_to_hex(entries[i].oid.oid), p->pack_name,
143+
oid_to_hex(&oid), p->pack_name,
146144
(uintmax_t)entries[i].offset);
147-
else if (check_object_signature(r, entries[i].oid.oid, data, size, type_name(type)))
145+
else if (check_object_signature(r, &oid, data, size, type_name(type)))
148146
err = error("packed %s from %s is corrupt",
149-
oid_to_hex(entries[i].oid.oid), p->pack_name);
147+
oid_to_hex(&oid), p->pack_name);
150148
else if (fn) {
151149
int eaten = 0;
152-
err |= fn(entries[i].oid.oid, type, size, data, &eaten);
150+
err |= fn(&oid, type, size, data, &eaten);
153151
if (eaten)
154152
data = NULL;
155153
}

pack-objects.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -203,14 +203,14 @@ struct object_entry *packlist_alloc(struct packing_data *pdata,
203203

204204
void oe_set_delta_ext(struct packing_data *pdata,
205205
struct object_entry *delta,
206-
const unsigned char *sha1)
206+
const struct object_id *oid)
207207
{
208208
struct object_entry *base;
209209

210210
ALLOC_GROW(pdata->ext_bases, pdata->nr_ext + 1, pdata->alloc_ext);
211211
base = &pdata->ext_bases[pdata->nr_ext++];
212212
memset(base, 0, sizeof(*base));
213-
hashcpy(base->idx.oid.hash, sha1);
213+
oidcpy(&base->idx.oid, oid);
214214

215215
/* These flags mark that we are not part of the actual pack output. */
216216
base->preferred_base = 1;

pack-objects.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ static inline void oe_set_delta(struct packing_data *pack,
292292

293293
void oe_set_delta_ext(struct packing_data *pack,
294294
struct object_entry *e,
295-
const unsigned char *sha1);
295+
const struct object_id *oid);
296296

297297
static inline struct object_entry *oe_delta_child(
298298
const struct packing_data *pack,

0 commit comments

Comments
 (0)