-
Notifications
You must be signed in to change notification settings - Fork 7
/
tg-summary.sh
434 lines (406 loc) · 11.6 KB
/
tg-summary.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
#!/bin/sh
# TopGit - A different patch queue manager
# Copyright (C) Petr Baudis <[email protected]> 2008
# Copyright (C) Kyle J. McKay <[email protected]> 2015,2016,2017,2018,2021
# All rights reserved
# GPLv2
USAGE="\
Usage: ${tgname:-tg} [...] summary [<option>...] [--all | <branch>...]
Or: ${tgname:-tg} [...] summary [--terse | --list] [<option>...] [--all | <branch>...]
Or: ${tgname:-tg} [...] summary --rdeps[-full] [<option>...] [--all | <branch>...]
Or: ${tgname:-tg} [...] summary --heads[-independent] [<option>...] [--all | <branch>...]
Or: ${tgname:-tg} [...] summary --deps [<option>...] [--all | <branch>...]
Or: ${tgname:-tg} [...] summary --deps-only [<option>...] [--all | <branch>...]
Or: ${tgname:-tg} [...] summary --sort [<option>...] [--all | <branch>...]
Or: ${tgname:-tg} [...] summary --graphviz [<option>...] [--all | <branch>...]
Options:
--terse / --list list TopGit branches (aka '-t' / '-l')
--rdeps[-once] show branch dependencies as multi-indented list
--rdeps-full like '--rdeps' but do not collapse repeated items
--rdeps --heads use '--rdeps' and \$('--heads of <branch>...)
--[topgit]-heads list only independent TopGit branch heads
--heads-independent list only merge-base --independent heads
--deps list all .topdeps branch dependencies
--deps-only list sorted unique .topdeps branches + dependencies
--sort feed output of '--deps' through 'tsort'
--graphviz generate dependency graph description in DOT format
--verbose / -v include subjects with '-l' (twice shows annihilated)
--exclude <branch> exclude <branch> during operation (may be repeated)
--tgish-only exclude non-TopGit branches (aka '--tgish')
--with-deps include dependencies of given <branch>... (default)
--without-deps do not include dependencies of given <branch>...
--with-related use '--with-deps' and \$('--heads' of <branch>...)
--without-related do not use '--with-related' processing
--heads-only use '--without-deps' and \$('--heads' of <branch>...)
-i use TopGit metadata from index instead of HEAD branch
-w use metadata from working directory instead of branch"
usage()
{
if [ "${1:-0}" != 0 ]; then
printf '%s\n' "$USAGE" >&2
else
printf '%s\n' "$USAGE"
fi
exit ${1:-0}
}
## Parse options
terse=
graphviz=
sort=
deps=
depsonly=
rdeps=
rdepsonce=1
head_from=
branches=
head=
heads=
headsindep=
headsonly=
exclude=
tgish=
withdeps=
verbose=0
## Parse options
while [ -n "$1" ]; do
arg="$1"
case "$arg" in
-h|--help)
usage;;
-i|-w)
[ -z "$head_from" ] || die "-i and -w are mutually exclusive"
head_from="$arg";;
-t|--list|-l|--terse)
terse=1;;
-v|--verbose)
verbose=$(( $verbose + 1 ));;
-vl|-lv)
terse=1 verbose=$(( $verbose + 1 ));;
-vv)
verbose=$(( $verbose + 2 ));;
-vvl|-vlv|-lvv)
terse=1 verbose=$(( $verbose + 2 ));;
--heads|--topgit-heads)
heads=1
headsindep=;;
--heads-independent)
heads=1
headsindep=1;;
--heads-only)
headsonly=1;;
--with-deps)
head=HEAD
withdeps=1;;
--with-related)
head=HEAD
withdeps=2;;
--without-deps|--no-with-deps|--without-related|--no-with-related)
head=HEAD
withdeps=0;;
--graphviz)
graphviz=1;;
--sort)
sort=1;;
--deps)
deps=1;;
--tgish-only|--tgish)
tgish=1;;
--deps-only)
head=HEAD
depsonly=1;;
--rdeps)
head=HEAD
rdeps=1;;
--rdeps-full)
head=HEAD
rdeps=1 rdepsonce=;;
--rdeps-once)
head=HEAD
rdeps=1 rdepsonce=1;;
--all)
break;;
--exclude=*)
[ -n "${1#--exclude=}" ] || die "--exclude= requires a branch name"
exclude="$exclude ${1#--exclude=}";;
--exclude)
shift
[ -n "$1" ] && [ "$1" != "--all" ] || die "--exclude requires a branch name"
exclude="$exclude $1";;
-*)
usage 1;;
*)
break;;
esac
shift
done
[ $# -eq 0 ] || defwithdeps=1
[ -z "$exclude" ] || exclude="$exclude "
doingall=
[ $# -ne 0 ] || [ z"$head" != z"" ] || doingall=1
if [ "$1" = "--all" ]; then
[ -z "$withdeps" ] || die "mutually exclusive options given"
[ $# -eq 1 ] || usage
shift
head=
defwithdeps=
doingall=1
fi
[ "$heads$rdeps" != "11" ] || head=
[ $# -ne 0 ] || [ -z "$head" ] || set -- "$head"
[ -z "$defwithdeps" ] || [ $# -ne 1 ] || { [ z"$1" != z"HEAD" ] && [ z"$1" != z"@" ]; } || defwithdeps=2
[ "$terse$heads$headsonly$graphviz$sort$deps$depsonly" = "" ] ||
[ "$terse$heads$headsonly$graphviz$sort$deps$depsonly$rdeps" = "1" ] ||
{ [ "$terse$heads$headsonly$graphviz$sort$deps$depsonly$rdeps" = "11" ] && [ "$heads$rdeps" = "11" ]; } ||
die "mutually exclusive options given"
[ -z "$withdeps" ] || [ -z "$rdeps$depsonly$heads$headsonly" ] ||
die "mutually exclusive options given"
for b; do
[ "$b" != "--all" ] || usage
v_verify_topgit_branch b "$b"
branches="$branches $b"
done
get_branch_list()
{
if [ -n "$branches" ]; then
if [ -n "$1" ]; then
printf '%s\n' $branches | sort -u
else
printf '%s\n' $branches
fi
else
non_annihilated_branches
fi
}
show_heads_independent()
{
topics="$(get_temp topics)"
get_branch_list | sed -e 's,^\(.*\)$,refs/heads/\1 \1,' |
git cat-file --batch-check='%(objectname) %(rest)' |
sort -u -b -k1,1 >"$topics"
git merge-base --independent $(cut -d ' ' -f 1 <"$topics") |
sort -u -b -k1,1 | join - "$topics" | sort -u -b -k2,2 |
while read rev name; do
case "$exclude" in *" $name "*) continue; esac
printf '%s\n' "$name"
done
}
show_heads_topgit()
{
[ -z "$head_from" ] || [ -n "$with_deps_opts" ] ||
v_get_tdopt with_deps_opts "$head_from"
if [ -n "$branches" ]; then
eval navigate_deps "$with_deps_opts" -s=-1 -1 -- '"$branches"' | sort
else
eval navigate_deps "$with_deps_opts" -s=-1
fi |
while read -r name; do
case "$exclude" in *" $name "*) continue; esac
printf '%s\n' "$name"
done
}
show_heads()
{
if [ -n "$headsindep" ]; then
show_heads_independent "$@"
else
show_heads_topgit "$@"
fi
}
if [ -n "$heads" ] && [ -z "$rdeps" ]; then
show_heads
exit 0
fi
# if $1 is non-empty, show the dep only (including self), not the edge (no self)
show_deps()
{
[ -z "$head_from" ] || [ -n "$with_deps_opts" ] ||
v_get_tdopt with_deps_opts "$head_from"
if [ -n "$branches" ]; then
edgenum=2
[ -z "$1" ] || edgenum=1
no_remotes=1
recurse_deps_exclude="$exclude"
recurse_deps_internal -n ${tgish:+-t} -m ${1:+-s} -e=$edgenum -- $branches | sort -u
else
cutcmd=
[ -z "$1" ] || cutcmd='| cut -d " " -f 2 | sort -u'
refslist=
[ -z "$tg_read_only" ] || [ -z "$tg_ref_cache" ] || ! [ -s "$tg_ref_cache" ] ||
refslist="-r=\"$tg_ref_cache\""
tdopt=
eval run_awk_topgit_deps "$refslist" "$with_deps_opts" "${tgish:+-t}" \
"${1:+-s}" '-n -x="$exclude" "refs/$topbases"' "$cutcmd"
fi
}
if [ -n "$deps$depsonly$sort" ]; then
eval show_deps $depsonly "${sort:+|tsort}"
exit 0
fi
if [ -n "$rdeps" ]; then
no_remotes=1
recurse_preorder=1
recurse_deps_exclude="$exclude"
showbreak=
v_get_tdopt with_deps_opts "$head_from"
{
if [ -n "$heads" ]; then
show_heads
else
get_branch_list
fi
} | while read -r b; do
case "$exclude" in *" $b "*) continue; esac
ref_exists "refs/heads/$b" || continue
[ -z "$showbreak" ] || echo
showbreak=1
recurse_deps_internal ${tgish:+-t} -n -s ${rdepsonce:+-o=-1} "$b" |
awk -v elided="$rdepsonce" '{
if ($1 == "1" || NF < 5) next
xvisits = $4
dep = $5
if ($6 != "") haschild[$6] = 1
sub(/^[^ ]+ +[^ ]+ +[^ ]+ +[^ ]+ +[^ ]+/, "")
gsub(/ [^ ]+/, " ")
xtra = ""
if (elided && xvisits > 0 && haschild[dep]) xtra="^"
print $0 dep xtra
}'
done
exit 0
fi
if [ -n "$headsonly" ]; then
defwithdeps=
branches="$(show_heads)"
fi
[ -n "$withdeps" ] || withdeps="$defwithdeps"
if [ -z "$doingall$terse$graphviz$sort$withdeps$branches" ]; then
branches="$(tg info --heads 2>/dev/null | paste -d " " -s -)" || :
[ -z "$branches" ] || withdeps=1
fi
[ "$withdeps" != "0" ] || withdeps=
if [ -n "$withdeps" ]; then
v_get_tdopt with_deps_opts "$head_from"
[ "$withdeps" != "2" ] || branches="$(show_heads_topgit | paste -d " " -s -)"
savetgish="$tgish"
tgish=1
origbranches="$branches"
branches="$(show_deps 1 | paste -d " " -s -)"
tgish="$savetgish"
fi
if [ -n "$terse" ]; then
refslist=
[ -z "$tg_read_only" ] || [ -z "$tg_ref_cache" ] || ! [ -s "$tg_ref_cache" ] ||
refslist="-r=\"$tg_ref_cache\""
cmd="run_awk_topgit_branches -n"
if [ $verbose -gt 0 ]; then
v_get_tmopt tm_opt "$head_from"
cmd="run_awk_topgit_msg --list${tm_opt:+ $tm_opt}"
[ $verbose -lt 2 ] || cmd="run_awk_topgit_msg -c -nokind${tm_opt:+ $tm_opt}"
fi
eval "$cmd" "$refslist" '-i="$branches" -x="$exclude" "refs/$topbases"'
exit 0
fi
v_strip_ref curname "$(git symbolic-ref -q HEAD)"
if [ -n "$graphviz" ]; then
printf '%s\n\n' \
'# GraphViz output; pipe to:
# | dot -Tpng -o <output>
# or
# | dot -Txlib
digraph G {
graph [
rankdir = "TB"
label="TopGit Layout\n\n\n"
fontsize = 14
labelloc=top
pad = "0.5,0.5"
];'
show_deps | while read -r name dep; do
printf '"%s" -> "%s";\n' "$name" "$dep"
if [ "$name" = "$curname" ] || [ "$dep" = "$curname" ]; then
printf '"%s" [%s];\n' "$curname" "style=filled,fillcolor=yellow"
fi
done
printf '%s\n' '}'
exit 0
fi
compute_ahead_list()
{
aheadlist=
refslist=
[ -z "$tg_read_only" ] || [ -z "$tg_ref_cache" ] || ! [ -s "$tg_ref_cache" ] ||
refslist="-r=\"$tg_ref_cache\""
msgsfile="$(get_temp msgslist)"
v_get_tmopt tm_opt "$head_from"
eval run_awk_topgit_msg "-nokind${tm_opt:+ $tm_opt}" "$refslist" '"refs/$topbases"' >"$msgsfile"
needs_update_check_clear
needs_update_check_no_same=1
[ -z "$branches" ] || [ -n "$withdeps" ] || return 0
v_get_tdopt with_deps_opts "$head_from"
[ -n "$withdeps" ] || origbranches="$(navigate_deps -s=-1 | paste -d ' ' -s -)"
for onehead in $origbranches; do
case "$exclude" in *" $onehead "*) continue; esac
needs_update_check $onehead
done
aheadlist=" $needs_update_ahead "
}
process_branch()
{
missing_deps=
current=' '
[ "$name" != "$curname" ] || current='>'
from=$head_from
[ "$name" = "$curname" ] ||
from=
nonempty=' '
! branch_empty "$name" $from || nonempty='0'
remote=' '
[ -z "$base_remote" ] || remote='l'
! has_remote "$name" || remote='r'
rem_update=' '
[ "$remote" != 'r' ] || ! ref_exists "refs/remotes/$base_remote/${topbases#heads/}/$name" || {
branch_contains "refs/$topbases/$name" "refs/remotes/$base_remote/${topbases#heads/}/$name" &&
branch_contains "refs/heads/$name" "refs/remotes/$base_remote/$name"
} || rem_update='R'
[ "$remote" != 'r' ] || [ "$rem_update" = 'R' ] || {
branch_contains "refs/remotes/$base_remote/$name" "refs/heads/$name" 2>/dev/null
} || rem_update='L'
needs_update_check "$name"
deps_update=' '
! vcontains needs_update_behind "$name" || deps_update='D'
deps_missing=' '
! vcontains needs_update_partial "$name" || deps_missing='!'
base_update=' '
branch_contains "refs/heads/$name" "refs/$topbases/$name" || base_update='B'
ahead=' '
case "$aheadlist" in *" $name "*) ahead='*'; esac
printf '%-8s %s\n' "$current$nonempty$remote$rem_update$deps_update$deps_missing$base_update$ahead" \
"$name"
}
awkpgm='
BEGIN {
if (msgsfile != "") {
while ((e = (getline msg <msgsfile)) > 0) {
gsub(/[ \t]+/, " ", msg)
sub(/^ /, "", msg)
if (split(msg, scratch, " ") < 2 ||
scratch[1] == "" || scratch[2] == "") continue
msg = substr(msg, length(scratch[1]) + 2)
msgs[scratch[1]] = msg
}
close(msgsfile)
}
}
{
name = substr($0, 10)
if (name != "" && name in msgs)
printf "%-39s\t%s\n", $0, msgs[name]
else
print $0
}
'
msgsfile=
compute_ahead_list
cmd='get_branch_list | while read name; do process_branch; done'
[ -z "$msgsfile" ] || cmd="$cmd"' | awk -v msgsfile="$msgsfile" "$awkpgm"'
eval "$cmd"