Project

General

Profile

1
#!/bin/bash -e
2
realpath () { readlink -f -- "$1"; }
3

    
4
include_guard_var () { realpath "$1"|sed 's/[^a-zA-Z0-9_]/_/g'; }
5

    
6
self_not_included () # usage: if self_not_included; then ... fi
7
{
8
	test "$#" -ge 1 || set -- "${BASH_SOURCE[1]}"
9
	local include_guard="$(include_guard_var "$1")"
10
	test -z "${!include_guard+t}" && eval "$include_guard"=1
11
}
12

    
13
if self_not_included "${BASH_SOURCE[0]}"; then
14

    
15
shopt -s expand_aliases
16

    
17
set_var () { eval "$1"'="$2"'; }
18

    
19
reverse () # usage: array=($(reverse args...))
20
{
21
	local i
22
	for (( i=$#; i >= 1; i-- )); do printf '%q ' "${!i}"; done
23
}
24

    
25
: "${verbosity:=$verbose}" "${verbosity:=0}"
26

    
27
echo_cmd () { echo "$PS4$*" >&2; }
28

    
29
echo_run () { echo_cmd "$@"; "$@"; }
30

    
31
canon_rel_path ()
32
{
33
	local path="$1"
34
	path="$(realpath "$path")" # canonicalize
35
	path="${path#$PWD/}" # remove any shared prefix with the current dir
36
	echo "$path"
37
}
38

    
39
# usage: echo_func "$@"
40
echo_func ()
41
{
42
	local script="$(canon_rel_path "${BASH_SOURCE[1]}")"
43
	echo_cmd "$script:${BASH_LINENO[0]}" "${FUNCNAME[1]}" "$@"
44
}
45

    
46
echo_stdin () # usage: input|echo_stdin|cmd
47
{
48
	echo ----- >&2
49
	tee -a /dev/stderr;
50
	echo ----- >&2
51
}
52

    
53
echo_vars () { declare -p "${@%%=*}" >&2; } # usage: echo_vars var...
54

    
55
echo_export ()
56
{
57
	builtin export "$@"
58
	echo_vars "$@"
59
}
60

    
61
if test "$verbosity" -ge 2; then
62
	alias export="echo_export" # automatically echo env vars when they are set
63
fi
64

    
65
usage () { echo "Usage: $1" >&2; (exit 2); }
66

    
67
top_dir="$(dirname "$0")" # outermost script
68

    
69
run_args_cmd () # runs the command line args command
70
{
71
	test "$?" -eq 0 || return
72
	eval set -- "$(reverse "${BASH_ARGV[@]}")"
73
	test "$#" -ge 1 || set -- all
74
	echo_cmd "$(canon_rel_path "$0")" "$@"; "$@"
75
}
76

    
77
fwd () # usage: subdirs=(...); fwd "$FUNCNAME" "$@"
78
{
79
	echo_func "$@"
80
	: "${subdirs?}"
81
	
82
	for subdir in "${subdirs[@]}"; do
83
		"$(dirname "${BASH_SOURCE[1]}")"/"$subdir"/run "$@"
84
	done
85
}
86

    
87
make ()
88
{
89
	echo_func "$@"
90
	echo_run env make --directory="$top_dir" "$@"
91
}
92

    
93
if false; then ## usage:
94
inline_make 3<<'EOF'
95
target:
96
	$(self_dir)/cmd >$@
97
EOF
98
# target will be run automatically because it's first in the makefile
99
fi ##
100
inline_make ()
101
{
102
	echo_func "$@"
103
	local self="$(readlink -f "${BASH_SOURCE[1]}")"
104
	local self_dir="$(dirname "$self")"
105
	export self self_dir
106
	
107
	make --makefile=<((
108
		cat /dev/fd/3
109
		echo -n "
110
.SUFFIXES: # turn off built-in suffix rules
111
.SECONDARY: # don't automatically delete intermediate files
112
.DELETE_ON_ERROR: # delete target if recipe fails
113
"
114
	)|echo_stdin) "$@"
115
}
116

    
117
alias zip="echo_run zip"
118
alias unzip="echo_run unzip"
119
alias zip_newer="zip -u"
120
alias unzip_newer="unzip -u -o" # -o is safe b/c -u only extracts newer files
121

    
122
fi
(49-49/54)