X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=.bin%2Fgit-rb-all;h=a2f7922a9c84358ed6edca4bcb612b3fcfd0a547;hb=847136a30dbf711fc2ccab762fb294218c8004ea;hp=b4efb482a1887f558fffdf1f5634be4d68a3f06b;hpb=fc774894456c8f9bd22c3863502aabc21975c8fe;p=home.git diff --git a/.bin/git-rb-all b/.bin/git-rb-all index b4efb48..a2f7922 100755 --- a/.bin/git-rb-all +++ b/.bin/git-rb-all @@ -1,41 +1,243 @@ -#!/bin/bash -# Helper to rewrite all local branches. - -rb_one() { - local b=$1 - - printf "### ${b}" - if ! git config --local "branch.${b}.merge" >/dev/null; then - echo " -> skipping due to missing merge branch" - else - echo - git checkout -q "${b}" || exit - if ! git rebase ; then - git rebase --abort - fi - fi -} - -usage() { - cat <= (3, 6), f'Python 3.6+ required but found {sys.version}' + + +PROG = os.path.basename(__file__) + + +class Terminal: + """Terminal escape sequences.""" + + CSI_PREFIX = '\033[' + SGR_SUFFIX = 'm' + NORMAL = '' + BOLD = '1' + _BLACK, _RED, _GREEN, _YELLOW, _BLUE, _MAGENTA, _CYAN, _WHITE = range(0, 8) + _FG = 30 + _BG = 40 + FG_BLACK = str(_FG + _BLACK) + FG_RED = str(_FG + _RED) + FG_GREEN = str(_FG + _GREEN) + FG_YELLOW = str(_FG + _YELLOW) + FG_BLUE = str(_FG + _BLUE) + FG_MAGENTA = str(_FG + _MAGENTA) + FG_CYAN = str(_FG + _CYAN) + FG_WHITE = str(_FG + _WHITE) + + +class Color: + """Helper colors.""" + + _combine = lambda *args: Terminal.CSI_PREFIX + ';'.join(args) + Terminal.SGR_SUFFIX + NORMAL = _combine(Terminal.NORMAL) + GOOD = _combine(Terminal.FG_GREEN) + WARN = _combine(Terminal.FG_YELLOW) + BAD = _combine(Terminal.FG_RED) + HILITE = _combine(Terminal.BOLD, Terminal.FG_CYAN) + BRACKET = _combine(Terminal.BOLD, Terminal.FG_BLUE) + + @classmethod + def good(cls, msg): + return cls.GOOD + msg + cls.NORMAL + + @classmethod + def bad(cls, msg): + return cls.BAD + msg + cls.NORMAL + + +def fatal(msg): + """Show an error |msg| then exit.""" + print(Color.bad(f'{PROG}: error: {msg}'), file=sys.stderr) + sys.exit(1) + + +def git(args, **kwargs): + """Run git.""" + kwargs.setdefault('check', True) + kwargs.setdefault('stdout', subprocess.PIPE) + kwargs.setdefault('stderr', subprocess.STDOUT) + kwargs.setdefault('encoding', 'utf-8') + #print('+', 'git', *args) + return subprocess.run(['git'] + args, **kwargs) + + +@functools.lru_cache(maxsize=None) +def checkout_is_dirty(): + """Determine whether the checkout is dirty (e.g. modified files).""" + output = git(['status', '--porcelain']).stdout + return any(x for x in output.splitlines() if '?' not in x[0:2]) + + +@functools.lru_cache(maxsize=None) +def rebase_inprogress(): + """Determine whether a rebase is already in progress.""" + output = git(['rev-parse', '--git-path', 'rebase-merge']).stdout.strip() + if Path(output).exists(): + return True + + output = git(['rev-parse', '--git-path', 'rebase-apply']).stdout.strip() + if Path(output).exists(): + return True + + return False + + +@functools.lru_cache(maxsize=None) +def cherry_pick_inprogress(): + """Determine whether a cherry-pick is in progress.""" + output = git(['rev-parse', '--git-path', 'CHERRY_PICK_HEAD']).stdout.strip() + return Path(output).exists() + + +class AppendOption(argparse.Action): + """Append the command line option (with no arguments) to dest. + + parser.add_argument('-b', '--barg', dest='out', action='append_option') + options = parser.parse_args(['-b', '--barg']) + options.out == ['-b', '--barg'] + """ + + def __init__(self, option_strings, dest, **kwargs): + if 'nargs' in kwargs: + raise ValueError('nargs is not supported for append_option action') + super().__init__(option_strings, dest, nargs=0, **kwargs) + + def __call__(self, parser, namespace, values, option_string=None): + if getattr(namespace, self.dest, None) is None: + setattr(namespace, self.dest, []) + getattr(namespace, self.dest).append(option_string) + + +def get_parser(): + """Get CLI parser.""" + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument( + '--catchup', action='store_true', + help='run git-rb-catchup when rebasing') + parser.add_argument( + '-q', '--quiet', dest='git_options', action=AppendOption, default=['-q'], + help='passthru to git rebase') + return parser + + +def main(argv): + """The main entry point for scripts.""" + parser = get_parser() + opts = parser.parse_args(argv) + + # Switch to the top dir in case the working dir doesn't exist in every branch. + topdir = git(['rev-parse', '--show-toplevel']).stdout.strip() + os.chdir(topdir) + + # Example output: + # ||m|refs/remotes/origin/master|ahead 2, behind 203 + # *||master|refs/remotes/origin/master|ahead 1 + # |/usr/local/src/gnu/gdb/build/release|release||behind 10 + # ||s-stash|| + state = git( + ['for-each-ref', '--format=%(HEAD)|%(worktreepath)|%(refname:short)|%(upstream)|%(upstream:track,nobracket)', + 'HEAD', 'refs/heads/*']).stdout.splitlines() + + curr_state = None + branch_width = 0 + local_count = 0 + for line in state: + head, worktreepath, branch, tracking, ahead_behind = line.split('|') + branch_width = max(branch_width, len(branch)) + if head == '*': + curr_state = branch + if not (worktreepath and worktreepath != topdir): + local_count += 1 + # If there are no branches to rebase, go silently. + if not local_count: + return 0 + if not curr_state: + # Are we in a detached head state? + if not git(['symbolic-ref', '-q', 'HEAD'], check=False).returncode: + fatal('unable to resolve current branch') + curr_state = git(['rev-parse', 'HEAD']).stdout.strip() + + switched_head = False + branches = {} + for line in state: + _, worktreepath, branch, tracking, ahead_behind = line.split('|') + + # If it's a branch in another worktree, ignore it. + if worktreepath and worktreepath != topdir: + continue + + print(f'{Color.BRACKET}### {Color.GOOD}{branch:{branch_width}}{Color.NORMAL} ', + end='', flush=True) + if not tracking: + print(f'{Color.WARN}skipping{Color.NORMAL} due to missing merge branch') + continue + + m = re.match(r'ahead ([0-9]+)', ahead_behind) + ahead = int(m.group(1)) if m else 0 + m = re.search(r'behind ([0-9]+)', ahead_behind) + behind = int(m.group(1)) if m else 0 + if not behind: + print(Color.good('up-to-date')) + continue + elif not ahead: + # If we haven't switched the checkout, update-ref on current HEAD + # will get us into a dirty checkout, so use merge to handle it. + if switched_head or curr_state != branch: + git(['update-ref', f'refs/heads/{branch}', tracking]) + print('fast forwarded [updated ref]') + else: + result = git(['merge', '-q', '--ff-only'], check=False) + if result.returncode: + print(Color.bad('unable to merge') + '\n' + result.stdout.strip()) + else: + print('fast forwarded [merged]') + continue + + # Skip this ref if tree is in a bad state. + if rebase_inprogress(): + print(Color.bad('skipping due to active rebase')) + continue + if cherry_pick_inprogress(): + print(Color.bad('skipping due to active cherry-pick')) + continue + if checkout_is_dirty(): + print(Color.bad('unable to rebase: tree is dirty')) + continue + + print(f'rebasing [{ahead_behind}] ', end='', flush=True) + result = git(['checkout', '-q', branch], check=False) + if result.returncode: + print(Color.bad('unable to checkout') + '\n' + result.stdout.strip()) + continue + switched_head = True + if opts.catchup: + print() + result = git(['rb-catchup'], capture_output=False, check=False) + else: + result = git(['rebase'] + opts.git_options, check=False) + if result.returncode: + git(['rebase', '--abort']) + print(Color.bad('failed') + '\n' + result.stdout.strip()) + else: + print(Color.good('OK')) + + if switched_head: + git(['checkout', '-q', curr_state]) + return 0 + + +if __name__ == '__main__': + sys.exit(main(sys.argv[1:]))