forked from typetools/annotation-tools
-
Notifications
You must be signed in to change notification settings - Fork 2
/
insert-annotations-to-source
executable file
·68 lines (61 loc) · 2.6 KB
/
insert-annotations-to-source
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
#!/bin/sh
# Insert annotations (from an annotation file) into a Java source file.
# For usage information, run: insert-annotations-to-source --help
# See the Annotation File Utilities documentation for more information.
# A few options are consumed by this script rather than being passed to the
# underlying Java program. They must be the first command-line arguments
# provided.
DEBUG=0
CLASSPATH=${CLASSPATH:-}
while [ "$#" -gt 0 ]; do
case "$1" in
--debug-script)
# Debug this script
DEBUG=1
shift
;;
-cp|-classpath)
# Set the classpath
CLASSPATH=$2
shift 2
;;
*)
break
;;
esac
done
AFUSCRIPTS=$(dirname "$0")
AFU=$(cd "$AFUSCRIPTS/.." >/dev/null 2>&1 && pwd)
ANNOTATION_FILE_UTILS=${ANNOTATION_FILE_UTILS:-${AFU}/annotation-file-utilities-all.jar}
JAVAC_JAR=${JAVAC_JAR:-${AFU}/lib/javac-9+181-r4173-1.jar}
if java -version 2>&1 | grep version | grep 1.8 > /dev/null ; then
# Using JDK 8.
BOOTCLASSPATH=-Xbootclasspath/p:${JAVAC_JAR}
JDK_OPENS=
else
# Using JDK 9 or later. -Xbootclasspth isn't supported in 9+ and isn't required.
BOOTCLASSPATH=
# Need open to access CommandLine.parse dynamically to check its type:
JDK_OPENS="--add-opens jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED --add-opens jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED --add-opens jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED --add-opens jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED --add-opens jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED --add-opens jdk.internal.opt/jdk.internal.opt=ALL-UNNAMED"
fi
if [ "$DEBUG" = "1" ]; then
echo "--- start of insert-annotations-to-source debugging output"
echo "AFU=${AFU}"
echo "ANNOTATION_FILE_UTILS=${ANNOTATION_FILE_UTILS}"
echo "JAVAC_JAR=${JAVAC_JAR}"
# Keep this in sync with the actual command below.
# shellcheck disable=SC2181 disable=SC2086
echo java -ea -Xmx4g ${BOOTCLASSPATH} ${JDK_OPENS} -classpath "${JAVAC_JAR}:${ANNOTATION_FILE_UTILS}:${CLASSPATH}" org.checkerframework.afu.annotator.Main "$@"
echo "--- end of insert-annotations-to-source debugging output"
# echo "--- start of input files"
# for file in "$@"; do
# if [ -f "$file" ] ; then
# echo "$file"
# cat "$file"
# fi
# done
# echo "--- end of input files"
fi
# Augment, don't replace, CLASSPATH, so as to find user files.
# shellcheck disable=SC2181 disable=SC2086 # ${BOOTCLASSPATH} and ${JDK_OPENS} might be empty and must not be quoted.
java -ea -Xmx4g ${BOOTCLASSPATH} ${JDK_OPENS} -classpath "${JAVAC_JAR}:${ANNOTATION_FILE_UTILS}:${CLASSPATH}" org.checkerframework.afu.annotator.Main "$@"