author | clasohm |
Thu, 26 Oct 1995 13:53:04 +0100 | |
changeset 1313 | 9fb65f3db319 |
parent 1308 | 396ef8aa37b7 |
child 1317 | 83ce32aa4e9b |
permissions | -rw-r--r-- |
391 | 1 |
(* Title: Pure/Thy/thy_read.ML |
2 |
ID: $Id$ |
|
559 | 3 |
Author: Carsten Clasohm and Markus Wenzel and Sonia Mahjoub and |
4 |
Tobias Nipkow and L C Paulson |
|
5 |
Copyright 1994 TU Muenchen |
|
391 | 6 |
|
1242 | 7 |
Functions for reading theory files, and storing and retrieving theories, |
8 |
theorems and the global simplifier set. |
|
391 | 9 |
*) |
10 |
||
1157 | 11 |
(*Type for theory storage*) |
1291 | 12 |
datatype thy_info = |
13 |
ThyInfo of {path: string, |
|
14 |
children: string list, parents: string list, |
|
15 |
thy_time: string option, ml_time: string option, |
|
16 |
theory: theory option, thms: thm Symtab.table, |
|
17 |
thy_ss: Simplifier.simpset option, |
|
18 |
simpset: Simplifier.simpset option}; |
|
1157 | 19 |
(*meaning of special values: |
20 |
thy_time, ml_time = None theory file has not been read yet |
|
21 |
= Some "" theory was read but has either been marked |
|
22 |
as outdated or there is no such file for |
|
23 |
this theory (see e.g. 'virtual' theories |
|
24 |
like Pure or theories without a ML file) |
|
25 |
theory = None theory has not been read yet |
|
1291 | 26 |
|
27 |
parents: While 'children' contains all theories the theory depends |
|
28 |
on (i.e. also ones quoted in the .thy file), |
|
29 |
'parents' only contains the theories which were used to form |
|
30 |
the base of this theory. |
|
31 |
||
32 |
origin of the simpsets: |
|
33 |
thy_ss: snapshot of !Simpset.simpset after .thy file was read |
|
34 |
simpset: snapshot of !Simpset.simpset after .ML file was read |
|
1157 | 35 |
*) |
391 | 36 |
|
412 | 37 |
signature READTHY = |
391 | 38 |
sig |
39 |
datatype basetype = Thy of string |
|
40 |
| File of string |
|
41 |
||
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
42 |
val loaded_thys : thy_info Symtab.table ref |
391 | 43 |
val loadpath : string list ref |
44 |
val delete_tmpfiles: bool ref |
|
45 |
||
46 |
val use_thy : string -> unit |
|
47 |
val update : unit -> unit |
|
48 |
val time_use_thy : string -> unit |
|
49 |
val unlink_thy : string -> unit |
|
586
201e115d8031
renamed base_on into mk_base and moved it to the beginning of the generated
clasohm
parents:
559
diff
changeset
|
50 |
val mk_base : basetype list -> string -> bool -> theory |
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
51 |
val store_theory : theory * string -> unit |
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
52 |
|
559 | 53 |
val theory_of_sign: Sign.sg -> theory |
54 |
val theory_of_thm: thm -> theory |
|
1291 | 55 |
val children_of: string -> string list |
56 |
val parents_of: string -> string list |
|
57 |
||
559 | 58 |
val store_thm: string * thm -> thm |
758 | 59 |
val bind_thm: string * thm -> unit |
559 | 60 |
val qed: string -> unit |
758 | 61 |
val qed_thm: thm ref |
746 | 62 |
val qed_goal: string -> theory -> string -> (thm list -> tactic list) -> unit |
63 |
val qed_goalw: string -> theory->thm list->string->(thm list->tactic list) |
|
64 |
-> unit |
|
559 | 65 |
val get_thm: theory -> string -> thm |
66 |
val thms_of: theory -> (string * thm) list |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
67 |
val simpset_of: string -> Simplifier.simpset |
778 | 68 |
val print_theory: theory -> unit |
1291 | 69 |
|
70 |
val gif_path : string ref |
|
1313 | 71 |
val index_path : string ref |
1291 | 72 |
val make_html : bool ref |
73 |
val init_html: unit -> unit |
|
74 |
val make_chart: unit -> unit |
|
391 | 75 |
end; |
76 |
||
77 |
||
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
78 |
functor ReadthyFun(structure ThySyn: THY_SYN and ThmDB: THMDB): READTHY = |
391 | 79 |
struct |
1242 | 80 |
|
81 |
open ThmDB Simplifier; |
|
391 | 82 |
|
83 |
datatype basetype = Thy of string |
|
84 |
| File of string; |
|
85 |
||
1291 | 86 |
val loaded_thys = |
87 |
ref (Symtab.make [("ProtoPure", |
|
88 |
ThyInfo {path = "", |
|
89 |
children = ["Pure", "CPure"], parents = [], |
|
90 |
thy_time = Some "", ml_time = Some "", |
|
91 |
theory = Some proto_pure_thy, thms = Symtab.null, |
|
92 |
thy_ss = None, simpset = None}), |
|
93 |
("Pure", |
|
94 |
ThyInfo {path = "", children = [], |
|
95 |
parents = ["ProtoPure"], |
|
96 |
thy_time = Some "", ml_time = Some "", |
|
97 |
theory = Some pure_thy, thms = Symtab.null, |
|
98 |
thy_ss = None, simpset = None}), |
|
99 |
("CPure", |
|
100 |
ThyInfo {path = "", |
|
101 |
children = [], parents = ["ProtoPure"], |
|
102 |
thy_time = Some "", ml_time = Some "", |
|
103 |
theory = Some cpure_thy, |
|
104 |
thms = Symtab.null, |
|
105 |
thy_ss = None, simpset = None}) |
|
106 |
]); |
|
391 | 107 |
|
1291 | 108 |
val loadpath = ref ["."]; (*default search path for theory files*) |
109 |
||
110 |
val delete_tmpfiles = ref true; (*remove temporary files after use*) |
|
111 |
||
391 | 112 |
|
1291 | 113 |
(*Set location of graphics for HTML files |
114 |
(When this is executed for the first time we are in $ISABELLE/Pure/Thy. |
|
115 |
This path is converted to $ISABELLE/Tools by removing the last two |
|
116 |
directories and appending "Tools". All subsequently made ReadThy |
|
117 |
structures inherit this value.) |
|
118 |
*) |
|
119 |
val gif_path = ref (tack_on ("/" ^ |
|
120 |
space_implode "/" (rev (tl (tl (rev (space_explode "/" (pwd ()))))))) |
|
121 |
"Tools"); |
|
122 |
||
1313 | 123 |
(*Location of theory-list.txt and index.html (normally set by init_html)*) |
124 |
val index_path = ref ""; |
|
1291 | 125 |
|
126 |
val make_html = ref false; (*don't make HTML versions of loaded theories*) |
|
127 |
||
128 |
(*HTML file of theory currently being read |
|
129 |
(Initialized by thyfile2html; used by use_thy and store_thm)*) |
|
130 |
val cur_htmlfile = ref None : outstream option ref; |
|
131 |
||
391 | 132 |
|
133 |
(*Make name of the output ML file for a theory *) |
|
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
134 |
fun out_name tname = "." ^ tname ^ ".thy.ML"; |
391 | 135 |
|
136 |
(*Read a file specified by thy_file containing theory thy *) |
|
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
137 |
fun read_thy tname thy_file = |
559 | 138 |
let |
391 | 139 |
val instream = open_in thy_file; |
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
140 |
val outstream = open_out (out_name tname); |
559 | 141 |
in |
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
142 |
output (outstream, ThySyn.parse tname (input (instream, 999999))); |
391 | 143 |
close_out outstream; |
144 |
close_in instream |
|
145 |
end; |
|
146 |
||
147 |
fun file_exists file = |
|
148 |
let val instream = open_in file in close_in instream; true end |
|
149 |
handle Io _ => false; |
|
150 |
||
151 |
(*Get thy_info for a loaded theory *) |
|
559 | 152 |
fun get_thyinfo tname = Symtab.lookup (!loaded_thys, tname); |
391 | 153 |
|
971
f4815812665b
fixed bug: parent theory wasn't loaded if .thy file was completly read before
clasohm
parents:
922
diff
changeset
|
154 |
(*Check if a theory was completly loaded *) |
391 | 155 |
fun already_loaded thy = |
156 |
let val t = get_thyinfo thy |
|
157 |
in if is_none t then false |
|
971
f4815812665b
fixed bug: parent theory wasn't loaded if .thy file was completly read before
clasohm
parents:
922
diff
changeset
|
158 |
else let val ThyInfo {thy_time, ml_time, ...} = the t |
f4815812665b
fixed bug: parent theory wasn't loaded if .thy file was completly read before
clasohm
parents:
922
diff
changeset
|
159 |
in is_some thy_time andalso is_some ml_time end |
391 | 160 |
end; |
161 |
||
162 |
(*Check if a theory file has changed since its last use. |
|
163 |
Return a pair of boolean values for .thy and for .ML *) |
|
559 | 164 |
fun thy_unchanged thy thy_file ml_file = |
1098
487089cb173e
fixed bug in thy_unchanged that occurred when the .thy file was changed
clasohm
parents:
971
diff
changeset
|
165 |
case get_thyinfo thy of |
487089cb173e
fixed bug in thy_unchanged that occurred when the .thy file was changed
clasohm
parents:
971
diff
changeset
|
166 |
Some (ThyInfo {thy_time, ml_time, ...}) => |
487089cb173e
fixed bug in thy_unchanged that occurred when the .thy file was changed
clasohm
parents:
971
diff
changeset
|
167 |
let val tn = is_none thy_time; |
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
168 |
val mn = is_none ml_time |
391 | 169 |
in if not tn andalso not mn then |
1098
487089cb173e
fixed bug in thy_unchanged that occurred when the .thy file was changed
clasohm
parents:
971
diff
changeset
|
170 |
((file_info thy_file = the thy_time), |
487089cb173e
fixed bug in thy_unchanged that occurred when the .thy file was changed
clasohm
parents:
971
diff
changeset
|
171 |
(file_info ml_file = the ml_time)) |
487089cb173e
fixed bug in thy_unchanged that occurred when the .thy file was changed
clasohm
parents:
971
diff
changeset
|
172 |
else if not tn andalso mn then |
487089cb173e
fixed bug in thy_unchanged that occurred when the .thy file was changed
clasohm
parents:
971
diff
changeset
|
173 |
(file_info thy_file = the thy_time, false) |
487089cb173e
fixed bug in thy_unchanged that occurred when the .thy file was changed
clasohm
parents:
971
diff
changeset
|
174 |
else |
487089cb173e
fixed bug in thy_unchanged that occurred when the .thy file was changed
clasohm
parents:
971
diff
changeset
|
175 |
(false, false) |
391 | 176 |
end |
1098
487089cb173e
fixed bug in thy_unchanged that occurred when the .thy file was changed
clasohm
parents:
971
diff
changeset
|
177 |
| None => (false, false) |
391 | 178 |
|
1291 | 179 |
(*Get all direct descendants of a theory*) |
180 |
fun children_of t = |
|
181 |
case get_thyinfo t of Some (ThyInfo {children, ...}) => children |
|
182 |
| _ => []; |
|
183 |
||
1242 | 184 |
(*Get all direct ancestors of a theory*) |
1291 | 185 |
fun parents_of t = |
186 |
case get_thyinfo t of Some (ThyInfo {parents, ...}) => parents |
|
187 |
| _ => []; |
|
1242 | 188 |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
189 |
(*Get all descendants of a theory list *) |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
190 |
fun get_descendants [] = [] |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
191 |
| get_descendants (t :: ts) = |
1291 | 192 |
let val children = children_of t |
193 |
in children union (get_descendants (children union ts)) end; |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
194 |
|
1242 | 195 |
(*Get theory object for a loaded theory *) |
1291 | 196 |
fun theory_of name = |
1242 | 197 |
let val ThyInfo {theory, ...} = the (get_thyinfo name) |
198 |
in the theory end; |
|
199 |
||
1291 | 200 |
(*Get path where theory's files are located*) |
201 |
fun path_of tname = |
|
202 |
let val ThyInfo {path, ...} = the (get_thyinfo tname) |
|
203 |
in path end; |
|
204 |
||
391 | 205 |
exception FILE_NOT_FOUND; (*raised by find_file *) |
206 |
||
207 |
(*Find a file using a list of paths if no absolute or relative path is |
|
208 |
specified.*) |
|
209 |
fun find_file "" name = |
|
1291 | 210 |
let fun find_it (cur :: paths) = |
211 |
if file_exists (tack_on cur name) then |
|
212 |
(if cur = "." then name else tack_on cur name) |
|
559 | 213 |
else |
1291 | 214 |
find_it paths |
391 | 215 |
| find_it [] = "" |
216 |
in find_it (!loadpath) end |
|
217 |
| find_file path name = |
|
218 |
if file_exists (tack_on path name) then tack_on path name |
|
219 |
else ""; |
|
220 |
||
221 |
(*Get absolute pathnames for a new or already loaded theory *) |
|
222 |
fun get_filenames path name = |
|
223 |
let fun make_absolute file = |
|
559 | 224 |
if file = "" then "" else |
391 | 225 |
if hd (explode file) = "/" then file else tack_on (pwd ()) file; |
226 |
||
227 |
fun new_filename () = |
|
228 |
let val found = find_file path (name ^ ".thy") |
|
229 |
handle FILE_NOT_FOUND => ""; |
|
230 |
val thy_file = make_absolute found; |
|
231 |
val (thy_path, _) = split_filename thy_file; |
|
232 |
val found = find_file path (name ^ ".ML"); |
|
233 |
val ml_file = if thy_file = "" then make_absolute found |
|
234 |
else if file_exists (tack_on thy_path (name ^ ".ML")) |
|
235 |
then tack_on thy_path (name ^ ".ML") |
|
236 |
else ""; |
|
237 |
val searched_dirs = if path = "" then (!loadpath) else [path] |
|
238 |
in if thy_file = "" andalso ml_file = "" then |
|
239 |
error ("Could not find file \"" ^ name ^ ".thy\" or \"" |
|
240 |
^ name ^ ".ML\" for theory \"" ^ name ^ "\"\n" |
|
241 |
^ "in the following directories: \"" ^ |
|
242 |
(space_implode "\", \"" searched_dirs) ^ "\"") |
|
243 |
else (); |
|
559 | 244 |
(thy_file, ml_file) |
391 | 245 |
end; |
246 |
||
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
247 |
val tinfo = get_thyinfo name; |
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
248 |
in if is_some tinfo andalso path = "" then |
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
249 |
let val ThyInfo {path = abs_path, ...} = the tinfo; |
391 | 250 |
val (thy_file, ml_file) = if abs_path = "" then new_filename () |
251 |
else (find_file abs_path (name ^ ".thy"), |
|
252 |
find_file abs_path (name ^ ".ML")) |
|
253 |
in if thy_file = "" andalso ml_file = "" then |
|
254 |
(writeln ("Warning: File \"" ^ (tack_on path name) |
|
255 |
^ ".thy\"\ncontaining theory \"" ^ name |
|
256 |
^ "\" no longer exists."); |
|
257 |
new_filename () |
|
258 |
) |
|
259 |
else (thy_file, ml_file) |
|
260 |
end |
|
261 |
else new_filename () |
|
262 |
end; |
|
263 |
||
264 |
(*Remove theory from all child lists in loaded_thys *) |
|
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
265 |
fun unlink_thy tname = |
1291 | 266 |
let fun remove (ThyInfo {path, children, parents, thy_time, ml_time, |
267 |
theory, thms, thy_ss, simpset}) = |
|
268 |
ThyInfo {path = path, children = children \ tname, parents = parents, |
|
1242 | 269 |
thy_time = thy_time, ml_time = ml_time, theory = theory, |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
270 |
thms = thms, thy_ss = thy_ss, simpset = simpset} |
559 | 271 |
in loaded_thys := Symtab.map remove (!loaded_thys) end; |
391 | 272 |
|
273 |
(*Remove a theory from loaded_thys *) |
|
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
274 |
fun remove_thy tname = |
559 | 275 |
loaded_thys := Symtab.make (filter_out (fn (id, _) => id = tname) |
276 |
(Symtab.dest (!loaded_thys))); |
|
391 | 277 |
|
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
278 |
(*Change thy_time and ml_time for an existent item *) |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
279 |
fun set_info tname thy_time ml_time = |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
280 |
let val tinfo = case Symtab.lookup (!loaded_thys, tname) of |
1291 | 281 |
Some (ThyInfo {path, children, parents, theory, thms, |
282 |
thy_ss, simpset,...}) => |
|
283 |
ThyInfo {path = path, children = children, parents = parents, |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
284 |
thy_time = thy_time, ml_time = ml_time, |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
285 |
theory = theory, thms = thms, |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
286 |
thy_ss = thy_ss, simpset = simpset} |
1291 | 287 |
| None => error ("set_info: theory " ^ tname ^ " not found"); |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
288 |
in loaded_thys := Symtab.update ((tname, tinfo), !loaded_thys) |
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
289 |
end; |
391 | 290 |
|
291 |
(*Mark theory as changed since last read if it has been completly read *) |
|
559 | 292 |
fun mark_outdated tname = |
971
f4815812665b
fixed bug: parent theory wasn't loaded if .thy file was completly read before
clasohm
parents:
922
diff
changeset
|
293 |
let val t = get_thyinfo tname; |
f4815812665b
fixed bug: parent theory wasn't loaded if .thy file was completly read before
clasohm
parents:
922
diff
changeset
|
294 |
in if is_none t then () |
1291 | 295 |
else |
296 |
let val ThyInfo {thy_time, ml_time, ...} = the t |
|
297 |
in set_info tname (if is_none thy_time then None else Some "") |
|
298 |
(if is_none ml_time then None else Some "") |
|
299 |
end |
|
971
f4815812665b
fixed bug: parent theory wasn't loaded if .thy file was completly read before
clasohm
parents:
922
diff
changeset
|
300 |
end; |
391 | 301 |
|
1291 | 302 |
(*Make head of HTML dependency charts |
303 |
Parameters are: |
|
304 |
file: HTML file |
|
305 |
tname: theory name |
|
306 |
suffix: suffix of complementary chart |
|
307 |
(sup if this head is for a sub-chart, sub if it is for a sup-chart; |
|
308 |
empty for Pure and CPure sub-charts) |
|
309 |
gif_path: relative path to directory containing GIFs |
|
1313 | 310 |
index_path: relative path to directory containing main theory chart |
1291 | 311 |
*) |
1313 | 312 |
fun mk_charthead file tname title green_arrow gif_path index_path package = |
1291 | 313 |
output (file, |
314 |
"<HTML><HEAD><TITLE>" ^ title ^ " of " ^ tname ^ |
|
315 |
"</TITLE></HEAD>\n<H2>" ^ title ^ " of theory " ^ tname ^ |
|
316 |
"</H2>\nThe name of every theory is linked to its theory file<BR>\n" ^ |
|
317 |
"<IMG SRC = \"" ^ tack_on gif_path "red_arrow.gif\ |
|
318 |
\\" ALT = \\/></A> stands for subtheories (child theories)<BR>\n\ |
|
319 |
\<IMG SRC = \"" ^ tack_on gif_path "blue_arrow.gif\ |
|
320 |
\\" ALT = /\\></A> stands for supertheories (parent theories)\n" ^ |
|
321 |
(if not green_arrow then "" else |
|
322 |
"<BR><IMG SRC = \"" ^ tack_on gif_path "green_arrow.gif\ |
|
323 |
\\" ALT = >></A> stands for repeated subtrees") ^ |
|
1313 | 324 |
"<P><A HREF = \"" ^ tack_on index_path "index.html\ |
1291 | 325 |
\\">Back</A> to the main theory chart of " ^ package ^ ".\n<HR>\n<PRE>"); |
326 |
||
327 |
(*Convert .thy file to HTML and make chart of its super-theories*) |
|
328 |
fun thyfile2html tpath tname = |
|
329 |
let |
|
330 |
val gif_path = relative_path tpath (!gif_path); |
|
1313 | 331 |
val package = hd (rev (space_explode "/" (!index_path))); |
332 |
val index_path = relative_path tpath (!index_path); |
|
1291 | 333 |
|
334 |
(*Make list of all theories and all theories that own a .thy file*) |
|
335 |
fun list_theories [] theories thy_files = (theories, thy_files) |
|
336 |
| list_theories ((tname, ThyInfo {thy_time, ...}) :: ts) |
|
337 |
theories thy_files = |
|
338 |
list_theories ts (tname :: theories) |
|
339 |
(if is_some thy_time andalso the thy_time <> "" then |
|
340 |
tname :: thy_files |
|
341 |
else thy_files); |
|
342 |
||
343 |
val (theories, thy_files) = |
|
344 |
list_theories (Symtab.dest (!loaded_thys)) [] []; |
|
345 |
||
346 |
(*Do the conversion*) |
|
347 |
fun gettext thy_file = |
|
348 |
let |
|
349 |
(*Convert special HTML characters ('&', '>', and '<')*) |
|
350 |
val file = |
|
351 |
explode (execute ("sed -e 's/\\&/\\&/g' -e 's/>/\\>/g' \ |
|
352 |
\-e 's/</\\</g' " ^ thy_file)); |
|
353 |
||
354 |
(*Isolate first (possibly nested) comment; |
|
355 |
skip all leading whitespaces*) |
|
356 |
val (comment, file') = |
|
357 |
let fun first_comment ("*" :: ")" :: cs) co 1 = (co ^ "*)", cs) |
|
358 |
| first_comment ("*" :: ")" :: cs) co d = |
|
359 |
first_comment cs (co ^ "*)") (d-1) |
|
360 |
| first_comment ("(" :: "*" :: cs) co d = |
|
361 |
first_comment cs (co ^ "(*") (d+1) |
|
362 |
| first_comment (" " :: cs) "" 0 = first_comment cs "" 0 |
|
363 |
| first_comment ("\n" :: cs) "" 0 = first_comment cs "" 0 |
|
364 |
| first_comment ("\t" :: cs) "" 0 = first_comment cs "" 0 |
|
365 |
| first_comment cs "" 0 = ("", cs) |
|
366 |
| first_comment (c :: cs) co d = |
|
367 |
first_comment cs (co ^ implode [c]) d |
|
368 |
| first_comment [] co _ = |
|
369 |
error ("Unexpected end of file " ^ tname ^ ".thy."); |
|
370 |
in first_comment file "" 0 end; |
|
371 |
||
372 |
(*Process line defining theory's ancestors; |
|
373 |
convert valid theory names to links to their HTML file*) |
|
374 |
val (ancestors, body) = |
|
375 |
let |
|
376 |
fun make_links l result = |
|
377 |
let val (pre, letter) = take_prefix (not o is_letter) l; |
|
378 |
||
379 |
val (id, rest) = |
|
380 |
take_prefix (is_quasi_letter orf is_digit) letter; |
|
381 |
||
382 |
val id = implode id; |
|
383 |
||
384 |
(*Make a HTML link out of a theory name*) |
|
385 |
fun make_link t = |
|
386 |
let val path = path_of t; |
|
387 |
in "<A HREF = \"" ^ |
|
388 |
tack_on (relative_path tpath path) t ^ |
|
389 |
".html\">" ^ t ^ "</A>" end; |
|
390 |
in if not (id mem theories) then (result, implode l) |
|
391 |
else if id mem thy_files then |
|
392 |
make_links rest (result ^ implode pre ^ make_link id) |
|
393 |
else make_links rest (result ^ implode pre ^ id) |
|
394 |
end; |
|
395 |
||
396 |
val (pre, rest) = take_prefix (fn c => c <> "=") file'; |
|
397 |
||
398 |
val (ancestors, body) = |
|
399 |
if null rest then |
|
400 |
error ("Missing \"=\" in file " ^ tname ^ ".thy.\n\ |
|
401 |
\(Make sure that the last line ends with a linebreak.)") |
|
402 |
else |
|
403 |
make_links rest ""; |
|
404 |
in (implode pre ^ ancestors, body) end; |
|
405 |
in "<HTML><HEAD><TITLE>" ^ tname ^ ".thy</TITLE></HEAD>\n\n<BODY>\n" ^ |
|
406 |
"<H2>" ^ tname ^ ".thy</H2>\n<A HREF = \"" ^ |
|
1313 | 407 |
tack_on index_path "index.html\ |
1291 | 408 |
\\">Back</A> to the main theory chart of " ^ package ^ |
409 |
".\n<HR>\n\n<PRE>\n" ^ comment ^ ancestors ^ body ^ |
|
410 |
"</PRE>\n<HR><H2>Theorems proved in <A HREF = \"" ^ tname ^ |
|
411 |
".ML\">" ^ tname ^ ".ML</A>:</H2>\n" |
|
412 |
end; |
|
413 |
||
414 |
(** Make chart of super-theories **) |
|
415 |
||
416 |
val sup_out = open_out (tack_on tpath tname ^ "_sup.html"); |
|
417 |
val sub_out = open_out (tack_on tpath tname ^ "_sub.html"); |
|
418 |
||
419 |
(*Theories that already have been listed in this chart*) |
|
420 |
val listed = ref []; |
|
421 |
||
422 |
val wanted_theories = |
|
423 |
filter (fn s => s mem thy_files orelse s = "Pure" orelse s = "CPure") |
|
424 |
theories; |
|
425 |
||
426 |
(*Make nested list of theories*) |
|
427 |
fun list_ancestors tname level continued = |
|
428 |
let |
|
429 |
fun mk_entry [] = () |
|
430 |
| mk_entry (t::ts) = |
|
431 |
let |
|
432 |
val is_pure = t = "Pure" orelse t = "CPure"; |
|
433 |
val path = path_of t; |
|
1313 | 434 |
val rel_path = if is_pure then index_path |
1291 | 435 |
else relative_path tpath path; |
436 |
||
437 |
fun mk_offset [] cur = |
|
438 |
if level < cur then error "Error in mk_offset" |
|
439 |
else implode (replicate (level - cur) " ") |
|
440 |
| mk_offset (l::ls) cur = |
|
441 |
implode (replicate (l - cur) " ") ^ "| " ^ |
|
442 |
mk_offset ls (l+1); |
|
443 |
in output (sup_out, |
|
444 |
" " ^ mk_offset continued 0 ^ |
|
445 |
"\\__" ^ (if is_pure then t else "<A HREF=\"" ^ |
|
446 |
tack_on rel_path t ^ ".html\">" ^ t ^ "</A>") ^ |
|
447 |
" <A HREF = \"" ^ tack_on rel_path t ^ |
|
448 |
"_sub.html\"><IMG ALIGN=TOP SRC = \"" ^ |
|
449 |
tack_on gif_path "red_arrow.gif\" ALT = \\/></A>" ^ |
|
450 |
(if is_pure then "" |
|
451 |
else "<A HREF = \"" ^ tack_on rel_path t ^ |
|
452 |
"_sup.html\"><IMG ALIGN=TOP SRC = \"" ^ |
|
453 |
tack_on gif_path "blue_arrow.gif\ |
|
454 |
\\" ALT = /\\></A>")); |
|
455 |
if t mem (!listed) andalso not (null (parents_of t)) then |
|
456 |
output (sup_out, |
|
457 |
"<A HREF = \"" ^ tack_on rel_path t ^ "_sup.html\">\ |
|
458 |
\<IMG ALIGN=TOP SRC = \"" ^ |
|
459 |
tack_on gif_path "green_arrow.gif\" ALT = >></A>\n") |
|
460 |
else (output (sup_out, "\n"); |
|
461 |
listed := t :: (!listed); |
|
462 |
list_ancestors t (level+1) (if null ts then continued |
|
463 |
else continued @ [level]); |
|
464 |
mk_entry ts) |
|
465 |
end; |
|
466 |
||
467 |
val relatives = |
|
468 |
filter (fn s => s mem wanted_theories) (parents_of tname); |
|
469 |
in mk_entry relatives end; |
|
470 |
in if is_some (!cur_htmlfile) then |
|
471 |
error "thyfile2html: Last theory's HTML has not been closed." |
|
472 |
else (); |
|
473 |
cur_htmlfile := Some (open_out (tack_on tpath tname ^ ".html")); |
|
474 |
output (the (!cur_htmlfile), gettext (tack_on tpath tname ^ ".thy")); |
|
475 |
||
1313 | 476 |
mk_charthead sup_out tname "Ancestors" true gif_path index_path package; |
1291 | 477 |
output(sup_out, |
478 |
"<A HREF=\"" ^ tname ^ ".html\">" ^ tname ^ "</A> \ |
|
479 |
\<A HREF = \"" ^ tname ^ "_sub.html\"><IMG ALIGN=TOP SRC = \"" ^ |
|
480 |
tack_on gif_path "red_arrow.gif\" ALT = \\/></A>\n"); |
|
481 |
list_ancestors tname 0 []; |
|
482 |
output (sup_out, "</PRE><HR></BODY></HTML>"); |
|
483 |
close_out sup_out; |
|
484 |
||
1313 | 485 |
mk_charthead sub_out tname "Children" false gif_path index_path package; |
1291 | 486 |
output(sub_out, |
487 |
"<A HREF=\"" ^ tname ^ ".html\">" ^ tname ^ "</A> \ |
|
488 |
\<A HREF = \"" ^ tname ^ "_sup.html\"><IMG SRC = \"" ^ |
|
489 |
tack_on gif_path "blue_arrow.gif\" ALT = \\/></A>\n"); |
|
490 |
close_out sub_out |
|
491 |
end; |
|
492 |
||
493 |
||
559 | 494 |
(*Read .thy and .ML files that haven't been read yet or have changed since |
391 | 495 |
they were last read; |
559 | 496 |
loaded_thys is a thy_info list ref containing all theories that have |
391 | 497 |
completly been read by this and preceeding use_thy calls. |
498 |
If a theory changed since its last use its children are marked as changed *) |
|
499 |
fun use_thy name = |
|
1242 | 500 |
let |
501 |
val (path, tname) = split_filename name; |
|
502 |
val (thy_file, ml_file) = get_filenames path tname; |
|
503 |
val (abs_path, _) = if thy_file = "" then split_filename ml_file |
|
504 |
else split_filename thy_file; |
|
505 |
val (thy_uptodate, ml_uptodate) = thy_unchanged tname thy_file ml_file; |
|
1291 | 506 |
val old_parents = parents_of tname; |
391 | 507 |
|
1242 | 508 |
(*Set absolute path for loaded theory *) |
509 |
fun set_path () = |
|
1291 | 510 |
let val ThyInfo {children, parents, thy_time, ml_time, theory, thms, |
511 |
thy_ss, simpset, ...} = |
|
1242 | 512 |
the (Symtab.lookup (!loaded_thys, tname)); |
513 |
in loaded_thys := Symtab.update ((tname, |
|
1291 | 514 |
ThyInfo {path = abs_path, |
515 |
children = children, parents = parents, |
|
1242 | 516 |
thy_time = thy_time, ml_time = ml_time, |
517 |
theory = theory, thms = thms, |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
518 |
thy_ss = thy_ss, simpset = simpset}), |
1242 | 519 |
!loaded_thys) |
520 |
end; |
|
521 |
||
522 |
(*Mark all direct descendants of a theory as changed *) |
|
523 |
fun mark_children thy = |
|
1291 | 524 |
let val children = children_of thy; |
1242 | 525 |
val present = filter (is_some o get_thyinfo) children; |
526 |
val loaded = filter already_loaded present; |
|
527 |
in if loaded <> [] then |
|
528 |
writeln ("The following children of theory " ^ (quote thy) |
|
529 |
^ " are now out-of-date: " |
|
530 |
^ (quote (space_implode "\",\"" loaded))) |
|
531 |
else (); |
|
532 |
seq mark_outdated present |
|
533 |
end; |
|
391 | 534 |
|
1242 | 535 |
(*Remove theorems associated with a theory*) |
536 |
fun delete_thms () = |
|
537 |
let |
|
538 |
val tinfo = case get_thyinfo tname of |
|
1291 | 539 |
Some (ThyInfo {path, children, parents, thy_time, ml_time, theory, |
540 |
thy_ss, simpset, ...}) => |
|
541 |
ThyInfo {path = path, children = children, parents = parents, |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
542 |
thy_time = thy_time, ml_time = ml_time, |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
543 |
theory = theory, thms = Symtab.null, |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
544 |
thy_ss = thy_ss, simpset = simpset} |
1291 | 545 |
| None => ThyInfo {path = "", children = [], parents = [], |
1242 | 546 |
thy_time = None, ml_time = None, |
547 |
theory = None, thms = Symtab.null, |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
548 |
thy_ss = None, simpset = None}; |
1242 | 549 |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
550 |
val ThyInfo {theory, ...} = tinfo; |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
551 |
in loaded_thys := Symtab.update ((tname, tinfo), !loaded_thys); |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
552 |
case theory of |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
553 |
Some t => delete_thm_db t |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
554 |
| None => () |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
555 |
end; |
391 | 556 |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
557 |
fun save_thy_ss () = |
1291 | 558 |
let val ThyInfo {path, children, parents, thy_time, ml_time, |
559 |
theory, thms, simpset, ...} = the (get_thyinfo tname); |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
560 |
in loaded_thys := Symtab.update |
1291 | 561 |
((tname, ThyInfo {path = path, |
562 |
children = children, parents = parents, |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
563 |
thy_time = thy_time, ml_time = ml_time, |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
564 |
theory = theory, thms = thms, |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
565 |
thy_ss = Some (!Simplifier.simpset), |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
566 |
simpset = simpset}), |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
567 |
!loaded_thys) |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
568 |
end; |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
569 |
|
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
570 |
fun save_simpset () = |
1291 | 571 |
let val ThyInfo {path, children, parents, thy_time, ml_time, |
572 |
theory, thms, thy_ss, ...} = the (get_thyinfo tname); |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
573 |
in loaded_thys := Symtab.update |
1291 | 574 |
((tname, ThyInfo {path = path, |
575 |
children = children, parents = parents, |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
576 |
thy_time = thy_time, ml_time = ml_time, |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
577 |
theory = theory, thms = thms, |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
578 |
thy_ss = thy_ss, |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
579 |
simpset = Some (!Simplifier.simpset)}), |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
580 |
!loaded_thys) |
1242 | 581 |
end; |
582 |
||
1313 | 583 |
(*Add theory to file listing all loaded theories (for index.html) |
1291 | 584 |
and to the sub-charts of its parents*) |
585 |
fun mk_html () = |
|
586 |
let val new_parents = parents_of tname \\ old_parents; |
|
587 |
||
588 |
(*Add child to parents' sub-theory charts*) |
|
589 |
fun add_to_parents t = |
|
590 |
let val is_pure = t = "Pure" orelse t = "CPure"; |
|
1313 | 591 |
val path = if is_pure then (!index_path) else path_of t; |
1291 | 592 |
|
593 |
val gif_path = relative_path path (!gif_path); |
|
594 |
val rel_path = relative_path path abs_path; |
|
595 |
||
596 |
val out = open_append (tack_on path t ^ "_sub.html"); |
|
597 |
in output (out, |
|
598 |
" |\n \\__<A HREF=\"" ^ tack_on rel_path tname ^ ".html\">" ^ |
|
599 |
tname ^ "</A> <A HREF = \"" ^ |
|
600 |
tack_on rel_path tname ^ |
|
601 |
"_sub.html\"><IMG ALIGN=TOP SRC = \"" ^ |
|
602 |
tack_on gif_path "red_arrow.gif\" ALT = \\/></A>\ |
|
603 |
\<A HREF = \"" ^ tack_on rel_path tname ^ "_sup.html\">\ |
|
604 |
\<IMG ALIGN=TOP SRC = \"" ^ tack_on gif_path "blue_arrow.gif\ |
|
605 |
\\" ALT = /\\></A>\n"); |
|
606 |
close_out out |
|
607 |
end; |
|
608 |
||
609 |
val theory_list = |
|
1313 | 610 |
open_append (tack_on (!index_path) "theory_list.txt"); |
1291 | 611 |
in output (theory_list, tname ^ " " ^ abs_path ^ "\n"); |
612 |
close_out theory_list; |
|
613 |
||
614 |
seq add_to_parents new_parents |
|
615 |
end |
|
1242 | 616 |
in if thy_uptodate andalso ml_uptodate then () |
617 |
else |
|
1291 | 618 |
(if thy_file = "" then () |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
619 |
else if thy_uptodate then |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
620 |
simpset := let val ThyInfo {thy_ss, ...} = the (get_thyinfo tname); |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
621 |
in the thy_ss end |
391 | 622 |
else |
1242 | 623 |
(writeln ("Reading \"" ^ name ^ ".thy\""); |
1291 | 624 |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
625 |
delete_thms (); |
1242 | 626 |
read_thy tname thy_file; |
627 |
use (out_name tname); |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
628 |
save_thy_ss (); |
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
629 |
|
1308 | 630 |
(*Store axioms of theory |
631 |
(but only if it's not a copy of an older theory)*) |
|
632 |
let val parents = parents_of tname; |
|
633 |
val this_thy = theory_of tname; |
|
634 |
val axioms = |
|
635 |
if length parents = 1 |
|
636 |
andalso Sign.eq_sg (sign_of (theory_of (hd parents)), |
|
637 |
sign_of this_thy) then [] |
|
638 |
else axioms_of this_thy; |
|
639 |
in map store_thm_db axioms end; |
|
640 |
||
1242 | 641 |
if not (!delete_tmpfiles) then () |
1291 | 642 |
else delete_file (out_name tname); |
643 |
||
644 |
if not (!make_html) then () |
|
645 |
else thyfile2html abs_path tname |
|
1242 | 646 |
); |
647 |
||
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
648 |
set_info tname (Some (file_info thy_file)) None; |
783
08f1785a4384
changed get_thm to search all parent theories if the theorem is not found
clasohm
parents:
778
diff
changeset
|
649 |
(*mark thy_file as successfully loaded*) |
391 | 650 |
|
1242 | 651 |
if ml_file = "" then () |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
652 |
else (writeln ("Reading \"" ^ name ^ ".ML\""); |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
653 |
use ml_file); |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
654 |
save_simpset (); |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
655 |
|
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
656 |
(*Store theory again because it could have been redefined*) |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
657 |
use_string |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
658 |
["val _ = store_theory (" ^ tname ^ ".thy, " ^ quote tname ^ ");"]; |
391 | 659 |
|
1313 | 660 |
(*Add theory to list of all loaded theories (for index.html) |
1291 | 661 |
and add it to its parents' sub-charts*) |
662 |
if !make_html then |
|
663 |
let val path = path_of tname; |
|
664 |
in if path = "" then mk_html () (*first time theory has been read*) |
|
665 |
else () |
|
666 |
end |
|
667 |
else (); |
|
668 |
||
1242 | 669 |
(*Now set the correct info*) |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
670 |
set_info tname (Some (file_info thy_file)) (Some (file_info ml_file)); |
1242 | 671 |
set_path (); |
672 |
||
673 |
(*Mark theories that have to be reloaded*) |
|
1291 | 674 |
mark_children tname; |
675 |
||
676 |
(*Close HTML file*) |
|
677 |
case !cur_htmlfile of |
|
678 |
Some out => (output (out, "<HR></BODY></HTML>\n"); |
|
679 |
close_out out; |
|
680 |
cur_htmlfile := None) |
|
681 |
| None => () |
|
1242 | 682 |
) |
683 |
end; |
|
391 | 684 |
|
685 |
fun time_use_thy tname = timeit(fn()=> |
|
559 | 686 |
(writeln("\n**** Starting Theory " ^ tname ^ " ****"); |
391 | 687 |
use_thy tname; |
688 |
writeln("\n**** Finished Theory " ^ tname ^ " ****")) |
|
689 |
); |
|
690 |
||
691 |
(*Load all thy or ML files that have been changed and also |
|
692 |
all theories that depend on them *) |
|
693 |
fun update () = |
|
694 |
let (*List theories in the order they have to be loaded *) |
|
695 |
fun load_order [] result = result |
|
696 |
| load_order thys result = |
|
1291 | 697 |
let fun next_level [] = [] |
698 |
| next_level (t :: ts) = |
|
699 |
let val children = children_of t |
|
700 |
in children union (next_level ts) end; |
|
559 | 701 |
|
1291 | 702 |
val descendants = next_level thys; |
703 |
in load_order descendants ((result \\ descendants) @ descendants) |
|
704 |
end; |
|
391 | 705 |
|
706 |
fun reload_changed (t :: ts) = |
|
1291 | 707 |
let fun abspath () = case get_thyinfo t of |
708 |
Some (ThyInfo {path, ...}) => path |
|
709 |
| None => ""; |
|
391 | 710 |
|
711 |
val (thy_file, ml_file) = get_filenames (abspath ()) t; |
|
712 |
val (thy_uptodate, ml_uptodate) = |
|
713 |
thy_unchanged t thy_file ml_file; |
|
714 |
in if thy_uptodate andalso ml_uptodate then () |
|
715 |
else use_thy t; |
|
716 |
reload_changed ts |
|
717 |
end |
|
718 |
| reload_changed [] = (); |
|
719 |
||
922
196ca0973a6d
added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents:
871
diff
changeset
|
720 |
(*Remove all theories that are no descendants of ProtoPure. |
391 | 721 |
If there are still children in the deleted theory's list |
722 |
schedule them for reloading *) |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
723 |
fun collect_garbage no_garbage = |
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
724 |
let fun collect ((tname, ThyInfo {children, ...}) :: ts) = |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
725 |
if tname mem no_garbage then collect ts |
922
196ca0973a6d
added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents:
871
diff
changeset
|
726 |
else (writeln ("Theory \"" ^ tname ^ |
196ca0973a6d
added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents:
871
diff
changeset
|
727 |
"\" is no longer linked with ProtoPure - removing it."); |
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
728 |
remove_thy tname; |
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
729 |
seq mark_outdated children) |
391 | 730 |
| collect [] = () |
559 | 731 |
in collect (Symtab.dest (!loaded_thys)) end; |
922
196ca0973a6d
added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents:
871
diff
changeset
|
732 |
in collect_garbage ("ProtoPure" :: (load_order ["ProtoPure"] [])); |
196ca0973a6d
added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents:
871
diff
changeset
|
733 |
reload_changed (load_order ["Pure", "CPure"] []) |
391 | 734 |
end; |
735 |
||
736 |
(*Merge theories to build a base for a new theory. |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
737 |
Base members are only loaded if they are missing.*) |
586
201e115d8031
renamed base_on into mk_base and moved it to the beginning of the generated
clasohm
parents:
559
diff
changeset
|
738 |
fun mk_base bases child mk_draft = |
1291 | 739 |
let (*Show the cycle that would be created by add_child*) |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
740 |
fun show_cycle base = |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
741 |
let fun find_it result curr = |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
742 |
let val tinfo = get_thyinfo curr |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
743 |
in if base = curr then |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
744 |
error ("Cyclic dependency of theories: " |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
745 |
^ child ^ "->" ^ base ^ result) |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
746 |
else if is_some tinfo then |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
747 |
let val ThyInfo {children, ...} = the tinfo |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
748 |
in seq (find_it ("->" ^ curr ^ result)) children |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
749 |
end |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
750 |
else () |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
751 |
end |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
752 |
in find_it "" child end; |
391 | 753 |
|
1291 | 754 |
(*Check if a cycle would be created by add_child*) |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
755 |
fun find_cycle base = |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
756 |
if base mem (get_descendants [child]) then show_cycle base |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
757 |
else (); |
559 | 758 |
|
1291 | 759 |
(*Add child to child list of base*) |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
760 |
fun add_child base = |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
761 |
let val tinfo = |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
762 |
case Symtab.lookup (!loaded_thys, base) of |
1291 | 763 |
Some (ThyInfo {path, children, parents, thy_time, ml_time, |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
764 |
theory, thms, thy_ss, simpset}) => |
1291 | 765 |
ThyInfo {path = path, |
766 |
children = child ins children, parents = parents, |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
767 |
thy_time = thy_time, ml_time = ml_time, |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
768 |
theory = theory, thms = thms, |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
769 |
thy_ss = thy_ss, simpset = simpset} |
1291 | 770 |
| None => ThyInfo {path = "", children = [child], parents = [], |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
771 |
thy_time = None, ml_time = None, |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
772 |
theory = None, thms = Symtab.null, |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
773 |
thy_ss = None, simpset = None}; |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
774 |
in loaded_thys := Symtab.update ((base, tinfo), !loaded_thys) end; |
559 | 775 |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
776 |
(*Load a base theory if not already done |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
777 |
and no cycle would be created *) |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
778 |
fun load base = |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
779 |
let val thy_loaded = already_loaded base |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
780 |
(*test this before child is added *) |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
781 |
in |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
782 |
if child = base then |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
783 |
error ("Cyclic dependency of theories: " ^ child |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
784 |
^ "->" ^ child) |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
785 |
else |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
786 |
(find_cycle base; |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
787 |
add_child base; |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
788 |
if thy_loaded then () |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
789 |
else (writeln ("Autoloading theory " ^ (quote base) |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
790 |
^ " (used by " ^ (quote child) ^ ")"); |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
791 |
use_thy base) |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
792 |
) |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
793 |
end; |
391 | 794 |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
795 |
(*Get simpset for a theory*) |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
796 |
fun get_simpset tname = |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
797 |
let val ThyInfo {simpset, ...} = the (get_thyinfo tname); |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
798 |
in simpset end; |
391 | 799 |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
800 |
(*Load all needed files and make a list of all real theories *) |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
801 |
fun load_base (Thy b :: bs) = |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
802 |
(load b; |
1291 | 803 |
b :: load_base bs) |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
804 |
| load_base (File b :: bs) = |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
805 |
(load b; |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
806 |
load_base bs) (*don't add it to mergelist *) |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
807 |
| load_base [] = []; |
391 | 808 |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
809 |
val dummy = unlink_thy child; |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
810 |
val mergelist = load_base bases; |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
811 |
|
1291 | 812 |
val dummy = |
813 |
let val tinfo = case Symtab.lookup (!loaded_thys, child) of |
|
814 |
Some (ThyInfo {path, children, thy_time, ml_time, theory, thms, |
|
815 |
thy_ss, simpset, ...}) => |
|
816 |
ThyInfo {path = path, |
|
817 |
children = children, parents = mergelist, |
|
818 |
thy_time = thy_time, ml_time = ml_time, |
|
819 |
theory = theory, thms = thms, |
|
820 |
thy_ss = thy_ss, simpset = simpset} |
|
821 |
| None => error ("set_parents: theory " ^ child ^ " not found"); |
|
822 |
in loaded_thys := Symtab.update ((child, tinfo), !loaded_thys) end; |
|
823 |
||
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
824 |
val base_thy = (writeln ("Loading theory " ^ (quote child)); |
1291 | 825 |
merge_thy_list mk_draft (map theory_of mergelist)); |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
826 |
in simpset := foldr merge_ss (mapfilter get_simpset mergelist, empty_ss); |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
827 |
base_thy |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
828 |
end; |
391 | 829 |
|
1291 | 830 |
(*Change theory object for an existent item of loaded_thys*) |
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
831 |
fun store_theory (thy, tname) = |
559 | 832 |
let val tinfo = case Symtab.lookup (!loaded_thys, tname) of |
1291 | 833 |
Some (ThyInfo {path, children, parents, thy_time, ml_time, thms, |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
834 |
thy_ss, simpset, ...}) => |
1291 | 835 |
ThyInfo {path = path, children = children, parents = parents, |
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
836 |
thy_time = thy_time, ml_time = ml_time, |
1242 | 837 |
theory = Some thy, thms = thms, |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
838 |
thy_ss = thy_ss, simpset = simpset} |
1291 | 839 |
| None => error ("store_theory: theory " ^ tname ^ " not found"); |
1132
dfb29abcf3c2
added theorem database which contains axioms and theorems indexed by the
clasohm
parents:
1098
diff
changeset
|
840 |
in loaded_thys := Symtab.update ((tname, tinfo), !loaded_thys) |
dfb29abcf3c2
added theorem database which contains axioms and theorems indexed by the
clasohm
parents:
1098
diff
changeset
|
841 |
end; |
559 | 842 |
|
843 |
||
844 |
(** store and retrieve theorems **) |
|
845 |
||
715
f76ad10f5802
added call of store_theory after thy file has been read
clasohm
parents:
586
diff
changeset
|
846 |
(*Guess to which theory a signature belongs and return it's thy_info*) |
559 | 847 |
fun thyinfo_of_sign sg = |
848 |
let |
|
849 |
val ref xname = hd (#stamps (Sign.rep_sg sg)); |
|
850 |
val opt_info = get_thyinfo xname; |
|
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
851 |
|
559 | 852 |
fun eq_sg (ThyInfo {theory = None, ...}) = false |
715
f76ad10f5802
added call of store_theory after thy file has been read
clasohm
parents:
586
diff
changeset
|
853 |
| eq_sg (ThyInfo {theory = Some thy, ...}) = Sign.eq_sg (sg,sign_of thy); |
559 | 854 |
|
855 |
val show_sg = Pretty.str_of o Sign.pretty_sg; |
|
856 |
in |
|
857 |
if is_some opt_info andalso eq_sg (the opt_info) then |
|
858 |
(xname, the opt_info) |
|
859 |
else |
|
783
08f1785a4384
changed get_thm to search all parent theories if the theorem is not found
clasohm
parents:
778
diff
changeset
|
860 |
(case Symtab.find_first (eq_sg o snd) (!loaded_thys) of |
559 | 861 |
Some name_info => name_info |
862 |
| None => error ("Theory " ^ show_sg sg ^ " not stored by loader")) |
|
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
863 |
end; |
391 | 864 |
|
559 | 865 |
|
715
f76ad10f5802
added call of store_theory after thy file has been read
clasohm
parents:
586
diff
changeset
|
866 |
(*Try to get the theory object corresponding to a given signature*) |
559 | 867 |
fun theory_of_sign sg = |
868 |
(case thyinfo_of_sign sg of |
|
869 |
(_, ThyInfo {theory = Some thy, ...}) => thy |
|
870 |
| _ => sys_error "theory_of_sign"); |
|
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
871 |
|
715
f76ad10f5802
added call of store_theory after thy file has been read
clasohm
parents:
586
diff
changeset
|
872 |
(*Try to get the theory object corresponding to a given theorem*) |
559 | 873 |
val theory_of_thm = theory_of_sign o #sign o rep_thm; |
874 |
||
875 |
||
715
f76ad10f5802
added call of store_theory after thy file has been read
clasohm
parents:
586
diff
changeset
|
876 |
(* Store theorems *) |
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
877 |
|
1291 | 878 |
(*Store a theorem in the thy_info of its theory, |
879 |
and in the theory's HTML file*) |
|
559 | 880 |
fun store_thm (name, thm) = |
881 |
let |
|
1291 | 882 |
val (thy_name, ThyInfo {path, children, parents, thy_time, ml_time, |
883 |
theory, thms, thy_ss, simpset}) = |
|
559 | 884 |
thyinfo_of_sign (#sign (rep_thm thm)); |
1236
b54d51df9065
added check for duplicate theorems in theorem database;
clasohm
parents:
1223
diff
changeset
|
885 |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
886 |
val (thms', duplicate) = (Symtab.update_new ((name, thm), thms), false) |
774
ea19f22ed23c
added warning for already stored theorem to store_thm
clasohm
parents:
759
diff
changeset
|
887 |
handle Symtab.DUPLICATE s => |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
888 |
(if eq_thm (the (Symtab.lookup (thms, name)), thm) then |
1236
b54d51df9065
added check for duplicate theorems in theorem database;
clasohm
parents:
1223
diff
changeset
|
889 |
(writeln ("Warning: Theory database already contains copy of\ |
774
ea19f22ed23c
added warning for already stored theorem to store_thm
clasohm
parents:
759
diff
changeset
|
890 |
\ theorem " ^ quote name); |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
891 |
(thms, true)) |
1236
b54d51df9065
added check for duplicate theorems in theorem database;
clasohm
parents:
1223
diff
changeset
|
892 |
else error ("Duplicate theorem name " ^ quote s |
b54d51df9065
added check for duplicate theorems in theorem database;
clasohm
parents:
1223
diff
changeset
|
893 |
^ " used in theory database")); |
1291 | 894 |
|
895 |
fun thm_to_html () = |
|
896 |
let fun escape [] = "" |
|
897 |
| escape ("<"::s) = "<" ^ escape s |
|
898 |
| escape (">"::s) = ">" ^ escape s |
|
899 |
| escape ("&"::s) = "&" ^ escape s |
|
900 |
| escape (c::s) = c ^ escape s; |
|
901 |
in case !cur_htmlfile of |
|
902 |
Some out => |
|
903 |
output (out, "<EM>" ^ name ^ "</EM>\n<PRE>" ^ |
|
904 |
escape (explode (string_of_thm (freeze thm))) ^ |
|
905 |
"</PRE><P>\n") |
|
906 |
| None => () |
|
907 |
end; |
|
559 | 908 |
in |
909 |
loaded_thys := Symtab.update |
|
1291 | 910 |
((thy_name, ThyInfo {path = path, children = children, parents = parents, |
1242 | 911 |
thy_time = thy_time, ml_time = ml_time, |
912 |
theory = theory, thms = thms', |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
913 |
thy_ss = thy_ss, simpset = simpset}), |
1242 | 914 |
!loaded_thys); |
1291 | 915 |
thm_to_html (); |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
916 |
if duplicate then thm else store_thm_db (name, thm) |
559 | 917 |
end; |
918 |
||
715
f76ad10f5802
added call of store_theory after thy file has been read
clasohm
parents:
586
diff
changeset
|
919 |
(*Store result of proof in loaded_thys and as ML value*) |
758 | 920 |
|
921 |
val qed_thm = ref flexpair_def(*dummy*); |
|
922 |
||
923 |
fun bind_thm (name, thm) = |
|
1291 | 924 |
(qed_thm := standard thm; |
925 |
store_thm (name, standard thm); |
|
926 |
use_string ["val " ^ name ^ " = !qed_thm;"]); |
|
758 | 927 |
|
559 | 928 |
fun qed name = |
1291 | 929 |
(qed_thm := result (); |
930 |
store_thm (name, !qed_thm); |
|
931 |
use_string ["val " ^ name ^ " = !qed_thm;"]); |
|
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
932 |
|
746 | 933 |
fun qed_goal name thy agoal tacsf = |
1291 | 934 |
(qed_thm := prove_goal thy agoal tacsf; |
935 |
store_thm (name, !qed_thm); |
|
936 |
use_string ["val " ^ name ^ " = !qed_thm;"]); |
|
746 | 937 |
|
938 |
fun qed_goalw name thy rths agoal tacsf = |
|
1291 | 939 |
(qed_thm := prove_goalw thy rths agoal tacsf; |
940 |
store_thm (name, !qed_thm); |
|
941 |
use_string ["val " ^ name ^ " = !qed_thm;"]); |
|
559 | 942 |
|
783
08f1785a4384
changed get_thm to search all parent theories if the theorem is not found
clasohm
parents:
778
diff
changeset
|
943 |
|
715
f76ad10f5802
added call of store_theory after thy file has been read
clasohm
parents:
586
diff
changeset
|
944 |
(* Retrieve theorems *) |
559 | 945 |
|
783
08f1785a4384
changed get_thm to search all parent theories if the theorem is not found
clasohm
parents:
778
diff
changeset
|
946 |
(*Get all theorems belonging to a given theory*) |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
947 |
fun thmtab_of_thy thy = |
783
08f1785a4384
changed get_thm to search all parent theories if the theorem is not found
clasohm
parents:
778
diff
changeset
|
948 |
let val (_, ThyInfo {thms, ...}) = thyinfo_of_sign (sign_of thy); |
08f1785a4384
changed get_thm to search all parent theories if the theorem is not found
clasohm
parents:
778
diff
changeset
|
949 |
in thms end; |
08f1785a4384
changed get_thm to search all parent theories if the theorem is not found
clasohm
parents:
778
diff
changeset
|
950 |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
951 |
fun thmtab_of_name name = |
783
08f1785a4384
changed get_thm to search all parent theories if the theorem is not found
clasohm
parents:
778
diff
changeset
|
952 |
let val ThyInfo {thms, ...} = the (get_thyinfo name); |
559 | 953 |
in thms end; |
476
836cad329311
added check for concistency of filename and theory name;
clasohm
parents:
426
diff
changeset
|
954 |
|
715
f76ad10f5802
added call of store_theory after thy file has been read
clasohm
parents:
586
diff
changeset
|
955 |
(*Get a stored theorem specified by theory and name*) |
559 | 956 |
fun get_thm thy name = |
783
08f1785a4384
changed get_thm to search all parent theories if the theorem is not found
clasohm
parents:
778
diff
changeset
|
957 |
let fun get [] [] searched = |
08f1785a4384
changed get_thm to search all parent theories if the theorem is not found
clasohm
parents:
778
diff
changeset
|
958 |
raise THEORY ("get_thm: no theorem " ^ quote name, [thy]) |
08f1785a4384
changed get_thm to search all parent theories if the theorem is not found
clasohm
parents:
778
diff
changeset
|
959 |
| get [] ng searched = |
871 | 960 |
get (ng \\ searched) [] searched |
783
08f1785a4384
changed get_thm to search all parent theories if the theorem is not found
clasohm
parents:
778
diff
changeset
|
961 |
| get (t::ts) ng searched = |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
962 |
(case Symtab.lookup (thmtab_of_name t, name) of |
783
08f1785a4384
changed get_thm to search all parent theories if the theorem is not found
clasohm
parents:
778
diff
changeset
|
963 |
Some thm => thm |
1291 | 964 |
| None => get ts (ng union (parents_of t)) (t::searched)); |
783
08f1785a4384
changed get_thm to search all parent theories if the theorem is not found
clasohm
parents:
778
diff
changeset
|
965 |
|
08f1785a4384
changed get_thm to search all parent theories if the theorem is not found
clasohm
parents:
778
diff
changeset
|
966 |
val (tname, _) = thyinfo_of_sign (sign_of thy); |
08f1785a4384
changed get_thm to search all parent theories if the theorem is not found
clasohm
parents:
778
diff
changeset
|
967 |
in get [tname] [] [] end; |
559 | 968 |
|
715
f76ad10f5802
added call of store_theory after thy file has been read
clasohm
parents:
586
diff
changeset
|
969 |
(*Get stored theorems of a theory*) |
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
970 |
val thms_of = Symtab.dest o thmtab_of_thy; |
559 | 971 |
|
1262
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
972 |
(*Get simpset of a theory*) |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
973 |
fun simpset_of tname = |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
974 |
case get_thyinfo tname of |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
975 |
Some (ThyInfo {simpset, ...}) => |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
976 |
if is_some simpset then the simpset |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
977 |
else error ("Simpset of theory " ^ tname ^ " has not been stored yet") |
8f40ff1299d8
added removal of theorems if theory is to be reloaded; changed functions for
clasohm
parents:
1244
diff
changeset
|
978 |
| None => error ("Theory " ^ tname ^ " not stored by loader"); |
559 | 979 |
|
778 | 980 |
(* print theory *) |
981 |
||
982 |
fun print_thms thy = |
|
983 |
let |
|
984 |
val thms = thms_of thy; |
|
985 |
fun prt_thm (s, th) = Pretty.block [Pretty.str (s ^ ":"), Pretty.brk 1, |
|
986 |
Pretty.quote (pretty_thm th)]; |
|
987 |
in |
|
988 |
Pretty.writeln (Pretty.big_list "stored theorems:" (map prt_thm thms)) |
|
989 |
end; |
|
990 |
||
991 |
fun print_theory thy = (Drule.print_theory thy; print_thms thy); |
|
992 |
||
1291 | 993 |
|
994 |
(* Misc HTML functions *) |
|
995 |
||
996 |
(*Init HTML generator by setting paths and creating new files*) |
|
997 |
fun init_html () = |
|
998 |
let val pure_out = open_out "Pure_sub.html"; |
|
999 |
val cpure_out = open_out "CPure_sub.html"; |
|
1000 |
val theory_list = close_out (open_out "theory_list.txt"); |
|
1001 |
||
1002 |
val rel_gif_path = relative_path (pwd ()) (!gif_path); |
|
1003 |
val package = hd (rev (space_explode "/" (pwd ()))); |
|
1004 |
in make_html := true; |
|
1313 | 1005 |
index_path := pwd(); |
1006 |
writeln ("Setting path for index.html to " ^ quote (!index_path) ^ |
|
1291 | 1007 |
"\nGIF path has been set to " ^ quote (!gif_path)); |
1008 |
||
1009 |
mk_charthead pure_out "Pure" "Children" false rel_gif_path "" package; |
|
1010 |
mk_charthead cpure_out "CPure" "Children" false rel_gif_path "" package; |
|
1011 |
output (pure_out, "Pure\n"); |
|
1012 |
output (cpure_out, "CPure\n"); |
|
1013 |
close_out pure_out; |
|
1014 |
close_out cpure_out |
|
1015 |
end; |
|
1016 |
||
1313 | 1017 |
(*Generate index.html*) |
1291 | 1018 |
fun make_chart () = if not (!make_html) then () else |
1313 | 1019 |
let val theory_list = open_in (tack_on (!index_path) "theory_list.txt"); |
1291 | 1020 |
val theories = space_explode "\n" (input (theory_list, 999999)); |
1021 |
val dummy = close_in theory_list; |
|
1022 |
||
1023 |
(*Path to Isabelle's main directory = $gif_path/.. *) |
|
1024 |
val base_path = "/" ^ |
|
1025 |
space_implode "/" (rev (tl (rev (space_explode "/" (!gif_path))))); |
|
1026 |
||
1313 | 1027 |
val gif_path = relative_path (!index_path) (!gif_path); |
1291 | 1028 |
|
1029 |
(*Make entry for main chart of all theories.*) |
|
1030 |
fun main_entries [] curdir = |
|
1031 |
implode (replicate (length curdir -1) "</UL>\n") |
|
1032 |
| main_entries (t::ts) curdir = |
|
1033 |
let |
|
1034 |
val (name, path) = take_prefix (not_equal " ") (explode t); |
|
1035 |
||
1036 |
val tname = implode name |
|
1037 |
val tpath = |
|
1313 | 1038 |
tack_on (relative_path (!index_path) (implode (tl path))) |
1291 | 1039 |
tname; |
1040 |
val subdir = space_explode "/" |
|
1041 |
(relative_path base_path (implode (tl path))); |
|
1042 |
val level_diff = length subdir - length curdir; |
|
1043 |
in "\n" ^ |
|
1044 |
(if subdir <> curdir then |
|
1045 |
(implode (if level_diff > 0 then |
|
1046 |
replicate level_diff "<UL>\n" |
|
1047 |
else if level_diff < 0 then |
|
1048 |
replicate (~level_diff) "</UL>\n" |
|
1049 |
else []) ^ |
|
1050 |
"<H3>" ^ space_implode "/" subdir ^ "</H3>\n") |
|
1051 |
else "") ^ |
|
1052 |
"<A HREF = \"" ^ tpath ^ "_sub.html\"><IMG SRC = \"" ^ |
|
1053 |
tack_on gif_path "red_arrow.gif\" ALT = \\/></A>" ^ |
|
1054 |
"<A HREF = \"" ^ tpath ^ "_sup.html\"><IMG SRC = \"" ^ |
|
1055 |
tack_on gif_path "blue_arrow.gif\ |
|
1056 |
\\" ALT = /\\></A> <A HREF = \"" ^ tpath ^ |
|
1057 |
".html\">" ^ tname ^ "</A><BR>\n" ^ |
|
1058 |
main_entries ts subdir |
|
1059 |
end; |
|
1060 |
||
1313 | 1061 |
val out = open_out (tack_on (!index_path) "index.html"); |
1062 |
val subdir = relative_path base_path (!index_path); |
|
1291 | 1063 |
in output (out, |
1064 |
"<HTML><HEAD><TITLE>Isabelle/" ^ subdir ^ "</TITLE></HEAD>\n\ |
|
1065 |
\<H2>Isabelle/" ^ subdir ^ "</H2>\n\ |
|
1066 |
\The name of every theory is linked to its theory file<BR>\n\ |
|
1067 |
\<IMG SRC = \"" ^ tack_on gif_path "red_arrow.gif\ |
|
1068 |
\\" ALT = \\/></A> stands for subtheories (child theories)<BR>\n\ |
|
1069 |
\<IMG SRC = \"" ^ tack_on gif_path "blue_arrow.gif\ |
|
1070 |
\\" ALT = /\\></A> stands for supertheories (parent theories)\n\ |
|
1071 |
\<P><A HREF = \"" ^ |
|
1313 | 1072 |
tack_on (relative_path (!index_path) base_path) "index.html\">\ |
1291 | 1073 |
\Back</A> to the index of Isabelle logics.\n<HR>" ^ |
1074 |
main_entries theories (space_explode "/" base_path) ^ |
|
1075 |
"</BODY></HTML>\n"); |
|
1076 |
close_out out |
|
1077 |
end; |
|
391 | 1078 |
end; |