author | wenzelm |
Fri, 03 Apr 2020 11:22:51 +0200 | |
changeset 71669 | 12ebd8d0deee |
parent 71667 | 4d2de35214c5 |
child 71875 | aaa984499d36 |
permissions | -rw-r--r-- |
50686 | 1 |
(* Title: Pure/Tools/build.ML |
48418 | 2 |
Author: Makarius |
3 |
||
4 |
Build Isabelle sessions. |
|
5 |
*) |
|
6 |
||
7 |
signature BUILD = |
|
8 |
sig |
|
48731
a45ba78abcc1
more casual exit back to ML toplevel, to accomodate commit in SML/NJ which continues at the saved point;
wenzelm
parents:
48681
diff
changeset
|
9 |
val build: string -> unit |
48418 | 10 |
end; |
11 |
||
12 |
structure Build: BUILD = |
|
13 |
struct |
|
14 |
||
51662
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
15 |
(* command timings *) |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
16 |
|
56615 | 17 |
type timings = ((string * Time.time) Inttab.table) Symtab.table; (*file -> offset -> name, time*) |
51662
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
18 |
|
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
19 |
val empty_timings: timings = Symtab.empty; |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
20 |
|
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
21 |
fun update_timings props = |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
22 |
(case Markup.parse_command_timing_properties props of |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
23 |
SOME ({file, offset, name}, time) => |
51666
b97aeb018900
add command timings (like document command status);
wenzelm
parents:
51662
diff
changeset
|
24 |
Symtab.map_default (file, Inttab.empty) |
62826 | 25 |
(Inttab.map_default (offset, (name, time)) (fn (_, t) => (name, t + time))) |
51662
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
26 |
| NONE => I); |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
27 |
|
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
28 |
fun approximative_id name pos = |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
29 |
(case (Position.file_of pos, Position.offset_of pos) of |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
30 |
(SOME file, SOME offset) => |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
31 |
if name = "" then NONE else SOME {file = file, offset = offset, name = name} |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
32 |
| _ => NONE); |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
33 |
|
65058
3e9f382fb67e
absent timing information means zero, according to 0070053570c4, f235646b1b73;
wenzelm
parents:
64599
diff
changeset
|
34 |
fun get_timings timings tr = |
51662
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
35 |
(case approximative_id (Toplevel.name_of tr) (Toplevel.pos_of tr) of |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
36 |
SOME {file, offset, name} => |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
37 |
(case Symtab.lookup timings file of |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
38 |
SOME offsets => |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
39 |
(case Inttab.lookup offsets offset of |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
40 |
SOME (name', time) => if name = name' then SOME time else NONE |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
41 |
| NONE => NONE) |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
42 |
| NONE => NONE) |
65058
3e9f382fb67e
absent timing information means zero, according to 0070053570c4, f235646b1b73;
wenzelm
parents:
64599
diff
changeset
|
43 |
| NONE => NONE) |
3e9f382fb67e
absent timing information means zero, according to 0070053570c4, f235646b1b73;
wenzelm
parents:
64599
diff
changeset
|
44 |
|> the_default Time.zeroTime; |
51662
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
45 |
|
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
46 |
|
52052
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
47 |
(* session timing *) |
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
48 |
|
71669 | 49 |
fun session_timing session_name verbose f x = |
52052
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
50 |
let |
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
51 |
val start = Timing.start (); |
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
52 |
val y = f x; |
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
53 |
val timing = Timing.result start; |
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
54 |
|
62925 | 55 |
val threads = string_of_int (Multithreading.max_threads ()); |
52052
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
56 |
val factor = Time.toReal (#cpu timing) / Time.toReal (#elapsed timing) |
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
57 |
|> Real.fmt (StringCvt.FIX (SOME 2)); |
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
58 |
|
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
59 |
val timing_props = |
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
60 |
[("threads", threads)] @ Markup.timing_properties timing @ [("factor", factor)]; |
71622 | 61 |
val _ = Protocol_Message.marker "Timing" timing_props; |
52052
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
62 |
val _ = |
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
63 |
if verbose then |
71669 | 64 |
Output.physical_stderr ("Timing " ^ session_name ^ " (" ^ |
52052
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
65 |
threads ^ " threads, " ^ Timing.message timing ^ ", factor " ^ factor ^ ")\n") |
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
66 |
else (); |
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
67 |
in y end; |
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
68 |
|
892061142ba6
discontinued obsolete isabelle usedir, mkdir, make;
wenzelm
parents:
52041
diff
changeset
|
69 |
|
50683 | 70 |
(* protocol messages *) |
71 |
||
72 |
fun protocol_message props output = |
|
51216 | 73 |
(case props of |
74 |
function :: args => |
|
51662
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
75 |
if function = Markup.ML_statistics orelse function = Markup.task_statistics then |
71622 | 76 |
Protocol_Message.marker (#2 function) args |
51662
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
77 |
else if function = Markup.command_timing then |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
78 |
let |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
79 |
val name = the_default "" (Properties.get args Markup.nameN); |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
80 |
val pos = Position.of_properties args; |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
81 |
val {elapsed, ...} = Markup.parse_timing_properties args; |
62793
f235646b1b73
less bulky timing information, e.g. HOL 56913 ~> 672;
wenzelm
parents:
62715
diff
changeset
|
82 |
val is_significant = |
f235646b1b73
less bulky timing information, e.g. HOL 56913 ~> 672;
wenzelm
parents:
62715
diff
changeset
|
83 |
Timing.is_relevant_time elapsed andalso |
62826 | 84 |
elapsed >= Options.default_seconds "command_timing_threshold"; |
51662
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
85 |
in |
62793
f235646b1b73
less bulky timing information, e.g. HOL 56913 ~> 672;
wenzelm
parents:
62715
diff
changeset
|
86 |
if is_significant then |
59149
0070053570c4
suppress irrelevant timing messages (the majority);
wenzelm
parents:
59058
diff
changeset
|
87 |
(case approximative_id name pos of |
70907 | 88 |
SOME id => |
71622 | 89 |
Protocol_Message.marker (#2 function) |
71619
e33f6e5f86b6
clarified protocol messages: explicitly use physical_writeln, always encode_lines;
wenzelm
parents:
71618
diff
changeset
|
90 |
(Markup.command_timing_properties id elapsed) |
59149
0070053570c4
suppress irrelevant timing messages (the majority);
wenzelm
parents:
59058
diff
changeset
|
91 |
| NONE => ()) |
0070053570c4
suppress irrelevant timing messages (the majority);
wenzelm
parents:
59058
diff
changeset
|
92 |
else () |
51662
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51661
diff
changeset
|
93 |
end |
66873
9953ae603a23
provide theory timing information, similar to command timing but always considered relevant;
wenzelm
parents:
66712
diff
changeset
|
94 |
else if function = Markup.theory_timing then |
71622 | 95 |
Protocol_Message.marker (#2 function) args |
51216 | 96 |
else |
97 |
(case Markup.dest_loading_theory props of |
|
71622 | 98 |
SOME name => Protocol_Message.marker_text "loading_theory" name |
70907 | 99 |
| NONE => Export.protocol_message props output) |
51661 | 100 |
| [] => raise Output.Protocol_Message props); |
51045
630c0895d9d1
more efficient inlined properties, especially relevant for voluminous tasks trace;
wenzelm
parents:
50982
diff
changeset
|
101 |
|
50683 | 102 |
|
65307 | 103 |
(* build theories *) |
50683 | 104 |
|
67297
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67219
diff
changeset
|
105 |
fun build_theories symbols bibtex_entries last_timing qualifier master_dir (options, thys) = |
59366
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
106 |
let |
68179
da70c9e91135
clarified signature: more explicit type "context" with full options;
wenzelm
parents:
68148
diff
changeset
|
107 |
val context = |
da70c9e91135
clarified signature: more explicit type "context" with full options;
wenzelm
parents:
68148
diff
changeset
|
108 |
{options = options, symbols = symbols, bibtex_entries = bibtex_entries, |
da70c9e91135
clarified signature: more explicit type "context" with full options;
wenzelm
parents:
68148
diff
changeset
|
109 |
last_timing = last_timing}; |
59366
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
110 |
val condition = space_explode "," (Options.string options "condition"); |
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
111 |
val conds = filter_out (can getenv_strict) condition; |
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
112 |
in |
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
113 |
if null conds then |
69755 | 114 |
(Options.set_default options; |
62714 | 115 |
Isabelle_Process.init_options (); |
64599
80ef54198f44
dummy fork to produce ML_statistics even in sequential mode (e.g. for heap size);
wenzelm
parents:
64308
diff
changeset
|
116 |
Future.fork I; |
68179
da70c9e91135
clarified signature: more explicit type "context" with full options;
wenzelm
parents:
68148
diff
changeset
|
117 |
(Thy_Info.use_theories context qualifier master_dir |
64308 | 118 |
|> |
119 |
(case Options.string options "profiling" of |
|
120 |
"" => I |
|
121 |
| "time" => profile_time |
|
122 |
| "allocations" => profile_allocations |
|
123 |
| bad => error ("Bad profiling option: " ^ quote bad)) |
|
59366
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
124 |
|> Unsynchronized.setmp print_mode |
62714 | 125 |
(space_explode "," (Options.string options "print_mode") @ print_mode_value ())) thys) |
59366
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
126 |
else |
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
127 |
Output.physical_stderr ("Skipping theories " ^ commas_quote (map #1 thys) ^ |
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
128 |
" (undefined " ^ commas conds ^ ")\n") |
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
129 |
end; |
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
130 |
|
65307 | 131 |
|
132 |
(* build session *) |
|
133 |
||
134 |
datatype args = Args of |
|
135 |
{symbol_codes: (string * int) list, |
|
136 |
command_timings: Properties.T list, |
|
137 |
verbose: bool, |
|
138 |
browser_info: Path.T, |
|
139 |
document_files: (Path.T * Path.T) list, |
|
140 |
graph_file: Path.T, |
|
141 |
parent_name: string, |
|
142 |
chapter: string, |
|
71669 | 143 |
session_name: string, |
65307 | 144 |
master_dir: Path.T, |
65431
4a3e6cda3b94
provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents:
65318
diff
changeset
|
145 |
theories: (Options.T * (string * Position.T) list) list, |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
69755
diff
changeset
|
146 |
session_positions: (string * Properties.T) list, |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
69755
diff
changeset
|
147 |
session_directories: (string * string) list, |
67471 | 148 |
doc_names: string list, |
65457 | 149 |
global_theories: (string * string) list, |
66712 | 150 |
loaded_theories: string list, |
67297
86a099f896fc
formal check of @{cite} bibtex entries -- only in batch-mode session builds;
wenzelm
parents:
67219
diff
changeset
|
151 |
bibtex_entries: string list}; |
65307 | 152 |
|
153 |
fun decode_args yxml = |
|
62630 | 154 |
let |
65307 | 155 |
open XML.Decode; |
65517 | 156 |
val position = Position.of_properties o properties; |
71611
fb6953e77000
eliminated pointless flag (see also 6533ceee4cd7);
wenzelm
parents:
70991
diff
changeset
|
157 |
val (symbol_codes, (command_timings, (verbose, (browser_info, |
71669 | 158 |
(document_files, (graph_file, (parent_name, (chapter, (session_name, (master_dir, |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
69755
diff
changeset
|
159 |
(theories, (session_positions, (session_directories, (doc_names, (global_theories, |
71611
fb6953e77000
eliminated pointless flag (see also 6533ceee4cd7);
wenzelm
parents:
70991
diff
changeset
|
160 |
(loaded_theories, bibtex_entries)))))))))))))))) = |
fb6953e77000
eliminated pointless flag (see also 6533ceee4cd7);
wenzelm
parents:
70991
diff
changeset
|
161 |
pair (list (pair string int)) (pair (list properties) (pair bool (pair string |
65307 | 162 |
(pair (list (pair string string)) (pair string (pair string (pair string (pair string |
65431
4a3e6cda3b94
provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents:
65318
diff
changeset
|
163 |
(pair string |
65517 | 164 |
(pair (((list (pair Options.decode (list (pair string position)))))) |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
69755
diff
changeset
|
165 |
(pair (list (pair string properties)) |
67493
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67471
diff
changeset
|
166 |
(pair (list (pair string string)) (pair (list string) |
71611
fb6953e77000
eliminated pointless flag (see also 6533ceee4cd7);
wenzelm
parents:
70991
diff
changeset
|
167 |
(pair (list (pair string string)) (pair (list string) (list string)))))))))))))))) |
65307 | 168 |
(YXML.parse_body yxml); |
169 |
in |
|
71611
fb6953e77000
eliminated pointless flag (see also 6533ceee4cd7);
wenzelm
parents:
70991
diff
changeset
|
170 |
Args {symbol_codes = symbol_codes, command_timings = command_timings, |
65307 | 171 |
verbose = verbose, browser_info = Path.explode browser_info, |
172 |
document_files = map (apply2 Path.explode) document_files, |
|
173 |
graph_file = Path.explode graph_file, parent_name = parent_name, chapter = chapter, |
|
71669 | 174 |
session_name = session_name, master_dir = Path.explode master_dir, theories = theories, |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
69755
diff
changeset
|
175 |
session_positions = session_positions, session_directories = session_directories, |
67471 | 176 |
doc_names = doc_names, global_theories = global_theories, loaded_theories = loaded_theories, |
70712
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
177 |
bibtex_entries = bibtex_entries} |
65307 | 178 |
end; |
48418 | 179 |
|
71669 | 180 |
fun build_session (Args {symbol_codes, command_timings, verbose, browser_info, document_files, |
181 |
graph_file, parent_name, chapter, session_name, master_dir, theories, session_positions, |
|
70712
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
182 |
session_directories, doc_names, global_theories, loaded_theories, bibtex_entries}) = |
65307 | 183 |
let |
62630 | 184 |
val symbols = HTML.make_symbols symbol_codes; |
51941
ead4248aef3b
full default options for Isabelle_Process and Build;
wenzelm
parents:
51666
diff
changeset
|
185 |
|
65441 | 186 |
val _ = |
65478
7c40477e0a87
clarified init_session_base / finish_session_base: retain some information for plain "isabelle process", without rechecking dependencies as in "isabelle console";
wenzelm
parents:
65457
diff
changeset
|
187 |
Resources.init_session_base |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
69755
diff
changeset
|
188 |
{session_positions = session_positions, |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
69755
diff
changeset
|
189 |
session_directories = session_directories, |
67493
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67471
diff
changeset
|
190 |
docs = doc_names, |
67219 | 191 |
global_theories = global_theories, |
70712
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
192 |
loaded_theories = loaded_theories}; |
65431
4a3e6cda3b94
provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents:
65318
diff
changeset
|
193 |
|
62630 | 194 |
val _ = |
195 |
Session.init |
|
196 |
symbols |
|
197 |
(Options.default_bool "browser_info") |
|
65307 | 198 |
browser_info |
62630 | 199 |
(Options.default_string "document") |
200 |
(Options.default_string "document_output") |
|
68511 | 201 |
(Present.document_variants (Options.default ())) |
65307 | 202 |
document_files |
203 |
graph_file |
|
204 |
parent_name |
|
71669 | 205 |
(chapter, session_name) |
62630 | 206 |
verbose; |
49911
262c36fd5f26
collective errors from use_thys and Session.finish/Goal.finish_futures -- avoid uninformative interrupts stemming from failure of goal forks that are not registered in the theory (e.g. unnamed theorems);
wenzelm
parents:
49242
diff
changeset
|
207 |
|
65058
3e9f382fb67e
absent timing information means zero, according to 0070053570c4, f235646b1b73;
wenzelm
parents:
64599
diff
changeset
|
208 |
val last_timing = get_timings (fold update_timings command_timings empty_timings); |
51218
6425a0d3b7ac
support for build passing timings from Scala to ML;
wenzelm
parents:
51217
diff
changeset
|
209 |
|
62630 | 210 |
val res1 = |
211 |
theories |> |
|
71669 | 212 |
(List.app (build_theories symbols bibtex_entries last_timing session_name master_dir) |
213 |
|> session_timing session_name verbose |
|
62630 | 214 |
|> Exn.capture); |
215 |
val res2 = Exn.capture Session.finish (); |
|
65431
4a3e6cda3b94
provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents:
65318
diff
changeset
|
216 |
|
65478
7c40477e0a87
clarified init_session_base / finish_session_base: retain some information for plain "isabelle process", without rechecking dependencies as in "isabelle console";
wenzelm
parents:
65457
diff
changeset
|
217 |
val _ = Resources.finish_session_base (); |
62630 | 218 |
val _ = Par_Exn.release_all [res1, res2]; |
71613 | 219 |
val _ = |
71669 | 220 |
if session_name = Context.PureN |
221 |
then Theory.install_pure (Thy_Info.get_theory Context.PureN) else (); |
|
65307 | 222 |
in () end; |
48673
b2b09970c571
let with_timing report overall number of threads;
wenzelm
parents:
48672
diff
changeset
|
223 |
|
71631 | 224 |
|
225 |
(* command-line tool *) |
|
226 |
||
71618 | 227 |
fun inline_errors exn = |
228 |
Runtime.exn_message_list exn |
|
71622 | 229 |
|> List.app (fn msg => Protocol_Message.marker_text "error_message" (YXML.content_of msg)); |
71618 | 230 |
|
65307 | 231 |
fun build args_file = |
232 |
let |
|
233 |
val _ = SHA1.test_samples (); |
|
234 |
val _ = Options.load_default (); |
|
235 |
val _ = Isabelle_Process.init_options (); |
|
65936 | 236 |
val args = decode_args (File.read (Path.explode args_file)); |
65307 | 237 |
val _ = |
238 |
Unsynchronized.setmp Private_Output.protocol_message_fn protocol_message |
|
65934 | 239 |
build_session args |
71618 | 240 |
handle exn => (inline_errors exn; Exn.reraise exn); |
70907 | 241 |
val _ = Private_Output.protocol_message_fn := Output.protocol_message_undefined; |
62630 | 242 |
val _ = Options.reset_default (); |
243 |
in () end; |
|
48418 | 244 |
|
71631 | 245 |
|
246 |
(* PIDE version *) |
|
247 |
||
248 |
fun build_session_finished errs = |
|
249 |
XML.Encode.list XML.Encode.string errs |
|
250 |
|> Output.protocol_message Markup.build_session_finished; |
|
251 |
||
65307 | 252 |
val _ = |
253 |
Isabelle_Process.protocol_command "build_session" |
|
65313 | 254 |
(fn [args_yxml] => |
70991
f9f7c34b7dd4
more scalable protocol_message: use XML.body directly (Output.output hook is not required);
wenzelm
parents:
70907
diff
changeset
|
255 |
let |
f9f7c34b7dd4
more scalable protocol_message: use XML.body directly (Output.output hook is not required);
wenzelm
parents:
70907
diff
changeset
|
256 |
val args = decode_args args_yxml; |
71631 | 257 |
val errs = |
71667
4d2de35214c5
proper treatment of protocol exceptions and prover termination: avoid session.stop while saving image;
wenzelm
parents:
71656
diff
changeset
|
258 |
Future.interruptible_task (fn () => (build_session args; [])) () handle exn => |
71631 | 259 |
(Runtime.exn_message_list exn handle _ (*sic!*) => |
260 |
(build_session_finished ["CRASHED"]; |
|
71667
4d2de35214c5
proper treatment of protocol exceptions and prover termination: avoid session.stop while saving image;
wenzelm
parents:
71656
diff
changeset
|
261 |
raise Isabelle_Process.EXIT 2)); |
71631 | 262 |
val _ = build_session_finished errs; |
71667
4d2de35214c5
proper treatment of protocol exceptions and prover termination: avoid session.stop while saving image;
wenzelm
parents:
71656
diff
changeset
|
263 |
in |
4d2de35214c5
proper treatment of protocol exceptions and prover termination: avoid session.stop while saving image;
wenzelm
parents:
71656
diff
changeset
|
264 |
if null errs |
4d2de35214c5
proper treatment of protocol exceptions and prover termination: avoid session.stop while saving image;
wenzelm
parents:
71656
diff
changeset
|
265 |
then raise Isabelle_Process.STOP |
4d2de35214c5
proper treatment of protocol exceptions and prover termination: avoid session.stop while saving image;
wenzelm
parents:
71656
diff
changeset
|
266 |
else raise Isabelle_Process.EXIT 1 |
4d2de35214c5
proper treatment of protocol exceptions and prover termination: avoid session.stop while saving image;
wenzelm
parents:
71656
diff
changeset
|
267 |
end |
70991
f9f7c34b7dd4
more scalable protocol_message: use XML.body directly (Output.output hook is not required);
wenzelm
parents:
70907
diff
changeset
|
268 |
| _ => raise Match); |
59366
e94df7f6b608
clarified build_theories: proper protocol handler;
wenzelm
parents:
59364
diff
changeset
|
269 |
|
48418 | 270 |
end; |