bisect--helper: reimplement bisect_state
& bisect_head
shell functions in C
Reimplement the `bisect_state()` shell functions in C and also add a subcommand `--bisect-state` to `git-bisect--helper` to call them from git-bisect.sh . Using `--bisect-state` subcommand is a temporary measure to port shell function to C so as to use the existing test suite. As more functions are ported, this subcommand will be retired and will be called by some other methods. `bisect_head()` is only called from `bisect_state()`, thus it is not required to introduce another subcommand. Mentored-by: Lars Schneider <larsxschneider@gmail.com> Mentored-by: Christian Couder <chriscool@tuxfamily.org> Mentored-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Pranit Bauva <pranit.bauva@gmail.com> Signed-off-by: Tanushree Tumane <tanushreetumane@gmail.com> Signed-off-by: Miriam Rubio <mirucam@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
043dc35d71
commit
10520dbf01
@ -31,6 +31,8 @@ static const char * const git_bisect_helper_usage[] = {
|
|||||||
N_("git bisect--helper --bisect-next"),
|
N_("git bisect--helper --bisect-next"),
|
||||||
N_("git bisect--helper --bisect-auto-next"),
|
N_("git bisect--helper --bisect-auto-next"),
|
||||||
N_("git bisect--helper --bisect-autostart"),
|
N_("git bisect--helper --bisect-autostart"),
|
||||||
|
N_("git bisect--helper --bisect-state (bad|new) [<rev>]"),
|
||||||
|
N_("git bisect--helper --bisect-state (good|old) [<rev>...]"),
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -834,6 +836,64 @@ static int bisect_autostart(struct bisect_terms *terms)
|
|||||||
return bisect_start(terms, 0, NULL, 0);
|
return bisect_start(terms, 0, NULL, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int bisect_head(struct object_id *oid)
|
||||||
|
{
|
||||||
|
if (!file_exists(git_path_bisect_head()))
|
||||||
|
return get_oid("HEAD", oid);
|
||||||
|
|
||||||
|
return get_oid("BISECT_HEAD", oid);
|
||||||
|
}
|
||||||
|
|
||||||
|
static enum bisect_error bisect_state(struct bisect_terms *terms, const char **argv,
|
||||||
|
int argc)
|
||||||
|
{
|
||||||
|
const char *state;
|
||||||
|
const char *hex;
|
||||||
|
int i;
|
||||||
|
struct oid_array revs = OID_ARRAY_INIT;
|
||||||
|
struct object_id oid;
|
||||||
|
|
||||||
|
if (!argc)
|
||||||
|
return error(_("Please call `--bisect-state` with at least one argument"));
|
||||||
|
state = argv[0];
|
||||||
|
if (check_and_set_terms(terms, state) ||
|
||||||
|
!one_of(state, terms->term_good,terms->term_bad, "skip", NULL))
|
||||||
|
return BISECT_FAILED;
|
||||||
|
argv++;
|
||||||
|
argc--;
|
||||||
|
if (!strcmp(state, terms->term_bad) && (argc > 1))
|
||||||
|
return error(_("'git bisect %s' can take only one argument."),terms->term_bad);
|
||||||
|
if (argc == 0) {
|
||||||
|
if (bisect_head(&oid))
|
||||||
|
return error(_("Bad bisect_head rev input"));
|
||||||
|
hex = oid_to_hex(&oid);
|
||||||
|
if (bisect_write(state, hex, terms, 0))
|
||||||
|
return BISECT_FAILED;
|
||||||
|
check_expected_revs(&hex, 1);
|
||||||
|
return bisect_auto_next(terms, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Here argc > 0 */
|
||||||
|
for (; argc; argc--, argv++) {
|
||||||
|
struct object_id oid;
|
||||||
|
if (get_oid(*argv, &oid))
|
||||||
|
return error(_("Bad rev input: %s"), *argv);
|
||||||
|
oid_array_append(&revs, &oid);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < revs.nr; i++) {
|
||||||
|
hex = oid_to_hex(&revs.oid[i]);
|
||||||
|
if (bisect_write(state, hex, terms, 0)) {
|
||||||
|
oid_array_clear(&revs);
|
||||||
|
return BISECT_FAILED;
|
||||||
|
}
|
||||||
|
check_expected_revs(&hex, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
oid_array_clear(&revs);
|
||||||
|
return bisect_auto_next(terms, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
|
int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
|
||||||
{
|
{
|
||||||
enum {
|
enum {
|
||||||
@ -847,7 +907,8 @@ int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
|
|||||||
BISECT_START,
|
BISECT_START,
|
||||||
BISECT_NEXT,
|
BISECT_NEXT,
|
||||||
BISECT_AUTO_NEXT,
|
BISECT_AUTO_NEXT,
|
||||||
BISECT_AUTOSTART
|
BISECT_AUTOSTART,
|
||||||
|
BISECT_STATE
|
||||||
} cmdmode = 0;
|
} cmdmode = 0;
|
||||||
int no_checkout = 0, res = 0, nolog = 0;
|
int no_checkout = 0, res = 0, nolog = 0;
|
||||||
struct option options[] = {
|
struct option options[] = {
|
||||||
@ -873,6 +934,8 @@ int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
|
|||||||
N_("verify the next bisection state then checkout the next bisection commit"), BISECT_AUTO_NEXT),
|
N_("verify the next bisection state then checkout the next bisection commit"), BISECT_AUTO_NEXT),
|
||||||
OPT_CMDMODE(0, "bisect-autostart", &cmdmode,
|
OPT_CMDMODE(0, "bisect-autostart", &cmdmode,
|
||||||
N_("start the bisection if BISECT_START is empty or missing"), BISECT_AUTOSTART),
|
N_("start the bisection if BISECT_START is empty or missing"), BISECT_AUTOSTART),
|
||||||
|
OPT_CMDMODE(0, "bisect-state", &cmdmode,
|
||||||
|
N_("mark the state of ref (or refs)"), BISECT_STATE),
|
||||||
OPT_BOOL(0, "no-checkout", &no_checkout,
|
OPT_BOOL(0, "no-checkout", &no_checkout,
|
||||||
N_("update BISECT_HEAD instead of checking out the current commit")),
|
N_("update BISECT_HEAD instead of checking out the current commit")),
|
||||||
OPT_BOOL(0, "no-log", &nolog,
|
OPT_BOOL(0, "no-log", &nolog,
|
||||||
@ -945,6 +1008,11 @@ int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
|
|||||||
set_terms(&terms, "bad", "good");
|
set_terms(&terms, "bad", "good");
|
||||||
res = bisect_autostart(&terms);
|
res = bisect_autostart(&terms);
|
||||||
break;
|
break;
|
||||||
|
case BISECT_STATE:
|
||||||
|
set_terms(&terms, "bad", "good");
|
||||||
|
get_terms(&terms);
|
||||||
|
res = bisect_state(&terms, argv, argc);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
BUG("unknown subcommand %d", (int)cmdmode);
|
BUG("unknown subcommand %d", (int)cmdmode);
|
||||||
}
|
}
|
||||||
|
@ -39,16 +39,6 @@ _x40="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40"
|
|||||||
TERM_BAD=bad
|
TERM_BAD=bad
|
||||||
TERM_GOOD=good
|
TERM_GOOD=good
|
||||||
|
|
||||||
bisect_head()
|
|
||||||
{
|
|
||||||
if test -f "$GIT_DIR/BISECT_HEAD"
|
|
||||||
then
|
|
||||||
echo BISECT_HEAD
|
|
||||||
else
|
|
||||||
echo HEAD
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
bisect_skip() {
|
bisect_skip() {
|
||||||
all=''
|
all=''
|
||||||
for arg in "$@"
|
for arg in "$@"
|
||||||
@ -61,43 +51,7 @@ bisect_skip() {
|
|||||||
esac
|
esac
|
||||||
all="$all $revs"
|
all="$all $revs"
|
||||||
done
|
done
|
||||||
eval bisect_state 'skip' $all
|
eval git bisect--helper --bisect-state 'skip' $all
|
||||||
}
|
|
||||||
|
|
||||||
bisect_state() {
|
|
||||||
git bisect--helper --bisect-autostart
|
|
||||||
state=$1
|
|
||||||
git bisect--helper --check-and-set-terms $state $TERM_GOOD $TERM_BAD || exit
|
|
||||||
get_terms
|
|
||||||
case "$#,$state" in
|
|
||||||
0,*)
|
|
||||||
die "Please call 'bisect_state' with at least one argument." ;;
|
|
||||||
1,"$TERM_BAD"|1,"$TERM_GOOD"|1,skip)
|
|
||||||
bisected_head=$(bisect_head)
|
|
||||||
rev=$(git rev-parse --verify "$bisected_head") ||
|
|
||||||
die "$(eval_gettext "Bad rev input: \$bisected_head")"
|
|
||||||
git bisect--helper --bisect-write "$state" "$rev" "$TERM_GOOD" "$TERM_BAD" || exit
|
|
||||||
git bisect--helper --check-expected-revs "$rev" ;;
|
|
||||||
2,"$TERM_BAD"|*,"$TERM_GOOD"|*,skip)
|
|
||||||
shift
|
|
||||||
hash_list=''
|
|
||||||
for rev in "$@"
|
|
||||||
do
|
|
||||||
sha=$(git rev-parse --verify "$rev^{commit}") ||
|
|
||||||
die "$(eval_gettext "Bad rev input: \$rev")"
|
|
||||||
hash_list="$hash_list $sha"
|
|
||||||
done
|
|
||||||
for rev in $hash_list
|
|
||||||
do
|
|
||||||
git bisect--helper --bisect-write "$state" "$rev" "$TERM_GOOD" "$TERM_BAD" || exit
|
|
||||||
done
|
|
||||||
git bisect--helper --check-expected-revs $hash_list ;;
|
|
||||||
*,"$TERM_BAD")
|
|
||||||
die "$(eval_gettext "'git bisect \$TERM_BAD' can take only one argument.")" ;;
|
|
||||||
*)
|
|
||||||
usage ;;
|
|
||||||
esac
|
|
||||||
git bisect--helper --bisect-auto-next
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bisect_visualize() {
|
bisect_visualize() {
|
||||||
@ -185,8 +139,7 @@ exit code \$res from '\$command' is < 0 or >= 128" >&2
|
|||||||
state="$TERM_GOOD"
|
state="$TERM_GOOD"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# We have to use a subshell because "bisect_state" can exit.
|
git bisect--helper --bisect-state $state >"$GIT_DIR/BISECT_RUN"
|
||||||
( bisect_state $state >"$GIT_DIR/BISECT_RUN" )
|
|
||||||
res=$?
|
res=$?
|
||||||
|
|
||||||
cat "$GIT_DIR/BISECT_RUN"
|
cat "$GIT_DIR/BISECT_RUN"
|
||||||
@ -201,7 +154,7 @@ exit code \$res from '\$command' is < 0 or >= 128" >&2
|
|||||||
if [ $res -ne 0 ]
|
if [ $res -ne 0 ]
|
||||||
then
|
then
|
||||||
eval_gettextln "bisect run failed:
|
eval_gettextln "bisect run failed:
|
||||||
'bisect_state \$state' exited with error code \$res" >&2
|
'git bisect--helper --bisect-state \$state' exited with error code \$res" >&2
|
||||||
exit $res
|
exit $res
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -242,7 +195,7 @@ case "$#" in
|
|||||||
start)
|
start)
|
||||||
git bisect--helper --bisect-start "$@" ;;
|
git bisect--helper --bisect-start "$@" ;;
|
||||||
bad|good|new|old|"$TERM_BAD"|"$TERM_GOOD")
|
bad|good|new|old|"$TERM_BAD"|"$TERM_GOOD")
|
||||||
bisect_state "$cmd" "$@" ;;
|
git bisect--helper --bisect-state "$cmd" "$@" ;;
|
||||||
skip)
|
skip)
|
||||||
bisect_skip "$@" ;;
|
bisect_skip "$@" ;;
|
||||||
next)
|
next)
|
||||||
|
Reference in New Issue
Block a user