Project

General

Profile

1 8291 aaronmk
#!/bin/bash -e
2 8715 aaronmk
# runscripts: a bash-based replacement for make
3 8272 aaronmk
# unlike make, supports full bash functionality including multiline commands
4 10834 aaronmk
# usage: .../run function args
5 10835 aaronmk
# this usage also applies to all files that include this file
6 8272 aaronmk
7
if false; then #### run script template:
8 8291 aaronmk
#!/bin/bash -e
9 11414 aaronmk
. "$(dirname "${BASH_SOURCE[0]}")"/path/to/util_or_file_including_util.run "$@"
10 9854 aaronmk
.rel other_includes
11 8272 aaronmk
12 11418 aaronmk
all()
13 8272 aaronmk
{
14 8881 aaronmk
	echo_func
15 8272 aaronmk
	"$(dirname "${BASH_SOURCE[0]}")"/path_relative_to_self
16
	"$(dirname "${BASH_SOURCE[1]}")"/path_relative_to_caller
17
	"$top_dir"/path_relative_to_outermost_script
18
}
19 11417 aaronmk
20
on_exit # needed if should be runnable as shell-include (with leading ".")
21 8272 aaronmk
fi ####
22
23 9013 aaronmk
. "$(dirname "${BASH_SOURCE[0]}")"/../sh/util.sh
24 9854 aaronmk
.rel ../sh/make.sh
25 8703 aaronmk
26 8714 aaronmk
if self_not_included; then
27 8703 aaronmk
28 10271 aaronmk
29
#### setup
30
31 11427 aaronmk
if is_dot_script; then
32
	if test "$1" = .; then set --; fi # $@ wrong: no args->contains script name
33
	include_args=("$@") # from `. .../util.run "$@"`
34
fi
35 11414 aaronmk
36 10271 aaronmk
run_args_cmd() # runs the command line args command
37
{
38 11427 aaronmk
	if is_dot_script; then set -- "${include_args[@]}"
39
	else              eval set -- "$(reverse "${BASH_ARGV[@]}")"
40
	fi
41 10271 aaronmk
	test $# -ge 1 || set -- all
42
	echo_cmd "$top_script" "$@"; time "$@"
43
}
44
45 8972 aaronmk
# users can override run_args_cmd to perform other commands (or no commands)
46 8464 aaronmk
# after the script is read
47 11428 aaronmk
on_exit() { test $? -eq 0 || return; run_args_cmd; }
48
if ! is_dot_script; then trap on_exit EXIT; fi
49 8464 aaronmk
50 9268 aaronmk
func_override set_paths__util_sh
51
set_paths()
52 9267 aaronmk
{
53 9268 aaronmk
	set_paths__util_sh "$@"
54 9267 aaronmk
	top_file="${top_script%[./]run}"; echo_vars top_file
55
	top_filename="$(basename "$top_file")"; echo_vars top_filename
56
}
57 9268 aaronmk
set_paths
58 8988 aaronmk
59 10271 aaronmk
60
#### utils
61
62 11348 aaronmk
wrap_fn="$top_script" # usage: sudo "$wrap_fn" fn ...
63
64 10766 aaronmk
# usage: to_top_file cmd...
65 11359 aaronmk
function to_top_file() { echo_func; stdout="$top_file" to_file "$@"; }
66 11358 aaronmk
alias to_top_file='"to_top_file" ' # last space alias-expands next word
67 10766 aaronmk
68 10272 aaronmk
,() # usage: .../run , cmd1 cmd2 ... (like `make cmd1 cmd2 ...`)
69
# treats each of the command-line args as commands the way make does
70
# (instead of as args to the same command, the way runscripts do)
71
{ echo_func; for cmd in "$@"; do time echo_run "$cmd"; done; }
72
73 10271 aaronmk
fwd() # usage: subdirs=(...); fwd "$FUNCNAME" "$@"
74
{
75
	echo_func
76
	: "${subdirs?}"
77
78
	for subdir in "${subdirs[@]}"; do "$top_dir"/"$subdir"/run "$@"; done
79
}
80
81 8704 aaronmk
fi