tg-completion: complete options for `tg remote`
[topgit/kirr.git] / tg-summary.sh
blob842d95ad34d11228203b437fa4e487ecac254071
1 #!/bin/sh
2 # TopGit - A different patch queue manager
3 # (c) Petr Baudis <pasky@suse.cz> 2008
4 # GPLv2
6 terse=
7 graphviz=
10 ## Parse options
12 while [ -n "$1" ]; do
13 arg="$1"; shift
14 case "$arg" in
15 -t)
16 terse=1;;
17 --graphviz)
18 graphviz=1;;
20 echo "Usage: tg [...] summary [-t | --graphviz]" >&2
21 exit 1;;
22 esac
23 done
25 curname="$(git symbolic-ref HEAD | sed 's#^refs/\(heads\|top-bases\)/##')"
27 ! [ -n "$terse" -a -n "$graphviz" ] ||
28 die "-t and --graphviz options are mutual exclusive"
30 if [ -n "$graphviz" ]; then
31 cat <<EOT
32 # GraphViz output; pipe to:
33 # | dot -Tpng -o <ouput>
34 # or
35 # | dot -Txlib
37 digraph G {
39 graph [
40 rankdir = "TB"
41 label="TopGit Layout\n\n\n"
42 fontsize = 14
43 labelloc=top
44 pad = "0.5,0.5"
47 EOT
51 ## List branches
53 git for-each-ref refs/top-bases |
54 while read rev type ref; do
55 name="${ref#refs/top-bases/}"
56 if [ -n "$terse" ]; then
57 echo "$name"
58 continue
60 if [ -n "$graphviz" ]; then
61 git cat-file blob "$name:.topdeps" | while read dep; do
62 echo "\"$name\" -> \"$dep\";"
63 done
64 continue
67 missing_deps=
69 current=' '
70 [ "$name" != "$curname" ] || current='>'
71 nonempty=' '
72 ! branch_empty "$name" || nonempty='0'
73 remote=' '
74 [ -z "$base_remote" ] || remote='l'
75 ! has_remote "$name" || remote='r'
76 rem_update=' '
77 [ "$remote" != 'r' ] || ! ref_exists "refs/remotes/$base_remote/top-bases/$name" || {
78 branch_contains "refs/top-bases/$name" "refs/remotes/$base_remote/top-bases/$name" &&
79 branch_contains "$name" "refs/remotes/$base_remote/$name"
80 } || rem_update='R'
81 [ "$rem_update" = 'R' ] || branch_contains "refs/remotes/$base_remote/$name" "$name" 2>/dev/null ||
82 rem_update='L'
83 deps_update=' '
84 needs_update "$name" >/dev/null || deps_update='D'
85 deps_missing=' '
86 [ -z "$missing_deps" ] || deps_missing='!'
87 base_update=' '
88 branch_contains "$name" "refs/top-bases/$name" || base_update='B'
90 if [ "$(git rev-parse "$name")" != "$rev" ]; then
91 subject="$(git cat-file blob "$name:.topmsg" | sed -n 's/^Subject: //p')"
92 else
93 # No commits yet
94 subject="(No commits)"
97 printf '%s\t%-31s\t%s\n' "$current$nonempty$remote$rem_update$deps_update$deps_missing$base_update" \
98 "$name" "$subject"
99 done
101 if [ -n "$graphviz" ]; then
102 echo '}'
105 # vim:noet