From: Xing Xin <xingxin.xx@xxxxxxxxxxxxx> This commit adds a new enum `unbundle_fsck_flags` which is designed to control the fsck behavior when unbundling. `unbundle` can use this newly passed in enum to further decide whether to enable `--fsck-objects` for "git-index-pack". Currently only `UNBUNDLE_FSCK_NEVER` and `UNBUNDLE_FSCK_ALWAYS` are supported as the very basic options. Another interesting option would be added in later commits. Signed-off-by: Xing Xin <xingxin.xx@xxxxxxxxxxxxx> --- builtin/bundle.c | 2 +- bundle-uri.c | 2 +- bundle.c | 12 +++++++++++- bundle.h | 8 +++++++- transport.c | 2 +- 5 files changed, 21 insertions(+), 5 deletions(-) diff --git a/builtin/bundle.c b/builtin/bundle.c index 3ad11dc5d05..6c10961c640 100644 --- a/builtin/bundle.c +++ b/builtin/bundle.c @@ -212,7 +212,7 @@ static int cmd_bundle_unbundle(int argc, const char **argv, const char *prefix) strvec_pushl(&extra_index_pack_args, "-v", "--progress-title", _("Unbundling objects"), NULL); ret = !!unbundle(the_repository, &header, bundle_fd, - &extra_index_pack_args, 0) || + &extra_index_pack_args, 0, UNBUNDLE_FSCK_NEVER) || list_bundle_refs(&header, argc, argv); bundle_header_release(&header); cleanup: diff --git a/bundle-uri.c b/bundle-uri.c index 65666a11d9c..80f02aac6f1 100644 --- a/bundle-uri.c +++ b/bundle-uri.c @@ -373,7 +373,7 @@ static int unbundle_from_file(struct repository *r, const char *file) * the prerequisite commits. */ if ((result = unbundle(r, &header, bundle_fd, NULL, - VERIFY_BUNDLE_QUIET))) + VERIFY_BUNDLE_QUIET, UNBUNDLE_FSCK_ALWAYS))) return 1; /* diff --git a/bundle.c b/bundle.c index 95367c2d0a0..a922d592782 100644 --- a/bundle.c +++ b/bundle.c @@ -612,7 +612,8 @@ int create_bundle(struct repository *r, const char *path, int unbundle(struct repository *r, struct bundle_header *header, int bundle_fd, struct strvec *extra_index_pack_args, - enum verify_bundle_flags flags) + enum verify_bundle_flags flags, + enum unbundle_fsck_flags fsck_flags) { struct child_process ip = CHILD_PROCESS_INIT; @@ -625,6 +626,15 @@ int unbundle(struct repository *r, struct bundle_header *header, if (header->filter.choice) strvec_push(&ip.args, "--promisor=from-bundle"); + switch (fsck_flags) { + case UNBUNDLE_FSCK_ALWAYS: + strvec_push(&ip.args, "--fsck-objects"); + break; + case UNBUNDLE_FSCK_NEVER: + default: + break; + } + if (extra_index_pack_args) { strvec_pushv(&ip.args, extra_index_pack_args->v); strvec_clear(extra_index_pack_args); diff --git a/bundle.h b/bundle.h index 021adbdcbb3..cfa9daddda6 100644 --- a/bundle.h +++ b/bundle.h @@ -30,6 +30,11 @@ int create_bundle(struct repository *r, const char *path, int argc, const char **argv, struct strvec *pack_options, int version); +enum unbundle_fsck_flags { + UNBUNDLE_FSCK_NEVER = 0, + UNBUNDLE_FSCK_ALWAYS, +}; + enum verify_bundle_flags { VERIFY_BUNDLE_VERBOSE = (1 << 0), VERIFY_BUNDLE_QUIET = (1 << 1), @@ -53,7 +58,8 @@ int verify_bundle(struct repository *r, struct bundle_header *header, */ int unbundle(struct repository *r, struct bundle_header *header, int bundle_fd, struct strvec *extra_index_pack_args, - enum verify_bundle_flags flags); + enum verify_bundle_flags flags, + enum unbundle_fsck_flags fsck_flags); int list_bundle_refs(struct bundle_header *header, int argc, const char **argv); diff --git a/transport.c b/transport.c index 0ad04b77fd2..6799988f10c 100644 --- a/transport.c +++ b/transport.c @@ -184,7 +184,7 @@ static int fetch_refs_from_bundle(struct transport *transport, if (!data->get_refs_from_bundle_called) get_refs_from_bundle_inner(transport); ret = unbundle(the_repository, &data->header, data->fd, - &extra_index_pack_args, 0); + &extra_index_pack_args, 0, UNBUNDLE_FSCK_ALWAYS); transport->hash_algo = data->header.hash_algo; return ret; } -- gitgitgadget