author | wenzelm |
Mon, 12 Aug 2013 17:17:49 +0200 | |
changeset 52981 | c7afd884dfb2 |
parent 52975 | 457c006f91bb |
child 53055 | 0fe8a9972eda |
permissions | -rwxr-xr-x |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
1 |
#!/usr/bin/env bash |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
2 |
# |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
3 |
# Author: Makarius |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
4 |
# |
42899 | 5 |
# build-jars - build Isabelle/Scala |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
6 |
# |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
7 |
# Requires proper Isabelle settings environment. |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
8 |
|
43320 | 9 |
## sources |
10 |
||
11 |
declare -a SOURCES=( |
|
43660 | 12 |
Concurrent/counter.scala |
43320 | 13 |
Concurrent/future.scala |
14 |
Concurrent/simple_thread.scala |
|
15 |
Concurrent/volatile.scala |
|
16 |
General/exn.scala |
|
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
48410
diff
changeset
|
17 |
General/file.scala |
46611 | 18 |
General/graph.scala |
51098 | 19 |
General/graphics_file.scala |
43320 | 20 |
General/linear_set.scala |
52975 | 21 |
General/multi_map.scala |
43600
4ac04bf9ff89
abstract algebra of file paths in Scala (cf. path.ML);
wenzelm
parents:
43523
diff
changeset
|
22 |
General/path.scala |
43320 | 23 |
General/position.scala |
24 |
General/pretty.scala |
|
43780 | 25 |
General/properties.scala |
43320 | 26 |
General/scan.scala |
27 |
General/sha1.scala |
|
28 |
General/symbol.scala |
|
45674 | 29 |
General/time.scala |
45666 | 30 |
General/timing.scala |
52671
9a360530eac8
separate module XZ_File to avoid initial dependency on org.tukaani.xz;
wenzelm
parents:
52667
diff
changeset
|
31 |
General/xz_file.scala |
43320 | 32 |
Isar/keyword.scala |
33 |
Isar/outer_syntax.scala |
|
34 |
Isar/parse.scala |
|
35 |
Isar/token.scala |
|
36 |
PIDE/command.scala |
|
37 |
PIDE/document.scala |
|
52530
99dd8b4ef3fe
explicit module Document_ID as source of globally unique identifiers across ML/Scala;
wenzelm
parents:
52444
diff
changeset
|
38 |
PIDE/document_id.scala |
52971
31926d2c04ee
tuned signature -- more abstract PIDE editor operations;
wenzelm
parents:
52671
diff
changeset
|
39 |
PIDE/editor.scala |
45670 | 40 |
PIDE/markup.scala |
43320 | 41 |
PIDE/markup_tree.scala |
45709
87017fcbad83
clarified modules (again) -- NB: both Document and Protocol are specific to this particular prover;
wenzelm
parents:
45674
diff
changeset
|
42 |
PIDE/protocol.scala |
52981 | 43 |
PIDE/query_operation.scala |
43320 | 44 |
PIDE/text.scala |
44698 | 45 |
PIDE/xml.scala |
46 |
PIDE/yxml.scala |
|
49294 | 47 |
System/color_value.scala |
48346
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48276
diff
changeset
|
48 |
System/command_line.scala |
52667 | 49 |
System/cygwin_init.scala |
43320 | 50 |
System/event_bus.scala |
51615
072a7249e1ac
separate module "GUI", to keep this out of the way of generic Isabelle_System operations, notably for non-Isabelle/jEdit applications;
wenzelm
parents:
51614
diff
changeset
|
51 |
System/gui.scala |
43320 | 52 |
System/gui_setup.scala |
49066 | 53 |
System/html5_panel.scala |
51250
ca13a14cc52e
support for POSIX interrupts (bypassed on Windows);
wenzelm
parents:
51098
diff
changeset
|
54 |
System/interrupt.scala |
43744
2c7e1565b4a3
some support to invoke Scala methods under program control;
wenzelm
parents:
43730
diff
changeset
|
55 |
System/invoke_scala.scala |
43517 | 56 |
System/isabelle_charset.scala |
51614
22d1dd43f089
separate module Isabelle_Font, to keep this out of the way of generic Isabelle_System operations, notably for non-Isabelle/jEdit applications;
wenzelm
parents:
51508
diff
changeset
|
57 |
System/isabelle_font.scala |
43320 | 58 |
System/isabelle_process.scala |
59 |
System/isabelle_system.scala |
|
49065 | 60 |
System/jfx_thread.scala |
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
48346
diff
changeset
|
61 |
System/options.scala |
43320 | 62 |
System/platform.scala |
63 |
System/session.scala |
|
64 |
System/swing_thread.scala |
|
45027
f459e93a038e
more abstract wrapping of fifos as System_Channel;
wenzelm
parents:
44698
diff
changeset
|
65 |
System/system_channel.scala |
50203 | 66 |
System/utf8.scala |
43320 | 67 |
Thy/completion.scala |
68 |
Thy/html.scala |
|
50707
5b2bf7611662
maintain session index on Scala side, for more determistic results;
wenzelm
parents:
50689
diff
changeset
|
69 |
Thy/present.scala |
43320 | 70 |
Thy/thy_header.scala |
43651
511df47bcadc
some support for theory files within Isabelle/Scala session;
wenzelm
parents:
43600
diff
changeset
|
71 |
Thy/thy_info.scala |
511df47bcadc
some support for theory files within Isabelle/Scala session;
wenzelm
parents:
43600
diff
changeset
|
72 |
Thy/thy_load.scala |
43320 | 73 |
Thy/thy_syntax.scala |
50686 | 74 |
Tools/build.scala |
75 |
Tools/build_dialog.scala |
|
52444
2cfe6656d6d6
slightly improved "isabelle doc" based on Isabelle/Scala;
wenzelm
parents:
52439
diff
changeset
|
76 |
Tools/doc.scala |
52439
4cf3f6153eb8
improved "isabelle keywords" and "isabelle update_keywords" based on Isabelle/Scala, without requiring to build sessions first;
wenzelm
parents:
52427
diff
changeset
|
77 |
Tools/keywords.scala |
50687 | 78 |
Tools/main.scala |
50981 | 79 |
Tools/ml_statistics.scala |
50980 | 80 |
Tools/task_statistics.scala |
43320 | 81 |
library.scala |
82 |
package.scala |
|
43730
a0ed7bc688b5
lambda terms with XML data representation in Scala;
wenzelm
parents:
43715
diff
changeset
|
83 |
term.scala |
43779 | 84 |
term_xml.scala |
43320 | 85 |
) |
86 |
||
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
87 |
|
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
88 |
## diagnostics |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
89 |
|
43280 | 90 |
PRG="$(basename "$0")" |
91 |
||
92 |
function usage() |
|
93 |
{ |
|
94 |
echo |
|
95 |
echo "Usage: isabelle $PRG [OPTIONS]" |
|
96 |
echo |
|
97 |
echo " Options are:" |
|
98 |
echo " -f fresh build" |
|
47408
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
99 |
echo " -t test separate compilation of PIDE" |
43280 | 100 |
echo |
101 |
exit 1 |
|
102 |
} |
|
103 |
||
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
104 |
function fail() |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
105 |
{ |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
106 |
echo "$1" >&2 |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
107 |
exit 2 |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
108 |
} |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
109 |
|
42899 | 110 |
[ -z "$ISABELLE_HOME" ] && fail "Missing Isabelle settings environment" |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
111 |
|
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
112 |
|
43280 | 113 |
## process command line |
114 |
||
115 |
# options |
|
116 |
||
117 |
FRESH="" |
|
47408
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
118 |
TEST_PIDE="" |
43280 | 119 |
|
47408
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
120 |
while getopts "ft" OPT |
43280 | 121 |
do |
122 |
case "$OPT" in |
|
123 |
f) |
|
124 |
FRESH=true |
|
125 |
;; |
|
47408
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
126 |
t) |
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
127 |
TEST_PIDE=true |
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
128 |
;; |
43280 | 129 |
\?) |
130 |
usage |
|
131 |
;; |
|
132 |
esac |
|
133 |
done |
|
134 |
||
135 |
shift $(($OPTIND - 1)) |
|
136 |
||
137 |
||
138 |
# args |
|
139 |
||
140 |
[ "$#" -ne 0 ] && usage |
|
141 |
||
142 |
||
50689 | 143 |
## dependencies |
144 |
||
145 |
declare -a JFREECHART_JARS=() |
|
146 |
for NAME in $JFREECHART_JAR_NAMES |
|
147 |
do |
|
148 |
JFREECHART_JARS["${#JFREECHART_JARS[@]}"]="$JFREECHART_HOME/lib/$NAME" |
|
149 |
done |
|
150 |
||
151 |
||
49558 | 152 |
## build |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
153 |
|
34284 | 154 |
TARGET_DIR="$ISABELLE_HOME/lib/classes" |
43523 | 155 |
TARGET="$TARGET_DIR/ext/Pure.jar" |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
156 |
|
45673
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
157 |
declare -a PIDE_SOURCES=() |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
158 |
declare -a PURE_SOURCES=() |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
159 |
|
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
160 |
for DEP in "${SOURCES[@]}" |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
161 |
do |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
162 |
if grep "Module:.*PIDE" "$DEP" >/dev/null |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
163 |
then |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
164 |
PIDE_SOURCES["${#PIDE_SOURCES[@]}"]="$DEP" |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
165 |
else |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
166 |
PURE_SOURCES["${#PURE_SOURCES[@]}"]="$DEP" |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
167 |
fi |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
168 |
done |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
169 |
|
43405 | 170 |
declare -a UPDATED=() |
171 |
||
43280 | 172 |
if [ -n "$FRESH" ]; then |
173 |
OUTDATED=true |
|
174 |
else |
|
175 |
OUTDATED=false |
|
43523 | 176 |
if [ ! -e "$TARGET" ]; then |
177 |
OUTDATED=true |
|
178 |
else |
|
43405 | 179 |
for DEP in "${SOURCES[@]}" |
43280 | 180 |
do |
43405 | 181 |
[ ! -e "$DEP" ] && fail "Missing file: $DEP" |
43523 | 182 |
[ "$DEP" -nt "$TARGET" ] && { |
183 |
OUTDATED=true |
|
184 |
UPDATED["${#UPDATED[@]}"]="$DEP" |
|
185 |
} |
|
43280 | 186 |
done |
43405 | 187 |
fi |
43280 | 188 |
fi |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
189 |
|
34284 | 190 |
if [ "$OUTDATED" = true ] |
191 |
then |
|
49173
fa01a202399c
eliminated potentially confusing terminology of Scala "layer";
wenzelm
parents:
49068
diff
changeset
|
192 |
echo "### Building Isabelle/Scala ..." |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
193 |
|
43405 | 194 |
[ "${#UPDATED[@]}" -gt 0 ] && { |
195 |
echo "Changed files:" |
|
196 |
for FILE in "${UPDATED[@]}" |
|
197 |
do |
|
198 |
echo " $FILE" |
|
199 |
done |
|
200 |
} |
|
201 |
||
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
202 |
rm -rf classes && mkdir classes |
45673
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
203 |
|
47009 | 204 |
SCALAC_OPTIONS="$ISABELLE_SCALA_BUILD_OPTIONS -d classes" |
45673
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
205 |
|
49067 | 206 |
JFXRT="$ISABELLE_JDK_HOME/jre/lib/jfxrt.jar" |
207 |
||
50689 | 208 |
( |
51504 | 209 |
for X in "$JFXRT" "${JFREECHART_JARS[@]}" "$XZ_JAVA_HOME/lib/xz.jar" classes |
50689 | 210 |
do |
211 |
CLASSPATH="$CLASSPATH:$X" |
|
212 |
done |
|
213 |
CLASSPATH="$(jvmpath "$CLASSPATH")" |
|
214 |
||
215 |
if [ "$TEST_PIDE" = true ]; then |
|
216 |
isabelle_scala scalac $SCALAC_OPTIONS "${PIDE_SOURCES[@]}" || \ |
|
217 |
fail "Failed to compile PIDE sources" |
|
218 |
isabelle_scala scalac $SCALAC_OPTIONS "${PURE_SOURCES[@]}" || \ |
|
219 |
fail "Failed to compile Pure sources" |
|
220 |
else |
|
221 |
isabelle_scala scalac $SCALAC_OPTIONS "${PIDE_SOURCES[@]}" "${PURE_SOURCES[@]}" || \ |
|
222 |
fail "Failed to compile sources" |
|
223 |
fi |
|
51508 | 224 |
) || exit "$?" |
45673
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
225 |
|
43523 | 226 |
mkdir -p "$TARGET_DIR/ext" || fail "Failed to create directory $TARGET_DIR/ext" |
43280 | 227 |
|
43285 | 228 |
pushd classes >/dev/null |
43280 | 229 |
|
43517 | 230 |
CHARSET_SERVICE="META-INF/services/java.nio.charset.spi.CharsetProvider" |
231 |
mkdir -p "$(dirname "$CHARSET_SERVICE")" |
|
232 |
echo isabelle.Isabelle_Charset_Provider > "$CHARSET_SERVICE" |
|
233 |
||
47115
1a05adae1cc9
more robust command invocation via ISABELLE_JDK_HOME or SCALA_HOME (NB: bash exec requires genuine executable, not function);
wenzelm
parents:
47113
diff
changeset
|
234 |
isabelle_jdk jar cfe "$(jvmpath "$TARGET")" isabelle.GUI_Setup META-INF isabelle || \ |
43523 | 235 |
fail "Failed to produce $TARGET" |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
236 |
|
49449 | 237 |
cp "$SCALA_HOME/lib/scala-compiler.jar" \ |
47995
72f52cd7c633
include scala-compiler.jar in basic Isabelle/Scala environment, to make Isabelle/jEdit console work with scala-2.10.0-M3;
wenzelm
parents:
47849
diff
changeset
|
238 |
"$SCALA_HOME/lib/scala-library.jar" \ |
72f52cd7c633
include scala-compiler.jar in basic Isabelle/Scala environment, to make Isabelle/jEdit console work with scala-2.10.0-M3;
wenzelm
parents:
47849
diff
changeset
|
239 |
"$SCALA_HOME/lib/scala-swing.jar" "$TARGET_DIR/ext" |
72f52cd7c633
include scala-compiler.jar in basic Isabelle/Scala environment, to make Isabelle/jEdit console work with scala-2.10.0-M3;
wenzelm
parents:
47849
diff
changeset
|
240 |
|
47849 | 241 |
[ -e "$SCALA_HOME/lib/scala-actors.jar" ] && \ |
242 |
cp "$SCALA_HOME/lib/scala-actors.jar" "$TARGET_DIR/ext" |
|
43521
d477b92109b8
provide Isabelle/Scala environment as Java extension, instead of user classpath
wenzelm
parents:
43517
diff
changeset
|
243 |
|
49955 | 244 |
[ -e "$SCALA_HOME/lib/scala-reflect.jar" ] && \ |
245 |
cp "$SCALA_HOME/lib/scala-reflect.jar" "$TARGET_DIR/ext" |
|
246 |
||
43280 | 247 |
popd >/dev/null |
248 |
||
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
249 |
rm -rf classes |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
250 |
fi |