forked from DoBetterAsCode/DoBetterAsCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
batect
executable file
·106 lines (82 loc) · 3.21 KB
/
batect
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
#!/usr/bin/env bash
{
set -euo pipefail
# This file is part of batect.
# Do not modify this file, it will be overwritten next time you upgrade batect.
# You should commit this file to version control alongside the rest of your project. It should not be installed globally.
# For more information, visit https://github.com/charleskorn/batect.
VERSION="0.31.0"
DOWNLOAD_URL=${BATECT_DOWNLOAD_URL:-"https://github.com/charleskorn/batect/releases/download/0.31.0/batect-0.31.0.jar"}
ROOT_CACHE_DIR=${BATECT_CACHE_DIR:-"$HOME/.batect/cache"}
CACHE_DIR="$ROOT_CACHE_DIR/$VERSION"
JAR_PATH="$CACHE_DIR/batect-$VERSION.jar"
SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/$(basename "${BASH_SOURCE[0]}")"
function main() {
if ! haveVersionCachedLocally; then
download
fi
runApplication "$@"
}
function haveVersionCachedLocally() {
[ -f "$JAR_PATH" ]
}
function download() {
checkForCurl
echo "Downloading batect version $VERSION from $DOWNLOAD_URL..."
mkdir -p "$CACHE_DIR"
temp_file=$(mktemp)
curl -# --fail --show-error --location --output "$temp_file" "$DOWNLOAD_URL"
mv "$temp_file" "$JAR_PATH"
}
function runApplication() {
checkForJava
java_version=$(getJavaVersion)
java_version_major=$(extractJavaMajorVersion "$java_version")
if (( java_version_major >= 9 )); then
JAVA_OPTS="--add-opens java.base/sun.nio.ch=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED"
else
JAVA_OPTS=""
fi
BATECT_WRAPPER_SCRIPT_PATH="$SCRIPT_PATH" \
HOSTNAME="$HOSTNAME" \
java \
-Djava.net.useSystemProxies=true \
$JAVA_OPTS \
-jar "$JAR_PATH" \
"$@"
}
function checkForCurl() {
if ! hash curl 2>/dev/null; then
echo "curl is not installed or not on your PATH. Please install it and try again." >&2
exit -1
fi
}
function checkForJava() {
if ! hash java 2>/dev/null; then
echo "Java is not installed or not on your PATH. Please install it and try again." >&2
exit -1
fi
java_version=$(getJavaVersion)
java_version_major=$(extractJavaMajorVersion "$java_version")
java_version_minor=$(extractJavaMinorVersion "$java_version")
if (( java_version_major < 1 || ( java_version_major == 1 && java_version_minor <= 7 ) )); then
echo "The version of Java that is available on your PATH is version $java_version, but version 1.8 or greater is required."
echo "If you have a newer version of Java installed, please make sure your PATH is set correctly."
exit -1
fi
}
function getJavaVersion() {
java -version 2>&1 | head -n1 | sed -En ';s/.* version "([0-9]+)(\.([0-9]+))?.*".*/\1.\3/p;'
}
function extractJavaMajorVersion() {
java_version=$1
echo "${java_version%.*}"
}
function extractJavaMinorVersion() {
java_version=$1
java_version_minor="${java_version#*.}"
echo "${java_version_minor:-0}"
}
main "$@"
exit $?
}