blob: bee242b03d93466332b3f234347056045022a749 (
plain)
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
|
#!/bin/sh
set -u
##############################################################################
##############################################################################
# Some functions
# Does verbose output if wanted.
VrbO () {
if [ "${verb:-}" ] ; then
for vrbI
do
ErrO "## $vrbI"
done
fi
}
##############################################################################
# Outputs error message $1 if present or standard input.
ErrO () {
if [ "$#" -gt 0 ] ; then
echo "$argv0: $*" >&2
else
(
while IFS= read errLn ; do
echo "$argv0: $errLn" >&2
done
)
fi
}
##############################################################################
# Outputs error message $2 (or standard input) and exits with code $1.
ErrEx () {
exCode="$1"
shift
ErrO ${@:+"$@"}
exit $exCode
}
##############################################################################
# Removes temporary files.
ExRm () {
exRmF="`expr "${exRmF:-}" : ' *\(.*\) *$'`" # ` Pacify Emacs
[ ! "$exRmF" ] ||
rm -f $exRmF
}
##############################################################################
# This function is executed on exit.
OnEx () {
exCode="${exCode:-$?}"
ExRm
trap $exTraps
exit $exCode
}
exCode=
exTraps="0 1 2 15"
trap OnEx $exTraps
##############################################################################
##############################################################################
# Create a group format option for `diff'. `gtype' is a group type of `diff'
# (one of `old' `new' `unchanged' `changed'). `gfmt' is the format specifier to
# use for the lines (one of `<' `>' `=').
GroupOpt () {
gtype="$1"
gfmt="$2"
echo "--$gtype-group-format=.. class:: CHANGE-$gtype%c'\012'%c'\012'%$gfmt%c'\012'.. endclass CHANGE-$gtype%c'\012'%c'\012'"
}
##############################################################################
# Create a line format option for `diff'. `ltype' is a line type of `diff'
# (one of `old' `new' `unchanged').
LineOpt () {
ltype="$1"
echo "--$ltype-line-format= %l%c'\012'"
}
##############################################################################
##############################################################################
# Handle arguments
# Get name of this script
argv0="`basename $0`"
# A unique temporary file
tmpF="/tmp/$argv0.$$"
exRmF="$tmpF"
# Initialization of flags
verb=
oldSvnRev=
oldF=
# Options and usage
getoptS="vr:f:"
usage="Usage: $argv0 -s <old-svn-rev>|-f <old-file> <new-file>"
# Get flags
while getopts "$getoptS" cOpt ; do
case "$cOpt" in
v ) verb=1 ;;
s ) oldSvnRev="$OPTARG" ;;
f ) oldF="$OPTARG" ;;
* ) ErrEx 1 "$usage" ;;
esac
done
shift `expr $OPTIND - 1`
[ "$oldSvnRev" -a "$oldF" ] &&
ErrEx 1 "$usage"
[ $# -eq 1 ] ||
ErrEx 1 "$usage"
newF="$1"
shift
##############################################################################
# Now work
if [ "$oldSvnRev" ] ; then
svn cat -r "$oldSvnRev" "$newF"
else
cat "$oldF"
fi |
diff --ignore-tab-expansion --ignore-blank-lines --ignore-all-space "`GroupOpt old '<'`" "`LineOpt old`" "`GroupOpt new '>'`" "`LineOpt new`" - "$newF"
|