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