X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=topgit.git;a=blobdiff_plain;f=tg-summary.sh;h=3c90a6b5952e526bac9da80e84386d6abf6246a8;hp=3905a8fab0207e9b3908e57d90e494f109b5efa1;hb=9f5917da92ab8c32ab765a331ebcaf227b3e2f85;hpb=53d1d2a8073e65f3f769dc7ddc96605d6e917267 diff --git a/tg-summary.sh b/tg-summary.sh index 3905a8f..3c90a6b 100644 --- a/tg-summary.sh +++ b/tg-summary.sh @@ -3,24 +3,80 @@ # (c) Petr Baudis 2008 # GPLv2 +terse= +graphviz= + ## Parse options -if [ -n "$1" ]; then - echo "Usage: tg summary" >&2 - exit 1 +while [ -n "$1" ]; do + arg="$1"; shift + case "$arg" in + -t) + terse=1;; + --graphviz) + graphviz=1;; + *) + echo "Usage: tg [...] summary [-t | --graphviz]" >&2 + exit 1;; + esac +done + +curname="$(git symbolic-ref HEAD | sed 's#^refs/\(heads\|top-bases\)/##')" + +if [ -n "$graphviz" ]; then + cat < +# or +# | dot -Txlib + +digraph G { + +graph [ + rankdir = "TB" + label="TopGit Layout\n\n\n" + fontsize = 14 + labelloc=top + pad = "0.5,0.5" +]; + +EOT fi ## List branches git for-each-ref refs/top-bases | - while read rev name ref; do + while read rev type ref; do name="${ref#refs/top-bases/}" + if [ -n "$terse" ]; then + echo "$name" + continue + fi + if [ -n "$graphviz" ]; then + git cat-file blob "$name:.topdeps" | while read dep; do + echo "\"$name\" -> \"$dep\";" + done + continue + fi + missing_deps= + current=' ' + [ "$name" != "$curname" ] || current='>' nonempty=' ' ! branch_empty "$name" || nonempty='0' + remote=' ' + [ -z "$base_remote" ] || remote='l' + ! has_remote "$name" || remote='r' + rem_update=' ' + [ "$remote" != 'r' ] || ! ref_exists "refs/remotes/$base_remote/top-bases/$name" || { + branch_contains "refs/top-bases/$name" "refs/remotes/$base_remote/top-bases/$name" && + branch_contains "$name" "refs/remotes/$base_remote/$name" + } || rem_update='R' + [ "$rem_update" = 'R' ] || branch_contains "refs/remotes/$base_remote/$name" "$name" 2>/dev/null || + rem_update='L' deps_update=' ' needs_update "$name" >/dev/null || deps_update='D' deps_missing=' ' @@ -35,6 +91,10 @@ git for-each-ref refs/top-bases | subject="(No commits)" fi - printf '%s\t%-31s\t%s\n' "$nonempty$deps_update$deps_missing$base_update" \ + printf '%s\t%-31s\t%s\n' "$current$nonempty$remote$rem_update$deps_update$deps_missing$base_update" \ "$name" "$subject" done + +if [ -n "$graphviz" ]; then + echo '}' +fi