unpack-trees: split display_error_msgs() into two
display_error_msgs() is never called to show messages of both ERROR_* and WARNING_* types at the same time; it is instead called multiple times, separately for each type. Since we want to display these types differently, make two slightly different versions of this function. A subsequent commit will further modify unpack_trees() and how it calls the new display_warning_msgs(). Reviewed-by: Derrick Stolee <dstolee@microsoft.com> Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
parent
1ac83f42da
commit
6271d77cb1
|
@ -328,10 +328,10 @@ test_expect_success 'sparse-checkout (init|set|disable) warns with dirty status'
|
||||||
echo dirty >dirty/folder1/a &&
|
echo dirty >dirty/folder1/a &&
|
||||||
|
|
||||||
git -C dirty sparse-checkout init 2>err &&
|
git -C dirty sparse-checkout init 2>err &&
|
||||||
test_i18ngrep "error.*Cannot update sparse checkout" err &&
|
test_i18ngrep "warning.*Cannot update sparse checkout" err &&
|
||||||
|
|
||||||
git -C dirty sparse-checkout set /folder2/* /deep/deeper1/* 2>err &&
|
git -C dirty sparse-checkout set /folder2/* /deep/deeper1/* 2>err &&
|
||||||
test_i18ngrep "error.*Cannot update sparse checkout" err &&
|
test_i18ngrep "warning.*Cannot update sparse checkout" err &&
|
||||||
test_path_is_file dirty/folder1/a &&
|
test_path_is_file dirty/folder1/a &&
|
||||||
|
|
||||||
git -C dirty sparse-checkout disable 2>err &&
|
git -C dirty sparse-checkout disable 2>err &&
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
* situation better. See how "git checkout" and "git merge" replaces
|
* situation better. See how "git checkout" and "git merge" replaces
|
||||||
* them using setup_unpack_trees_porcelain(), for example.
|
* them using setup_unpack_trees_porcelain(), for example.
|
||||||
*/
|
*/
|
||||||
static const char *unpack_plumbing_errors[NB_UNPACK_TREES_ERROR_TYPES] = {
|
static const char *unpack_plumbing_errors[NB_UNPACK_TREES_WARNING_TYPES] = {
|
||||||
/* ERROR_WOULD_OVERWRITE */
|
/* ERROR_WOULD_OVERWRITE */
|
||||||
"Entry '%s' would be overwritten by merge. Cannot merge.",
|
"Entry '%s' would be overwritten by merge. Cannot merge.",
|
||||||
|
|
||||||
|
@ -46,6 +46,9 @@ static const char *unpack_plumbing_errors[NB_UNPACK_TREES_ERROR_TYPES] = {
|
||||||
/* ERROR_WOULD_LOSE_SUBMODULE */
|
/* ERROR_WOULD_LOSE_SUBMODULE */
|
||||||
"Submodule '%s' cannot checkout new HEAD.",
|
"Submodule '%s' cannot checkout new HEAD.",
|
||||||
|
|
||||||
|
/* NB_UNPACK_TREES_ERROR_TYPES; just a meta value */
|
||||||
|
"",
|
||||||
|
|
||||||
/* WARNING_SPARSE_NOT_UPTODATE_FILE */
|
/* WARNING_SPARSE_NOT_UPTODATE_FILE */
|
||||||
"Entry '%s' not uptodate. Cannot update sparse checkout.",
|
"Entry '%s' not uptodate. Cannot update sparse checkout.",
|
||||||
|
|
||||||
|
@ -222,7 +225,7 @@ static int add_rejected_path(struct unpack_trees_options *o,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Otherwise, insert in a list for future display by
|
* Otherwise, insert in a list for future display by
|
||||||
* display_error_msgs()
|
* display_(error|warning)_msgs()
|
||||||
*/
|
*/
|
||||||
string_list_append(&o->unpack_rejects[e], path);
|
string_list_append(&o->unpack_rejects[e], path);
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -233,13 +236,16 @@ static int add_rejected_path(struct unpack_trees_options *o,
|
||||||
*/
|
*/
|
||||||
static void display_error_msgs(struct unpack_trees_options *o)
|
static void display_error_msgs(struct unpack_trees_options *o)
|
||||||
{
|
{
|
||||||
int e, i;
|
int e;
|
||||||
int something_displayed = 0;
|
unsigned error_displayed = 0;
|
||||||
for (e = 0; e < NB_UNPACK_TREES_ERROR_TYPES; e++) {
|
for (e = 0; e < NB_UNPACK_TREES_ERROR_TYPES; e++) {
|
||||||
struct string_list *rejects = &o->unpack_rejects[e];
|
struct string_list *rejects = &o->unpack_rejects[e];
|
||||||
|
|
||||||
if (rejects->nr > 0) {
|
if (rejects->nr > 0) {
|
||||||
|
int i;
|
||||||
struct strbuf path = STRBUF_INIT;
|
struct strbuf path = STRBUF_INIT;
|
||||||
something_displayed = 1;
|
|
||||||
|
error_displayed = 1;
|
||||||
for (i = 0; i < rejects->nr; i++)
|
for (i = 0; i < rejects->nr; i++)
|
||||||
strbuf_addf(&path, "\t%s\n", rejects->items[i].string);
|
strbuf_addf(&path, "\t%s\n", rejects->items[i].string);
|
||||||
error(ERRORMSG(o, e), super_prefixed(path.buf));
|
error(ERRORMSG(o, e), super_prefixed(path.buf));
|
||||||
|
@ -247,10 +253,36 @@ static void display_error_msgs(struct unpack_trees_options *o)
|
||||||
}
|
}
|
||||||
string_list_clear(rejects, 0);
|
string_list_clear(rejects, 0);
|
||||||
}
|
}
|
||||||
if (something_displayed)
|
if (error_displayed)
|
||||||
fprintf(stderr, _("Aborting\n"));
|
fprintf(stderr, _("Aborting\n"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* display all the warning messages stored in a nice way
|
||||||
|
*/
|
||||||
|
static void display_warning_msgs(struct unpack_trees_options *o)
|
||||||
|
{
|
||||||
|
int e;
|
||||||
|
unsigned warning_displayed = 0;
|
||||||
|
for (e = NB_UNPACK_TREES_ERROR_TYPES + 1;
|
||||||
|
e < NB_UNPACK_TREES_WARNING_TYPES; e++) {
|
||||||
|
struct string_list *rejects = &o->unpack_rejects[e];
|
||||||
|
|
||||||
|
if (rejects->nr > 0) {
|
||||||
|
int i;
|
||||||
|
struct strbuf path = STRBUF_INIT;
|
||||||
|
|
||||||
|
warning_displayed = 1;
|
||||||
|
for (i = 0; i < rejects->nr; i++)
|
||||||
|
strbuf_addf(&path, "\t%s\n", rejects->items[i].string);
|
||||||
|
warning(ERRORMSG(o, e), super_prefixed(path.buf));
|
||||||
|
strbuf_release(&path);
|
||||||
|
}
|
||||||
|
string_list_clear(rejects, 0);
|
||||||
|
}
|
||||||
|
if (warning_displayed)
|
||||||
|
fprintf(stderr, _("After fixing the above paths, you may want to run `git sparse-checkout reapply`.\n"));
|
||||||
|
}
|
||||||
static int check_submodule_move_head(const struct cache_entry *ce,
|
static int check_submodule_move_head(const struct cache_entry *ce,
|
||||||
const char *old_id,
|
const char *old_id,
|
||||||
const char *new_id,
|
const char *new_id,
|
||||||
|
@ -1705,8 +1737,10 @@ done:
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
return_failed:
|
return_failed:
|
||||||
if (o->show_all_errors)
|
if (o->show_all_errors) {
|
||||||
display_error_msgs(o);
|
display_error_msgs(o);
|
||||||
|
display_warning_msgs(o);
|
||||||
|
}
|
||||||
mark_all_ce_unused(o->src_index);
|
mark_all_ce_unused(o->src_index);
|
||||||
ret = unpack_failed(o, NULL);
|
ret = unpack_failed(o, NULL);
|
||||||
if (o->exiting_early)
|
if (o->exiting_early)
|
||||||
|
@ -1783,7 +1817,7 @@ skip_sparse_checkout:
|
||||||
ret = UPDATE_SPARSITY_WORKTREE_UPDATE_FAILURES;
|
ret = UPDATE_SPARSITY_WORKTREE_UPDATE_FAILURES;
|
||||||
|
|
||||||
done:
|
done:
|
||||||
display_error_msgs(o);
|
display_warning_msgs(o);
|
||||||
o->show_all_errors = old_show_all_errors;
|
o->show_all_errors = old_show_all_errors;
|
||||||
if (free_pattern_list)
|
if (free_pattern_list)
|
||||||
clear_pattern_list(&pl);
|
clear_pattern_list(&pl);
|
||||||
|
|
|
@ -24,10 +24,12 @@ enum unpack_trees_error_types {
|
||||||
ERROR_BIND_OVERLAP,
|
ERROR_BIND_OVERLAP,
|
||||||
ERROR_WOULD_LOSE_SUBMODULE,
|
ERROR_WOULD_LOSE_SUBMODULE,
|
||||||
|
|
||||||
|
NB_UNPACK_TREES_ERROR_TYPES,
|
||||||
|
|
||||||
WARNING_SPARSE_NOT_UPTODATE_FILE,
|
WARNING_SPARSE_NOT_UPTODATE_FILE,
|
||||||
WARNING_SPARSE_ORPHANED_NOT_OVERWRITTEN,
|
WARNING_SPARSE_ORPHANED_NOT_OVERWRITTEN,
|
||||||
|
|
||||||
NB_UNPACK_TREES_ERROR_TYPES,
|
NB_UNPACK_TREES_WARNING_TYPES,
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -66,13 +68,13 @@ struct unpack_trees_options {
|
||||||
struct dir_struct *dir;
|
struct dir_struct *dir;
|
||||||
struct pathspec *pathspec;
|
struct pathspec *pathspec;
|
||||||
merge_fn_t fn;
|
merge_fn_t fn;
|
||||||
const char *msgs[NB_UNPACK_TREES_ERROR_TYPES];
|
const char *msgs[NB_UNPACK_TREES_WARNING_TYPES];
|
||||||
struct argv_array msgs_to_free;
|
struct argv_array msgs_to_free;
|
||||||
/*
|
/*
|
||||||
* Store error messages in an array, each case
|
* Store error messages in an array, each case
|
||||||
* corresponding to a error message type
|
* corresponding to a error message type
|
||||||
*/
|
*/
|
||||||
struct string_list unpack_rejects[NB_UNPACK_TREES_ERROR_TYPES];
|
struct string_list unpack_rejects[NB_UNPACK_TREES_WARNING_TYPES];
|
||||||
|
|
||||||
int head_idx;
|
int head_idx;
|
||||||
int merge_size;
|
int merge_size;
|
||||||
|
|
Loading…
Reference in New Issue