author | skalberg |
Sun, 13 Feb 2005 17:15:14 +0100 | |
changeset 15531 | 08c8dad8e399 |
parent 15159 | 2ef19a680646 |
child 15570 | 8d8c70b41bab |
permissions | -rw-r--r-- |
6203 | 1 |
(* Title: Pure/Thy/present.ML |
2 |
ID: $Id$ |
|
9416 | 3 |
Author: Markus Wenzel and Stefan Berghofer, TU Muenchen |
6203 | 4 |
|
9416 | 5 |
Theory presentation: HTML, graph files, (PDF)LaTeX documents. |
6203 | 6 |
*) |
7 |
||
8 |
signature BASIC_PRESENT = |
|
9 |
sig |
|
11057 | 10 |
val no_document: ('a -> 'b) -> 'a -> 'b |
7727 | 11 |
val section: string -> unit |
6203 | 12 |
end; |
13 |
||
14 |
signature PRESENT = |
|
15 |
sig |
|
7727 | 16 |
include BASIC_PRESENT |
14922 | 17 |
val get_info: theory -> {name: string, session: string list, is_local: bool} |
9452 | 18 |
val write_graph: {name: string, ID: string, dir: string, unfold: bool, |
19 |
path: string, parents: string list} list -> Path.T -> unit |
|
11911
6533ceee4cd7
build option enables most basic browser info (for proper recording of session);
wenzelm
parents:
11856
diff
changeset
|
20 |
val init: bool -> bool -> string -> bool -> string list -> string -> Path.T option |
11580 | 21 |
-> Url.T option * bool -> bool -> unit |
7727 | 22 |
val finish: unit -> unit |
23 |
val init_theory: string -> unit |
|
8192 | 24 |
val verbatim_source: string -> (unit -> Symbol.symbol list) -> unit |
25 |
val old_symbol_source: string -> (unit -> Symbol.symbol list) -> unit |
|
9136 | 26 |
val theory_output: string -> string -> unit |
15159
2ef19a680646
begin_theory now takes optional path (current directory) as argument.
berghofe
parents:
14981
diff
changeset
|
27 |
val begin_theory: Path.T option -> string -> string list -> |
2ef19a680646
begin_theory now takes optional path (current directory) as argument.
berghofe
parents:
14981
diff
changeset
|
28 |
(Path.T * bool) list -> theory -> theory |
13532 | 29 |
val add_hook: (string -> (string * thm list) list -> unit) -> unit |
30 |
val results: string -> (string * thm list) list -> unit |
|
7727 | 31 |
val theorem: string -> thm -> unit |
32 |
val theorems: string -> thm list -> unit |
|
8088 | 33 |
val chapter: string -> unit |
7727 | 34 |
val subsection: string -> unit |
35 |
val subsubsection: string -> unit |
|
14922 | 36 |
val drafts: string -> Path.T list -> Path.T |
7727 | 37 |
val setup: (theory -> theory) list |
6203 | 38 |
end; |
39 |
||
7685 | 40 |
structure Present: PRESENT = |
41 |
struct |
|
42 |
||
7727 | 43 |
|
44 |
(** paths **) |
|
45 |
||
46 |
val output_path = Path.variable "ISABELLE_BROWSER_INFO"; |
|
47 |
||
48 |
val tex_ext = Path.ext "tex"; |
|
49 |
val tex_path = tex_ext o Path.basic; |
|
50 |
val html_ext = Path.ext "html"; |
|
51 |
val html_path = html_ext o Path.basic; |
|
52 |
val index_path = Path.basic "index.html"; |
|
11856 | 53 |
val readme_html_path = Path.basic "README.html"; |
54 |
val readme_path = Path.basic "README"; |
|
7727 | 55 |
val doc_path = Path.basic "document"; |
8196 | 56 |
val doc_indexN = "session"; |
11856 | 57 |
val graph_path = Path.basic "session.graph"; |
58 |
val graph_pdf_path = Path.basic "session_graph.pdf"; |
|
59 |
val graph_eps_path = Path.basic "session_graph.eps"; |
|
7727 | 60 |
|
61 |
val session_path = Path.basic ".session"; |
|
62 |
val session_entries_path = Path.unpack ".session/entries"; |
|
63 |
val pre_index_path = Path.unpack ".session/pre-index"; |
|
64 |
||
9044 | 65 |
fun mk_rel_path [] ys = Path.make ys |
66 |
| mk_rel_path xs [] = Path.appends (replicate (length xs) Path.parent) |
|
9416 | 67 |
| mk_rel_path (ps as x :: xs) (qs as y :: ys) = if x = y then mk_rel_path xs ys else |
9044 | 68 |
Path.appends (replicate (length ps) Path.parent @ [Path.make qs]); |
7727 | 69 |
|
11856 | 70 |
fun show_path path = Path.pack (Path.append (File.pwd ()) path); |
71 |
||
7727 | 72 |
|
14922 | 73 |
|
7727 | 74 |
(** additional theory data **) |
75 |
||
76 |
structure BrowserInfoArgs = |
|
77 |
struct |
|
78 |
val name = "Pure/browser_info"; |
|
9416 | 79 |
type T = {name: string, session: string list, is_local: bool}; |
7727 | 80 |
|
9416 | 81 |
val empty = {name = "Pure", session = [], is_local = false}; |
7727 | 82 |
val copy = I; |
9452 | 83 |
fun prep_ext _ = {name = "", session = [], is_local = false}; |
7727 | 84 |
fun merge _ = empty; |
85 |
fun print _ _ = (); |
|
86 |
end; |
|
87 |
||
88 |
structure BrowserInfoData = TheoryDataFun(BrowserInfoArgs); |
|
89 |
||
90 |
fun get_info thy = |
|
91 |
if Theory.eq_thy (thy, ProtoPure.thy) then BrowserInfoArgs.empty |
|
92 |
else BrowserInfoData.get thy; |
|
93 |
||
94 |
||
95 |
||
96 |
(** graphs **) |
|
97 |
||
98 |
type graph_node = |
|
99 |
{name: string, ID: string, dir: string, unfold: bool, |
|
100 |
path: string, parents: string list}; |
|
101 |
||
9416 | 102 |
fun write_graph gr path = |
103 |
File.write path (cat_lines (map (fn {name, ID, dir, unfold, path, parents} => |
|
104 |
"\"" ^ name ^ "\" \"" ^ ID ^ "\" \"" ^ dir ^ (if unfold then "\" + \"" else "\" \"") ^ |
|
14598
7009f59711e3
Replaced quote by Library.quote, since quote now refers to Symbol.quote
berghofe
parents:
14540
diff
changeset
|
105 |
path ^ "\" > " ^ space_implode " " (map Library.quote parents) ^ " ;") gr)); |
7727 | 106 |
|
9416 | 107 |
fun ID_of sess s = space_implode "/" (sess @ [s]); |
7727 | 108 |
|
9416 | 109 |
(*retrieve graph data from initial theory loader database*) |
110 |
fun init_graph remote_path curr_sess = map (fn name => |
|
7727 | 111 |
let |
9416 | 112 |
val {name = sess_name, session, is_local} = get_info (ThyInfo.theory name); |
113 |
val path' = Path.append (Path.make session) (html_path name); |
|
7727 | 114 |
in |
9416 | 115 |
{name = name, ID = ID_of session name, dir = sess_name, |
116 |
path = |
|
117 |
if null session then "" else |
|
118 |
if is_some remote_path andalso not is_local then |
|
14898 | 119 |
Url.pack (Url.append (the remote_path) (Url.File |
9416 | 120 |
(Path.append (Path.make session) (html_path name)))) |
121 |
else Path.pack (Path.append (mk_rel_path curr_sess session) (html_path name)), |
|
122 |
unfold = false, |
|
123 |
parents = |
|
124 |
map (fn s => ID_of (#session (get_info (ThyInfo.theory s))) s) (ThyInfo.get_preds name)} |
|
7727 | 125 |
end) (ThyInfo.names ()); |
126 |
||
9416 | 127 |
fun ins_graph_entry (entry as {ID, ...}) (gr: graph_node list) = |
7727 | 128 |
filter_out (fn entry' => #ID entry' = ID) gr @ [entry]; |
129 |
||
130 |
||
131 |
||
132 |
(** global browser info state **) |
|
133 |
||
134 |
(* type theory_info *) |
|
135 |
||
136 |
type theory_info = {tex_source: Buffer.T, html_source: Buffer.T, html: Buffer.T}; |
|
137 |
||
138 |
fun make_theory_info (tex_source, html_source, html) = |
|
139 |
{tex_source = tex_source, html_source = html_source, html = html}: theory_info; |
|
140 |
||
141 |
val empty_theory_info = make_theory_info (Buffer.empty, Buffer.empty, Buffer.empty); |
|
142 |
||
143 |
fun map_theory_info f {tex_source, html_source, html} = |
|
144 |
make_theory_info (f (tex_source, html_source, html)); |
|
145 |
||
146 |
||
147 |
(* type browser_info *) |
|
148 |
||
11856 | 149 |
type browser_info = {theories: theory_info Symtab.table, files: (Path.T * string) list, |
150 |
tex_index: Buffer.T, html_index: Buffer.T, graph: graph_node list}; |
|
7727 | 151 |
|
11856 | 152 |
fun make_browser_info (theories, files, tex_index, html_index, graph) = |
153 |
{theories = theories, files = files, tex_index = tex_index, html_index = html_index, |
|
9416 | 154 |
graph = graph}: browser_info; |
7727 | 155 |
|
11856 | 156 |
val empty_browser_info = make_browser_info (Symtab.empty, [], Buffer.empty, Buffer.empty, []); |
7727 | 157 |
|
9416 | 158 |
fun init_browser_info remote_path curr_sess = make_browser_info |
11856 | 159 |
(Symtab.empty, [], Buffer.empty, Buffer.empty, init_graph remote_path curr_sess); |
7727 | 160 |
|
11856 | 161 |
fun map_browser_info f {theories, files, tex_index, html_index, graph} = |
162 |
make_browser_info (f (theories, files, tex_index, html_index, graph)); |
|
7727 | 163 |
|
164 |
||
165 |
(* state *) |
|
166 |
||
167 |
val browser_info = ref empty_browser_info; |
|
11057 | 168 |
fun change_browser_info f = browser_info := map_browser_info f (! browser_info); |
7727 | 169 |
|
11057 | 170 |
val suppress_tex_source = ref false; |
171 |
fun no_document f x = Library.setmp suppress_tex_source true f x; |
|
7727 | 172 |
|
173 |
fun init_theory_info name info = |
|
11856 | 174 |
change_browser_info (fn (theories, files, tex_index, html_index, graph) => |
175 |
(Symtab.update ((name, info), theories), files, tex_index, html_index, graph)); |
|
7727 | 176 |
|
177 |
fun change_theory_info name f = |
|
11856 | 178 |
change_browser_info (fn (info as (theories, files, tex_index, html_index, graph)) => |
7727 | 179 |
(case Symtab.lookup (theories, name) of |
15531 | 180 |
NONE => (warning ("Browser info: cannot access theory document " ^ quote name); info) |
181 |
| SOME info => (Symtab.update ((name, map_theory_info f info), theories), files, |
|
9416 | 182 |
tex_index, html_index, graph))); |
7727 | 183 |
|
184 |
||
11856 | 185 |
fun add_file file = |
186 |
change_browser_info (fn (theories, files, tex_index, html_index, graph) => |
|
187 |
(theories, file :: files, tex_index, html_index, graph)); |
|
188 |
||
7727 | 189 |
fun add_tex_index txt = |
11856 | 190 |
change_browser_info (fn (theories, files, tex_index, html_index, graph) => |
191 |
(theories, files, Buffer.add txt tex_index, html_index, graph)); |
|
7727 | 192 |
|
193 |
fun add_html_index txt = |
|
11856 | 194 |
change_browser_info (fn (theories, files, tex_index, html_index, graph) => |
195 |
(theories, files, tex_index, Buffer.add txt html_index, graph)); |
|
7727 | 196 |
|
197 |
fun add_graph_entry e = |
|
11856 | 198 |
change_browser_info (fn (theories, files, tex_index, html_index, graph) => |
199 |
(theories, files, tex_index, html_index, ins_graph_entry e graph)); |
|
7727 | 200 |
|
11057 | 201 |
fun add_tex_source name txt = |
202 |
if ! suppress_tex_source then () |
|
203 |
else change_theory_info name (fn (tex_source, html_source, html) => |
|
204 |
(Buffer.add txt tex_source, html_source, html)); |
|
7727 | 205 |
|
206 |
fun add_html_source name txt = change_theory_info name (fn (tex_source, html_source, html) => |
|
207 |
(tex_source, Buffer.add txt html_source, html)); |
|
208 |
||
209 |
fun add_html name txt = change_theory_info name (fn (tex_source, html_source, html) => |
|
210 |
(tex_source, html_source, Buffer.add txt html)); |
|
211 |
||
212 |
||
213 |
||
214 |
(** global session state **) |
|
215 |
||
216 |
(* session_info *) |
|
217 |
||
218 |
type session_info = |
|
219 |
{name: string, parent: string, session: string, path: string list, html_prefix: Path.T, |
|
11856 | 220 |
info: bool, doc_format: string, doc_graph: bool, doc_prefix1: Path.T option, |
221 |
doc_prefix2: Path.T option, remote_path: Url.T option, verbose: bool, readme: Path.T option}; |
|
7727 | 222 |
|
9416 | 223 |
fun make_session_info |
11856 | 224 |
(name, parent, session, path, html_prefix, info, doc_format, doc_graph, doc_prefix1, |
225 |
doc_prefix2, remote_path, verbose, readme) = |
|
7802 | 226 |
{name = name, parent = parent, session = session, path = path, html_prefix = html_prefix, |
11856 | 227 |
info = info, doc_format = doc_format, doc_graph = doc_graph, doc_prefix1 = doc_prefix1, |
228 |
doc_prefix2 = doc_prefix2, remote_path = remote_path, verbose = verbose, |
|
229 |
readme = readme}: session_info; |
|
7685 | 230 |
|
231 |
||
7727 | 232 |
(* state *) |
233 |
||
15531 | 234 |
val session_info = ref (NONE: session_info option); |
7727 | 235 |
|
15531 | 236 |
fun with_session x f = (case ! session_info of NONE => x | SOME info => f info); |
7727 | 237 |
fun with_context f = f (PureThy.get_name (Context.the_context ())); |
238 |
||
239 |
||
240 |
||
14922 | 241 |
(** document preparation **) |
7727 | 242 |
|
243 |
(* maintain index *) |
|
244 |
||
245 |
val session_entries = |
|
246 |
HTML.session_entries o |
|
14898 | 247 |
map (fn name => (Url.File (Path.append (Path.basic name) index_path), name)); |
7727 | 248 |
|
249 |
fun get_entries dir = |
|
250 |
split_lines (File.read (Path.append dir session_entries_path)); |
|
251 |
||
252 |
fun put_entries entries dir = |
|
253 |
File.write (Path.append dir session_entries_path) (cat_lines entries); |
|
254 |
||
255 |
||
256 |
fun create_index dir = |
|
257 |
File.read (Path.append dir pre_index_path) ^ |
|
258 |
session_entries (get_entries dir) ^ HTML.end_index |
|
259 |
|> File.write (Path.append dir index_path); |
|
260 |
||
261 |
fun update_index dir name = |
|
262 |
(case try get_entries dir of |
|
15531 | 263 |
NONE => warning ("Browser info: cannot access session index of " ^ quote (Path.pack dir)) |
264 |
| SOME es => (put_entries ((es \ name) @ [name]) dir; create_index dir)); |
|
7727 | 265 |
|
266 |
||
267 |
(* init session *) |
|
268 |
||
12895 | 269 |
fun copy_files path1 path2 = |
270 |
(File.mkdir path2; |
|
271 |
system ("cp " ^ File.sysify_path path1 ^ " " ^ File.sysify_path path2)); (*FIXME: quote!?*) |
|
7727 | 272 |
|
12895 | 273 |
fun copy_all path1 path2 = |
14922 | 274 |
(File.mkdir path2; |
12898 | 275 |
system ("cp -r " ^ File.quote_sysify_path path1 ^ "/. " ^ |
276 |
File.quote_sysify_path path2)); |
|
9044 | 277 |
|
9416 | 278 |
|
12895 | 279 |
fun name_of_session elems = space_implode "/" ("Isabelle" :: elems); |
280 |
||
11911
6533ceee4cd7
build option enables most basic browser info (for proper recording of session);
wenzelm
parents:
11856
diff
changeset
|
281 |
fun init build info doc doc_graph path name doc_prefix2 (remote_path, first_time) verbose = |
6533ceee4cd7
build option enables most basic browser info (for proper recording of session);
wenzelm
parents:
11856
diff
changeset
|
282 |
if not build andalso not info andalso doc = "" andalso is_none doc_prefix2 then |
15531 | 283 |
(browser_info := empty_browser_info; session_info := NONE) |
11856 | 284 |
else |
285 |
let |
|
286 |
val parent_name = name_of_session (Library.take (length path - 1, path)); |
|
287 |
val session_name = name_of_session path; |
|
288 |
val sess_prefix = Path.make path; |
|
289 |
val html_prefix = Path.append (Path.expand output_path) sess_prefix; |
|
7727 | 290 |
|
11856 | 291 |
val (doc_prefix1, document_path) = |
15531 | 292 |
if doc = "" then (NONE, NONE) |
11856 | 293 |
else if not (File.exists doc_path) then (conditional verbose (fn () => |
15531 | 294 |
std_error "Warning: missing document directory\n"); (NONE, NONE)) |
295 |
else (SOME (Path.append html_prefix doc_path), SOME (Path.ext doc doc_path)); |
|
7727 | 296 |
|
11856 | 297 |
val parent_index_path = Path.append Path.parent index_path; |
298 |
val index_up_lnk = if first_time then |
|
14898 | 299 |
Url.append (the remote_path) (Url.File (Path.append sess_prefix parent_index_path)) |
300 |
else Url.File parent_index_path; |
|
11856 | 301 |
val readme = |
15531 | 302 |
if File.exists readme_html_path then SOME readme_html_path |
303 |
else if File.exists readme_path then SOME readme_path |
|
304 |
else NONE; |
|
7727 | 305 |
|
11856 | 306 |
val index_text = HTML.begin_index (index_up_lnk, parent_name) |
14898 | 307 |
(Url.File index_path, session_name) (apsome Url.File readme) |
308 |
(apsome Url.File document_path) (Url.unpack "medium.html"); |
|
11856 | 309 |
in |
15531 | 310 |
session_info := SOME (make_session_info (name, parent_name, session_name, path, html_prefix, |
11856 | 311 |
info, doc, doc_graph, doc_prefix1, doc_prefix2, remote_path, verbose, readme)); |
312 |
browser_info := init_browser_info remote_path path; |
|
313 |
add_html_index index_text |
|
314 |
end; |
|
7727 | 315 |
|
316 |
||
11856 | 317 |
(* finish session -- output all generated text *) |
318 |
||
14922 | 319 |
fun write_tex src name path = |
320 |
Buffer.write (Path.append path (tex_path name)) src; |
|
321 |
||
322 |
fun write_tex_index tex_index path = |
|
323 |
write_tex (Buffer.add Latex.tex_trailer tex_index) doc_indexN path; |
|
324 |
||
7685 | 325 |
|
14967 | 326 |
fun isatool_document verbose doc_format path = |
14958 | 327 |
let |
328 |
val s = "\"$ISATOOL\" document -c -o '" ^ doc_format ^ "' " ^ |
|
14967 | 329 |
File.quote_sysify_path path ^ " 2>&1" ^ (if verbose then "" else " >/dev/null"); |
14972 | 330 |
val doc_path = Path.ext doc_format path; |
12632 | 331 |
in |
14967 | 332 |
if verbose then writeln s else (); |
333 |
system s; |
|
14972 | 334 |
if File.exists doc_path then () |
335 |
else error ("No document: " ^ quote (Path.pack (Path.expand doc_path))) |
|
8646
1a2c5ccebfdb
isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents:
8499
diff
changeset
|
336 |
end; |
7802 | 337 |
|
11856 | 338 |
fun isatool_browser graph = |
339 |
let |
|
340 |
val pdfpath = File.tmp_path graph_pdf_path; |
|
341 |
val epspath = File.tmp_path graph_eps_path; |
|
342 |
val gpath = File.tmp_path graph_path; |
|
343 |
val s = "\"$ISATOOL\" browser -o " ^ File.quote_sysify_path pdfpath ^ " " ^ |
|
344 |
File.quote_sysify_path gpath; |
|
345 |
in |
|
346 |
write_graph graph gpath; |
|
14958 | 347 |
if system s <> 0 orelse not (File.exists epspath) orelse not (File.exists pdfpath) |
348 |
then error "Failed to prepare dependency graph" |
|
11856 | 349 |
else |
350 |
let val pdf = File.read pdfpath and eps = File.read epspath |
|
351 |
in File.rm pdfpath; File.rm epspath; File.rm gpath; (pdf, eps) end |
|
352 |
end; |
|
8196 | 353 |
|
11856 | 354 |
fun finish () = with_session () (fn {name, info, html_prefix, doc_format, doc_graph, |
355 |
doc_prefix1, doc_prefix2, path, verbose, readme, ...} => |
|
7727 | 356 |
let |
11856 | 357 |
val {theories, files, tex_index, html_index, graph} = ! browser_info; |
358 |
val thys = Symtab.dest theories; |
|
9416 | 359 |
val parent_html_prefix = Path.append html_prefix Path.parent; |
7727 | 360 |
|
11856 | 361 |
fun finish_tex path (a, {tex_source, ...}: theory_info) = write_tex tex_source a path; |
362 |
fun finish_html (a, {html, ...}: theory_info) = |
|
363 |
Buffer.write (Path.append html_prefix (html_path a)) (Buffer.add HTML.end_theory html); |
|
364 |
||
365 |
val opt_graphs = |
|
366 |
if doc_graph andalso (is_some doc_prefix1 orelse is_some doc_prefix2) then |
|
15531 | 367 |
SOME (isatool_browser graph) |
368 |
else NONE; |
|
11856 | 369 |
|
12895 | 370 |
fun prepare_sources path = |
371 |
(copy_all doc_path path; |
|
372 |
copy_files (Path.unpack "~~/lib/texinputs/*.sty") path; |
|
15531 | 373 |
(case opt_graphs of NONE => () | SOME (pdf, eps) => |
11856 | 374 |
(File.write (Path.append path graph_pdf_path) pdf; |
375 |
File.write (Path.append path graph_eps_path) eps)); |
|
14922 | 376 |
write_tex_index tex_index path; |
11856 | 377 |
seq (finish_tex path) thys); |
7727 | 378 |
in |
11856 | 379 |
conditional info (fn () => |
380 |
(File.mkdir (Path.append html_prefix session_path); |
|
381 |
Buffer.write (Path.append html_prefix pre_index_path) html_index; |
|
382 |
File.write (Path.append html_prefix session_entries_path) ""; |
|
383 |
create_index html_prefix; |
|
384 |
if length path > 1 then update_index parent_html_prefix name else (); |
|
15531 | 385 |
(case readme of NONE => () | SOME path => File.copy path (Path.append html_prefix path)); |
11856 | 386 |
write_graph graph (Path.append html_prefix graph_path); |
14540 | 387 |
copy_files (Path.unpack "~~/lib/browser/GraphBrowser.jar") html_prefix; |
11856 | 388 |
seq (fn (a, txt) => File.write (Path.append html_prefix (Path.basic a)) txt) |
14898 | 389 |
(HTML.applet_pages name (Url.File index_path, name)); |
14540 | 390 |
copy_files (Path.unpack "~~/lib/html/isabelle.css") html_prefix; |
11856 | 391 |
seq finish_html thys; |
392 |
seq (uncurry File.write) files; |
|
393 |
conditional verbose (fn () => |
|
394 |
std_error ("Browser info at " ^ show_path html_prefix ^ "\n")))); |
|
395 |
||
15531 | 396 |
(case doc_prefix2 of NONE => () | SOME path => |
12895 | 397 |
(prepare_sources path; |
398 |
conditional verbose (fn () => std_error ("Document sources at " ^ show_path path ^ "\n")))); |
|
399 |
||
15531 | 400 |
(case doc_prefix1 of NONE => () | SOME path => |
12895 | 401 |
(prepare_sources path; |
14967 | 402 |
isatool_document true doc_format path; |
11856 | 403 |
conditional verbose (fn () => |
404 |
std_error ("Document at " ^ show_path (Path.ext doc_format path) ^ "\n")))); |
|
405 |
||
7727 | 406 |
browser_info := empty_browser_info; |
15531 | 407 |
session_info := NONE |
7727 | 408 |
end); |
409 |
||
410 |
||
411 |
(* theory elements *) |
|
412 |
||
413 |
fun init_theory name = with_session () (fn _ => init_theory_info name empty_theory_info); |
|
414 |
||
415 |
fun verbatim_source name mk_text = |
|
416 |
with_session () (fn _ => add_html_source name (HTML.verbatim_source (mk_text ()))); |
|
417 |
||
8192 | 418 |
fun old_symbol_source name mk_text = |
14922 | 419 |
with_session () (fn _ => add_tex_source name |
420 |
(Latex.symbol_source (K true, K true) name (mk_text ()))); |
|
8192 | 421 |
|
9136 | 422 |
fun theory_output name s = |
9917 | 423 |
with_session () (fn _ => add_tex_source name (Latex.isabelle_file name s)); |
7727 | 424 |
|
425 |
||
426 |
fun parent_link remote_path curr_session name = |
|
9416 | 427 |
let val {name = _, session, is_local} = get_info (ThyInfo.theory name) |
15531 | 428 |
in (if null session then NONE else |
429 |
SOME (if is_some remote_path andalso not is_local then |
|
14898 | 430 |
Url.append (the remote_path) (Url.File |
9044 | 431 |
(Path.append (Path.make session) (html_path name))) |
14898 | 432 |
else Url.File (Path.append (mk_rel_path curr_session session) |
9044 | 433 |
(html_path name))), name) |
7727 | 434 |
end; |
435 |
||
15159
2ef19a680646
begin_theory now takes optional path (current directory) as argument.
berghofe
parents:
14981
diff
changeset
|
436 |
fun begin_theory optpath name raw_parents orig_files thy = |
9416 | 437 |
with_session thy (fn {name = sess_name, session, path, html_prefix, remote_path, ...} => |
7727 | 438 |
let |
439 |
val parents = map (parent_link remote_path path) raw_parents; |
|
440 |
val ml_path = ThyLoad.ml_path name; |
|
15531 | 441 |
val files = map (apsnd SOME) orig_files @ |
442 |
(if is_some (ThyLoad.check_file optpath ml_path) then [(ml_path, NONE)] else []); |
|
7727 | 443 |
|
444 |
fun prep_file (raw_path, loadit) = |
|
15159
2ef19a680646
begin_theory now takes optional path (current directory) as argument.
berghofe
parents:
14981
diff
changeset
|
445 |
(case ThyLoad.check_file optpath raw_path of |
15531 | 446 |
SOME (path, _) => |
7727 | 447 |
let |
448 |
val base = Path.base path; |
|
449 |
val base_html = html_ext base; |
|
450 |
in |
|
11856 | 451 |
add_file (Path.append html_prefix base_html, |
14898 | 452 |
HTML.ml_file (Url.File base) (File.read path)); |
15531 | 453 |
(SOME (Url.File base_html), Url.File raw_path, loadit) |
7727 | 454 |
end |
15531 | 455 |
| NONE => (warning ("Browser info: expected to find ML file" ^ quote (Path.pack raw_path)); |
456 |
(NONE, Url.File raw_path, loadit))); |
|
7727 | 457 |
|
458 |
val files_html = map prep_file files; |
|
459 |
||
460 |
fun prep_html_source (tex_source, html_source, html) = |
|
461 |
let |
|
14898 | 462 |
val txt = HTML.begin_theory (Url.File index_path, session) |
7727 | 463 |
name parents files_html (Buffer.content html_source) |
464 |
in (tex_source, Buffer.empty, Buffer.add txt html) end; |
|
465 |
||
9416 | 466 |
val entry = |
467 |
{name = name, ID = ID_of path name, dir = sess_name, unfold = true, |
|
468 |
path = Path.pack (html_path name), |
|
469 |
parents = map (fn s => ID_of (#session (get_info (ThyInfo.theory s))) s) raw_parents}; |
|
7727 | 470 |
|
471 |
in |
|
472 |
change_theory_info name prep_html_source; |
|
9416 | 473 |
add_graph_entry entry; |
14898 | 474 |
add_html_index (HTML.theory_entry (Url.File (html_path name), name)); |
7727 | 475 |
add_tex_index (Latex.theory_entry name); |
9416 | 476 |
BrowserInfoData.put {name = sess_name, session = path, is_local = is_some remote_path} thy |
7727 | 477 |
end); |
478 |
||
479 |
||
13532 | 480 |
val hooks = ref ([]: (string -> (string * thm list) list -> unit) list); |
481 |
fun add_hook f = hooks := (f :: ! hooks); |
|
482 |
||
483 |
fun results k xs = |
|
484 |
(seq (fn f => (try (fn () => f k xs) (); ())) (! hooks); |
|
485 |
with_session () (fn _ => with_context add_html (HTML.results k xs))); |
|
486 |
||
487 |
fun theorem a th = results "theorem" [(a, [th])]; |
|
488 |
fun theorems a ths = results "theorems" [(a, ths)]; |
|
8088 | 489 |
fun chapter s = with_session () (fn _ => with_context add_html (HTML.chapter s)); |
7727 | 490 |
fun section s = with_session () (fn _ => with_context add_html (HTML.section s)); |
491 |
fun subsection s = with_session () (fn _ => with_context add_html (HTML.subsection s)); |
|
492 |
fun subsubsection s = with_session () (fn _ => with_context add_html (HTML.subsubsection s)); |
|
493 |
||
494 |
||
495 |
||
14922 | 496 |
(** draft document output **) |
497 |
||
498 |
fun drafts doc_format src_paths = |
|
499 |
let |
|
14935 | 500 |
fun prep_draft (tex_index, path) = |
501 |
let |
|
502 |
val base = Path.base path; |
|
14972 | 503 |
val name = |
504 |
(case Path.pack (#1 (Path.split_ext base)) of "" => gensym "DUMMY" | s => s); |
|
14935 | 505 |
in |
506 |
if File.exists path then |
|
507 |
(Buffer.add (Latex.theory_entry name) tex_index, (name, base, File.read path)) |
|
508 |
else error ("Bad file: " ^ quote (Path.pack path)) |
|
509 |
end; |
|
510 |
val (tex_index, srcs) = foldl_map prep_draft (Buffer.empty, src_paths); |
|
511 |
||
14922 | 512 |
val doc_path = File.tmp_path (Path.basic "document"); |
513 |
val _ = File.mkdir doc_path; |
|
514 |
val root_path = Path.append doc_path (Path.basic "root.tex"); |
|
515 |
val _ = File.copy (Path.unpack "~~/lib/texinputs/draft.tex") root_path; |
|
516 |
val _ = File.system_command |
|
517 |
("\"$ISATOOL\" latex -o sty " ^ File.quote_sysify_path root_path); |
|
518 |
val _ = File.system_command |
|
519 |
("\"$ISATOOL\" latex -o syms " ^ File.quote_sysify_path root_path); |
|
520 |
||
521 |
fun known name = |
|
522 |
let val ss = split_lines (File.read (Path.append doc_path (Path.basic name))) |
|
523 |
in fn s => s mem_string ss end; |
|
524 |
val known_syms = known "syms.lst"; |
|
525 |
val known_ctrls = known "ctrls.lst"; |
|
526 |
||
14935 | 527 |
val _ = srcs |> seq (fn (name, base, txt) => |
528 |
Symbol.explode txt |
|
529 |
|> Latex.symbol_source (known_syms, known_ctrls) (Path.pack base) |
|
530 |
|> File.write (Path.append doc_path (tex_path name))); |
|
14922 | 531 |
val _ = write_tex_index tex_index doc_path; |
14967 | 532 |
val _ = isatool_document false doc_format doc_path; |
14922 | 533 |
in Path.ext doc_format doc_path end; |
534 |
||
535 |
||
536 |
||
7727 | 537 |
(** theory setup **) |
538 |
||
539 |
val setup = [BrowserInfoData.init]; |
|
7685 | 540 |
|
541 |
end; |
|
542 |
||
6203 | 543 |
structure BasicPresent: BASIC_PRESENT = Present; |
544 |
open BasicPresent; |