asdf/lib/utils.sh

704 lines
18 KiB
Bash
Raw Normal View History

# We shouldn't rely on the user's grep settings to be correct. If we set these
# here anytime asdf invokes grep it will be invoked with these options
2017-09-03 09:11:20 -07:00
# shellcheck disable=SC2034
GREP_OPTIONS="--color=never"
# shellcheck disable=SC2034
GREP_COLORS=
ASDF_DIR=${ASDF_DIR:-''}
2014-11-29 09:28:11 -07:00
asdf_version() {
cat "$(asdf_dir)/VERSION"
2014-11-29 09:28:11 -07:00
}
asdf_dir() {
if [ -z "$ASDF_DIR" ]; then
2015-05-17 02:09:18 -07:00
local current_script_path=${BASH_SOURCE[0]}
2017-09-03 09:11:20 -07:00
export ASDF_DIR
ASDF_DIR=$(cd "$(dirname "$(dirname "$current_script_path")")" || exit; pwd)
fi
2017-09-03 09:11:20 -07:00
echo "$ASDF_DIR"
2014-11-29 09:28:11 -07:00
}
asdf_repository_url() {
echo "https://github.com/asdf-vm/asdf-plugins.git"
}
asdf_data_dir(){
local data_dir
2018-12-20 15:25:30 -07:00
if [ -n "${ASDF_DATA_DIR}" ]; then
data_dir="${ASDF_DATA_DIR}"
else
data_dir="$HOME/.asdf"
fi
echo "$data_dir"
}
2014-12-13 09:26:56 -07:00
get_install_path() {
2015-05-29 09:24:31 -07:00
local plugin=$1
2014-12-13 09:26:56 -07:00
local install_type=$2
local version=$3
local install_dir
install_dir="$(asdf_data_dir)/installs"
mkdir -p "${install_dir}/${plugin}"
2014-12-13 09:26:56 -07:00
if [ "$install_type" = "version" ]
2014-12-14 01:13:43 -07:00
then
echo "${install_dir}/${plugin}/${version}"
2014-12-14 01:13:43 -07:00
else
echo "${install_dir}/${plugin}/${install_type}-${version}"
2014-12-14 01:13:43 -07:00
fi
2014-12-13 09:26:56 -07:00
}
list_installed_versions() {
local plugin_name=$1
2017-09-03 09:11:20 -07:00
local plugin_path
plugin_path=$(get_plugin_path "$plugin_name")
2017-09-03 09:11:20 -07:00
local plugin_installs_path
plugin_installs_path="$(asdf_data_dir)/installs/${plugin_name}"
2017-09-03 09:11:20 -07:00
if [ -d "$plugin_installs_path" ]; then
# shellcheck disable=SC2045
2017-09-03 09:11:20 -07:00
for install in $(ls -d "${plugin_installs_path}"/*/ 2>/dev/null); do
basename "$install" | sed 's/^ref-/ref:/'
done
fi
}
2015-05-17 11:20:51 -07:00
check_if_plugin_exists() {
local plugin_name=$1
# Check if we have a non-empty argument
2017-09-04 10:04:56 -07:00
if [ -z "${1}" ]; then
2016-07-05 23:32:57 -07:00
display_error "No plugin given"
exit 1
fi
if [ ! -d "$(asdf_data_dir)/plugins/$plugin_name" ]; then
display_error "No such plugin: $plugin_name"
2014-11-29 09:28:11 -07:00
exit 1
fi
}
check_if_version_exists() {
2016-07-05 23:32:57 -07:00
local plugin_name=$1
local version=$2
2017-09-03 09:11:20 -07:00
check_if_plugin_exists "$plugin_name"
2016-07-05 23:32:57 -07:00
2017-09-03 09:11:20 -07:00
local install_path
install_path=$(find_install_path "$plugin_name" "$version")
2017-09-03 09:11:20 -07:00
if [ "$version" != "system" ] && [ ! -d "$install_path" ]; then
2016-07-05 23:32:57 -07:00
display_error "version $version is not installed for $plugin_name"
exit 1
fi
}
2015-05-17 11:20:51 -07:00
get_plugin_path() {
echo "$(asdf_data_dir)/plugins/$1"
2014-11-29 09:28:11 -07:00
}
display_error() {
2017-09-03 09:11:20 -07:00
echo >&2 "$1"
2014-11-29 09:28:11 -07:00
}
2015-05-14 03:13:04 -07:00
get_version_in_dir() {
local plugin_name=$1
local search_path=$2
local legacy_filenames=$3
2017-09-03 09:11:20 -07:00
local asdf_version
asdf_version=$(parse_asdf_version_file "$search_path/.tool-versions" "$plugin_name")
if [ -n "$asdf_version" ]; then
echo "$asdf_version|$search_path/.tool-versions"
return 0
fi
for filename in $legacy_filenames; do
2017-09-03 09:11:20 -07:00
local legacy_version
legacy_version=$(parse_legacy_version_file "$search_path/$filename" "$plugin_name")
if [ -n "$legacy_version" ]; then
echo "$legacy_version|$search_path/$filename"
return 0
fi
done
}
find_version() {
local plugin_name=$1
local search_path=$2
2017-09-03 09:11:20 -07:00
local version
version=$(get_version_from_env "$plugin_name")
if [ -n "$version" ]; then
local upcase_name
upcase_name=$(echo "$plugin_name" | tr '[:lower:]-' '[:upper:]_')
local version_env_var="ASDF_${upcase_name}_VERSION"
echo "$version|$version_env_var environment variable"
return 0
fi
2017-09-03 09:11:20 -07:00
local plugin_path
plugin_path=$(get_plugin_path "$plugin_name")
local legacy_config
legacy_config=$(get_asdf_config_value "legacy_version_file")
local legacy_list_filenames_script
legacy_list_filenames_script="${plugin_path}/bin/list-legacy-filenames"
local legacy_filenames=""
2017-09-03 09:11:20 -07:00
if [ "$legacy_config" = "yes" ] && [ -f "$legacy_list_filenames_script" ]; then
legacy_filenames=$(bash "$legacy_list_filenames_script")
fi
while [ "$search_path" != "/" ]; do
version=$(get_version_in_dir "$plugin_name" "$search_path" "$legacy_filenames")
if [ -n "$version" ]; then
echo "$version"
return 0
fi
2015-12-22 17:00:18 -07:00
search_path=$(dirname "$search_path")
done
get_version_in_dir "$plugin_name" "$HOME" "$legacy_filenames"
if [ -f "$ASDF_DEFAULT_TOOL_VERSIONS_FILENAME" ]; then
version=$(parse_asdf_version_file "$ASDF_DEFAULT_TOOL_VERSIONS_FILENAME" "$plugin_name")
if [ -n "$version" ]; then
echo "$version|$ASDF_DEFAULT_TOOL_VERSIONS_FILENAME"
return 0
fi
fi
2015-05-14 03:13:04 -07:00
}
display_no_version_set() {
local plugin_name=$1
echo "No version set for ${plugin_name}; please run \`asdf <global | local> ${plugin_name} <version>\`"
}
get_version_from_env () {
local plugin_name=$1
2017-09-03 09:11:20 -07:00
local upcase_name
upcase_name=$(echo "$plugin_name" | tr '[:lower:]-' '[:upper:]_')
local version_env_var="ASDF_${upcase_name}_VERSION"
local version=${!version_env_var}
echo "$version"
}
2016-07-01 02:25:34 -07:00
find_install_path() {
local plugin_name=$1
local version=$2
2017-09-03 09:11:20 -07:00
# shellcheck disable=SC2162
2016-07-01 02:25:34 -07:00
IFS=':' read -a version_info <<< "$version"
if [ "$version" = "system" ]; then
2016-07-01 02:25:34 -07:00
echo ""
elif [ "${version_info[0]}" = "ref" ]; then
local install_type="${version_info[0]}"
local version="${version_info[1]}"
2017-09-03 09:11:20 -07:00
get_install_path "$plugin_name" "$install_type" "$version"
2016-07-01 02:25:34 -07:00
elif [ "${version_info[0]}" = "path" ]; then
# This is for people who have the local source already compiled
# Like those who work on the language, etc
# We'll allow specifying path:/foo/bar/project in .tool-versions
# And then use the binaries there
local install_type="path"
local version="path"
echo "${version_info[1]}"
else
local install_type="version"
local version="${version_info[0]}"
2017-09-03 09:11:20 -07:00
get_install_path "$plugin_name" "$install_type" "$version"
2016-07-01 02:25:34 -07:00
fi
}
get_custom_executable_path() {
local plugin_path=$1
local install_path=$2
local executable_path=$3
# custom plugin hook for executable path
if [ -x "${plugin_path}/bin/exec-path" ]; then
cmd=$(basename "$executable_path")
local relative_path
# shellcheck disable=SC2001
relative_path=$(echo "$executable_path" | sed -e "s|${install_path}/||")
relative_path="$("${plugin_path}/bin/exec-path" "$install_path" "$cmd" "$relative_path")"
executable_path="$install_path/$relative_path"
fi
2019-01-05 09:10:59 -07:00
echo "$executable_path"
}
2016-07-01 02:25:34 -07:00
get_executable_path() {
local plugin_name=$1
local version=$2
local executable_path=$3
2017-09-03 09:11:20 -07:00
check_if_version_exists "$plugin_name" "$version"
2016-07-05 23:32:57 -07:00
if [ "$version" = "system" ]; then
path=$(echo "$PATH" | sed -e "s|$(asdf_data_dir)/shims||g; s|::|:|g")
2017-09-03 09:11:20 -07:00
cmd=$(basename "$executable_path")
2018-06-16 12:04:38 -07:00
cmd_path=$(PATH=$path command -v "$cmd" 2>&1)
# shellcheck disable=SC2181
2016-07-01 02:25:34 -07:00
if [ $? -ne 0 ]; then
return 1
fi
2017-09-03 09:11:20 -07:00
echo "$cmd_path"
2016-07-01 02:25:34 -07:00
else
2017-09-03 09:11:20 -07:00
local install_path
install_path=$(find_install_path "$plugin_name" "$version")
2017-09-03 09:11:20 -07:00
echo "${install_path}"/"${executable_path}"
2016-07-01 02:25:34 -07:00
fi
}
parse_asdf_version_file() {
local file_path=$1
local plugin_name=$2
2015-05-14 03:13:04 -07:00
2016-10-27 00:24:34 -07:00
if [ -f "$file_path" ]; then
2017-09-03 09:11:20 -07:00
local version
version=$(grep "^${plugin_name} " "$file_path" | sed -e "s/^${plugin_name} //")
if [ -n "$version" ]; then
2017-09-03 09:11:20 -07:00
echo "$version"
return 0
fi
fi
}
parse_legacy_version_file() {
local file_path=$1
local plugin_name=$2
2017-09-03 09:11:20 -07:00
local plugin_path
plugin_path=$(get_plugin_path "$plugin_name")
local parse_legacy_script
parse_legacy_script="${plugin_path}/bin/parse-legacy-file"
2015-05-14 03:13:04 -07:00
if [ -f "$file_path" ]; then
2017-09-03 09:11:20 -07:00
if [ -f "$parse_legacy_script" ]; then
bash "$parse_legacy_script" "$file_path"
else
2017-09-03 09:11:20 -07:00
cat "$file_path"
fi
fi
}
2016-04-24 16:18:12 -07:00
get_preset_version_for() {
local plugin_name=$1
2017-09-03 09:11:20 -07:00
local search_path
search_path=$(pwd)
2017-09-03 09:11:20 -07:00
local version_and_path
version_and_path=$(find_version "$plugin_name" "$search_path")
local version
version=$(cut -d '|' -f 1 <<< "$version_and_path");
echo "$version"
}
2016-04-24 16:18:12 -07:00
2016-04-24 06:20:05 -07:00
get_asdf_config_value_from_file() {
2016-07-05 23:32:57 -07:00
local config_path=$1
local key=$2
2016-04-24 06:20:05 -07:00
2017-09-03 09:11:20 -07:00
if [ ! -f "$config_path" ]; then
return 1
2016-07-05 23:32:57 -07:00
fi
2016-04-24 06:20:05 -07:00
2017-09-03 09:11:20 -07:00
local result
result=$(grep -E "^\\s*$key\\s*=\\s*" "$config_path" | head | awk -F '=' '{print $2}' | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
2016-07-05 23:32:57 -07:00
if [ -n "$result" ]; then
2017-09-03 09:11:20 -07:00
echo "$result"
return 0
2016-07-05 23:32:57 -07:00
fi
return 2
2016-04-24 06:20:05 -07:00
}
get_asdf_config_value() {
2016-07-05 23:32:57 -07:00
local key=$1
local config_path=${ASDF_CONFIG_FILE:-"$HOME/.asdfrc"}
local default_config_path=${ASDF_CONFIG_DEFAULT_FILE:-"$(asdf_dir)/defaults"}
2016-04-24 06:20:05 -07:00
local local_config_path
local_config_path="$(find_file_upwards ".asdfrc")"
2016-04-24 06:20:05 -07:00
get_asdf_config_value_from_file "$local_config_path" "$key" ||
get_asdf_config_value_from_file "$config_path" "$key" ||
2017-09-03 09:11:20 -07:00
get_asdf_config_value_from_file "$default_config_path" "$key"
2016-04-24 06:20:05 -07:00
}
2017-08-24 19:29:23 -07:00
repository_needs_update() {
2017-09-04 07:12:45 -07:00
local update_file_dir
update_file_dir="$(asdf_data_dir)/tmp"
2017-09-04 07:12:45 -07:00
local update_file_name
update_file_name="repo-updated"
2017-08-24 19:29:23 -07:00
# `find` outputs filename if it has not been modified in the last day
2017-09-04 07:12:45 -07:00
local find_result
find_result=$(find "$update_file_dir" -name "$update_file_name" -type f -mtime +1 -print)
2017-08-24 19:29:23 -07:00
[ -n "$find_result" ]
}
initialize_or_update_repository() {
local repository_url
local repository_path
repository_url=$(asdf_repository_url)
repository_path=$(asdf_data_dir)/repository
2017-08-24 19:29:23 -07:00
if [ ! -d "$repository_path" ]; then
echo "initializing plugin repository..."
git clone "$repository_url" "$repository_path"
2017-08-24 19:29:23 -07:00
elif repository_needs_update; then
echo "updating plugin repository..."
(cd "$repository_path" && git fetch && git reset --hard origin/master)
fi
2017-08-24 19:29:23 -07:00
mkdir -p "$(asdf_data_dir)/tmp"
touch "$(asdf_data_dir)/tmp/repo-updated"
}
get_plugin_source_url() {
local plugin_name=$1
local plugin_config
plugin_config="$(asdf_data_dir)/repository/plugins/$plugin_name"
if [ -f "$plugin_config" ]; then
grep "repository" "$plugin_config" | awk -F'=' '{print $2}' | sed 's/ //'
fi
}
find_tool_versions() {
find_file_upwards ".tool-versions"
}
find_file_upwards() {
local name="$1"
local search_path
search_path=$(pwd)
while [ "$search_path" != "/" ]; do
if [ -f "$search_path/$name" ]; then
echo "${search_path}/$name"
return 0
fi
search_path=$(dirname "$search_path")
done
}
resolve_symlink() {
local symlink
symlink="$1"
# This seems to be the only cross-platform way to resolve symlink paths to
# the real file path.
# shellcheck disable=SC2012
resolved_path=$(ls -l "$symlink" | sed -e 's|.*-> \(.*\)|\1|')
# Check if resolved path is relative or not by looking at the first character.
# If it is a slash we can assume it's root and absolute. Otherwise we treat it
# as relative
2018-10-07 18:33:45 -07:00
case $resolved_path in
/*)
echo "$resolved_path"
;;
*)
echo "$PWD/$resolved_path"
;;
esac
}
list_plugin_bin_paths() {
local plugin_name=$1
local version=$2
local install_type=$3
local plugin_path
plugin_path=$(get_plugin_path "$plugin_name")
local install_path
install_path=$(get_install_path "$plugin_name" "$install_type" "$version")
if [ -f "${plugin_path}/bin/list-bin-paths" ]; then
local space_separated_list_of_bin_paths
# shellcheck disable=SC2030
space_separated_list_of_bin_paths=$(
export ASDF_INSTALL_TYPE=$install_type
export ASDF_INSTALL_VERSION=$version
export ASDF_INSTALL_PATH=$install_path
bash "${plugin_path}/bin/list-bin-paths"
)
else
local space_separated_list_of_bin_paths="bin"
fi
echo "$space_separated_list_of_bin_paths"
}
list_plugin_exec_paths() {
local plugin_name=$1
local full_version=$2
check_if_plugin_exists "$plugin_name"
IFS=':' read -r -a version_info <<< "$full_version"
if [ "${version_info[0]}" = "ref" ]; then
local install_type="${version_info[0]}"
local version="${version_info[1]}"
else
local install_type="version"
local version="${version_info[0]}"
fi
local plugin_shims_path
plugin_shims_path=$(get_plugin_path "$plugin_name")/shims
if [ -d "$plugin_shims_path" ]; then
echo "$plugin_shims_path"
fi
space_separated_list_of_bin_paths="$(list_plugin_bin_paths "$plugin_name" "$version" "$install_type")"
IFS=' ' read -r -a all_bin_paths <<< "$space_separated_list_of_bin_paths"
local install_path
install_path=$(get_install_path "$plugin_name" "$install_type" "$version")
for bin_path in "${all_bin_paths[@]}"; do
echo "$install_path/$bin_path"
done
}
with_plugin_env() {
local plugin_name=$1
local full_version=$2
local callback=$3
IFS=':' read -r -a version_info <<< "$full_version"
if [ "${version_info[0]}" = "ref" ]; then
local install_type="${version_info[0]}"
local version="${version_info[1]}"
else
local install_type="version"
local version="${version_info[0]}"
fi
# create a new subshell to keep env
(
if [ "$version" = "system" ]; then
# execute as is for system
"$callback"
exit $?
fi
local plugin_path
plugin_path=$(get_plugin_path "$plugin_name")
# add the plugin listed exec paths to PATH
2019-01-23 21:27:31 -07:00
local path
path="$(list_plugin_exec_paths "$plugin_name" "$full_version" | tr '\n' ':'):$PATH"
# If no custom exec-env transform, just execute callback
if [ ! -f "${plugin_path}/bin/exec-env" ]; then
2019-01-23 21:27:31 -07:00
PATH=$path "$callback"
exit $?
fi
# Load the plugin custom environment
local install_path
install_path=$(find_install_path "$plugin_name" "$full_version")
ASDF_INSTALL_TYPE=$install_type
ASDF_INSTALL_VERSION=$version
ASDF_INSTALL_PATH=$install_path
export ASDF_INSTALL_TYPE
export ASDF_INSTALL_VERSION
export ASDF_INSTALL_PATH
# shellcheck source=/dev/null
source "${plugin_path}/bin/exec-env"
unset ASDF_INSTALL_TYPE
unset ASDF_INSTALL_VERSION
unset ASDF_INSTALL_PATH
2019-01-23 21:27:31 -07:00
PATH=$path "$callback"
exit $?
)
}
plugin_executables() {
local plugin_name=$1
local full_version=$2
for bin_path in $(list_plugin_exec_paths "$plugin_name" "$full_version"); do
for executable_file in "$bin_path"/*; do
if is_executable "$executable_file"; then
echo "$executable_file"
fi
done
done
}
is_executable() {
local executable_path=$1
if [[ (-f "$executable_path") && (-x "$executable_path") ]]; then
return 0
fi
return 1
}
plugin_shims() {
local plugin_name=$1
local full_version=$2
grep -l "# asdf-plugin: $plugin_name $full_version" "$(asdf_data_dir)/shims"/* 2>/dev/null
}
shim_plugin_versions() {
local executable_name
executable_name=$(basename "$1")
local shim_path
shim_path="$(asdf_data_dir)/shims/${executable_name}"
if [ -x "$shim_path" ]; then
2019-03-23 14:21:55 -07:00
grep "# asdf-plugin: " "$shim_path" 2>/dev/null | sed -e "s/# asdf-plugin: //" | uniq
else
echo "asdf: unknown shim $executable_name"
return 1
fi
}
asdf_run_hook() {
local hook_name=$1
local hook_cmd
hook_cmd="$(get_asdf_config_value "$hook_name")"
if [ -n "$hook_cmd" ]; then
asdf_hook_fun() {
unset asdf_hook_fun
ev'al' "$hook_cmd" # ignore banned command just here
}
asdf_hook_fun "${@:2}"
fi
}
with_shim_executable() {
get_shim_versions() {
shim_plugin_versions "${shim_name}"
shim_plugin_versions "${shim_name}" | cut -d' ' -f 1 | awk '{print$1" system"}'
}
preset_versions() {
shim_plugin_versions "${shim_name}" | cut -d' ' -f 1 | uniq | xargs -IPLUGIN bash -c "source $(asdf_dir)/lib/utils.sh; echo PLUGIN \$(get_preset_version_for PLUGIN)"
}
select_from_preset_version() {
grep -f <(get_shim_versions) <(preset_versions) | head -n 1 | xargs echo
}
select_version() {
# First, we get the all the plugins where the
# current shim is available.
# Then, we iterate on all versions set for each plugin
# Note that multiple plugin versions can be set for a single plugin.
# These are separated by a space. e.g. python 3.7.2 2.7.15
# For each plugin/version pair, we check if it is present in the shim
local search_path
search_path=$(pwd)
local shim_versions
IFS=$'\n' read -rd '' -a shim_versions <<< "$(get_shim_versions)"
local plugins
plugins=()
for plugin_and_version in "${shim_versions[@]}"; do
local plugin_name
local plugin_shim_version
IFS=' ' read -r plugin_name _plugin_shim_version <<< "$plugin_and_version"
if ! [[ " ${plugins[*]} " == *" $plugin_name "* ]]; then
plugins+=("$plugin_name")
fi
done
for plugin_name in "${plugins[@]}"; do
local version_and_path
local version_string
local usable_plugin_versions
local _path
version_and_path=$(find_version "$plugin_name" "$search_path")
IFS='|' read -r version_string _path <<< "$version_and_path"
IFS=' ' read -r -a usable_plugin_versions <<< "$version_string"
for plugin_version in "${usable_plugin_versions[@]}"; do
for plugin_and_version in "${shim_versions[@]}"; do
local plugin_shim_name
local plugin_shim_version
IFS=' ' read -r plugin_shim_name plugin_shim_version <<< "$plugin_and_version"
if [[ "$plugin_name" = "$plugin_shim_name" ]] &&
[[ "$plugin_version" = "$plugin_shim_version" ]]; then
echo "$plugin_name $plugin_version"
return
fi
done
done
done
}
local shim_name
shim_name=$(basename "$1")
local shim_exec="${2}"
if [ ! -f "$(asdf_data_dir)/shims/${shim_name}" ]; then
echo "unknown command: ${shim_name}. Perhaps you have to reshim?" >&2
return 1
fi
local selected_version
selected_version="$(select_version)"
if [ -z "$selected_version" ]; then
selected_version=$(select_from_preset_version)
fi
if [ -n "$selected_version" ]; then
local plugin_name
local full_version
local plugin_path
IFS=' ' read -r plugin_name full_version <<< "$selected_version"
plugin_path=$(get_plugin_path "$plugin_name")
run_within_env() {
local path=$PATH
if [ "system" == "$full_version" ]; then
path=$(echo "$PATH" | sed -e "s|$(asdf_data_dir)/shims||g; s|::|:|g")
fi
executable_path=$(PATH=$path command -v "$shim_name")
if [ -x "${plugin_path}/bin/exec-path" ]; then
install_path=$(find_install_path "$plugin_name" "$full_version")
executable_path=$(get_custom_executable_path "${plugin_path}" "${install_path}" "${executable_path:${shim_name}}")
fi
"$shim_exec" "$plugin_name" "$full_version" "$executable_path"
}
with_plugin_env "$plugin_name" "$full_version" run_within_env
return $?
fi
(
echo "asdf: No version set for command ${shim_name}"
echo "you might want to add one of the following in your .tool-versions file:"
echo ""
shim_plugin_versions "${shim_name}"
) >&2
return 126
}