author | wenzelm |
Tue, 12 Mar 2013 18:44:48 +0100 | |
changeset 51401 | f390b59b4b4a |
parent 51400 | 96361e8f0a54 |
child 51415 | 8a33d581718b |
permissions | -rw-r--r-- |
6203 | 1 |
(* Title: Pure/Thy/present.ML |
9416 | 2 |
Author: Markus Wenzel and Stefan Berghofer, TU Muenchen |
6203 | 3 |
|
9416 | 4 |
Theory presentation: HTML, graph files, (PDF)LaTeX documents. |
6203 | 5 |
*) |
6 |
||
7 |
signature BASIC_PRESENT = |
|
8 |
sig |
|
42008
7423e833a880
Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents:
42007
diff
changeset
|
9 |
val no_document: ('a -> 'b) -> 'a -> 'b (*not thread-safe!*) |
6203 | 10 |
end; |
11 |
||
12 |
signature PRESENT = |
|
13 |
sig |
|
7727 | 14 |
include BASIC_PRESENT |
24561 | 15 |
val session_name: theory -> string |
48804
6348e5fca42e
more direct interpretation of document_variants for build (unchanged for usedir);
wenzelm
parents:
48543
diff
changeset
|
16 |
val read_variant: string -> string * string |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
17 |
val init: bool -> bool -> Path.T -> string -> bool -> string -> (string * string) list -> |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
18 |
string * string -> bool * string -> bool -> theory list -> unit (*not thread-safe!*) |
42008
7423e833a880
Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents:
42007
diff
changeset
|
19 |
val finish: unit -> unit (*not thread-safe!*) |
7727 | 20 |
val init_theory: string -> unit |
27862
8f727f7c8c1d
removed obsolete verbatim_source, results, chapter, section etc.;
wenzelm
parents:
27491
diff
changeset
|
21 |
val theory_source: string -> (unit -> HTML.text) -> unit |
9136 | 22 |
val theory_output: string -> string -> unit |
51293
05b1bbae748d
discontinued obsolete 'uses' within theory header;
wenzelm
parents:
50707
diff
changeset
|
23 |
val begin_theory: int -> Path.T -> theory -> theory |
14922 | 24 |
val drafts: string -> Path.T list -> Path.T |
6203 | 25 |
end; |
26 |
||
7685 | 27 |
structure Present: PRESENT = |
28 |
struct |
|
29 |
||
7727 | 30 |
|
31 |
(** paths **) |
|
32 |
||
33 |
val tex_ext = Path.ext "tex"; |
|
34 |
val tex_path = tex_ext o Path.basic; |
|
35 |
val html_ext = Path.ext "html"; |
|
36 |
val html_path = html_ext o Path.basic; |
|
37 |
val index_path = Path.basic "index.html"; |
|
11856 | 38 |
val readme_html_path = Path.basic "README.html"; |
39 |
val readme_path = Path.basic "README"; |
|
17082 | 40 |
val documentN = "document"; |
41 |
val document_path = Path.basic documentN; |
|
8196 | 42 |
val doc_indexN = "session"; |
11856 | 43 |
val graph_path = Path.basic "session.graph"; |
44 |
val graph_pdf_path = Path.basic "session_graph.pdf"; |
|
45 |
val graph_eps_path = Path.basic "session_graph.eps"; |
|
7727 | 46 |
|
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
47 |
fun show_path path = Path.implode (Path.append (File.pwd ()) path); |
11856 | 48 |
|
7727 | 49 |
|
14922 | 50 |
|
7727 | 51 |
(** additional theory data **) |
52 |
||
42008
7423e833a880
Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents:
42007
diff
changeset
|
53 |
structure Browser_Info = Theory_Data |
22846 | 54 |
( |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
55 |
type T = {chapter: string, name: string}; |
51400 | 56 |
val empty = {chapter = Context.PureN, name = Context.PureN}: T; |
16503 | 57 |
fun extend _ = empty; |
33522 | 58 |
fun merge _ = empty; |
22846 | 59 |
); |
7727 | 60 |
|
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
61 |
val session_name = #name o Browser_Info.get; |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
62 |
val session_chapter_name = (fn {chapter, name} => [chapter, name]) o Browser_Info.get; |
24561 | 63 |
|
7727 | 64 |
|
65 |
||
66 |
(** graphs **) |
|
67 |
||
9416 | 68 |
fun ID_of sess s = space_implode "/" (sess @ [s]); |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
69 |
fun ID_of_thy thy = ID_of (session_chapter_name thy) (Context.theory_name thy); |
7727 | 70 |
|
51400 | 71 |
fun theory_link (curr_chapter, curr_session) thy = |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
72 |
let |
51400 | 73 |
val {chapter, name = session} = Browser_Info.get thy; |
74 |
val link = html_path (Context.theory_name thy); |
|
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
75 |
in |
51400 | 76 |
if curr_session = session then SOME link |
77 |
else if curr_chapter = chapter then |
|
78 |
SOME (Path.appends [Path.parent, Path.basic session, link]) |
|
79 |
else if chapter = Context.PureN then NONE |
|
80 |
else SOME (Path.appends [Path.parent, Path.parent, Path.basic chapter, Path.basic session, link]) |
|
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
81 |
end; |
23899
ab37b1f690c7
clarified init/begin_theory: no longer depend on thy_info.ML;
wenzelm
parents:
23884
diff
changeset
|
82 |
|
ab37b1f690c7
clarified init/begin_theory: no longer depend on thy_info.ML;
wenzelm
parents:
23884
diff
changeset
|
83 |
(*retrieve graph data from initial collection of theories*) |
51400 | 84 |
fun init_graph (curr_chapter, curr_session) = rev o map (fn thy => |
7727 | 85 |
let |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
86 |
val {chapter, name = session_name} = Browser_Info.get thy; |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
87 |
val thy_name = Context.theory_name thy; |
51400 | 88 |
val path = |
89 |
(case theory_link (curr_chapter, curr_session) thy of |
|
90 |
NONE => "" |
|
91 |
| SOME p => Path.implode p); |
|
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
92 |
val entry = |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
93 |
{name = thy_name, |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
94 |
ID = ID_of [chapter, session_name] thy_name, |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
95 |
dir = session_name, |
51400 | 96 |
path = path, |
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
97 |
unfold = false, |
49561 | 98 |
parents = map ID_of_thy (Theory.parents_of thy), |
99 |
content = []}; |
|
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
100 |
in (0, entry) end); |
7727 | 101 |
|
49561 | 102 |
fun ins_graph_entry (i, entry as {ID, ...}) (gr: (int * Graph_Display.node) list) = |
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
103 |
(i, entry) :: filter_out (fn (_, entry') => #ID entry' = ID) gr; |
7727 | 104 |
|
105 |
||
106 |
||
107 |
(** global browser info state **) |
|
108 |
||
109 |
(* type theory_info *) |
|
110 |
||
111 |
type theory_info = {tex_source: Buffer.T, html_source: Buffer.T, html: Buffer.T}; |
|
112 |
||
113 |
fun make_theory_info (tex_source, html_source, html) = |
|
114 |
{tex_source = tex_source, html_source = html_source, html = html}: theory_info; |
|
115 |
||
116 |
val empty_theory_info = make_theory_info (Buffer.empty, Buffer.empty, Buffer.empty); |
|
117 |
||
118 |
fun map_theory_info f {tex_source, html_source, html} = |
|
119 |
make_theory_info (f (tex_source, html_source, html)); |
|
120 |
||
121 |
||
122 |
(* type browser_info *) |
|
123 |
||
11856 | 124 |
type browser_info = {theories: theory_info Symtab.table, files: (Path.T * string) list, |
49561 | 125 |
tex_index: (int * string) list, html_index: (int * string) list, |
126 |
graph: (int * Graph_Display.node) list}; |
|
7727 | 127 |
|
11856 | 128 |
fun make_browser_info (theories, files, tex_index, html_index, graph) = |
129 |
{theories = theories, files = files, tex_index = tex_index, html_index = html_index, |
|
9416 | 130 |
graph = graph}: browser_info; |
7727 | 131 |
|
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
132 |
val empty_browser_info = make_browser_info (Symtab.empty, [], [], [], []); |
7727 | 133 |
|
51400 | 134 |
fun init_browser_info session thys = |
135 |
make_browser_info (Symtab.empty, [], [], [], init_graph session thys); |
|
7727 | 136 |
|
11856 | 137 |
fun map_browser_info f {theories, files, tex_index, html_index, graph} = |
138 |
make_browser_info (f (theories, files, tex_index, html_index, graph)); |
|
7727 | 139 |
|
140 |
||
141 |
(* state *) |
|
142 |
||
32738 | 143 |
val browser_info = Unsynchronized.ref empty_browser_info; |
144 |
fun change_browser_info f = |
|
145 |
CRITICAL (fn () => Unsynchronized.change browser_info (map_browser_info f)); |
|
7727 | 146 |
|
32738 | 147 |
val suppress_tex_source = Unsynchronized.ref false; |
42008
7423e833a880
Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents:
42007
diff
changeset
|
148 |
fun no_document f x = Unsynchronized.setmp suppress_tex_source true f x; |
7727 | 149 |
|
150 |
fun init_theory_info name info = |
|
11856 | 151 |
change_browser_info (fn (theories, files, tex_index, html_index, graph) => |
17412 | 152 |
(Symtab.update (name, info) theories, files, tex_index, html_index, graph)); |
7727 | 153 |
|
154 |
fun change_theory_info name f = |
|
42010 | 155 |
change_browser_info (fn (theories, files, tex_index, html_index, graph) => |
17412 | 156 |
(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
|
157 |
NONE => error ("Browser info: cannot access theory document " ^ quote name) |
17412 | 158 |
| SOME info => (Symtab.update (name, map_theory_info f info) theories, files, |
9416 | 159 |
tex_index, html_index, graph))); |
7727 | 160 |
|
161 |
||
11856 | 162 |
fun add_file file = |
163 |
change_browser_info (fn (theories, files, tex_index, html_index, graph) => |
|
164 |
(theories, file :: files, tex_index, html_index, graph)); |
|
165 |
||
7727 | 166 |
fun add_tex_index txt = |
11856 | 167 |
change_browser_info (fn (theories, files, tex_index, html_index, graph) => |
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
168 |
(theories, files, txt :: tex_index, html_index, graph)); |
7727 | 169 |
|
170 |
fun add_html_index txt = |
|
11856 | 171 |
change_browser_info (fn (theories, files, tex_index, html_index, graph) => |
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
172 |
(theories, files, tex_index, txt :: html_index, graph)); |
7727 | 173 |
|
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
174 |
fun add_graph_entry entry = |
11856 | 175 |
change_browser_info (fn (theories, files, tex_index, html_index, graph) => |
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
176 |
(theories, files, tex_index, html_index, ins_graph_entry entry graph)); |
7727 | 177 |
|
11057 | 178 |
fun add_tex_source name txt = |
179 |
if ! suppress_tex_source then () |
|
180 |
else change_theory_info name (fn (tex_source, html_source, html) => |
|
181 |
(Buffer.add txt tex_source, html_source, html)); |
|
7727 | 182 |
|
183 |
fun add_html_source name txt = change_theory_info name (fn (tex_source, html_source, html) => |
|
184 |
(tex_source, Buffer.add txt html_source, html)); |
|
185 |
||
186 |
||
187 |
||
188 |
(** global session state **) |
|
189 |
||
190 |
(* session_info *) |
|
191 |
||
192 |
type session_info = |
|
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
193 |
{name: string, chapter: string, info_path: Path.T, |
48805
c3ea910b3581
explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents:
48804
diff
changeset
|
194 |
info: bool, doc_format: string, doc_graph: bool, doc_output: Path.T option, |
51398
c3d02b3518c2
discontinued "isabelle usedir" option -P (remote path);
wenzelm
parents:
51293
diff
changeset
|
195 |
documents: (string * string) list, doc_dump: (bool * string), verbose: bool, |
c3d02b3518c2
discontinued "isabelle usedir" option -P (remote path);
wenzelm
parents:
51293
diff
changeset
|
196 |
readme: Path.T option}; |
7727 | 197 |
|
9416 | 198 |
fun make_session_info |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
199 |
(name, chapter, info_path, info, doc_format, doc_graph, doc_output, |
51398
c3d02b3518c2
discontinued "isabelle usedir" option -P (remote path);
wenzelm
parents:
51293
diff
changeset
|
200 |
documents, doc_dump, verbose, readme) = |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
201 |
{name = name, chapter = chapter, info_path = info_path, info = info, |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
202 |
doc_format = doc_format, doc_graph = doc_graph, doc_output = doc_output, |
51398
c3d02b3518c2
discontinued "isabelle usedir" option -P (remote path);
wenzelm
parents:
51293
diff
changeset
|
203 |
documents = documents, doc_dump = doc_dump, verbose = verbose, |
c3d02b3518c2
discontinued "isabelle usedir" option -P (remote path);
wenzelm
parents:
51293
diff
changeset
|
204 |
readme = readme}: session_info; |
7685 | 205 |
|
206 |
||
7727 | 207 |
(* state *) |
208 |
||
32738 | 209 |
val session_info = Unsynchronized.ref (NONE: session_info option); |
7727 | 210 |
|
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
211 |
fun with_session_info x f = (case ! session_info of NONE => x | SOME info => f info); |
7727 | 212 |
|
213 |
||
214 |
||
14922 | 215 |
(** document preparation **) |
7727 | 216 |
|
42004 | 217 |
(* document variants *) |
17082 | 218 |
|
42004 | 219 |
fun read_variant str = |
17082 | 220 |
(case space_explode "=" str of |
221 |
[name] => (name, "") |
|
222 |
| [name, tags] => (name, tags) |
|
42004 | 223 |
| _ => error ("Malformed document variant specification: " ^ quote str)); |
17082 | 224 |
|
225 |
||
7727 | 226 |
(* init session *) |
227 |
||
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
228 |
fun init build info info_path doc doc_graph document_output doc_variants |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
229 |
(chapter, name) (doc_dump as (_, dump_prefix)) verbose thys = |
48516
c5d0f19ef7cb
refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents:
48445
diff
changeset
|
230 |
if not build andalso not info andalso doc = "" andalso dump_prefix = "" then |
15531 | 231 |
(browser_info := empty_browser_info; session_info := NONE) |
11856 | 232 |
else |
233 |
let |
|
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
234 |
val doc_output = |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
235 |
if document_output = "" then NONE else SOME (Path.explode document_output); |
7727 | 236 |
|
42007 | 237 |
val documents = |
238 |
if doc = "" then [] |
|
42005 | 239 |
else if 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
|
240 |
(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
|
241 |
else (); []) |
48804
6348e5fca42e
more direct interpretation of document_variants for build (unchanged for usedir);
wenzelm
parents:
48543
diff
changeset
|
242 |
else doc_variants; |
7727 | 243 |
|
11856 | 244 |
val readme = |
15531 | 245 |
if File.exists readme_html_path then SOME readme_html_path |
246 |
else if File.exists readme_path then SOME readme_path |
|
247 |
else NONE; |
|
7727 | 248 |
|
17082 | 249 |
val docs = |
250 |
(case readme of NONE => [] | SOME p => [(Url.File p, "README")]) @ |
|
42007 | 251 |
map (fn (name, _) => (Url.File (Path.ext doc (Path.basic name)), name)) documents; |
11856 | 252 |
in |
42007 | 253 |
session_info := |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
254 |
SOME (make_session_info (name, chapter, info_path, info, doc, |
51398
c3d02b3518c2
discontinued "isabelle usedir" option -P (remote path);
wenzelm
parents:
51293
diff
changeset
|
255 |
doc_graph, doc_output, documents, doc_dump, verbose, readme)); |
51400 | 256 |
browser_info := init_browser_info (chapter, name) thys; |
51401 | 257 |
add_html_index (0, HTML.begin_session_index name docs (Url.explode "medium.html")) |
42008
7423e833a880
Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents:
42007
diff
changeset
|
258 |
end; |
7727 | 259 |
|
260 |
||
28496
4cff10648928
renamed isatool to isabelle_tool in programming interfaces;
wenzelm
parents:
28375
diff
changeset
|
261 |
(* isabelle tool wrappers *) |
17082 | 262 |
|
48805
c3ea910b3581
explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents:
48804
diff
changeset
|
263 |
fun isabelle_document {verbose, purge} format name tags dir = |
17082 | 264 |
let |
48805
c3ea910b3581
explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents:
48804
diff
changeset
|
265 |
val s = "\"$ISABELLE_TOOL\" document" ^ (if purge then " -c" else "") ^ " -o '" ^ format ^ "' \ |
c3ea910b3581
explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents:
48804
diff
changeset
|
266 |
\-n '" ^ name ^ "' -t '" ^ tags ^ "' " ^ File.shell_path dir ^ " 2>&1"; |
c3ea910b3581
explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents:
48804
diff
changeset
|
267 |
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
|
268 |
val _ = if verbose then writeln s else (); |
43850
7f2cbc713344
moved bash operations to Isabelle_System (cf. Scala version);
wenzelm
parents:
43712
diff
changeset
|
269 |
val (out, rc) = Isabelle_System.bash_output s; |
33682
0c5d1485dea7
isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents:
33522
diff
changeset
|
270 |
val _ = |
0c5d1485dea7
isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents:
33522
diff
changeset
|
271 |
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
|
272 |
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
|
273 |
else if verbose then writeln out |
0c5d1485dea7
isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents:
33522
diff
changeset
|
274 |
else (); |
0c5d1485dea7
isabelle_document: more explicit error output, notably for drafts;
wenzelm
parents:
33522
diff
changeset
|
275 |
in doc_path end; |
17082 | 276 |
|
42127
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
277 |
fun isabelle_browser graph = Isabelle_System.with_tmp_dir "browser" (fn dir => |
17082 | 278 |
let |
42127
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
279 |
val pdf_path = Path.append dir graph_pdf_path; |
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
280 |
val eps_path = Path.append dir graph_eps_path; |
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
281 |
val graph_path = Path.append dir graph_path; |
49565
ea4308b7ef0f
ML support for generic graph display, with browser and graphview backends (via print modes);
wenzelm
parents:
49561
diff
changeset
|
282 |
val _ = Graph_Display.write_graph_browser graph_path graph; |
42127
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
283 |
val args = "-o " ^ File.shell_path pdf_path ^ " " ^ File.shell_path graph_path; |
17082 | 284 |
in |
42127
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
285 |
if Isabelle_System.isabelle_tool "browser" args = 0 andalso |
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
286 |
File.exists pdf_path andalso File.exists eps_path |
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
287 |
then (File.read pdf_path, File.read eps_path) |
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
288 |
else error "Failed to prepare dependency graph" |
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
289 |
end); |
17082 | 290 |
|
291 |
||
11856 | 292 |
(* finish session -- output all generated text *) |
293 |
||
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
294 |
fun sorted_index index = map snd (sort (int_ord o pairself fst) (rev index)); |
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
295 |
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
|
296 |
|
14922 | 297 |
fun write_tex src name path = |
28027 | 298 |
File.write_buffer (Path.append path (tex_path name)) src; |
14922 | 299 |
|
300 |
fun write_tex_index tex_index path = |
|
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
301 |
write_tex (index_buffer tex_index |> Buffer.add Latex.tex_trailer) doc_indexN path; |
14922 | 302 |
|
7685 | 303 |
|
42008
7423e833a880
Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents:
42007
diff
changeset
|
304 |
fun finish () = |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
305 |
with_session_info () (fn {name, chapter, info, info_path, doc_format, doc_graph, doc_output, |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
306 |
documents, doc_dump = (dump_copy, dump_prefix), verbose, readme, ...} => |
7727 | 307 |
let |
11856 | 308 |
val {theories, files, tex_index, html_index, graph} = ! browser_info; |
309 |
val thys = Symtab.dest theories; |
|
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
310 |
|
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
311 |
val chapter_prefix = Path.append info_path (Path.basic chapter); |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
312 |
val session_prefix = Path.append chapter_prefix (Path.basic name); |
7727 | 313 |
|
11856 | 314 |
fun finish_html (a, {html, ...}: theory_info) = |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
315 |
File.write_buffer (Path.append session_prefix (html_path a)) |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
316 |
(Buffer.add HTML.end_document html); |
11856 | 317 |
|
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
318 |
val sorted_graph = sorted_index graph; |
11856 | 319 |
val opt_graphs = |
48516
c5d0f19ef7cb
refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents:
48445
diff
changeset
|
320 |
if doc_graph andalso (not (null documents) orelse dump_prefix <> "") then |
28496
4cff10648928
renamed isatool to isabelle_tool in programming interfaces;
wenzelm
parents:
28375
diff
changeset
|
321 |
SOME (isabelle_browser sorted_graph) |
15531 | 322 |
else NONE; |
11856 | 323 |
|
42007 | 324 |
val _ = |
325 |
if info then |
|
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
326 |
(Isabelle_System.mkdirs session_prefix; |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
327 |
File.write_buffer (Path.append session_prefix index_path) |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
328 |
(index_buffer html_index |> Buffer.add HTML.end_document); |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
329 |
(case readme of NONE => () | SOME path => File.copy path session_prefix); |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
330 |
Graph_Display.write_graph_browser (Path.append session_prefix graph_path) sorted_graph; |
42007 | 331 |
Isabelle_System.isabelle_tool "browser" "-b"; |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
332 |
File.copy (Path.explode "~~/lib/browser/GraphBrowser.jar") session_prefix; |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
333 |
List.app (fn (a, txt) => File.write (Path.append session_prefix (Path.basic a)) txt) |
42007 | 334 |
(HTML.applet_pages name (Url.File index_path, name)); |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
335 |
File.copy (Path.explode "~~/etc/isabelle.css") session_prefix; |
42007 | 336 |
List.app finish_html thys; |
337 |
List.app (uncurry File.write) files; |
|
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
338 |
if verbose then Output.physical_stderr ("Browser info at " ^ show_path session_prefix ^ "\n") |
42007 | 339 |
else ()) |
340 |
else (); |
|
341 |
||
50121
97d2b77313a0
isabelle build no longer supports document_dump/document_dump_mode (no INCOMPATIBILITY, since it was never in official release);
wenzelm
parents:
49565
diff
changeset
|
342 |
fun prepare_sources doc_copy doc_dir = |
48933 | 343 |
(Isabelle_System.mkdirs doc_dir; |
50121
97d2b77313a0
isabelle build no longer supports document_dump/document_dump_mode (no INCOMPATIBILITY, since it was never in official release);
wenzelm
parents:
49565
diff
changeset
|
344 |
if doc_copy then Isabelle_System.copy_dir document_path doc_dir else (); |
97d2b77313a0
isabelle build no longer supports document_dump/document_dump_mode (no INCOMPATIBILITY, since it was never in official release);
wenzelm
parents:
49565
diff
changeset
|
345 |
Isabelle_System.isabelle_tool "latex" |
97d2b77313a0
isabelle build no longer supports document_dump/document_dump_mode (no INCOMPATIBILITY, since it was never in official release);
wenzelm
parents:
49565
diff
changeset
|
346 |
("-o sty " ^ File.shell_path (Path.append doc_dir (Path.basic "root.tex"))); |
48933 | 347 |
(case opt_graphs of NONE => () | SOME (pdf, eps) => |
348 |
(File.write (Path.append doc_dir graph_pdf_path) pdf; |
|
349 |
File.write (Path.append doc_dir graph_eps_path) eps)); |
|
350 |
write_tex_index tex_index doc_dir; |
|
351 |
List.app (fn (a, {tex_source, ...}) => write_tex tex_source a doc_dir) thys); |
|
352 |
||
42007 | 353 |
val _ = |
48516
c5d0f19ef7cb
refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents:
48445
diff
changeset
|
354 |
if dump_prefix = "" then () |
c5d0f19ef7cb
refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents:
48445
diff
changeset
|
355 |
else |
c5d0f19ef7cb
refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents:
48445
diff
changeset
|
356 |
let |
c5d0f19ef7cb
refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents:
48445
diff
changeset
|
357 |
val path = Path.explode dump_prefix; |
50121
97d2b77313a0
isabelle build no longer supports document_dump/document_dump_mode (no INCOMPATIBILITY, since it was never in official release);
wenzelm
parents:
49565
diff
changeset
|
358 |
val _ = prepare_sources dump_copy path; |
48516
c5d0f19ef7cb
refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents:
48445
diff
changeset
|
359 |
in |
c5d0f19ef7cb
refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents:
48445
diff
changeset
|
360 |
if verbose then |
c5d0f19ef7cb
refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents:
48445
diff
changeset
|
361 |
Output.physical_stderr ("Document sources at " ^ show_path path ^ "\n") |
c5d0f19ef7cb
refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents:
48445
diff
changeset
|
362 |
else () |
c5d0f19ef7cb
refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents:
48445
diff
changeset
|
363 |
end; |
42007 | 364 |
|
48935
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
365 |
fun document_job doc_prefix backdrop (name, tags) = |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
366 |
let |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
367 |
val _ = |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
368 |
File.eq (document_path, doc_prefix) andalso |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
369 |
error ("Overlap of document input and output directory " ^ Path.print doc_prefix); |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
370 |
val dir = Path.append doc_prefix (Path.basic name); |
50121
97d2b77313a0
isabelle build no longer supports document_dump/document_dump_mode (no INCOMPATIBILITY, since it was never in official release);
wenzelm
parents:
49565
diff
changeset
|
371 |
val copy = not (File.eq (document_path, dir)); |
97d2b77313a0
isabelle build no longer supports document_dump/document_dump_mode (no INCOMPATIBILITY, since it was never in official release);
wenzelm
parents:
49565
diff
changeset
|
372 |
val _ = prepare_sources copy dir; |
48935
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
373 |
fun inform doc = |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
374 |
if verbose orelse not backdrop then |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
375 |
Output.physical_stderr ("Document at " ^ show_path doc ^ "\n") |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
376 |
else (); |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
377 |
in |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
378 |
fn () => |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
379 |
(isabelle_document {verbose = true, purge = backdrop} doc_format name tags dir, inform) |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
380 |
end; |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
381 |
|
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
382 |
val jobs = |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
383 |
(if info orelse is_none doc_output then |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
384 |
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
|
385 |
else []) @ |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
386 |
(case doc_output of |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
387 |
NONE => [] |
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
388 |
| 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
|
389 |
|
4c92a2f310b6
clarified document directories: browser_info as backdrop vs. optional output directory in the foreground;
wenzelm
parents:
48933
diff
changeset
|
390 |
val _ = jobs |> Par_List.map (fn job => job ()) |> List.app (op |>); |
7727 | 391 |
in |
392 |
browser_info := empty_browser_info; |
|
15531 | 393 |
session_info := NONE |
42008
7423e833a880
Present.init/finish/no_document are not thread-safe -- eliminated futile CRITICAL sections;
wenzelm
parents:
42007
diff
changeset
|
394 |
end); |
7727 | 395 |
|
396 |
||
397 |
(* theory elements *) |
|
398 |
||
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
399 |
fun init_theory name = with_session_info () (fn _ => init_theory_info name empty_theory_info); |
7727 | 400 |
|
27862
8f727f7c8c1d
removed obsolete verbatim_source, results, chapter, section etc.;
wenzelm
parents:
27491
diff
changeset
|
401 |
fun theory_source name mk_text = |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
402 |
with_session_info () (fn _ => add_html_source name (HTML.theory_source (mk_text ()))); |
7727 | 403 |
|
9136 | 404 |
fun theory_output name s = |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
405 |
with_session_info () (fn _ => add_tex_source name (Latex.isabelle_file name s)); |
7727 | 406 |
|
407 |
||
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
408 |
fun begin_theory update_time dir thy = |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
409 |
with_session_info thy (fn {name = session_name, chapter, info_path, ...} => |
23899
ab37b1f690c7
clarified init/begin_theory: no longer depend on thy_info.ML;
wenzelm
parents:
23884
diff
changeset
|
410 |
let |
ab37b1f690c7
clarified init/begin_theory: no longer depend on thy_info.ML;
wenzelm
parents:
23884
diff
changeset
|
411 |
val name = Context.theory_name thy; |
ab37b1f690c7
clarified init/begin_theory: no longer depend on thy_info.ML;
wenzelm
parents:
23884
diff
changeset
|
412 |
val parents = Theory.parents_of thy; |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
413 |
val parent_specs = parents |> map (fn parent => |
51400 | 414 |
(Option.map Url.File (theory_link (chapter, session_name) parent), |
415 |
(Context.theory_name parent))); |
|
7727 | 416 |
|
51293
05b1bbae748d
discontinued obsolete 'uses' within theory header;
wenzelm
parents:
50707
diff
changeset
|
417 |
val files = []; (* FIXME *) |
37939
965537d86fcc
discontinued special treatment of ML files -- no longer complete extensions on demand;
wenzelm
parents:
37216
diff
changeset
|
418 |
val files_html = files |> map (fn (raw_path, loadit) => |
965537d86fcc
discontinued special treatment of ML files -- no longer complete extensions on demand;
wenzelm
parents:
37216
diff
changeset
|
419 |
let |
43712
3c2c912af2ef
moved Outer_Syntax.load_thy to Thy_Load.load_thy;
wenzelm
parents:
43437
diff
changeset
|
420 |
val path = File.check_file (File.full_path dir raw_path); |
37939
965537d86fcc
discontinued special treatment of ML files -- no longer complete extensions on demand;
wenzelm
parents:
37216
diff
changeset
|
421 |
val base = Path.base path; |
965537d86fcc
discontinued special treatment of ML files -- no longer complete extensions on demand;
wenzelm
parents:
37216
diff
changeset
|
422 |
val base_html = html_ext base; |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
423 |
(* FIXME retain file path!? *) |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
424 |
val session_prefix = Path.appends [info_path, Path.basic chapter, Path.basic name]; |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
425 |
val _ = |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
426 |
add_file (Path.append session_prefix base_html, |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
427 |
HTML.external_file (Url.File base) (File.read path)); |
37939
965537d86fcc
discontinued special treatment of ML files -- no longer complete extensions on demand;
wenzelm
parents:
37216
diff
changeset
|
428 |
in (Url.File base_html, Url.File raw_path, loadit) end); |
7727 | 429 |
|
430 |
fun prep_html_source (tex_source, html_source, html) = |
|
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
431 |
let val txt = HTML.begin_theory name parent_specs files_html (Buffer.content html_source) |
7727 | 432 |
in (tex_source, Buffer.empty, Buffer.add txt html) end; |
433 |
||
9416 | 434 |
val entry = |
51400 | 435 |
{name = name, |
436 |
ID = ID_of [chapter, session_name] name, |
|
437 |
dir = session_name, |
|
438 |
unfold = true, |
|
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
439 |
path = Path.implode (html_path name), |
49561 | 440 |
parents = map ID_of_thy parents, |
441 |
content = []}; |
|
7727 | 442 |
in |
443 |
change_theory_info name prep_html_source; |
|
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
444 |
add_graph_entry (update_time, entry); |
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
445 |
add_html_index (update_time, HTML.theory_entry (Url.File (html_path name), name)); |
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
446 |
add_tex_index (update_time, Latex.theory_entry name); |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
51398
diff
changeset
|
447 |
Browser_Info.put {chapter = chapter, name = session_name} thy |
7727 | 448 |
end); |
449 |
||
450 |
||
451 |
||
42127
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
452 |
(** draft document output **) |
14922 | 453 |
|
42127
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
454 |
fun drafts doc_format src_paths = Isabelle_System.with_tmp_dir "drafts" (fn dir => |
14922 | 455 |
let |
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
456 |
fun prep_draft path i = |
14935 | 457 |
let |
458 |
val base = Path.base path; |
|
14972 | 459 |
val name = |
24829 | 460 |
(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
|
461 |
"" => "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
|
462 |
| s => s) ^ serial_string (); |
14935 | 463 |
in |
464 |
if File.exists path then |
|
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
465 |
(((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
|
466 |
else error ("Bad file: " ^ Path.print path) |
14935 | 467 |
end; |
24150
ed724867099a
sort indexes according to symbolic update_time (multithreading-safe);
wenzelm
parents:
24102
diff
changeset
|
468 |
val (srcs, tex_index) = split_list (fst (fold_map prep_draft src_paths 0)); |
14935 | 469 |
|
42127
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
470 |
val doc_path = Path.append dir document_path; |
40743 | 471 |
val _ = Isabelle_System.mkdirs doc_path; |
14922 | 472 |
val root_path = Path.append doc_path (Path.basic "root.tex"); |
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
473 |
val _ = File.copy (Path.explode "~~/lib/texinputs/draft.tex") root_path; |
40743 | 474 |
val _ = Isabelle_System.isabelle_tool "latex" ("-o sty " ^ File.shell_path root_path); |
475 |
val _ = Isabelle_System.isabelle_tool "latex" ("-o syms " ^ File.shell_path root_path); |
|
14922 | 476 |
|
477 |
fun known name = |
|
478 |
let val ss = split_lines (File.read (Path.append doc_path (Path.basic name))) |
|
20664 | 479 |
in member (op =) ss end; |
14922 | 480 |
val known_syms = known "syms.lst"; |
481 |
val known_ctrls = known "ctrls.lst"; |
|
482 |
||
15570 | 483 |
val _ = srcs |> List.app (fn (name, base, txt) => |
14935 | 484 |
Symbol.explode txt |
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
485 |
|> Latex.symbol_source (known_syms, known_ctrls) (Path.implode base) |
14935 | 486 |
|> File.write (Path.append doc_path (tex_path name))); |
14922 | 487 |
val _ = write_tex_index tex_index doc_path; |
488 |
||
48805
c3ea910b3581
explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents:
48804
diff
changeset
|
489 |
val result = |
c3ea910b3581
explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents:
48804
diff
changeset
|
490 |
isabelle_document {verbose = false, purge = true} doc_format documentN "" doc_path; |
42127
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
491 |
val result' = Isabelle_System.create_tmp_path documentN doc_format; |
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
492 |
val _ = File.copy result result'; |
8223e7f4b0da
Isabelle_System.create_tmp_path/with_tmp_file: optional extension;
wenzelm
parents:
42126
diff
changeset
|
493 |
in result' end); |
14922 | 494 |
|
7685 | 495 |
end; |
496 |
||
32738 | 497 |
structure Basic_Present: BASIC_PRESENT = Present; |
498 |
open Basic_Present; |