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