author | eberlm <eberlm@in.tum.de> |
Mon, 19 Sep 2016 17:37:22 +0200 | |
changeset 63921 | 0a5184877cb7 |
parent 63823 | ca8b737b08cf |
child 63997 | e11ccb5aa82f |
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 |
61556 | 18 |
Concurrent/standard_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/wrap_panel.scala |
|
55511
984e210d412e
antiquotations within plain text: Scala version in accordance to ML;
wenzelm
parents:
55497
diff
changeset
|
27 |
General/antiquote.scala |
54439 | 28 |
General/bytes.scala |
55673
0286219c1261
clarified module location (again, see 763d35697338);
wenzelm
parents:
55511
diff
changeset
|
29 |
General/completion.scala |
62508
d0b68218ea55
discontinued RAW session: bootstrap directly from isabelle_process RAW_ML_SYSTEM;
wenzelm
parents:
62452
diff
changeset
|
30 |
General/exn.scala |
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
48410
diff
changeset
|
31 |
General/file.scala |
46611 | 32 |
General/graph.scala |
59244
19b5fc4b2b38
more uniform support for graph display in ML/Scala;
wenzelm
parents:
59232
diff
changeset
|
33 |
General/graph_display.scala |
51098 | 34 |
General/graphics_file.scala |
63823 | 35 |
General/http_server.scala |
63644 | 36 |
General/json.scala |
43320 | 37 |
General/linear_set.scala |
56800 | 38 |
General/long_name.scala |
52975 | 39 |
General/multi_map.scala |
56782
433cf57550fa
more systematic Isabelle output, like in classic Isabelle/ML (without markup);
wenzelm
parents:
56768
diff
changeset
|
40 |
General/output.scala |
43600
4ac04bf9ff89
abstract algebra of file paths in Scala (cf. path.ML);
wenzelm
parents:
43523
diff
changeset
|
41 |
General/path.scala |
43320 | 42 |
General/position.scala |
43 |
General/pretty.scala |
|
43780 | 44 |
General/properties.scala |
43320 | 45 |
General/scan.scala |
46 |
General/sha1.scala |
|
63788 | 47 |
General/sql.scala |
48 |
General/sqlite.scala |
|
43320 | 49 |
General/symbol.scala |
45674 | 50 |
General/time.scala |
45666 | 51 |
General/timing.scala |
57647 | 52 |
General/untyped.scala |
56501
5fda9e5c5874
basic URL operations (with Isabelle/Scala error handling);
wenzelm
parents:
56429
diff
changeset
|
53 |
General/url.scala |
63805 | 54 |
General/value.scala |
56599 | 55 |
General/word.scala |
52671
9a360530eac8
separate module XZ_File to avoid initial dependency on org.tukaani.xz;
wenzelm
parents:
52667
diff
changeset
|
56 |
General/xz_file.scala |
63604 | 57 |
Isar/document_structure.scala |
43320 | 58 |
Isar/keyword.scala |
63603 | 59 |
Isar/line_structure.scala |
43320 | 60 |
Isar/outer_syntax.scala |
61 |
Isar/parse.scala |
|
62 |
Isar/token.scala |
|
55497 | 63 |
ML/ml_lex.scala |
62528 | 64 |
ML/ml_syntax.scala |
59362 | 65 |
PIDE/batch_session.scala |
43320 | 66 |
PIDE/command.scala |
57905
c0c5652e796e
separate module Command_Span: mostly syntactic representation;
wenzelm
parents:
57900
diff
changeset
|
67 |
PIDE/command_span.scala |
43320 | 68 |
PIDE/document.scala |
52530
99dd8b4ef3fe
explicit module Document_ID as source of globally unique identifiers across ML/Scala;
wenzelm
parents:
52444
diff
changeset
|
69 |
PIDE/document_id.scala |
52971
31926d2c04ee
tuned signature -- more abstract PIDE editor operations;
wenzelm
parents:
52671
diff
changeset
|
70 |
PIDE/editor.scala |
45670 | 71 |
PIDE/markup.scala |
43320 | 72 |
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
|
73 |
PIDE/protocol.scala |
59713 | 74 |
PIDE/protocol_message.scala |
56385 | 75 |
PIDE/prover.scala |
52981 | 76 |
PIDE/query_operation.scala |
56208 | 77 |
PIDE/resources.scala |
56210 | 78 |
PIDE/session.scala |
43320 | 79 |
PIDE/text.scala |
44698 | 80 |
PIDE/xml.scala |
81 |
PIDE/yxml.scala |
|
57647 | 82 |
ROOT.scala |
62584 | 83 |
System/bash.scala |
61925 | 84 |
System/command_line.scala |
61282 | 85 |
System/cygwin.scala |
62845 | 86 |
System/distribution.scala |
62431 | 87 |
System/getopts.scala |
43744
2c7e1565b4a3
some support to invoke Scala methods under program control;
wenzelm
parents:
43730
diff
changeset
|
88 |
System/invoke_scala.scala |
43517 | 89 |
System/isabelle_charset.scala |
43320 | 90 |
System/isabelle_process.scala |
91 |
System/isabelle_system.scala |
|
62829
4141c2a8458b
clarified Isabelle tool wrapper: bash, Scala, no perl, no ML;
wenzelm
parents:
62631
diff
changeset
|
92 |
System/isabelle_tool.scala |
48365
d88aefda01c4
basic support for stand-alone options with external string representation;
wenzelm
parents:
48346
diff
changeset
|
93 |
System/options.scala |
43320 | 94 |
System/platform.scala |
56860 | 95 |
System/posix_interrupt.scala |
62400 | 96 |
System/process_result.scala |
61276 | 97 |
System/progress.scala |
45027
f459e93a038e
more abstract wrapping of fifos as System_Channel;
wenzelm
parents:
44698
diff
changeset
|
98 |
System/system_channel.scala |
50203 | 99 |
System/utf8.scala |
43320 | 100 |
Thy/html.scala |
50707
5b2bf7611662
maintain session index on Scala side, for more determistic results;
wenzelm
parents:
50689
diff
changeset
|
101 |
Thy/present.scala |
62631 | 102 |
Thy/sessions.scala |
43320 | 103 |
Thy/thy_header.scala |
43651
511df47bcadc
some support for theory files within Isabelle/Scala session;
wenzelm
parents:
43600
diff
changeset
|
104 |
Thy/thy_info.scala |
43320 | 105 |
Thy/thy_syntax.scala |
58523 | 106 |
Tools/bibtex.scala |
57647 | 107 |
Tools/build.scala |
108 |
Tools/build_doc.scala |
|
63686 | 109 |
Tools/build_stats.scala |
59891
9ce697050455
added isabelle build option -k, for fast off-line checking of theory sources;
wenzelm
parents:
59713
diff
changeset
|
110 |
Tools/check_keywords.scala |
62452 | 111 |
Tools/check_sources.scala |
63646
74604a9fc4c8
API for Isabelle Jenkins continuous integration services;
wenzelm
parents:
63644
diff
changeset
|
112 |
Tools/ci_api.scala |
63288
e0513d6e4916
start moving actual Jenkins build scripts into the repository
Lars Hupel <lars.hupel@mytum.de>
parents:
62902
diff
changeset
|
113 |
Tools/ci_profile.scala |
60749 | 114 |
Tools/debugger.scala |
52444
2cfe6656d6d6
slightly improved "isabelle doc" based on Isabelle/Scala;
wenzelm
parents:
52439
diff
changeset
|
115 |
Tools/doc.scala |
50687 | 116 |
Tools/main.scala |
62559 | 117 |
Tools/ml_console.scala |
62586 | 118 |
Tools/ml_process.scala |
50981 | 119 |
Tools/ml_statistics.scala |
62114
a7cf464933f7
generate HTML version of NEWS, with proper symbol rendering;
wenzelm
parents:
61925
diff
changeset
|
120 |
Tools/news.scala |
56864 | 121 |
Tools/print_operation.scala |
54730 | 122 |
Tools/simplifier_trace.scala |
50980 | 123 |
Tools/task_statistics.scala |
58610 | 124 |
Tools/update_cartouches.scala |
58872 | 125 |
Tools/update_header.scala |
61216 | 126 |
Tools/update_then.scala |
61337 | 127 |
Tools/update_theorems.scala |
43320 | 128 |
library.scala |
43730
a0ed7bc688b5
lambda terms with XML data representation in Scala;
wenzelm
parents:
43715
diff
changeset
|
129 |
term.scala |
43779 | 130 |
term_xml.scala |
59441 | 131 |
"../Tools/Graphview/graph_file.scala" |
59202 | 132 |
"../Tools/Graphview/graph_panel.scala" |
59459 | 133 |
"../Tools/Graphview/graphview.scala" |
59232 | 134 |
"../Tools/Graphview/layout.scala" |
59202 | 135 |
"../Tools/Graphview/main_panel.scala" |
59290 | 136 |
"../Tools/Graphview/metrics.scala" |
59202 | 137 |
"../Tools/Graphview/model.scala" |
59392 | 138 |
"../Tools/Graphview/mutator.scala" |
59202 | 139 |
"../Tools/Graphview/mutator_dialog.scala" |
140 |
"../Tools/Graphview/mutator_event.scala" |
|
141 |
"../Tools/Graphview/popups.scala" |
|
142 |
"../Tools/Graphview/shapes.scala" |
|
59392 | 143 |
"../Tools/Graphview/tree_panel.scala" |
43320 | 144 |
) |
145 |
||
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 |
## diagnostics |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
148 |
|
43280 | 149 |
PRG="$(basename "$0")" |
150 |
||
151 |
function usage() |
|
152 |
{ |
|
153 |
echo |
|
154 |
echo "Usage: isabelle $PRG [OPTIONS]" |
|
155 |
echo |
|
156 |
echo " Options are:" |
|
157 |
echo " -f fresh build" |
|
47408
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
158 |
echo " -t test separate compilation of PIDE" |
43280 | 159 |
echo |
160 |
exit 1 |
|
161 |
} |
|
162 |
||
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
163 |
function fail() |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
164 |
{ |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
165 |
echo "$1" >&2 |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
166 |
exit 2 |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
167 |
} |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
168 |
|
42899 | 169 |
[ -z "$ISABELLE_HOME" ] && fail "Missing Isabelle settings environment" |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
170 |
|
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
171 |
|
43280 | 172 |
## process command line |
173 |
||
174 |
# options |
|
175 |
||
176 |
FRESH="" |
|
47408
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
177 |
TEST_PIDE="" |
43280 | 178 |
|
47408
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
179 |
while getopts "ft" OPT |
43280 | 180 |
do |
181 |
case "$OPT" in |
|
182 |
f) |
|
183 |
FRESH=true |
|
184 |
;; |
|
47408
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
185 |
t) |
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
186 |
TEST_PIDE=true |
63c05991882e
slightly faster default compilation of Isabelle/Scala;
wenzelm
parents:
47115
diff
changeset
|
187 |
;; |
43280 | 188 |
\?) |
189 |
usage |
|
190 |
;; |
|
191 |
esac |
|
192 |
done |
|
193 |
||
194 |
shift $(($OPTIND - 1)) |
|
195 |
||
196 |
||
197 |
# args |
|
198 |
||
199 |
[ "$#" -ne 0 ] && usage |
|
200 |
||
201 |
||
49558 | 202 |
## build |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
203 |
|
34284 | 204 |
TARGET_DIR="$ISABELLE_HOME/lib/classes" |
53577 | 205 |
TARGET="$TARGET_DIR/Pure.jar" |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
206 |
|
45673
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
207 |
declare -a PIDE_SOURCES=() |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
208 |
declare -a PURE_SOURCES=() |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
209 |
|
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
210 |
for DEP in "${SOURCES[@]}" |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
211 |
do |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
212 |
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
|
213 |
then |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
214 |
PIDE_SOURCES["${#PIDE_SOURCES[@]}"]="$DEP" |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
215 |
else |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
216 |
PURE_SOURCES["${#PURE_SOURCES[@]}"]="$DEP" |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
217 |
fi |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
218 |
done |
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
219 |
|
43405 | 220 |
declare -a UPDATED=() |
221 |
||
43280 | 222 |
if [ -n "$FRESH" ]; then |
223 |
OUTDATED=true |
|
224 |
else |
|
225 |
OUTDATED=false |
|
43523 | 226 |
if [ ! -e "$TARGET" ]; then |
227 |
OUTDATED=true |
|
228 |
else |
|
43405 | 229 |
for DEP in "${SOURCES[@]}" |
43280 | 230 |
do |
43405 | 231 |
[ ! -e "$DEP" ] && fail "Missing file: $DEP" |
43523 | 232 |
[ "$DEP" -nt "$TARGET" ] && { |
233 |
OUTDATED=true |
|
234 |
UPDATED["${#UPDATED[@]}"]="$DEP" |
|
235 |
} |
|
43280 | 236 |
done |
43405 | 237 |
fi |
43280 | 238 |
fi |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
239 |
|
34284 | 240 |
if [ "$OUTDATED" = true ] |
241 |
then |
|
49173
fa01a202399c
eliminated potentially confusing terminology of Scala "layer";
wenzelm
parents:
49068
diff
changeset
|
242 |
echo "### Building Isabelle/Scala ..." |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
243 |
|
43405 | 244 |
[ "${#UPDATED[@]}" -gt 0 ] && { |
245 |
echo "Changed files:" |
|
246 |
for FILE in "${UPDATED[@]}" |
|
247 |
do |
|
248 |
echo " $FILE" |
|
249 |
done |
|
250 |
} |
|
251 |
||
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
252 |
rm -rf classes && mkdir classes |
45673
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
253 |
|
47009 | 254 |
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
|
255 |
|
50689 | 256 |
( |
58791 | 257 |
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
|
258 |
classpath classes |
61294 | 259 |
export CLASSPATH="$(platform_path "$ISABELLE_CLASSPATH")" |
50689 | 260 |
|
261 |
if [ "$TEST_PIDE" = true ]; then |
|
262 |
isabelle_scala scalac $SCALAC_OPTIONS "${PIDE_SOURCES[@]}" || \ |
|
263 |
fail "Failed to compile PIDE sources" |
|
264 |
isabelle_scala scalac $SCALAC_OPTIONS "${PURE_SOURCES[@]}" || \ |
|
265 |
fail "Failed to compile Pure sources" |
|
266 |
else |
|
267 |
isabelle_scala scalac $SCALAC_OPTIONS "${PIDE_SOURCES[@]}" "${PURE_SOURCES[@]}" || \ |
|
268 |
fail "Failed to compile sources" |
|
269 |
fi |
|
51508 | 270 |
) || exit "$?" |
45673
cd41e3903fbf
separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents:
45672
diff
changeset
|
271 |
|
53577 | 272 |
mkdir -p "$TARGET_DIR" || fail "Failed to create directory $TARGET_DIR" |
43280 | 273 |
|
43285 | 274 |
pushd classes >/dev/null |
43280 | 275 |
|
43517 | 276 |
CHARSET_SERVICE="META-INF/services/java.nio.charset.spi.CharsetProvider" |
277 |
mkdir -p "$(dirname "$CHARSET_SERVICE")" |
|
278 |
echo isabelle.Isabelle_Charset_Provider > "$CHARSET_SERVICE" |
|
279 |
||
54676
6b2ca4850b71
uniform use of transparent icons, as for main "apps";
wenzelm
parents:
54671
diff
changeset
|
280 |
cp "$ISABELLE_HOME/lib/logo/isabelle_transparent-32.gif" isabelle/. |
54709 | 281 |
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
|
282 |
|
61294 | 283 |
isabelle_jdk jar cfe "$(platform_path "$TARGET")" isabelle.Main META-INF isabelle || \ |
43523 | 284 |
fail "Failed to produce $TARGET" |
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
285 |
|
43280 | 286 |
popd >/dev/null |
287 |
||
34282
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
288 |
rm -rf classes |
549969a7f582
simplified build/bootstrap of Isabelle/Scala components -- avoid make;
wenzelm
parents:
diff
changeset
|
289 |
fi |