зеркало из https://github.com/microsoft/git.git
midx: honor the MIDX_PROGRESS flag in verify_midx_file
Update verify_midx_file to only display progress when the MIDX_PROGRESS flag is set. Signed-off-by: William Baker <William.Baker@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
8dc18f8937
Коммит
ad60096d1c
8
midx.c
8
midx.c
|
@ -1097,13 +1097,14 @@ int verify_midx_file(struct repository *r, const char *object_dir, unsigned flag
|
|||
{
|
||||
struct pair_pos_vs_id *pairs = NULL;
|
||||
uint32_t i;
|
||||
struct progress *progress;
|
||||
struct progress *progress = NULL;
|
||||
struct multi_pack_index *m = load_multi_pack_index(object_dir, 1);
|
||||
verify_midx_error = 0;
|
||||
|
||||
if (!m)
|
||||
return 0;
|
||||
|
||||
if (flags & MIDX_PROGRESS)
|
||||
progress = start_progress(_("Looking for referenced packfiles"),
|
||||
m->num_packs);
|
||||
for (i = 0; i < m->num_packs; i++) {
|
||||
|
@ -1123,7 +1124,8 @@ int verify_midx_file(struct repository *r, const char *object_dir, unsigned flag
|
|||
i, oid_fanout1, oid_fanout2, i + 1);
|
||||
}
|
||||
|
||||
progress = start_sparse_progress(_("Verifying OID order in MIDX"),
|
||||
if (flags & MIDX_PROGRESS)
|
||||
progress = start_sparse_progress(_("Verifying OID order in multi-pack-index"),
|
||||
m->num_objects - 1);
|
||||
for (i = 0; i < m->num_objects - 1; i++) {
|
||||
struct object_id oid1, oid2;
|
||||
|
@ -1151,12 +1153,14 @@ int verify_midx_file(struct repository *r, const char *object_dir, unsigned flag
|
|||
pairs[i].pack_int_id = nth_midxed_pack_int_id(m, i);
|
||||
}
|
||||
|
||||
if (flags & MIDX_PROGRESS)
|
||||
progress = start_sparse_progress(_("Sorting objects by packfile"),
|
||||
m->num_objects);
|
||||
display_progress(progress, 0); /* TODO: Measure QSORT() progress */
|
||||
QSORT(pairs, m->num_objects, compare_pair_pos_vs_id);
|
||||
stop_progress(&progress);
|
||||
|
||||
if (flags & MIDX_PROGRESS)
|
||||
progress = start_sparse_progress(_("Verifying object offsets"), m->num_objects);
|
||||
for (i = 0; i < m->num_objects; i++) {
|
||||
struct object_id oid;
|
||||
|
|
Загрузка…
Ссылка в новой задаче