author | wenzelm |
Mon, 07 Mar 2016 21:09:28 +0100 | |
changeset 62549 | 9498623b27f0 |
parent 61381 | ddca85598c65 |
child 62550 | f1baa15a6a0c |
permissions | -rw-r--r-- |
6203 | 1 |
(* Title: Pure/Thy/present.ML |
9416 | 2 |
Author: Markus Wenzel and Stefan Berghofer, TU Muenchen |
6203 | 3 |
|
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
4 |
Theory presentation: HTML and PDF-LaTeX documents. |
6203 | 5 |
*) |
6 |
||
7 |
signature PRESENT = |
|
8 |
sig |
|
24561 | 9 |
val session_name: theory -> string |
60082
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
10 |
val session_graph: string -> (string -> bool) -> theory -> Graph_Display.entry list |
56614 | 11 |
val document_enabled: string -> bool |
56612 | 12 |
val document_variants: string -> (string * string) list |
61381 | 13 |
val init: HTML.symbols -> bool -> bool -> Path.T -> string -> string -> (string * string) list -> |
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
14 |
(Path.T * Path.T) list -> Path.T -> string * string -> bool -> unit |
59445 | 15 |
val finish: unit -> unit |
9136 | 16 |
val theory_output: string -> string -> unit |
54456 | 17 |
val begin_theory: int -> (unit -> HTML.text) -> theory -> theory |
52549 | 18 |
val display_drafts: Path.T list -> int |
6203 | 19 |
end; |
20 |
||
7685 | 21 |
structure Present: PRESENT = |
22 |
struct |
|
23 |
||
7727 | 24 |
|
25 |
(** paths **) |
|
26 |
||
27 |
val tex_ext = Path.ext "tex"; |
|
28 |
val tex_path = tex_ext o Path.basic; |
|
29 |
val html_ext = Path.ext "html"; |
|
30 |
val html_path = html_ext o Path.basic; |
|
31 |
val index_path = Path.basic "index.html"; |
|
11856 | 32 |
val readme_html_path = Path.basic "README.html"; |
17082 | 33 |
val documentN = "document"; |
34 |
val document_path = Path.basic documentN; |
|
8196 | 35 |
val doc_indexN = "session"; |
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
36 |
val session_graph_path = Path.basic "session_graph.pdf"; |
7727 | 37 |
|
51415
8a33d581718b
show expanded path, to avoid odd /foo/bar/$ISABELLE_BROWSER_INFO/baz;
wenzelm
parents:
51401
diff
changeset
|
38 |
fun show_path path = Path.implode (Path.expand (Path.append (File.pwd ()) path)); |
11856 | 39 |
|
7727 | 40 |
|
14922 | 41 |
|
7727 | 42 |
(** additional theory data **) |
43 |
||
42008
7423e833a880
Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents:
42007
diff
changeset
|
44 |
structure Browser_Info = Theory_Data |
22846 | 45 |
( |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
46 |
type T = {chapter: string, name: string}; |
51567
a86c5e02ba58
proper default browser info for interactive mode, notably thy_deps;
wenzelm
parents:
51419
diff
changeset
|
47 |
val empty = {chapter = "Unsorted", name = "Unknown"}: T; |
16503 | 48 |
fun extend _ = empty; |
33522 | 49 |
fun merge _ = empty; |
22846 | 50 |
); |
7727 | 51 |
|
53171 | 52 |
val _ = Theory.setup |
53 |
(Browser_Info.put {chapter = Context.PureN, name = Context.PureN}); |
|
51567
a86c5e02ba58
proper default browser info for interactive mode, notably thy_deps;
wenzelm
parents:
51419
diff
changeset
|
54 |
|
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
55 |
val session_name = #name o Browser_Info.get; |
7727 | 56 |
|
57 |
||
60082
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
58 |
(* session graph *) |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
59 |
|
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
60 |
fun session_graph parent_session parent_loaded = |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
61 |
let |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
62 |
val parent_session_name = "session." ^ parent_session; |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
63 |
val parent_session_node = Graph_Display.content_node ("[" ^ parent_session ^ "]") []; |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
64 |
fun node_name name = if parent_loaded name then parent_session_name else "theory." ^ name; |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
65 |
fun theory_entry thy = |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
66 |
let |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
67 |
val name = Context.theory_name thy; |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
68 |
val deps = map (node_name o Context.theory_name) (Theory.parents_of thy); |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
69 |
in |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
70 |
if parent_loaded name then NONE |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
71 |
else SOME ((node_name name, Graph_Display.content_node name []), deps) |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
72 |
end; |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
73 |
in |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
74 |
fn thy => |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
75 |
((parent_session_name, parent_session_node), []) :: |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
76 |
map_filter theory_entry (Theory.nodes_of thy) |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
77 |
end; |
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
78 |
|
d3573eb7728f
session graph with folded base theories, as in document preparation;
wenzelm
parents:
59448
diff
changeset
|
79 |
|
7727 | 80 |
|
81 |
(** global browser info state **) |
|
82 |
||
83 |
(* type theory_info *) |
|
84 |
||
54456 | 85 |
type theory_info = {tex_source: string, html_source: string}; |
7727 | 86 |
|
54456 | 87 |
fun make_theory_info (tex_source, html_source) = |
88 |
{tex_source = tex_source, html_source = html_source}: theory_info; |
|
7727 | 89 |
|
54456 | 90 |
fun map_theory_info f {tex_source, html_source} = |
91 |
make_theory_info (f (tex_source, html_source)); |
|
7727 | 92 |
|
93 |
||
94 |
(* type browser_info *) |
|
95 |
||
54455
1d977436c1bf
removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents:
53171
diff
changeset
|
96 |
type browser_info = |
1d977436c1bf
removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents:
53171
diff
changeset
|
97 |
{theories: theory_info Symtab.table, |
1d977436c1bf
removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents:
53171
diff
changeset
|
98 |
tex_index: (int * string) list, |
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
99 |
html_index: (int * string) list}; |
7727 | 100 |
|
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
101 |
fun make_browser_info (theories, tex_index, html_index) : browser_info = |
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
102 |
{theories = theories, tex_index = tex_index, html_index = html_index}; |
7727 | 103 |
|
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
104 |
val empty_browser_info = make_browser_info (Symtab.empty, [], []); |
7727 | 105 |
|
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
106 |
fun map_browser_info f {theories, tex_index, html_index} = |
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
107 |
make_browser_info (f (theories, tex_index, html_index)); |
7727 | 108 |
|
109 |
||
110 |
(* state *) |
|
111 |
||
59173 | 112 |
val browser_info = Synchronized.var "browser_info" empty_browser_info; |
113 |
fun change_browser_info f = Synchronized.change browser_info (map_browser_info f); |
|
7727 | 114 |
|
115 |
fun init_theory_info name info = |
|
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
116 |
change_browser_info (fn (theories, tex_index, html_index) => |
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
117 |
(Symtab.update (name, info) theories, tex_index, html_index)); |
7727 | 118 |
|
119 |
fun change_theory_info name f = |
|
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
120 |
change_browser_info (fn (theories, tex_index, html_index) => |
17412 | 121 |
(case Symtab.lookup theories name of |
27491
c8178a6a6480
begin_theory: files_html needs to be produced outside of prep_html_source to make ML files appear!
wenzelm
parents:
27329
diff
changeset
|
122 |
NONE => error ("Browser info: cannot access theory document " ^ quote name) |
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
123 |
| SOME info => (Symtab.update (name, map_theory_info f info) theories, tex_index, html_index))); |
7727 | 124 |
|
125 |
||
126 |
fun add_tex_index txt = |
|
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
127 |
change_browser_info (fn (theories, tex_index, html_index) => |
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
128 |
(theories, txt :: tex_index, html_index)); |
7727 | 129 |
|
130 |
fun add_html_index txt = |
|
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
131 |
change_browser_info (fn (theories, tex_index, html_index) => |
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
132 |
(theories, tex_index, txt :: html_index)); |
7727 | 133 |
|
134 |
||
135 |
||
136 |
(** global session state **) |
|
137 |
||
138 |
(* session_info *) |
|
139 |
||
140 |
type session_info = |
|
61381 | 141 |
{symbols: HTML.symbols, name: string, chapter: string, info_path: Path.T, info: bool, |
142 |
doc_format: string, doc_output: Path.T option, doc_files: (Path.T * Path.T) list, |
|
143 |
graph_file: Path.T, documents: (string * string) list, verbose: bool, readme: Path.T option}; |
|
7727 | 144 |
|
9416 | 145 |
fun make_session_info |
61381 | 146 |
(symbols, name, chapter, info_path, info, doc_format, doc_output, doc_files, |
59446 | 147 |
graph_file, documents, verbose, readme) = |
61381 | 148 |
{symbols = symbols, name = name, chapter = chapter, info_path = info_path, info = info, |
149 |
doc_format = doc_format, doc_output = doc_output, doc_files = doc_files, graph_file = graph_file, |
|
59446 | 150 |
documents = documents, verbose = verbose, readme = readme}: session_info; |
7685 | 151 |
|
152 |
||
7727 | 153 |
(* state *) |
154 |
||
32738 | 155 |
val session_info = Unsynchronized.ref (NONE: session_info option); |
7727 | 156 |
|
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
157 |
fun with_session_info x f = (case ! session_info of NONE => x | SOME info => f info); |
7727 | 158 |
|
159 |
||
160 |
||
14922 | 161 |
(** document preparation **) |
7727 | 162 |
|
56614 | 163 |
(* options *) |
164 |
||
165 |
fun document_enabled s = s <> "" andalso s <> "false"; |
|
17082 | 166 |
|
56612 | 167 |
fun document_variants str = |
168 |
let |
|
169 |
fun read_variant s = |
|
170 |
(case space_explode "=" s of |
|
171 |
[name] => (name, "") |
|
172 |
| [name, tags] => (name, tags) |
|
173 |
| _ => error ("Malformed document variant specification: " ^ quote s)); |
|
174 |
val variants = map read_variant (space_explode ":" str); |
|
175 |
val _ = |
|
176 |
(case duplicates (op =) (map #1 variants) of |
|
177 |
[] => () |
|
178 |
| dups => error ("Duplicate document variants: " ^ commas_quote dups)); |
|
179 |
in variants end; |
|
17082 | 180 |
|
181 |
||
7727 | 182 |
(* init session *) |
183 |
||
61381 | 184 |
fun init symbols build info info_path doc document_output doc_variants doc_files graph_file |
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
185 |
(chapter, name) verbose = |
56530
5c178501cf78
removed obsolete doc_dump option (see also 892061142ba6);
wenzelm
parents:
54683
diff
changeset
|
186 |
if not build andalso not info andalso doc = "" then |
59173 | 187 |
(Synchronized.change browser_info (K empty_browser_info); session_info := NONE) |
11856 | 188 |
else |
189 |
let |
|
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
190 |
val doc_output = |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
191 |
if document_output = "" then NONE else SOME (Path.explode document_output); |
7727 | 192 |
|
42007 | 193 |
val documents = |
194 |
if doc = "" then [] |
|
56533
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
wenzelm
parents:
56531
diff
changeset
|
195 |
else if null doc_files andalso not (can File.check_dir document_path) then |
44389
a3b5fdfb04a3
tuned signature -- contrast physical output primitives versus Output.raw_message;
wenzelm
parents:
43850
diff
changeset
|
196 |
(if verbose then Output.physical_stderr "Warning: missing document directory\n" |
a3b5fdfb04a3
tuned signature -- contrast physical output primitives versus Output.raw_message;
wenzelm
parents:
43850
diff
changeset
|
197 |
else (); []) |
48804
6348e5fca42e
more direct interpretation of document_variants for build (unchanged for usedir);
wenzelm
parents:
48543
diff
changeset
|
198 |
else doc_variants; |
7727 | 199 |
|
51419
5313abe76bd4
include only README.html, not historic README, which tends towards surprises like src/HOL/SPARK/Examples/README;
wenzelm
parents:
51415
diff
changeset
|
200 |
val readme = if File.exists readme_html_path then SOME readme_html_path else NONE; |
7727 | 201 |
|
17082 | 202 |
val docs = |
203 |
(case readme of NONE => [] | SOME p => [(Url.File p, "README")]) @ |
|
42007 | 204 |
map (fn (name, _) => (Url.File (Path.ext doc (Path.basic name)), name)) documents; |
11856 | 205 |
in |
42007 | 206 |
session_info := |
61381 | 207 |
SOME (make_session_info (symbols, name, chapter, info_path, info, doc, |
59446 | 208 |
doc_output, doc_files, graph_file, documents, verbose, readme)); |
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
209 |
Synchronized.change browser_info (K empty_browser_info); |
61381 | 210 |
add_html_index (0, HTML.begin_session_index symbols name (Url.File session_graph_path) docs) |
42008
7423e833a880
Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents:
42007
diff
changeset
|
211 |
end; |
7727 | 212 |
|
213 |
||
28496
4cff10648928
renamed isatool to isabelle_tool in programming interfaces;
wenzelm
parents:
28375
diff
changeset
|
214 |
(* isabelle tool wrappers *) |
17082 | 215 |
|
48805
c3ea910b3581
explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents:
48804
diff
changeset
|
216 |
fun isabelle_document {verbose, purge} format name tags dir = |
17082 | 217 |
let |
48805
c3ea910b3581
explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents:
48804
diff
changeset
|
218 |
val s = "\"$ISABELLE_TOOL\" document" ^ (if purge then " -c" else "") ^ " -o '" ^ format ^ "' \ |
62549
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
61381
diff
changeset
|
219 |
\-n '" ^ name ^ "' -t '" ^ tags ^ "' " ^ File.bash_path dir ^ " 2>&1"; |
48805
c3ea910b3581
explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents:
48804
diff
changeset
|
220 |
val doc_path = Path.appends [dir, Path.parent, Path.basic name |> Path.ext format]; |
33682
0c5d1485dea7
isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents:
33522
diff
changeset
|
221 |
val _ = if verbose then writeln s else (); |
43850
7f2cbc713344
moved bash operations to Isabelle_System (cf. Scala version);
wenzelm
parents:
43712
diff
changeset
|
222 |
val (out, rc) = Isabelle_System.bash_output s; |
33682
0c5d1485dea7
isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents:
33522
diff
changeset
|
223 |
val _ = |
0c5d1485dea7
isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents:
33522
diff
changeset
|
224 |
if not (File.exists doc_path) orelse rc <> 0 then |
0c5d1485dea7
isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents:
33522
diff
changeset
|
225 |
cat_error out ("Failed to build document " ^ quote (show_path doc_path)) |
0c5d1485dea7
isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents:
33522
diff
changeset
|
226 |
else if verbose then writeln out |
0c5d1485dea7
isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents:
33522
diff
changeset
|
227 |
else (); |
0c5d1485dea7
isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents:
33522
diff
changeset
|
228 |
in doc_path end; |
17082 | 229 |
|
230 |
||
11856 | 231 |
(* finish session -- output all generated text *) |
232 |
||
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
58870
diff
changeset
|
233 |
fun sorted_index index = map snd (sort (int_ord o apply2 fst) (rev index)); |
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
234 |
fun index_buffer index = Buffer.add (implode (sorted_index index)) Buffer.empty; |
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
235 |
|
14922 | 236 |
fun write_tex src name path = |
28027 | 237 |
File.write_buffer (Path.append path (tex_path name)) src; |
14922 | 238 |
|
239 |
fun write_tex_index tex_index path = |
|
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
240 |
write_tex (index_buffer tex_index |> Buffer.add Latex.tex_trailer) doc_indexN path; |
14922 | 241 |
|
42008
7423e833a880
Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents:
42007
diff
changeset
|
242 |
fun finish () = |
59446 | 243 |
with_session_info () (fn {name, chapter, info, info_path, doc_format, |
59445 | 244 |
doc_output, doc_files, graph_file, documents, verbose, readme, ...} => |
7727 | 245 |
let |
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
246 |
val {theories, tex_index, html_index} = Synchronized.value browser_info; |
11856 | 247 |
val thys = Symtab.dest theories; |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
248 |
|
61372 | 249 |
val session_prefix = |
250 |
Path.append (Path.append info_path (Path.basic chapter)) (Path.basic name); |
|
7727 | 251 |
|
54456 | 252 |
fun finish_html (a, {html_source, ...}: theory_info) = |
253 |
File.write (Path.append session_prefix (html_path a)) html_source; |
|
11856 | 254 |
|
42007 | 255 |
val _ = |
256 |
if info then |
|
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
257 |
(Isabelle_System.mkdirs session_prefix; |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
258 |
File.write_buffer (Path.append session_prefix index_path) |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
259 |
(index_buffer html_index |> Buffer.add HTML.end_document); |
56533
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
wenzelm
parents:
56531
diff
changeset
|
260 |
(case readme of NONE => () | SOME path => Isabelle_System.copy_file path session_prefix); |
42007 | 261 |
List.app finish_html thys; |
54455
1d977436c1bf
removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents:
53171
diff
changeset
|
262 |
if verbose |
1d977436c1bf
removed remains of HTML presentation of auxiliary files -- inactive since Isabelle2013;
wenzelm
parents:
53171
diff
changeset
|
263 |
then Output.physical_stderr ("Browser info at " ^ show_path session_prefix ^ "\n") |
42007 | 264 |
else ()) |
265 |
else (); |
|
266 |
||
56533
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
wenzelm
parents:
56531
diff
changeset
|
267 |
fun document_job doc_prefix backdrop (doc_name, tags) = |
48935
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
268 |
let |
56533
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
wenzelm
parents:
56531
diff
changeset
|
269 |
val doc_dir = Path.append doc_prefix (Path.basic doc_name); |
56531 | 270 |
val _ = Isabelle_System.mkdirs doc_dir; |
271 |
val _ = |
|
272 |
Isabelle_System.isabelle_tool "latex" |
|
62549
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
61381
diff
changeset
|
273 |
("-o sty " ^ File.bash_path (Path.append doc_dir (Path.basic "root.tex"))); |
57885 | 274 |
val _ = List.app (fn file => Isabelle_System.copy_file_base file doc_dir) doc_files; |
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
275 |
val _ = Isabelle_System.copy_file graph_file (Path.append doc_dir session_graph_path); |
56531 | 276 |
val _ = write_tex_index tex_index doc_dir; |
277 |
val _ = |
|
278 |
List.app (fn (a, {tex_source, ...}) => |
|
279 |
write_tex (Buffer.add tex_source Buffer.empty) a doc_dir) thys; |
|
48935
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
280 |
in |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
281 |
fn () => |
56533
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
wenzelm
parents:
56531
diff
changeset
|
282 |
(isabelle_document {verbose = true, purge = backdrop} doc_format doc_name tags doc_dir, |
56531 | 283 |
fn doc => |
284 |
if verbose orelse not backdrop then |
|
285 |
Output.physical_stderr ("Document at " ^ show_path doc ^ "\n") |
|
286 |
else ()) |
|
48935
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
287 |
end; |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
288 |
|
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
289 |
val jobs = |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
290 |
(if info orelse is_none doc_output then |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
291 |
map (document_job session_prefix true) documents |
48935
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
292 |
else []) @ |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
293 |
(case doc_output of |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
294 |
NONE => [] |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
295 |
| SOME path => map (document_job path false) documents); |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
296 |
|
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
297 |
val _ = jobs |> Par_List.map (fn job => job ()) |> List.app (op |>); |
7727 | 298 |
in |
59173 | 299 |
Synchronized.change browser_info (K empty_browser_info); |
15531 | 300 |
session_info := NONE |
42008
7423e833a880
Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents:
42007
diff
changeset
|
301 |
end); |
7727 | 302 |
|
303 |
||
304 |
(* theory elements *) |
|
305 |
||
9136 | 306 |
fun theory_output name s = |
54458
96ccc8972fc7
prefer explicit "document" flag -- eliminated stateful Present.no_document;
wenzelm
parents:
54456
diff
changeset
|
307 |
with_session_info () (fn _ => |
58870
e2c0d8ef29cb
more flexibile \setisabellecontext, independently of header;
wenzelm
parents:
57885
diff
changeset
|
308 |
change_theory_info name (fn (_, html_source) => (Latex.isabelle_theory name s, html_source))); |
7727 | 309 |
|
59448
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
310 |
fun theory_link (curr_chapter, curr_session) thy = |
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
311 |
let |
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
312 |
val {chapter, name = session} = Browser_Info.get thy; |
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
313 |
val link = html_path (Context.theory_name thy); |
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
314 |
in |
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
315 |
if curr_session = session then SOME link |
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
316 |
else if curr_chapter = chapter then |
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
317 |
SOME (Path.appends [Path.parent, Path.basic session, link]) |
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
318 |
else if chapter = Context.PureN then NONE |
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
319 |
else SOME (Path.appends [Path.parent, Path.parent, Path.basic chapter, Path.basic session, link]) |
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
320 |
end; |
149d2bc5ddb6
prefer plain session_graph.pdf over GraphBrowser applet;
wenzelm
parents:
59446
diff
changeset
|
321 |
|
54456 | 322 |
fun begin_theory update_time mk_text thy = |
61381 | 323 |
with_session_info thy (fn {symbols, name = session_name, chapter, ...} => |
54456 | 324 |
let |
325 |
val name = Context.theory_name thy; |
|
326 |
val parents = Theory.parents_of thy; |
|
327 |
||
328 |
val parent_specs = parents |> map (fn parent => |
|
329 |
(Option.map Url.File (theory_link (chapter, session_name) parent), |
|
330 |
(Context.theory_name parent))); |
|
61381 | 331 |
val html_source = HTML.theory symbols name parent_specs (mk_text ()); |
54456 | 332 |
in |
333 |
init_theory_info name (make_theory_info ("", html_source)); |
|
61381 | 334 |
add_html_index (update_time, HTML.theory_entry symbols (Url.File (html_path name), name)); |
54456 | 335 |
add_tex_index (update_time, Latex.theory_entry name); |
336 |
Browser_Info.put {chapter = chapter, name = session_name} thy |
|
337 |
end); |
|
7727 | 338 |
|
339 |
||
340 |
||
42127
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
341 |
(** draft document output **) |
14922 | 342 |
|
52549 | 343 |
fun display_drafts src_paths = Isabelle_System.with_tmp_dir "drafts" (fn dir => |
14922 | 344 |
let |
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
345 |
fun prep_draft path i = |
14935 | 346 |
let |
347 |
val base = Path.base path; |
|
14972 | 348 |
val name = |
24829 | 349 |
(case Path.implode (#1 (Path.split_ext base)) of |
44986
6f27ecf2a951
unique file names via serial numbers, to allow files like "root" or multiple files with same base name;
wenzelm
parents:
44389
diff
changeset
|
350 |
"" => "DUMMY" |
6f27ecf2a951
unique file names via serial numbers, to allow files like "root" or multiple files with same base name;
wenzelm
parents:
44389
diff
changeset
|
351 |
| s => s) ^ serial_string (); |
14935 | 352 |
in |
353 |
if File.exists path then |
|
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
354 |
(((name, base, File.read path), (i, Latex.theory_entry name)), i + 1) |
41944
b97091ae583a
Path.print is the official way to show file-system paths to users -- note that Path.implode often indicates violation of the abstract datatype;
wenzelm
parents:
41886
diff
changeset
|
355 |
else error ("Bad file: " ^ Path.print path) |
14935 | 356 |
end; |
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
357 |
val (srcs, tex_index) = split_list (fst (fold_map prep_draft src_paths 0)); |
14935 | 358 |
|
42127
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
359 |
val doc_path = Path.append dir document_path; |
40743 | 360 |
val _ = Isabelle_System.mkdirs doc_path; |
14922 | 361 |
val root_path = Path.append doc_path (Path.basic "root.tex"); |
56533
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
wenzelm
parents:
56531
diff
changeset
|
362 |
val _ = Isabelle_System.copy_file (Path.explode "~~/lib/texinputs/draft.tex") root_path; |
62549
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
61381
diff
changeset
|
363 |
val _ = Isabelle_System.isabelle_tool "latex" ("-o sty " ^ File.bash_path root_path); |
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
61381
diff
changeset
|
364 |
val _ = Isabelle_System.isabelle_tool "latex" ("-o syms " ^ File.bash_path root_path); |
14922 | 365 |
|
366 |
fun known name = |
|
367 |
let val ss = split_lines (File.read (Path.append doc_path (Path.basic name))) |
|
20664 | 368 |
in member (op =) ss end; |
14922 | 369 |
val known_syms = known "syms.lst"; |
370 |
val known_ctrls = known "ctrls.lst"; |
|
371 |
||
15570 | 372 |
val _ = srcs |> List.app (fn (name, base, txt) => |
14935 | 373 |
Symbol.explode txt |
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
374 |
|> Latex.symbol_source (known_syms, known_ctrls) (Path.implode base) |
14935 | 375 |
|> File.write (Path.append doc_path (tex_path name))); |
14922 | 376 |
val _ = write_tex_index tex_index doc_path; |
377 |
||
48805
c3ea910b3581
explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents:
48804
diff
changeset
|
378 |
val result = |
52743 | 379 |
isabelle_document {verbose = false, purge = true} "pdf" documentN "" doc_path; |
54683
cf48ddc266e5
clarified "isabelle display" and 'display_drafts': re-use file and program instance, open asynchronously via desktop environment;
wenzelm
parents:
54458
diff
changeset
|
380 |
|
cf48ddc266e5
clarified "isabelle display" and 'display_drafts': re-use file and program instance, open asynchronously via desktop environment;
wenzelm
parents:
54458
diff
changeset
|
381 |
val target_dir = Path.explode "$ISABELLE_HOME_USER/tmp"; |
cf48ddc266e5
clarified "isabelle display" and 'display_drafts': re-use file and program instance, open asynchronously via desktop environment;
wenzelm
parents:
54458
diff
changeset
|
382 |
val target = Path.explode "$ISABELLE_HOME_USER/tmp/drafts.pdf" |
cf48ddc266e5
clarified "isabelle display" and 'display_drafts': re-use file and program instance, open asynchronously via desktop environment;
wenzelm
parents:
54458
diff
changeset
|
383 |
val _ = Isabelle_System.mkdirs target_dir; |
56533
cd8b6d849b6a
explicit 'document_files' in session ROOT specifications;
wenzelm
parents:
56531
diff
changeset
|
384 |
val _ = Isabelle_System.copy_file result target; |
52549 | 385 |
in |
62549
9498623b27f0
File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents:
61381
diff
changeset
|
386 |
Isabelle_System.isabelle_tool "display" (File.bash_path target ^ " &") |
52549 | 387 |
end); |
14922 | 388 |
|
7685 | 389 |
end; |