forked from zio/zio-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
installer.sh
125 lines (105 loc) · 3.56 KB
/
installer.sh
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#!/usr/bin/env sh
# This is the zio-cli launcher template. Distribute this file in a Git
# repository to make it easier for users to run your zio-cli app. You will need
# to replace `APP_NAME`, `VERSION` and `DOWNLOAD_URL`. downloadUrl is expected
# to be standalone jar file.
# Application will be compiled via GraalVM native-image, if `native-image` is
# detected on target system, user can set environment variable
# ENSURE_NATIVE_IMAGE to download GraalVM and native-image. GraalVM version is
# also configurable through environment variables `GRAALVM_VERSION` and
# `GRAALVM_JAVA_VERSION` Otherwise script will fallback to running JAR file
# directly.
set -e
appName="APP_NAME"
version="VERSION"
downloadUrl="DOWNLOAD_URL"
shouldEnsureNativeImage="${ENSURE_NATIVE_IMAGE}"
graalvmVersion="${GRAALVM_VERSION:-20.3.0}"
javaVersion="${GRAALVM_JAVA_VERSION:-java8}"
xdgUsrHome="${XDG_DATA_HOME:-"$HOME/.local/share"}"
xdgSysHome="${XDG_DATA_HOME:-/usr/share}"
xdgHome="$([ "$EUID" = "0" ] && echo "${xdgSysHome}" || echo "${xdgUsrHome}")"
appDir="${xdgHome}/${appName}"
versionedBin="${appDir}/bin/${appName}_${version}" # native executable
versionedJar="${versionedBin}.jar" # downloaded JAR
graalvmDir="${xdgHome}/graalvm-ce-${javaVersion}-${graalvmVersion}"
mkdir -p "${appDir}/bin"
installGraalVm() {
if ! [ -d "${graalvmDir}" ]; then
case "$(uname -s)" in
Darwin*) os="mac" ;;
Linux*) os="linux" ;;
CYGWIN*) os="windows" ;;
MINGW*) os="windows" ;;
MSYS*) os="windows" ;;
*) fail os ;;
esac
command -v curl >/dev/null || fail curl
printf "Downloading GraalVM\n"
file="graalvm-ce-${javaVersion}-${os}-amd64-${graalvmVersion}.tar.gz"
url="github.com/graalvm/graalvm-ce-builds/releases/download/vm-${graalvmVersion}/${file}"
downloadFile="/tmp/${file}"
[ -f "${downloadFile}" ] || curl -Lo "${downloadFile}" "$url"
tar xzf "${downloadFile}" -C "${xdgHome}"
success graalvm
fi
}
installNativeImage() {
gu install native-image
success graalvm-native-image
}
ensureAppJar() {
if ! [ -f "${versionedBin}" ] && ! [ -f "${versionedJar}" ]; then
echo "Downloading ${appName}, saving to ${versionedJar}"
curl -Lso "${versionedJar}" "$downloadUrl"
success jar
fi
}
ensureCli() {
ensureAppJar
if ! [ -f "${versionedBin}" ]; then
if [ -n "${shouldEnsureNativeImage}" ] && ! command -v native-image >/dev/null; then
PATH="${PATH}:${graalvmDir}/bin"
installGraalVm && installNativeImage
fi
if command -v native-image >/dev/null; then
buildNativeImage
fi
fi
}
buildNativeImage() {
PATH="${PATH}:${graalvmDir}/bin"
export GRAALVM_HOME="${graalvmDir}"
cd "${appDir}/bin"
native-image -jar "$(basename "${versionedJar}")" "$(basename "${versionedBin}")"
cd -
success native-image
}
fail() {
printf "fail\n\033[1m\033[41m FAIL \033[0m \033[1m"
case "$1" in
curl) printf "Could not find \033[0;36mcurl\033[0m, which is required by the install script." ;;
os) printf "Could not identify the operating system type" ;;
general) printf "Couldn't find %s nor %s." "${versionedJar}" "${versionedBin}" ;;
esac
printf "\033[0m\n"
exit 1
}
success() {
printf "success\n\033[1m\033[42m SUCCESS \033[0m \033[1m"
case "$1" in
graalvm) printf "GraalVM successfully installed!" ;;
graalvm-native-image) printf "GraalVM native-image successfully installed!" ;;
native-image) printf "Built native image for %s." "${appName}" ;;
jar) printf "Downloaded %s" "${appName}" ;;
esac
printf "\033[0m\n"
}
ensureCli
if [ -f "${versionedBin}" ]; then
"${versionedBin}" "${@}"
elif [ -f "${versionedJar}" ]; then
java -jar "${versionedJar}" "${@}"
else
fail general
fi