2017-07-30 20:42:20 +02:00
|
|
|
# Assert that FILE exists and is executable
|
|
|
|
#
|
|
|
|
# assertExecutable FILE
|
|
|
|
assertExecutable() {
|
|
|
|
local file="$1"
|
2017-08-11 12:26:51 +02:00
|
|
|
[[ -f "$file" && -x "$file" ]] || \
|
|
|
|
die "Cannot wrap '$file' because it is not an executable file"
|
2017-07-30 20:42:20 +02:00
|
|
|
}
|
|
|
|
|
2016-10-07 15:55:16 +02:00
|
|
|
# construct an executable file that wraps the actual executable
|
2019-02-11 21:45:02 +01:00
|
|
|
# makeWrapper EXECUTABLE OUT_PATH ARGS
|
2016-10-07 15:55:16 +02:00
|
|
|
|
|
|
|
# ARGS:
|
2022-05-10 16:10:12 +02:00
|
|
|
# --argv0 NAME : set the name of the executed process to NAME
|
|
|
|
# (if unset or empty, defaults to EXECUTABLE)
|
|
|
|
# --inherit-argv0 : the executable inherits argv0 from the wrapper.
|
|
|
|
# (use instead of --argv0 '$0')
|
|
|
|
# --set VAR VAL : add VAR with value VAL to the executable's environment
|
2018-08-24 15:02:36 +02:00
|
|
|
# --set-default VAR VAL : like --set, but only adds VAR if not already set in
|
|
|
|
# the environment
|
|
|
|
# --unset VAR : remove VAR from the environment
|
2022-03-14 18:47:29 +01:00
|
|
|
# --chdir DIR : change working directory (use instead of --run "cd DIR")
|
2018-08-24 15:02:36 +02:00
|
|
|
# --run COMMAND : run command before the executable
|
|
|
|
# --add-flags FLAGS : add FLAGS to invocation of executable
|
2022-05-10 16:10:12 +02:00
|
|
|
# TODO(@ncfavier): --append-flags
|
2016-10-07 15:55:16 +02:00
|
|
|
|
|
|
|
# --prefix ENV SEP VAL : suffix/prefix ENV with VAL, separated by SEP
|
|
|
|
# --suffix
|
2021-12-28 07:15:06 +01:00
|
|
|
# --prefix-each ENV SEP VALS : like --prefix, but VALS is a list
|
2016-10-07 15:55:16 +02:00
|
|
|
# --suffix-each ENV SEP VALS : like --suffix, but VALS is a list
|
|
|
|
# --prefix-contents ENV SEP FILES : like --suffix-each, but contents of FILES
|
|
|
|
# are read first and used as VALS
|
|
|
|
# --suffix-contents
|
2022-05-10 16:01:59 +02:00
|
|
|
makeWrapper() { makeShellWrapper "$@"; }
|
|
|
|
makeShellWrapper() {
|
2017-03-05 11:56:30 +01:00
|
|
|
local original="$1"
|
|
|
|
local wrapper="$2"
|
2008-01-18 12:28:41 +01:00
|
|
|
local params varName value command separator n fileNames
|
2017-03-05 11:56:30 +01:00
|
|
|
local argv0 flagsBefore flags
|
2005-02-16 12:13:18 +01:00
|
|
|
|
2017-08-11 12:26:51 +02:00
|
|
|
assertExecutable "$original"
|
2017-07-30 20:42:20 +02:00
|
|
|
|
2021-06-28 14:16:04 +02:00
|
|
|
# Write wrapper code which adds `value` to the beginning or end of
|
|
|
|
# the list variable named by `varName`, depending on the `mode`
|
|
|
|
# specified.
|
|
|
|
#
|
|
|
|
# A value which is already part of the list will not be added
|
|
|
|
# again. If this is the case and the `suffix` mode is used, the
|
|
|
|
# list won't be touched at all. The `prefix` mode will however
|
|
|
|
# move the last matching instance of the value to the beginning
|
|
|
|
# of the list. Any remaining duplicates of the value will be left
|
|
|
|
# as-is.
|
|
|
|
addValue() {
|
|
|
|
local mode="$1" # `prefix` or `suffix` to add to the beginning or end respectively
|
|
|
|
local varName="$2" # name of list variable to add to
|
|
|
|
local separator="$3" # character used to separate elements of list
|
|
|
|
local value="$4" # one value, or multiple values separated by `separator`, to add to list
|
2022-02-12 02:11:33 +01:00
|
|
|
|
|
|
|
# Disable file globbing, since bash will otherwise try to find
|
|
|
|
# filenames matching the the value to be prefixed/suffixed if
|
|
|
|
# it contains characters considered wildcards, such as `?` and
|
|
|
|
# `*`. We want the value as is, except we also want to split
|
|
|
|
# it on on the separator; hence we can't quote it.
|
|
|
|
local reenableGlob=0
|
|
|
|
if [[ ! -o noglob ]]; then
|
|
|
|
reenableGlob=1
|
|
|
|
fi
|
|
|
|
set -o noglob
|
|
|
|
|
|
|
|
if [[ -n "$value" ]]; then
|
2021-06-28 14:16:04 +02:00
|
|
|
local old_ifs=$IFS
|
|
|
|
IFS=$separator
|
|
|
|
|
|
|
|
if [[ "$mode" == '--prefix'* ]]; then
|
|
|
|
# Keep the order of the components as written when
|
|
|
|
# prefixing; normally, they would be added in the
|
|
|
|
# reverse order.
|
|
|
|
local tmp=
|
|
|
|
for v in $value; do
|
|
|
|
tmp=$v${tmp:+$separator}$tmp
|
|
|
|
done
|
|
|
|
value="$tmp"
|
|
|
|
fi
|
|
|
|
for v in $value; do
|
|
|
|
{
|
|
|
|
echo "$varName=\${$varName:+${separator@Q}\$$varName${separator@Q}}" # add separators on both ends unless empty
|
|
|
|
if [[ "$mode" == '--prefix'* ]]; then # -- in prefix mode --
|
|
|
|
echo "$varName=\${$varName/${separator@Q}${v@Q}${separator@Q}/${separator@Q}}" # remove the first instance of the value (if any)
|
|
|
|
echo "$varName=${v@Q}\$$varName" # prepend the value
|
|
|
|
elif [[ "$mode" == '--suffix'* ]]; then # -- in suffix mode --
|
|
|
|
echo "if [[ \$$varName != *${separator@Q}${v@Q}${separator@Q}* ]]; then" # if the value isn't already in the list
|
|
|
|
echo " $varName=\$$varName${v@Q}" # append the value
|
|
|
|
echo "fi"
|
|
|
|
else
|
|
|
|
echo "unknown mode $mode!" 1>&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
echo "$varName=\${$varName#${separator@Q}}" # remove leading separator
|
|
|
|
echo "$varName=\${$varName%${separator@Q}}" # remove trailing separator
|
|
|
|
echo "export $varName"
|
|
|
|
} >> "$wrapper"
|
|
|
|
done
|
|
|
|
IFS=$old_ifs
|
|
|
|
fi
|
2022-02-12 02:11:33 +01:00
|
|
|
|
|
|
|
if (( reenableGlob )); then
|
|
|
|
set +o noglob
|
|
|
|
fi
|
2021-06-28 14:16:04 +02:00
|
|
|
}
|
|
|
|
|
2017-03-05 11:56:30 +01:00
|
|
|
mkdir -p "$(dirname "$wrapper")"
|
2005-02-16 12:13:18 +01:00
|
|
|
|
2018-11-11 18:55:55 +01:00
|
|
|
echo "#! @shell@ -e" > "$wrapper"
|
2005-02-16 12:13:18 +01:00
|
|
|
|
|
|
|
params=("$@")
|
|
|
|
for ((n = 2; n < ${#params[*]}; n += 1)); do
|
2017-03-05 11:56:30 +01:00
|
|
|
p="${params[$n]}"
|
2005-02-16 12:13:18 +01:00
|
|
|
|
2017-04-14 05:49:05 +02:00
|
|
|
if [[ "$p" == "--set" ]]; then
|
2017-03-05 11:56:30 +01:00
|
|
|
varName="${params[$((n + 1))]}"
|
|
|
|
value="${params[$((n + 2))]}"
|
2005-03-09 20:07:23 +01:00
|
|
|
n=$((n + 2))
|
2017-11-11 11:10:01 +01:00
|
|
|
echo "export $varName=${value@Q}" >> "$wrapper"
|
2017-11-17 11:11:01 +01:00
|
|
|
elif [[ "$p" == "--set-default" ]]; then
|
|
|
|
varName="${params[$((n + 1))]}"
|
|
|
|
value="${params[$((n + 2))]}"
|
|
|
|
n=$((n + 2))
|
|
|
|
echo "export $varName=\${$varName-${value@Q}}" >> "$wrapper"
|
2017-04-14 05:49:05 +02:00
|
|
|
elif [[ "$p" == "--unset" ]]; then
|
2017-03-05 11:56:30 +01:00
|
|
|
varName="${params[$((n + 1))]}"
|
2016-02-28 14:27:43 +01:00
|
|
|
n=$((n + 1))
|
|
|
|
echo "unset $varName" >> "$wrapper"
|
2022-03-14 18:47:29 +01:00
|
|
|
elif [[ "$p" == "--chdir" ]]; then
|
|
|
|
dir="${params[$((n + 1))]}"
|
|
|
|
n=$((n + 1))
|
|
|
|
echo "cd ${dir@Q}" >> "$wrapper"
|
2017-04-14 05:49:05 +02:00
|
|
|
elif [[ "$p" == "--run" ]]; then
|
2017-03-05 11:56:30 +01:00
|
|
|
command="${params[$((n + 1))]}"
|
2008-01-18 12:28:41 +01:00
|
|
|
n=$((n + 1))
|
2017-03-05 11:56:30 +01:00
|
|
|
echo "$command" >> "$wrapper"
|
2017-04-14 05:49:05 +02:00
|
|
|
elif [[ ("$p" == "--suffix") || ("$p" == "--prefix") ]]; then
|
2017-03-05 11:56:30 +01:00
|
|
|
varName="${params[$((n + 1))]}"
|
|
|
|
separator="${params[$((n + 2))]}"
|
|
|
|
value="${params[$((n + 3))]}"
|
2005-02-16 12:13:18 +01:00
|
|
|
n=$((n + 3))
|
2021-06-28 14:16:04 +02:00
|
|
|
addValue "$p" "$varName" "$separator" "$value"
|
|
|
|
elif [[ ("$p" == "--suffix-each") || ("$p" == "--prefix-each") ]]; then
|
2017-03-05 11:56:30 +01:00
|
|
|
varName="${params[$((n + 1))]}"
|
|
|
|
separator="${params[$((n + 2))]}"
|
|
|
|
values="${params[$((n + 3))]}"
|
2005-02-16 12:38:52 +01:00
|
|
|
n=$((n + 3))
|
|
|
|
for value in $values; do
|
2021-06-28 14:16:04 +02:00
|
|
|
addValue "$p" "$varName" "$separator" "$value"
|
2005-02-16 12:38:52 +01:00
|
|
|
done
|
2017-04-14 05:49:05 +02:00
|
|
|
elif [[ ("$p" == "--suffix-contents") || ("$p" == "--prefix-contents") ]]; then
|
2017-03-05 11:56:30 +01:00
|
|
|
varName="${params[$((n + 1))]}"
|
|
|
|
separator="${params[$((n + 2))]}"
|
|
|
|
fileNames="${params[$((n + 3))]}"
|
2005-02-16 12:38:52 +01:00
|
|
|
n=$((n + 3))
|
|
|
|
for fileName in $fileNames; do
|
2017-11-11 11:10:01 +01:00
|
|
|
contents="$(cat "$fileName")"
|
2021-06-28 14:16:04 +02:00
|
|
|
addValue "$p" "$varName" "$separator" "$contents"
|
2005-02-16 12:38:52 +01:00
|
|
|
done
|
2017-04-14 05:49:05 +02:00
|
|
|
elif [[ "$p" == "--add-flags" ]]; then
|
2017-03-05 11:56:30 +01:00
|
|
|
flags="${params[$((n + 1))]}"
|
2008-06-14 22:45:58 +02:00
|
|
|
n=$((n + 1))
|
|
|
|
flagsBefore="$flagsBefore $flags"
|
2017-04-14 05:49:05 +02:00
|
|
|
elif [[ "$p" == "--argv0" ]]; then
|
2017-03-05 11:56:30 +01:00
|
|
|
argv0="${params[$((n + 1))]}"
|
2015-08-30 17:41:43 +02:00
|
|
|
n=$((n + 1))
|
2022-05-10 16:10:12 +02:00
|
|
|
elif [[ "$p" == "--inherit-argv0" ]]; then
|
|
|
|
# Whichever comes last of --argv0 and --inherit-argv0 wins
|
|
|
|
argv0='$0'
|
2017-04-14 05:49:05 +02:00
|
|
|
else
|
|
|
|
die "makeWrapper doesn't understand the arg $p"
|
2015-08-30 17:41:43 +02:00
|
|
|
fi
|
2005-02-16 12:13:18 +01:00
|
|
|
done
|
|
|
|
|
2017-03-05 11:56:30 +01:00
|
|
|
echo exec ${argv0:+-a \"$argv0\"} \""$original"\" \
|
2019-09-11 00:52:53 +02:00
|
|
|
"$flagsBefore" '"$@"' >> "$wrapper"
|
2015-08-21 01:28:31 +02:00
|
|
|
|
2017-03-05 11:56:30 +01:00
|
|
|
chmod +x "$wrapper"
|
2005-02-16 12:13:18 +01:00
|
|
|
}
|
2005-02-16 12:38:52 +01:00
|
|
|
|
|
|
|
addSuffix() {
|
2017-03-05 11:56:30 +01:00
|
|
|
suffix="$1"
|
2005-02-16 12:38:52 +01:00
|
|
|
shift
|
|
|
|
for name in "$@"; do
|
|
|
|
echo "$name$suffix"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
filterExisting() {
|
|
|
|
for fn in "$@"; do
|
|
|
|
if test -e "$fn"; then
|
|
|
|
echo "$fn"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
2008-01-18 11:29:58 +01:00
|
|
|
|
|
|
|
# Syntax: wrapProgram <PROGRAM> <MAKE-WRAPPER FLAGS...>
|
2022-05-10 16:01:59 +02:00
|
|
|
wrapProgram() { wrapProgramShell "$@"; }
|
|
|
|
wrapProgramShell() {
|
2008-01-18 11:29:58 +01:00
|
|
|
local prog="$1"
|
2017-03-05 11:56:30 +01:00
|
|
|
local hidden
|
2017-07-30 20:42:20 +02:00
|
|
|
|
2017-08-11 12:26:51 +02:00
|
|
|
assertExecutable "$prog"
|
2017-07-30 20:42:20 +02:00
|
|
|
|
2017-03-05 11:56:30 +01:00
|
|
|
hidden="$(dirname "$prog")/.$(basename "$prog")"-wrapped
|
2017-04-12 17:12:16 +02:00
|
|
|
while [ -e "$hidden" ]; do
|
|
|
|
hidden="${hidden}_"
|
|
|
|
done
|
2017-03-05 11:56:30 +01:00
|
|
|
mv "$prog" "$hidden"
|
2022-05-10 16:10:12 +02:00
|
|
|
makeWrapper "$hidden" "$prog" --inherit-argv0 "${@:2}"
|
2008-01-18 11:29:58 +01:00
|
|
|
}
|