sapling/scripts/scm-prompt.sh
Ryan McElroy d2a6af505b scm-prompt: use double square brackets everywhere
Summary: This is more robust and keeps the style consistent throughout

Test Plan: ran tests against zsh and bash

Reviewers: #sourcecontrol, ttung, zamsden

Reviewed By: zamsden

Subscribers: zamsden, mjpieters

Differential Revision: https://phabricator.intern.facebook.com/D3597346

Signature: t1:3597346:1469073711:de76132bd9c161242d8d8171da765ddb54a806a2
2016-07-22 16:31:51 -07:00

193 lines
6.1 KiB
Bash

# Copyright (C) 2015 Facebook, Inc
# Maintained by Ryan McElroy <rm@fb.com>
#
# Inspiration and derivation from git-completion.bash by Shawn O. Pearce.
#
# Distributed under the GNU General Public License, version 2.0.
#
# ========================================================================
#
# Quickly determines the and emits some useful information about the state
# of your current mercurial or git repository. Useful for PS1 prompts.
#
# Design goals:
# * Useful for both git and mercurial
# * Portable to both zsh and bash
# * Portable to both Mac (BSD-based utils) and Linux (GNU-based utils)
# * As fast as possible given the above constraints (few command invocations)
# * Avoids invoking git or mercurial, which may be slow on large repositories
#
# To use from zsh:
#
# NOTE! the single quotes are important; if you use double quotes
# then the prompt won't change when you chdir or checkout different
# branches!
#
# setopt PROMPT_SUBST
# source /path/to/scm-prompt
# export PS1='$(_scm_prompt)$USER@%m:%~%% '
#
# To use from bash:
#
# source /path/to/scm-prompt
# export PS1="\$(_scm_prompt)\u@\h:\W\$ "
#
# NOTE! You *EITHER* need to single-quote the whole thing *OR* back-slash
# the $(...) (as above), but not both. Which one you use depends on if
# you need the rest of your PS1 to interpolate variables.
#
# You may additionally pass a format-string to the scm_info command. This
# allows you to control the format of the prompt string without interfering
# with the prompt outside of a mercurial or git repository. For example:
#
# $(_scm_prompt "%s")
#
# The default format string is " (%s)" (note the space)
#
# Notes to developers:
#
# * Aliases can screw up the default commands; use "command" to prevent this
#
# =========================================================================
#
_scm_prompt()
{
local dir git hg fmt
# Defeault to be compatable with __git_ps1. In particular:
# - provide a space for the user so that they don't have to have
# random extra spaces in their prompt when not in a repo
# - provide parens so it's differentiated from other crap in their prompt
fmt=${1:-' (%s)'}
# find out if we're in a git or hg repo by looking for the control dir
dir=$PWD
while : ; do
if test -d "$dir/.git" ; then
git=$dir
break
elif test -d "$dir/.hg" ; then
hg=$dir
break
fi
test "$dir" = / && break
# portable "realpath" equivalent
dir=$(cd -P "$dir/.." && command echo "$PWD")
done
local br
if test -n "$hg" ; then
local extra
if [[ -f "$hg/.hg/bisect.state" ]]; then
extra="|BISECT"
elif [[ -f "$hg/.hg/histedit-state" ]]; then
extra="|HISTEDIT"
elif [[ -f "$hg/.hg/graftstate" ]]; then
extra="|GRAFT"
elif [[ -f "$hg/.hg/unshelverebasestate" ]]; then
extra="|UNSHELVE"
elif [[ -f "$hg/.hg/rebasestate" ]]; then
extra="|REBASE"
elif [[ -d "$hg/.hg/merge" ]]; then
extra="|MERGE"
fi
local dirstate=$(test -f "$hg/.hg/dirstate" && \
command hexdump -vn 20 -e '1/1 "%02x"' "$hg/.hg/dirstate" || \
command echo "empty")
local active="$hg/.hg/bookmarks.current"
if [[ -f "$active" ]]; then
br=$(command cat "$active")
# check to see if active bookmark needs update (eg, moved after pull)
local marks="$hg/.hg/bookmarks"
if [[ -f "$hg/.hg/sharedpath" && -f "$hg/.hg/shared" ]] &&
command grep -q '^bookmarks$' "$hg/.hg/shared"; then
marks="$(command cat $hg/.hg/sharedpath)/bookmarks"
fi
if [[ -z "$extra" ]] && [[ -f "$marks" ]]; then
local markstate=$(command grep " $br$" "$marks" | \
command cut -f 1 -d ' ')
if [[ $markstate != "$dirstate" ]]; then
extra="|UPDATE_NEEDED"
fi
fi
else
br=$(command echo "$dirstate" | command cut -c 1-7)
fi
local remote="$hg/.hg/remotenames"
if [[ -f "$remote" ]]; then
local marks=$(command grep "^$dirstate bookmarks" "$remote" | \
command cut -f 3 -d ' ' | command tr '\n' '|' | command sed -e 's/|$//')
if [[ -n "$marks" ]]; then
br="$br|$marks"
fi
fi
local branch
if [[ -f "$hg/.hg/branch" ]]; then
branch=$(command cat "$hg/.hg/branch")
if [[ $branch != "default" ]]; then
br="$br|$branch"
fi
fi
br="$br$extra"
elif test -n "$git" ; then
if test -f "$git/.git/HEAD" ; then
read br < "$git/.git/HEAD"
case $br in
ref:\ refs/heads/*) br=${br#ref: refs/heads/} ;;
*) br=$(command echo "$br" | command cut -c 1-7) ;;
esac
if [[ -f "$git/.git/rebase-merge/interactive" ]]; then
b="$(command cat "$git/.git/rebase-merge/head-name")"
b=${b#refs/heads/}
br="$br|REBASE-i|$b"
elif [[ -d "$git/.git/rebase-merge" ]]; then
b="$(command cat "$git/.git/rebase-merge/head-name")"
b=${b#refs/heads/}
br="$br|REBASE-m|$b"
else
if [[ -d "$git/.git/rebase-apply" ]]; then
if [[ -f "$git/.git/rebase-apply/rebasing" ]]; then
b="$(command cat "$git/.git/rebase-apply/head-name")"
b=${b#refs/heads/}
br="$br|REBASE|$b"
elif [[ -f "$git/.git/rebase-apply/applying" ]]; then
br="$br|AM"
else
br="$br|AM/REBASE"
fi
elif [[ -f "$git/.git/CHERRY_PICK_HEAD" ]]; then
br="$br|CHERRY-PICKING"
elif [[ -f "$git/.git/REVERT_HEAD" ]]; then
br="$br|REVERTING"
elif [[ -f "$git/.git/MERGE_HEAD" ]]; then
br="$br|MERGE"
elif [[ -f "$git/.git/BISECT_LOG" ]]; then
br="$br|BISECT"
fi
fi
fi
fi
if [[ -n "$br" ]]; then
printf "$fmt" "$br"
fi
}
#
# Backwards-compatibility layer for odl scm-prompt script
#
# Older versions of this file at Facebook used a longer function name.
# These versions also included support for an environmental directive
# called $WANT_OLD_SCM_PROMPT. Support this to remain compatible.
#
_dotfiles_scm_info() {
local fmt
if [[ -z "$fmt" ]]; then
if [[ -n "$WANT_OLD_SCM_PROMPT" ]]; then
fmt="%s"
fi
fi
_scm_prompt $fmt
}