3 #include "parse-options.h"
7 static GIT_PATH_FUNC(git_path_bisect_terms
, "BISECT_TERMS")
8 static GIT_PATH_FUNC(git_path_bisect_expected_rev
, "BISECT_EXPECTED_REV")
9 static GIT_PATH_FUNC(git_path_bisect_ancestors_ok
, "BISECT_ANCESTORS_OK")
11 static const char * const git_bisect_helper_usage
[] = {
12 N_("git bisect--helper --next-all [--no-checkout]"),
13 N_("git bisect--helper --write-terms <bad_term> <good_term>"),
14 N_("git bisect--helper --bisect-clean-state"),
19 * Check whether the string `term` belongs to the set of strings
20 * included in the variable arguments.
23 static int one_of(const char *term
, ...)
29 va_start(matches
, term
);
30 while (!res
&& (match
= va_arg(matches
, const char *)))
31 res
= !strcmp(term
, match
);
37 static int check_term_format(const char *term
, const char *orig_term
)
40 char *new_term
= xstrfmt("refs/bisect/%s", term
);
42 res
= check_refname_format(new_term
, 0);
46 return error(_("'%s' is not a valid term"), term
);
48 if (one_of(term
, "help", "start", "skip", "next", "reset",
49 "visualize", "view", "replay", "log", "run", "terms", NULL
))
50 return error(_("can't use the builtin command '%s' as a term"), term
);
53 * In theory, nothing prevents swapping completely good and bad,
54 * but this situation could be confusing and hasn't been tested
55 * enough. Forbid it for now.
58 if ((strcmp(orig_term
, "bad") && one_of(term
, "bad", "new", NULL
)) ||
59 (strcmp(orig_term
, "good") && one_of(term
, "good", "old", NULL
)))
60 return error(_("can't change the meaning of the term '%s'"), term
);
65 static int write_terms(const char *bad
, const char *good
)
70 if (!strcmp(bad
, good
))
71 return error(_("please use two different terms"));
73 if (check_term_format(bad
, "bad") || check_term_format(good
, "good"))
76 fp
= fopen(git_path_bisect_terms(), "w");
78 return error_errno(_("could not open the file BISECT_TERMS"));
80 res
= fprintf(fp
, "%s\n%s\n", bad
, good
);
82 return (res
< 0) ? -1 : 0;
85 static int is_expected_rev(const char *expected_hex
)
87 struct strbuf actual_hex
= STRBUF_INIT
;
89 if (strbuf_read_file(&actual_hex
, git_path_bisect_expected_rev(), 0) >= 40) {
90 strbuf_trim(&actual_hex
);
91 res
= !strcmp(actual_hex
.buf
, expected_hex
);
93 strbuf_release(&actual_hex
);
97 static void check_expected_revs(const char **revs
, int rev_nr
)
101 for (i
= 0; i
< rev_nr
; i
++) {
102 if (!is_expected_rev(revs
[i
])) {
103 unlink_or_warn(git_path_bisect_ancestors_ok());
104 unlink_or_warn(git_path_bisect_expected_rev());
109 int cmd_bisect__helper(int argc
, const char **argv
, const char *prefix
)
118 struct option options
[] = {
119 OPT_CMDMODE(0, "next-all", &cmdmode
,
120 N_("perform 'git bisect next'"), NEXT_ALL
),
121 OPT_CMDMODE(0, "write-terms", &cmdmode
,
122 N_("write the terms to .git/BISECT_TERMS"), WRITE_TERMS
),
123 OPT_CMDMODE(0, "bisect-clean-state", &cmdmode
,
124 N_("cleanup the bisection state"), BISECT_CLEAN_STATE
),
125 OPT_CMDMODE(0, "check-expected-revs", &cmdmode
,
126 N_("check for expected revs"), CHECK_EXPECTED_REVS
),
127 OPT_BOOL(0, "no-checkout", &no_checkout
,
128 N_("update BISECT_HEAD instead of checking out the current commit")),
132 argc
= parse_options(argc
, argv
, prefix
, options
,
133 git_bisect_helper_usage
, 0);
136 usage_with_options(git_bisect_helper_usage
, options
);
140 return bisect_next_all(prefix
, no_checkout
);
143 return error(_("--write-terms requires two arguments"));
144 return write_terms(argv
[0], argv
[1]);
145 case BISECT_CLEAN_STATE
:
147 return error(_("--bisect-clean-state requires no arguments"));
148 return bisect_clean_state();
149 case CHECK_EXPECTED_REVS
:
150 check_expected_revs(argv
, argc
);
153 return error("BUG: unknown subcommand '%d'", cmdmode
);