summaryrefslogtreecommitdiffhomepage
path: root/subr/ex_pkg_steps.subr
blob: da2ce6b66030bfba680ac7b5f3e3ea286151d1e9 (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
#
# set -o errexit -o noglob are assumed.
#

ex_pkg_steps() {
	local _tgt_name="${1}" _pkg_name="${2}"				\
		_restart="${3}" _restart_at="${4}"			\
		_step _step_type					\
		_step_cmds _step_cmd_args				\
		_step_cmd_pfx _step_cmd _step_next;
	set -- $(ex_lfilter -not "${BUILD_STEPS}" "${PKG_BUILD_STEPS_DISABLE}");
	while [ ${#} -gt 0 ]; do
		_step="${1}"; _step_next="${2}";
		_step_cmds=""; _step_cmd_args="";
		_step_type="${_step#*:}";
		_step="${_step%%:*}";
		_step_cmd_pfx="pkg_${_pkg_name}_${_step}";
		case "${_step_type}" in
		dynamic)
			if [ "${_tgt_name}" = "INVARIANTS" ]; then
				_step_cmds="${_step_cmd_pfx} pkg_${_step}";
			elif [ -n "${_restart}" ]; then
				if [ -z "${_restart_at}" ]\
				|| ex_lmatch "${_restart_at}" , "${_step}"; then
					_step_cmds="${_step_cmd_pfx} pkg_${_step}";
				fi;
			elif ! ex_pkg_state_test "${_pkg_name}" "${_step}"; then
				_step_cmds="${_step_cmd_pfx} pkg_${_step}";
			fi; ;;
		invariant)
			_step_cmds="pkg_${_step}"; ;;
		variant)
			if ex_lmatch "${_restart_at}" "," "${_step}"; then
				_step_cmds="${_step_cmd_pfx} pkg_${_step}";
			fi; ;;
		virtual)
			_step_cmds="pkg_${_pkg_name}_${_step}";
			_step_cmd_args="${_restart_at:-ALL}"; ;;
		all)
			if ex_test_cmd "pkg_${_pkg_name}_${_step}"; then
				"${_step_cmd_pfx}" "${_restart_at:-ALL}";
				break;
			fi; ;;
		finish)	ex_pkg_state_push "${_pkg_name}" finish; ;;
		*)	;;
		esac;
		for _step_cmd in ${_step_cmds}; do
			if ex_test_cmd "${_step_cmd}"; then
				ex_test_cmd "${_step_cmd_pfx}_pre"	\
					&& "${_step_cmd_pfx}_pre"
				"${_step_cmd}" ${_step_cmd_args};
				ex_test_cmd "${_step_cmd_pfx}_post"	\
					&& "${_step_cmd_pfx}_post"
				if [ "${_step_type}" != "invariant" ]	\
				&& [ -n "${_step_next}" ]; then
					ex_pkg_state_push "${_pkg_name}" "${_step}";
					ex_pkg_state_push "${_pkg_name}" "-${_step_next}";
				else
					ex_pkg_state_push "${_pkg_name}" "${_step}";
				fi; break;
			fi;
		done;
	shift; done;
};

# vim:filetype=sh