Skip to content

Commit 980f525

Browse files
derrickstoleegitster
authored andcommitted
midx: add num_large_offsets to write_midx_context
In an effort to align write_midx_internal() with the chunk-format API, continue to group necessary data into "struct write_midx_context". This change collects the "uint32_t num_large_offsets" into the context. With this new data, write_midx_large_offsets() now matches the chunk_write_fn type. Signed-off-by: Derrick Stolee <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 7a3ada1 commit 980f525

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

midx.c

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,7 @@ struct write_midx_context {
464464

465465
uint32_t *pack_perm;
466466
unsigned large_offsets_needed:1;
467+
uint32_t num_large_offsets;
467468
};
468469

469470
static void add_pack_to_midx(const char *full_path, size_t full_path_len,
@@ -772,11 +773,14 @@ static size_t write_midx_object_offsets(struct hashfile *f,
772773
return written;
773774
}
774775

775-
static size_t write_midx_large_offsets(struct hashfile *f, uint32_t nr_large_offset,
776-
struct pack_midx_entry *objects, uint32_t nr_objects)
776+
static size_t write_midx_large_offsets(struct hashfile *f,
777+
void *data)
777778
{
778-
struct pack_midx_entry *list = objects, *end = objects + nr_objects;
779+
struct write_midx_context *ctx = data;
780+
struct pack_midx_entry *list = ctx->entries;
781+
struct pack_midx_entry *end = ctx->entries + ctx->entries_nr;
779782
size_t written = 0;
783+
uint32_t nr_large_offset = ctx->num_large_offsets;
780784

781785
while (nr_large_offset) {
782786
struct pack_midx_entry *obj;
@@ -811,7 +815,6 @@ static int write_midx_internal(const char *object_dir, struct multi_pack_index *
811815
uint64_t written = 0;
812816
uint32_t chunk_ids[MIDX_MAX_CHUNKS + 1];
813817
uint64_t chunk_offsets[MIDX_MAX_CHUNKS + 1];
814-
uint32_t num_large_offsets = 0;
815818
struct progress *progress = NULL;
816819
int pack_name_concat_len = 0;
817820
int dropped_packs = 0;
@@ -861,7 +864,7 @@ static int write_midx_internal(const char *object_dir, struct multi_pack_index *
861864
ctx.large_offsets_needed = 0;
862865
for (i = 0; i < ctx.entries_nr; i++) {
863866
if (ctx.entries[i].offset > 0x7fffffff)
864-
num_large_offsets++;
867+
ctx.num_large_offsets++;
865868
if (ctx.entries[i].offset > 0xffffffff)
866869
ctx.large_offsets_needed = 1;
867870
}
@@ -961,7 +964,7 @@ static int write_midx_internal(const char *object_dir, struct multi_pack_index *
961964

962965
cur_chunk++;
963966
chunk_offsets[cur_chunk] = chunk_offsets[cur_chunk - 1] +
964-
num_large_offsets * MIDX_CHUNK_LARGE_OFFSET_WIDTH;
967+
ctx.num_large_offsets * MIDX_CHUNK_LARGE_OFFSET_WIDTH;
965968
}
966969

967970
chunk_ids[cur_chunk] = 0;
@@ -1010,7 +1013,7 @@ static int write_midx_internal(const char *object_dir, struct multi_pack_index *
10101013
break;
10111014

10121015
case MIDX_CHUNKID_LARGEOFFSETS:
1013-
written += write_midx_large_offsets(f, num_large_offsets, ctx.entries, ctx.entries_nr);
1016+
written += write_midx_large_offsets(f, &ctx);
10141017
break;
10151018

10161019
default:

0 commit comments

Comments
 (0)