2011-08-12 05:33:45 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
2011-09-12 11:11:59 -04:00
|
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
2011-08-01 16:50:26 -04:00
|
|
|
|
2011-09-11 12:58:57 -04:00
|
|
|
SHIM_PATH="${RBENV_ROOT}/shims"
|
2011-08-15 02:16:13 -04:00
|
|
|
PROTOTYPE_SHIM_PATH="${SHIM_PATH}/.rbenv-shim"
|
|
|
|
|
|
|
|
# Create the shims directory if it doesn't already exist.
|
|
|
|
mkdir -p "$SHIM_PATH"
|
|
|
|
|
|
|
|
# Ensure only one instance of rbenv-rehash is running at a time by
|
|
|
|
# setting the shell's `noclobber` option and attempting to write to
|
|
|
|
# the prototype shim file. If the file already exists, print a warning
|
|
|
|
# to stderr and exit with a non-zero status.
|
|
|
|
set -o noclobber
|
|
|
|
{ echo > "$PROTOTYPE_SHIM_PATH"
|
|
|
|
} 2>/dev/null ||
|
|
|
|
{ echo "rbenv: cannot rehash: $PROTOTYPE_SHIM_PATH exists"
|
|
|
|
exit 1
|
|
|
|
} >&2
|
|
|
|
set +o noclobber
|
|
|
|
|
|
|
|
# If we were able to obtain a lock, register a trap to clean up the
|
|
|
|
# prototype shim when the process exits.
|
2011-11-14 15:45:43 -05:00
|
|
|
trap remove_prototype_shim EXIT
|
2011-08-15 02:16:13 -04:00
|
|
|
|
|
|
|
remove_prototype_shim() {
|
|
|
|
rm -f "$PROTOTYPE_SHIM_PATH"
|
|
|
|
}
|
|
|
|
|
|
|
|
# The prototype shim file is a script that re-execs itself, passing
|
|
|
|
# its filename and any arguments to `rbenv exec`. This file is
|
|
|
|
# hard-linked for every binary and then removed. The linking technique
|
|
|
|
# is fast, uses less disk space than unique files, and also serves as
|
|
|
|
# a locking mechanism.
|
2011-08-03 23:57:27 -04:00
|
|
|
create_prototype_shim() {
|
2011-08-15 02:16:13 -04:00
|
|
|
cat > "$PROTOTYPE_SHIM_PATH" <<SH
|
2011-08-12 05:33:45 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
2011-09-12 12:05:45 -04:00
|
|
|
export RBENV_ROOT="$RBENV_ROOT"
|
2011-08-03 23:57:27 -04:00
|
|
|
exec rbenv exec "\${0##*/}" "\$@"
|
|
|
|
SH
|
2011-08-15 02:16:13 -04:00
|
|
|
chmod +x "$PROTOTYPE_SHIM_PATH"
|
2011-08-03 23:57:27 -04:00
|
|
|
}
|
|
|
|
|
2011-12-24 15:16:37 -05:00
|
|
|
# The basename of each argument passed to `make_shims` will be
|
|
|
|
# registered for installation as a shim. In this way, plugins may call
|
|
|
|
# `make_shims` with a glob to register many shims at once.
|
2011-08-03 13:17:28 -04:00
|
|
|
make_shims() {
|
2011-12-24 15:16:37 -05:00
|
|
|
local shims="$@"
|
2011-08-01 16:50:26 -04:00
|
|
|
|
2011-12-24 15:16:37 -05:00
|
|
|
for file in $shims; do
|
2011-08-03 13:17:28 -04:00
|
|
|
local shim="${file##*/}"
|
2011-12-24 15:16:37 -05:00
|
|
|
register_shim "$shim"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# Create an empty array for the list of registered shims.
|
|
|
|
registered_shims=()
|
|
|
|
|
|
|
|
# We will keep track of shims registered for installation with the
|
|
|
|
# global `reigstered_shims` array and with a global variable for each
|
|
|
|
# shim. The array will let us iterate over all registered shims. The
|
|
|
|
# global variables will let us quickly check whether a shim with the
|
|
|
|
# given name has been registered or not.
|
|
|
|
register_shim() {
|
|
|
|
local shim="$@"
|
|
|
|
local var="$(shim_variable_name "$shim")"
|
|
|
|
|
|
|
|
if [ -z "${!var}" ]; then
|
|
|
|
registered_shims[${#registered_shims[*]}]="$shim"
|
|
|
|
eval "${var}=1"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# To compute the global variable name for a given shim we must first
|
|
|
|
# escape any non-alphanumeric characters. If the shim name is
|
|
|
|
# alphanumeric (including a hyphen or underscore) we can take a
|
|
|
|
# shorter path. Otherwise, we must iterate over each character and
|
|
|
|
# escape the non-alphanumeric ones using `printf`.
|
|
|
|
shim_variable_name() {
|
|
|
|
local shim="$1"
|
|
|
|
local result="_shim_"
|
|
|
|
|
|
|
|
if [[ ! "$shim" =~ [^[:alnum:]_-] ]]; then
|
|
|
|
shim="${shim//_/_5f}"
|
|
|
|
shim="${shim//-/_2d}"
|
2012-04-23 10:11:19 -04:00
|
|
|
result="$result$shim"
|
2011-12-24 15:16:37 -05:00
|
|
|
else
|
|
|
|
local length="${#shim}"
|
|
|
|
local char i
|
|
|
|
|
|
|
|
for ((i=0; i<length; i++)); do
|
|
|
|
char="${shim:$i:1}"
|
|
|
|
if [[ "$char" =~ [[:alnum:]] ]]; then
|
2012-04-23 10:11:19 -04:00
|
|
|
result="$result$char"
|
2011-12-24 15:16:37 -05:00
|
|
|
else
|
2012-04-23 10:11:19 -04:00
|
|
|
result="$result$(printf "_%02x" \'"$char")"
|
2011-12-24 15:16:37 -05:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "$result"
|
|
|
|
}
|
|
|
|
|
|
|
|
# To install all the registered shims, we iterate over the
|
|
|
|
# `registered_shims` array and create a link if one does not already
|
|
|
|
# exist.
|
|
|
|
install_registered_shims() {
|
|
|
|
for shim in "${registered_shims[@]}"; do
|
2011-08-15 02:16:13 -04:00
|
|
|
[ -e "$shim" ] || ln -f "$PROTOTYPE_SHIM_PATH" "$shim"
|
2011-08-03 13:17:28 -04:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2011-12-24 15:16:37 -05:00
|
|
|
# Once the registered shims have been installed, we make a second pass
|
|
|
|
# over the contents of the shims directory. Any file that is present
|
|
|
|
# in the directory but has not been registered as a shim should be
|
|
|
|
# removed.
|
|
|
|
remove_stale_shims() {
|
|
|
|
local var
|
|
|
|
for shim in *; do
|
|
|
|
var="$(shim_variable_name "$shim")"
|
2011-12-26 21:12:16 -05:00
|
|
|
if [ -z "${!var}" ]; then
|
|
|
|
rm -f "$shim"
|
|
|
|
fi
|
2011-12-24 15:16:37 -05:00
|
|
|
done
|
|
|
|
}
|
2011-09-19 10:45:12 -04:00
|
|
|
|
2011-12-24 15:16:37 -05:00
|
|
|
|
2011-12-24 18:03:10 -05:00
|
|
|
# Change to the shims directory.
|
2011-08-15 02:16:13 -04:00
|
|
|
cd "$SHIM_PATH"
|
2011-08-03 13:17:28 -04:00
|
|
|
|
2011-12-24 15:16:37 -05:00
|
|
|
# Create the prototype shim, then register shims for all known binaries.
|
2011-08-03 23:57:27 -04:00
|
|
|
create_prototype_shim
|
2011-08-17 18:53:37 -04:00
|
|
|
shopt -s nullglob
|
2011-08-03 13:17:28 -04:00
|
|
|
make_shims ../versions/*/bin/*
|
|
|
|
|
2011-09-19 10:45:12 -04:00
|
|
|
# Restore the previous working directory.
|
2011-11-14 16:07:41 -05:00
|
|
|
cd "$OLDPWD"
|
2011-09-19 10:45:12 -04:00
|
|
|
|
2011-12-24 15:16:37 -05:00
|
|
|
# Allow plugins to register shims.
|
2011-09-23 11:43:06 -04:00
|
|
|
for script in $(rbenv-hooks rehash); do
|
2011-09-21 14:05:08 -04:00
|
|
|
source "$script"
|
2011-08-01 16:50:26 -04:00
|
|
|
done
|
2011-12-24 15:16:37 -05:00
|
|
|
|
|
|
|
# Change back to the shims directory to install the registered shims
|
|
|
|
# and remove stale shims.
|
|
|
|
cd "$SHIM_PATH"
|
|
|
|
install_registered_shims
|
|
|
|
remove_stale_shims
|