author | wenzelm |
Wed, 28 Jan 2015 19:15:13 +0100 | |
changeset 59459 | 985fc55e9f27 |
parent 59441 | ab2c3597f1d3 |
child 59713 | 6da3efec20ca |
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=( |
|
56695
963732291084
consumer thread with unbounded queueing of requests (similar to Message_Channel in ML);
wenzelm
parents:
56693
diff
changeset
|
12 |
Concurrent/consumer_thread.scala |
43660 | 13 |
Concurrent/counter.scala |
56768 | 14 |
Concurrent/event_timer.scala |
43320 | 15 |
Concurrent/future.scala |
56693 | 16 |
Concurrent/mailbox.scala |
59136
c2b23cb8a677
added Par_List in Scala, in accordance to ML version;
wenzelm
parents:
58928
diff
changeset
|
17 |
Concurrent/par_list.scala |
43320 | 18 |
Concurrent/simple_thread.scala |
56685 | 19 |
Concurrent/synchronized.scala |
57647 | 20 |
GUI/color_value.scala |
21 |
GUI/gui.scala |
|
22 |
GUI/gui_thread.scala |
|
23 |
GUI/html5_panel.scala |
|
57908
1937603dbdf2
separate Java FX modules -- no need to include jfxrt.jar by default;
wenzelm
parents:
57905
diff
changeset
|
24 |
GUI/jfx_gui.scala |
57647 | 25 |
GUI/popup.scala |
26 |
GUI/system_dialog.scala |
|
27 |
GUI/wrap_panel.scala |
|
55511
984e210d412e
antiquotations within plain text: Scala version in accordance to ML;
wenzelm
parents:
55497
diff
changeset
|
28 |
General/antiquote.scala |
54439 | 29 |
General/bytes.scala |
55673
0286219c1261
clarified module location (again, see 763d35697338);
wenzelm
parents:
55511
diff
changeset
|
30 |
General/completion.scala |
43320 | 31 |
General/exn.scala |
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
48410
diff
changeset
|
32 |
General/file.scala |
46611 | 33 |
General/graph.scala |
59244
19b5fc4b2b38
more uniform support for graph display in ML/Scala;
wenzelm
parents:
59232
diff
changeset
|
34 |
General/graph_display.scala |
51098 | 35 |
General/graphics_file.scala |
43320 | 36 |
General/linear_set.scala |
56800 | 37 |
General/long_name.scala |
52975 | 38 |
General/multi_map.scala |
56782
433cf57550fa
more systematic Isabelle output, like in classic Isabelle/ML (without markup);
wenzelm
parents:
56768
diff
changeset
|
39 |
General/output.scala |
43600
4ac04bf9ff89
abstract algebra of file paths in Scala (cf. path.ML);
wenzelm
parents:
43523
diff
changeset
|
40 |
General/path.scala |
43320 | 41 |
General/position.scala |
42 |
General/pretty.scala |
|
43780 | 43 |
General/properties.scala |
43320 | 44 |
General/scan.scala |
45 |
General/sha1.scala |
|
46 |
General/symbol.scala |
|
45674 | 47 |
General/time.scala |
45666 | 48 |
General/timing.scala |
57647 | 49 |
General/untyped.scala |
56501
5fda9e5c5874
basic URL operations (with Isabelle/Scala error handling);
wenzelm
parents:
56429
diff
changeset
|
50 |
General/url.scala |
56599 | 51 |
General/word.scala |
52671
9a360530eac8
separate module XZ_File to avoid initial dependency on org.tukaani.xz;
wenzelm
parents:
52667
diff
changeset
|
52 |
General/xz_file.scala |
43320 | 53 |
Isar/keyword.scala |
54 |
Isar/outer_syntax.scala |
|
55 |
Isar/parse.scala |
|
56 |
Isar/token.scala |
|
55497 | 57 |
ML/ml_lex.scala |
59362 | 58 |
PIDE/batch_session.scala |
43320 | 59 |
PIDE/command.scala |
57905
c0c5652e796e
separate module Command_Span: mostly syntactic representation;
wenzelm
parents:
57900
diff
changeset
|
60 |
PIDE/command_span.scala |
43320 | 61 |
PIDE/document.scala |
52530
99dd8b4ef3fe
explicit module Document_ID as source of globally unique identifiers across ML/Scala;
wenzelm
parents:
52444
diff
changeset
|
62 |
PIDE/document_id.scala |
52971
31926d2c04ee
tuned signature -- more abstract PIDE editor operations;
wenzelm
parents:
52671
diff
changeset
|
63 |
PIDE/editor.scala |
45670 | 64 |
PIDE/markup.scala |
43320 | 65 |
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
|
66 |
PIDE/protocol.scala |
56385 | 67 |
PIDE/prover.scala |
52981 | 68 |
PIDE/query_operation.scala |
56208 | 69 |
PIDE/resources.scala |
56210 | 70 |
PIDE/session.scala |
43320 | 71 |
PIDE/text.scala |
44698 | 72 |
PIDE/xml.scala |
73 |
PIDE/yxml.scala |
|
57647 | 74 |
ROOT.scala |
48346
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48276
diff
changeset
|
75 |
System/command_line.scala |
43744
2c7e1565b4a3
some support to invoke Scala methods under program control;
wenzelm
parents:
43730
diff
changeset
|
76 |
System/invoke_scala.scala |
43517 | 77 |
System/isabelle_charset.scala |
43320 | 78 |
System/isabelle_process.scala |
79 |
System/isabelle_system.scala |
|
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
48346
diff
changeset
|
80 |
System/options.scala |
43320 | 81 |
System/platform.scala |
56860 | 82 |
System/posix_interrupt.scala |
45027
f459e93a038e
more abstract wrapping of fifos as System_Channel;
wenzelm
parents:
44698
diff
changeset
|
83 |
System/system_channel.scala |
50203 | 84 |
System/utf8.scala |
43320 | 85 |
Thy/html.scala |
50707
5b2bf7611662
maintain session index on Scala side, for more determistic results;
wenzelm
parents:
50689
diff
changeset
|
86 |
Thy/present.scala |
43320 | 87 |
Thy/thy_header.scala |
43651
511df47bcadc
some support for theory files within Isabelle/Scala session;
wenzelm
parents:
43600
diff
changeset
|
88 |
Thy/thy_info.scala |
43320 | 89 |
Thy/thy_syntax.scala |
58523 | 90 |
Tools/bibtex.scala |
57647 | 91 |
Tools/build.scala |
92 |
Tools/build_console.scala |
|
93 |
Tools/build_doc.scala |
|
56791 | 94 |
Tools/check_source.scala |
52444
2cfe6656d6d6
slightly improved "isabelle doc" based on Isabelle/Scala;
wenzelm
parents:
52439
diff
changeset
|
95 |
Tools/doc.scala |
50687 | 96 |
Tools/main.scala |
50981 | 97 |
Tools/ml_statistics.scala |
56864 | 98 |
Tools/print_operation.scala |
54730 | 99 |
Tools/simplifier_trace.scala |
50980 | 100 |
Tools/task_statistics.scala |
58610 | 101 |
Tools/update_cartouches.scala |
58872 | 102 |
Tools/update_header.scala |
58861
5ff61774df11
command-line terminator ";" is no longer accepted;
wenzelm
parents:
58842
diff
changeset
|
103 |
Tools/update_semicolons.scala |
43320 | 104 |
library.scala |
43730
a0ed7bc688b5
lambda terms with XML data representation in Scala;
wenzelm
parents:
43715
diff
changeset
|
105 |
term.scala |
43779 | 106 |
term_xml.scala |
59441 | 107 |
"../Tools/Graphview/graph_file.scala" |
59202 | 108 |
"../Tools/Graphview/graph_panel.scala" |
59459 | 109 |
"../Tools/Graphview/graphview.scala" |
59232 | 110 |
"../Tools/Graphview/layout.scala" |
59202 | 111 |
"../Tools/Graphview/main_panel.scala" |
59290 | 112 |
"../Tools/Graphview/metrics.scala" |
59202 | 113 |
"../Tools/Graphview/model.scala" |
59392 | 114 |
"../Tools/Graphview/mutator.scala" |
59202 | 115 |
"../Tools/Graphview/mutator_dialog.scala" |
116 |
"../Tools/Graphview/mutator_event.scala" |
|
117 |
"../Tools/Graphview/popups.scala" |
|
118 |
"../Tools/Graphview/shapes.scala" |
|
59392 | 119 |
"../Tools/Graphview/tree_panel.scala" |
43320 | 120 |
) |
121 |
||
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
122 |
|
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
123 |
## diagnostics |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
124 |
|
43280 | 125 |
PRG="$(basename "$0")" |
126 |
||
127 |
function usage() |
|
128 |
{ |
|
129 |
echo |
|
130 |
echo "Usage: isabelle $PRG [OPTIONS]" |
|
131 |
echo |
|
132 |
echo " Options are:" |
|
133 |
echo " -f fresh build" |
|
47408
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
134 |
echo " -t test separate compilation of PIDE" |
43280 | 135 |
echo |
136 |
exit 1 |
|
137 |
} |
|
138 |
||
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
139 |
function fail() |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
140 |
{ |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
141 |
echo "$1" >&2 |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
142 |
exit 2 |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
143 |
} |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
144 |
|
42899 | 145 |
[ -z "$ISABELLE_HOME" ] && fail "Missing Isabelle settings environment" |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
146 |
|
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
147 |
|
43280 | 148 |
## process command line |
149 |
||
150 |
# options |
|
151 |
||
152 |
FRESH="" |
|
47408
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
153 |
TEST_PIDE="" |
43280 | 154 |
|
47408
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
155 |
while getopts "ft" OPT |
43280 | 156 |
do |
157 |
case "$OPT" in |
|
158 |
f) |
|
159 |
FRESH=true |
|
160 |
;; |
|
47408
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
161 |
t) |
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
162 |
TEST_PIDE=true |
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
163 |
;; |
43280 | 164 |
\?) |
165 |
usage |
|
166 |
;; |
|
167 |
esac |
|
168 |
done |
|
169 |
||
170 |
shift $(($OPTIND - 1)) |
|
171 |
||
172 |
||
173 |
# args |
|
174 |
||
175 |
[ "$#" -ne 0 ] && usage |
|
176 |
||
177 |
||
49558 | 178 |
## build |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
179 |
|
34284 | 180 |
TARGET_DIR="$ISABELLE_HOME/lib/classes" |
53577 | 181 |
TARGET="$TARGET_DIR/Pure.jar" |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
182 |
|
45673
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
183 |
declare -a PIDE_SOURCES=() |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
184 |
declare -a PURE_SOURCES=() |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
185 |
|
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
186 |
for DEP in "${SOURCES[@]}" |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
187 |
do |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
188 |
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
|
189 |
then |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
190 |
PIDE_SOURCES["${#PIDE_SOURCES[@]}"]="$DEP" |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
191 |
else |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
192 |
PURE_SOURCES["${#PURE_SOURCES[@]}"]="$DEP" |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
193 |
fi |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
194 |
done |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
195 |
|
43405 | 196 |
declare -a UPDATED=() |
197 |
||
43280 | 198 |
if [ -n "$FRESH" ]; then |
199 |
OUTDATED=true |
|
200 |
else |
|
201 |
OUTDATED=false |
|
43523 | 202 |
if [ ! -e "$TARGET" ]; then |
203 |
OUTDATED=true |
|
204 |
else |
|
43405 | 205 |
for DEP in "${SOURCES[@]}" |
43280 | 206 |
do |
43405 | 207 |
[ ! -e "$DEP" ] && fail "Missing file: $DEP" |
43523 | 208 |
[ "$DEP" -nt "$TARGET" ] && { |
209 |
OUTDATED=true |
|
210 |
UPDATED["${#UPDATED[@]}"]="$DEP" |
|
211 |
} |
|
43280 | 212 |
done |
43405 | 213 |
fi |
43280 | 214 |
fi |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
215 |
|
34284 | 216 |
if [ "$OUTDATED" = true ] |
217 |
then |
|
49173
fa01a202399c
eliminated potentially confusing terminology of Scala "layer";
wenzelm
parents:
49068
diff
changeset
|
218 |
echo "### Building Isabelle/Scala ..." |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
219 |
|
43405 | 220 |
[ "${#UPDATED[@]}" -gt 0 ] && { |
221 |
echo "Changed files:" |
|
222 |
for FILE in "${UPDATED[@]}" |
|
223 |
do |
|
224 |
echo " $FILE" |
|
225 |
done |
|
226 |
} |
|
227 |
||
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
228 |
rm -rf classes && mkdir classes |
45673
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
229 |
|
47009 | 230 |
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
|
231 |
|
50689 | 232 |
( |
58791 | 233 |
classpath "$JAVA_HOME/lib/jfxrt.jar" |
53576
793a429c63e7
maintain classpath in more elementary manner: turn ISABELLE_CLASSPATH into -classpath option, so that all jars are covered by sun.misc.Launcher.AppClassLoader (e.g. relevant for loading add-on resources);
wenzelm
parents:
53519
diff
changeset
|
234 |
classpath classes |
793a429c63e7
maintain classpath in more elementary manner: turn ISABELLE_CLASSPATH into -classpath option, so that all jars are covered by sun.misc.Launcher.AppClassLoader (e.g. relevant for loading add-on resources);
wenzelm
parents:
53519
diff
changeset
|
235 |
export CLASSPATH="$(jvmpath "$ISABELLE_CLASSPATH")" |
50689 | 236 |
|
237 |
if [ "$TEST_PIDE" = true ]; then |
|
238 |
isabelle_scala scalac $SCALAC_OPTIONS "${PIDE_SOURCES[@]}" || \ |
|
239 |
fail "Failed to compile PIDE sources" |
|
240 |
isabelle_scala scalac $SCALAC_OPTIONS "${PURE_SOURCES[@]}" || \ |
|
241 |
fail "Failed to compile Pure sources" |
|
242 |
else |
|
243 |
isabelle_scala scalac $SCALAC_OPTIONS "${PIDE_SOURCES[@]}" "${PURE_SOURCES[@]}" || \ |
|
244 |
fail "Failed to compile sources" |
|
245 |
fi |
|
51508 | 246 |
) || exit "$?" |
45673
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
247 |
|
53577 | 248 |
mkdir -p "$TARGET_DIR" || fail "Failed to create directory $TARGET_DIR" |
43280 | 249 |
|
43285 | 250 |
pushd classes >/dev/null |
43280 | 251 |
|
43517 | 252 |
CHARSET_SERVICE="META-INF/services/java.nio.charset.spi.CharsetProvider" |
253 |
mkdir -p "$(dirname "$CHARSET_SERVICE")" |
|
254 |
echo isabelle.Isabelle_Charset_Provider > "$CHARSET_SERVICE" |
|
255 |
||
54676
6b2ca4850b71
uniform use of transparent icons, as for main "apps";
wenzelm
parents:
54671
diff
changeset
|
256 |
cp "$ISABELLE_HOME/lib/logo/isabelle_transparent-32.gif" isabelle/. |
54709 | 257 |
cp "$ISABELLE_HOME/lib/logo/isabelle_transparent.gif" isabelle/. |
53452
8181bc357dc4
more portable access to icon -- avoid Isabelle_System which is not yet initialized in bootstrap;
wenzelm
parents:
53279
diff
changeset
|
258 |
|
53841 | 259 |
isabelle_jdk jar cfe "$(jvmpath "$TARGET")" isabelle.Main META-INF isabelle || \ |
43523 | 260 |
fail "Failed to produce $TARGET" |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
261 |
|
43280 | 262 |
popd >/dev/null |
263 |
||
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
264 |
rm -rf classes |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
265 |
fi |