summaryrefslogtreecommitdiff
path: root/tests/tartree-edit
blob: 2e0c01791b8f6a77352ea257f63c25043cf68c31 (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
#!/bin/sh
set -e
fail () { echo >&2 "$0: $*"; exit 1; }

case "$#.$1" in
2.edit|2.done)	mode="$1"; arg="$2" ;;
2.-*)		fail "no options understood"			;;
*)		fail "usage: tartree-edit edit|done DIRECTORY"	;;
esac

case "$arg" in
*.tar)		base=${arg%.tar}			;;
*.edit)		base=${arg%.edit}			;;
*)		base=${arg}				;;
esac

tryat_pre () {
	local b="$1"
	rm -rf "$b.tmp"
	if test -f "$b.tar" && test -f "$b.edit"; then
		echo "$b.edit exists, deleting possibly-obsolete $b.tar"
		rm "$b.tar"
	fi
}

tryat_edit () {
	local b="$1"
	if test -d "$b.edit"; then
		echo "$b.edit already exists"
		exit 0
	fi
	if test -f "$b.tar"; then
		mkdir "$b.tmp"
		(set -e; cd "$b.tmp"; tar xf "$b.tar")
		mv "$b.tmp" "$b.edit"
		rm "$b.tar"
		echo "$b.edit ready"
		exit 0
	fi
}

tryat_done () {
	local b="$1"
	if test -d "$b.edit"; then
		(set -e; cd "$b.edit"; tar cf "$b.tmp" *)
		mv "$b.tmp" "$b.tar"
		mv "$b.edit" "$b.tmp"
		rm -rf "$b.tmp"
		echo "$b.tar regenerated"
		exit 0
	fi
	if test -f "$b.tar"; then
		echo "$b.tar already exists and $b.edit doesn't"
		exit 0
	fi
}

tryat () {
	local b="$1"
	if ! test -f "$b.tar" && ! test -d "$b.edit"; then
		return
	fi
	tryat_pre "$b"
	tryat_$mode "$b"
	fail "unexpected situation in $b.*"
}

case "$arg" in
/*)		tryat "$base"
		;;
*)
		pwd=`pwd`
		tryat "$pwd/$base"
		tryat "$pwd/git-srcs/$base"
		tryat "$pwd/tests/git-srcs/$base"
		fail "could not find $base..."
		;;
esac