author | wenzelm |
Wed, 21 Jul 2010 20:32:08 +0200 | |
changeset 37902 | 4e7864f3643d |
parent 37873 | 66d90b2b87bc |
child 37905 | 0cf799737f5f |
permissions | -rw-r--r-- |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
1 |
(* Title: Pure/Thy/thy_info.ML |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
2 |
Author: Markus Wenzel, TU Muenchen |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
3 |
|
15801 | 4 |
Main part of theory loader database, including handling of theory and |
5 |
file dependencies. |
|
3976 | 6 |
*) |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
7 |
|
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
8 |
signature THY_INFO = |
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
9 |
sig |
7099 | 10 |
datatype action = Update | Outdate | Remove |
11 |
val str_of_action: action -> string |
|
12 |
val add_hook: (action -> string -> unit) -> unit |
|
26614 | 13 |
val get_names: unit -> string list |
7910 | 14 |
val known_thy: string -> bool |
7935 | 15 |
val check_known_thy: string -> bool |
16 |
val if_known_thy: (string -> unit) -> string -> unit |
|
7288 | 17 |
val lookup_theory: string -> theory option |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
18 |
val get_theory: string -> theory |
24563 | 19 |
val is_finished: string -> bool |
26983 | 20 |
val master_directory: string -> Path.T |
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
21 |
val loaded_files: string -> Path.T list |
23871 | 22 |
val get_parents: string -> string list |
27495
d2bb5d61b392
moved and renamed IsarCmd.kill_theory to ThyInfo.kill_thy;
wenzelm
parents:
27345
diff
changeset
|
23 |
val touch_thy: string -> unit |
7910 | 24 |
val touch_child_thys: string -> unit |
32106 | 25 |
val thy_ord: theory * theory -> order |
29421
db532e37cda2
use_thys: perform consolidate_thy on loaded theories, which removes failed nodes in post-hoc fashion;
wenzelm
parents:
29118
diff
changeset
|
26 |
val remove_thy: string -> unit |
db532e37cda2
use_thys: perform consolidate_thy on loaded theories, which removes failed nodes in post-hoc fashion;
wenzelm
parents:
29118
diff
changeset
|
27 |
val kill_thy: string -> unit |
25013 | 28 |
val provide_file: Path.T -> string -> unit |
37873
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
29 |
val load_file: Path.T -> unit |
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
30 |
val exec_file: Path.T -> Context.generic -> Context.generic |
6241 | 31 |
val use: string -> unit |
24057
f42665561801
removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents:
23982
diff
changeset
|
32 |
val use_thys: string list -> unit |
f42665561801
removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents:
23982
diff
changeset
|
33 |
val use_thy: string -> unit |
23900
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
34 |
val begin_theory: string -> string list -> (Path.T * bool) list -> bool -> theory |
27579 | 35 |
val end_theory: theory -> unit |
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
36 |
val register_thy: string -> unit |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
37 |
val register_theory: theory -> unit |
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
38 |
val finish: unit -> unit |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
39 |
end; |
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
40 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36953
diff
changeset
|
41 |
structure Thy_Info: THY_INFO = |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
42 |
struct |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
43 |
|
7099 | 44 |
(** theory loader actions and hooks **) |
45 |
||
46 |
datatype action = Update | Outdate | Remove; |
|
47 |
val str_of_action = fn Update => "Update" | Outdate => "Outdate" | Remove => "Remove"; |
|
48 |
||
49 |
local |
|
32738 | 50 |
val hooks = Unsynchronized.ref ([]: (action -> string -> unit) list); |
7099 | 51 |
in |
32738 | 52 |
fun add_hook f = CRITICAL (fn () => Unsynchronized.change hooks (cons f)); |
15570 | 53 |
fun perform action name = List.app (fn f => (try (fn () => f action name) (); ())) (! hooks); |
7099 | 54 |
end; |
55 |
||
56 |
||
57 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
58 |
(** thy database **) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
59 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
60 |
(* messages *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
61 |
|
23871 | 62 |
fun loader_msg txt [] = "Theory loader: " ^ txt |
63 |
| loader_msg txt names = "Theory loader: " ^ txt ^ " " ^ commas_quote names; |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
64 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
65 |
val show_path = space_implode " via " o map quote; |
9332 | 66 |
fun cycle_msg names = loader_msg ("cyclic dependency of " ^ show_path names) []; |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
67 |
|
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
68 |
|
6666 | 69 |
(* derived graph operations *) |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
70 |
|
9327 | 71 |
fun add_deps name parents G = Graph.add_deps_acyclic (name, parents) G |
9332 | 72 |
handle Graph.CYCLES namess => error (cat_lines (map cycle_msg namess)); |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
73 |
|
7952 | 74 |
fun upd_deps name entry G = |
19473 | 75 |
fold (fn parent => Graph.del_edge (parent, name)) (Graph.imm_preds G name) G |
7952 | 76 |
|> Graph.map_node name (K entry); |
3976 | 77 |
|
23967 | 78 |
fun new_deps name parents entry G = |
7952 | 79 |
(if can (Graph.get_node G) name then upd_deps name entry G else Graph.new_node (name, entry) G) |
80 |
|> add_deps name parents; |
|
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
81 |
|
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
82 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
83 |
(* thy database *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
84 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
85 |
type deps = |
24190 | 86 |
{update_time: int, (*symbolic time of update; negative value means outdated*) |
87 |
master: (Path.T * File.ident) option, (*master dependencies for thy file*) |
|
37902
4e7864f3643d
deps_thy/load_thy: store compact text to reduce space by factor 12;
wenzelm
parents:
37873
diff
changeset
|
88 |
text: string, (*source text for thy*) |
24190 | 89 |
parents: string list, (*source specification of parents (partially qualified)*) |
90 |
(*auxiliary files: source path, physical path + identifier*) |
|
91 |
files: (Path.T * (Path.T * File.ident) option) list}; |
|
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
92 |
|
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
93 |
fun make_deps update_time master text parents files : deps = |
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
94 |
{update_time = update_time, master = master, text = text, parents = parents, files = files}; |
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
95 |
|
24068 | 96 |
fun init_deps master text parents files = |
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
97 |
SOME (make_deps ~1 master text parents (map (rpair NONE) files)); |
23871 | 98 |
|
24190 | 99 |
fun master_dir NONE = Path.current |
100 |
| master_dir (SOME (path, _)) = Path.dir path; |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
101 |
|
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
102 |
fun master_dir' (d: deps option) = the_default Path.current (Option.map (master_dir o #master) d); |
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
103 |
fun master_dir'' d = the_default Path.current (Option.map master_dir' d); |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
104 |
|
23967 | 105 |
fun base_name s = Path.implode (Path.base (Path.explode s)); |
106 |
||
7211 | 107 |
|
6362 | 108 |
type thy = deps option * theory option; |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
109 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
110 |
local |
32738 | 111 |
val database = Unsynchronized.ref (Graph.empty: thy Graph.T); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
112 |
in |
6362 | 113 |
fun get_thys () = ! database; |
32738 | 114 |
fun change_thys f = CRITICAL (fn () => Unsynchronized.change database f); |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
115 |
end; |
5209 | 116 |
|
117 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
118 |
(* access thy graph *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
119 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
120 |
fun thy_graph f x = f (get_thys ()) x; |
9417 | 121 |
|
23967 | 122 |
fun get_names () = Graph.topological_order (get_thys ()); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
123 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
124 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
125 |
(* access thy *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
126 |
|
7935 | 127 |
fun lookup_thy name = |
15531 | 128 |
SOME (thy_graph Graph.get_node name) handle Graph.UNDEF _ => NONE; |
7935 | 129 |
|
16047 | 130 |
val known_thy = is_some o lookup_thy; |
7935 | 131 |
fun check_known_thy name = known_thy name orelse (warning ("Unknown theory " ^ quote name); false); |
132 |
fun if_known_thy f name = if check_known_thy name then f name else (); |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
133 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
134 |
fun get_thy name = |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
135 |
(case lookup_thy name of |
15531 | 136 |
SOME thy => thy |
137 |
| NONE => error (loader_msg "nothing known about theory" [name])); |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
138 |
|
23939 | 139 |
fun change_thy name f = CRITICAL (fn () => |
140 |
(get_thy name; change_thys (Graph.map_node name f))); |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
141 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
142 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
143 |
(* access deps *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
144 |
|
15570 | 145 |
val lookup_deps = Option.map #1 o lookup_thy; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
146 |
val get_deps = #1 o get_thy; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
147 |
fun change_deps name f = change_thy name (fn (deps, x) => (f deps, x)); |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
148 |
|
26983 | 149 |
val is_finished = is_none o get_deps; |
150 |
val master_directory = master_dir' o get_deps; |
|
7191 | 151 |
|
152 |
fun loaded_files name = |
|
153 |
(case get_deps name of |
|
15531 | 154 |
NONE => [] |
155 |
| SOME {master, files, ...} => |
|
24190 | 156 |
(case master of SOME (thy_path, _) => [thy_path] | NONE => []) @ |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
157 |
(map_filter (Option.map #1 o #2) files)); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
158 |
|
23871 | 159 |
fun get_parents name = |
23967 | 160 |
thy_graph Graph.imm_preds name handle Graph.UNDEF _ => |
6654 | 161 |
error (loader_msg "nothing known about theory" [name]); |
162 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
163 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
164 |
(* access theory *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
165 |
|
7687 | 166 |
fun lookup_theory name = |
167 |
(case lookup_thy name of |
|
15531 | 168 |
SOME (_, SOME thy) => SOME thy |
169 |
| _ => NONE); |
|
7288 | 170 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
171 |
fun get_theory name = |
7288 | 172 |
(case lookup_theory name of |
23871 | 173 |
SOME theory => theory |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
174 |
| _ => error (loader_msg "undefined theory entry for" [name])); |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
175 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
176 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
177 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
178 |
(** thy operations **) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
179 |
|
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
180 |
(* check state *) |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
181 |
|
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
182 |
fun check_unfinished fail name = |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
183 |
if known_thy name andalso is_finished name then |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
184 |
fail (loader_msg "cannot update finished theory" [name]) |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
185 |
else (); |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
186 |
|
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
187 |
fun check_files name = |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
188 |
let |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
189 |
val files = (case get_deps name of SOME {files, ...} => files | NONE => []); |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
190 |
val missing_files = map_filter (fn (path, NONE) => SOME (Path.implode path) | _ => NONE) files; |
24190 | 191 |
val _ = null missing_files orelse |
192 |
error (loader_msg "unresolved dependencies of theory" [name] ^ |
|
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
193 |
" on file(s): " ^ commas_quote missing_files); |
24190 | 194 |
in () end; |
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
195 |
|
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
196 |
|
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
197 |
(* maintain update_time *) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
198 |
|
7099 | 199 |
local |
200 |
||
6241 | 201 |
fun is_outdated name = |
202 |
(case lookup_deps name of |
|
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
203 |
SOME (SOME {update_time, ...}) => update_time < 0 |
6241 | 204 |
| _ => false); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
205 |
|
25013 | 206 |
fun unfinished name = |
24186
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
207 |
if is_finished name then (warning (loader_msg "tried to touch finished theory" [name]); NONE) |
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
208 |
else SOME name; |
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
209 |
|
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
210 |
in |
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
211 |
|
6241 | 212 |
fun outdate_thy name = |
7099 | 213 |
if is_finished name orelse is_outdated name then () |
23939 | 214 |
else CRITICAL (fn () => |
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
215 |
(change_deps name (Option.map (fn {master, text, parents, files, ...} => |
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
216 |
make_deps ~1 master text parents files)); perform Outdate name)); |
7099 | 217 |
|
7910 | 218 |
fun touch_thys names = |
25013 | 219 |
List.app outdate_thy (thy_graph Graph.all_succs (map_filter unfinished names)); |
7910 | 220 |
|
221 |
fun touch_thy name = touch_thys [name]; |
|
222 |
fun touch_child_thys name = touch_thys (thy_graph Graph.imm_succs name); |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
223 |
|
7099 | 224 |
end; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
225 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
226 |
|
32106 | 227 |
(* management data *) |
228 |
||
33522 | 229 |
structure Management_Data = Theory_Data |
32106 | 230 |
( |
231 |
type T = |
|
232 |
Task_Queue.group option * (*worker thread group*) |
|
233 |
int; (*abstract update time*) |
|
234 |
val empty = (NONE, 0); |
|
235 |
fun extend _ = empty; |
|
33522 | 236 |
fun merge _ = empty; |
32106 | 237 |
); |
238 |
||
239 |
val thy_ord = int_ord o pairself (#2 o Management_Data.get); |
|
240 |
||
241 |
||
242 |
(* pending proofs *) |
|
29434 | 243 |
|
244 |
fun join_thy name = |
|
245 |
(case lookup_theory name of |
|
32106 | 246 |
NONE => () |
29434 | 247 |
| SOME thy => PureThy.join_proofs thy); |
248 |
||
249 |
fun cancel_thy name = |
|
250 |
(case lookup_theory name of |
|
251 |
NONE => () |
|
32106 | 252 |
| SOME thy => |
253 |
(case #1 (Management_Data.get thy) of |
|
254 |
NONE => () |
|
255 |
| SOME group => Future.cancel_group group)); |
|
29434 | 256 |
|
257 |
||
29421
db532e37cda2
use_thys: perform consolidate_thy on loaded theories, which removes failed nodes in post-hoc fashion;
wenzelm
parents:
29118
diff
changeset
|
258 |
(* remove theory *) |
db532e37cda2
use_thys: perform consolidate_thy on loaded theories, which removes failed nodes in post-hoc fashion;
wenzelm
parents:
29118
diff
changeset
|
259 |
|
db532e37cda2
use_thys: perform consolidate_thy on loaded theories, which removes failed nodes in post-hoc fashion;
wenzelm
parents:
29118
diff
changeset
|
260 |
fun remove_thy name = |
db532e37cda2
use_thys: perform consolidate_thy on loaded theories, which removes failed nodes in post-hoc fashion;
wenzelm
parents:
29118
diff
changeset
|
261 |
if is_finished name then error (loader_msg "cannot remove finished theory" [name]) |
db532e37cda2
use_thys: perform consolidate_thy on loaded theories, which removes failed nodes in post-hoc fashion;
wenzelm
parents:
29118
diff
changeset
|
262 |
else |
29434 | 263 |
let |
264 |
val succs = thy_graph Graph.all_succs [name]; |
|
265 |
val _ = List.app cancel_thy succs; |
|
266 |
val _ = priority (loader_msg "removing" succs); |
|
267 |
val _ = CRITICAL (fn () => |
|
268 |
(List.app (perform Remove) succs; change_thys (Graph.del_nodes succs))); |
|
269 |
in () end; |
|
29421
db532e37cda2
use_thys: perform consolidate_thy on loaded theories, which removes failed nodes in post-hoc fashion;
wenzelm
parents:
29118
diff
changeset
|
270 |
|
db532e37cda2
use_thys: perform consolidate_thy on loaded theories, which removes failed nodes in post-hoc fashion;
wenzelm
parents:
29118
diff
changeset
|
271 |
val kill_thy = if_known_thy remove_thy; |
db532e37cda2
use_thys: perform consolidate_thy on loaded theories, which removes failed nodes in post-hoc fashion;
wenzelm
parents:
29118
diff
changeset
|
272 |
|
db532e37cda2
use_thys: perform consolidate_thy on loaded theories, which removes failed nodes in post-hoc fashion;
wenzelm
parents:
29118
diff
changeset
|
273 |
|
7941 | 274 |
(* load_file *) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
275 |
|
7191 | 276 |
local |
277 |
||
32794 | 278 |
fun provide path name info (SOME {update_time, master, text, parents, files}) = |
23871 | 279 |
(if AList.defined (op =) files path then () |
7941 | 280 |
else warning (loader_msg "undeclared dependency of theory" [name] ^ |
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
281 |
" on file: " ^ quote (Path.implode path)); |
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
282 |
SOME (make_deps update_time master text parents |
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
283 |
(AList.update (op =) (path, SOME info) files))) |
15531 | 284 |
| provide _ _ _ NONE = NONE; |
7941 | 285 |
|
286 |
fun run_file path = |
|
26415 | 287 |
(case Option.map (Context.theory_name o Context.the_theory) (Context.thread_data ()) of |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36953
diff
changeset
|
288 |
NONE => (Thy_Load.load_ml Path.current path; ()) |
23871 | 289 |
| SOME name => |
290 |
(case lookup_deps name of |
|
291 |
SOME deps => |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36953
diff
changeset
|
292 |
change_deps name (provide path name (Thy_Load.load_ml (master_dir' deps) path)) |
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36953
diff
changeset
|
293 |
| NONE => (Thy_Load.load_ml Path.current path; ()))); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
294 |
|
7191 | 295 |
in |
296 |
||
25013 | 297 |
fun provide_file path name = |
298 |
let |
|
26983 | 299 |
val dir = master_directory name; |
25013 | 300 |
val _ = check_unfinished error name; |
301 |
in |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36953
diff
changeset
|
302 |
(case Thy_Load.check_file dir path of |
25013 | 303 |
SOME path_info => change_deps name (provide path name path_info) |
304 |
| NONE => error ("Could not find file " ^ quote (Path.implode path))) |
|
305 |
end; |
|
306 |
||
37873
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
307 |
fun load_file path = |
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
308 |
if ! Output.timing then |
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
309 |
let val name = Path.implode path in |
7244 | 310 |
timeit (fn () => |
9778 | 311 |
(priority ("\n**** Starting file " ^ quote name ^ " ****"); |
9036 | 312 |
run_file path; |
9778 | 313 |
priority ("**** Finished file " ^ quote name ^ " ****\n"))) |
7244 | 314 |
end |
24057
f42665561801
removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents:
23982
diff
changeset
|
315 |
else run_file path; |
7941 | 316 |
|
37873
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
317 |
fun exec_file path = ML_Context.exec (fn () => load_file path); |
26494 | 318 |
|
37873
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
319 |
val use = load_file o Path.explode; |
7191 | 320 |
|
321 |
end; |
|
6233 | 322 |
|
323 |
||
7099 | 324 |
(* load_thy *) |
325 |
||
9490 | 326 |
fun required_by _ [] = "" |
327 |
| required_by s initiators = s ^ "(required by " ^ show_path (rev initiators) ^ ")"; |
|
7099 | 328 |
|
37873
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
329 |
fun load_thy upd_time initiators name = |
7099 | 330 |
let |
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
331 |
val _ = priority ("Loading theory " ^ quote name ^ required_by " " initiators); |
37902
4e7864f3643d
deps_thy/load_thy: store compact text to reduce space by factor 12;
wenzelm
parents:
37873
diff
changeset
|
332 |
fun corrupted () = error (loader_msg "corrupted dependency information" [name]); |
32794 | 333 |
val (pos, text, _) = |
24068 | 334 |
(case get_deps name of |
37902
4e7864f3643d
deps_thy/load_thy: store compact text to reduce space by factor 12;
wenzelm
parents:
37873
diff
changeset
|
335 |
SOME {master = SOME (master_path, _), text, files, ...} => |
4e7864f3643d
deps_thy/load_thy: store compact text to reduce space by factor 12;
wenzelm
parents:
37873
diff
changeset
|
336 |
if text = "" then corrupted () |
4e7864f3643d
deps_thy/load_thy: store compact text to reduce space by factor 12;
wenzelm
parents:
37873
diff
changeset
|
337 |
else (Path.position master_path, text, files) |
4e7864f3643d
deps_thy/load_thy: store compact text to reduce space by factor 12;
wenzelm
parents:
37873
diff
changeset
|
338 |
| _ => corrupted ()); |
24068 | 339 |
val _ = touch_thy name; |
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
340 |
val _ = CRITICAL (fn () => |
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
341 |
change_deps name (Option.map (fn {master, text, parents, files, ...} => |
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
342 |
make_deps upd_time master text parents files))); |
37873
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
343 |
val after_load = Outer_Syntax.load_thy name pos text; |
29429
a6c641f08af7
schedule_futures: tuned final consolidation, explicit after_load phase;
wenzelm
parents:
29421
diff
changeset
|
344 |
val _ = |
a6c641f08af7
schedule_futures: tuned final consolidation, explicit after_load phase;
wenzelm
parents:
29421
diff
changeset
|
345 |
CRITICAL (fn () => |
a6c641f08af7
schedule_futures: tuned final consolidation, explicit after_load phase;
wenzelm
parents:
29421
diff
changeset
|
346 |
(change_deps name |
a6c641f08af7
schedule_futures: tuned final consolidation, explicit after_load phase;
wenzelm
parents:
29421
diff
changeset
|
347 |
(Option.map (fn {update_time, master, parents, files, ...} => |
37902
4e7864f3643d
deps_thy/load_thy: store compact text to reduce space by factor 12;
wenzelm
parents:
37873
diff
changeset
|
348 |
make_deps update_time master "" parents files)); |
29429
a6c641f08af7
schedule_futures: tuned final consolidation, explicit after_load phase;
wenzelm
parents:
29421
diff
changeset
|
349 |
perform Update name)); |
a6c641f08af7
schedule_futures: tuned final consolidation, explicit after_load phase;
wenzelm
parents:
29421
diff
changeset
|
350 |
in after_load end; |
7099 | 351 |
|
352 |
||
24209 | 353 |
(* scheduling loader tasks *) |
354 |
||
29429
a6c641f08af7
schedule_futures: tuned final consolidation, explicit after_load phase;
wenzelm
parents:
29421
diff
changeset
|
355 |
datatype task = Task of (unit -> unit -> unit) | Finished | Running; |
24209 | 356 |
fun task_finished Finished = true | task_finished _ = false; |
357 |
||
29118 | 358 |
local |
359 |
||
32814
81897d30b97f
added Task_Queue.depend (again) -- light-weight version for transitive graph;
wenzelm
parents:
32794
diff
changeset
|
360 |
fun schedule_futures task_graph = uninterruptible (fn _ => fn () => |
28194 | 361 |
let |
362 |
val tasks = Graph.topological_order task_graph |> map_filter (fn name => |
|
363 |
(case Graph.get_node task_graph name of Task body => SOME (name, body) | _ => NONE)); |
|
364 |
||
32061
11f8ee55662d
parallel_proofs: more fine-grained control with optional parallel checking of nested Isar proofs;
wenzelm
parents:
31542
diff
changeset
|
365 |
val par_proofs = ! parallel_proofs >= 1; |
29437
a96236886804
schedule_futures: save memory for non-parallel proofs, by applying after_load as soon as possible here;
wenzelm
parents:
29434
diff
changeset
|
366 |
|
29429
a6c641f08af7
schedule_futures: tuned final consolidation, explicit after_load phase;
wenzelm
parents:
29421
diff
changeset
|
367 |
fun fork (name, body) tab = |
28194 | 368 |
let |
29000
5e03bc760355
improved future_schedule: more robust handling of failed parents (explicit join), final join of all futures, including Exn.release_all;
wenzelm
parents:
28980
diff
changeset
|
369 |
val deps = Graph.imm_preds task_graph name |
5e03bc760355
improved future_schedule: more robust handling of failed parents (explicit join), final join of all futures, including Exn.release_all;
wenzelm
parents:
28980
diff
changeset
|
370 |
|> map_filter (fn parent => |
5e03bc760355
improved future_schedule: more robust handling of failed parents (explicit join), final join of all futures, including Exn.release_all;
wenzelm
parents:
28980
diff
changeset
|
371 |
(case Symtab.lookup tab parent of SOME future => SOME (parent, future) | NONE => NONE)); |
5e03bc760355
improved future_schedule: more robust handling of failed parents (explicit join), final join of all futures, including Exn.release_all;
wenzelm
parents:
28980
diff
changeset
|
372 |
fun failed (parent, future) = if can Future.join future then NONE else SOME parent; |
5e03bc760355
improved future_schedule: more robust handling of failed parents (explicit join), final join of all futures, including Exn.release_all;
wenzelm
parents:
28980
diff
changeset
|
373 |
|
29437
a96236886804
schedule_futures: save memory for non-parallel proofs, by applying after_load as soon as possible here;
wenzelm
parents:
29434
diff
changeset
|
374 |
val future = Future.fork_deps (map #2 deps) (fn () => |
29000
5e03bc760355
improved future_schedule: more robust handling of failed parents (explicit join), final join of all futures, including Exn.release_all;
wenzelm
parents:
28980
diff
changeset
|
375 |
(case map_filter failed deps of |
5e03bc760355
improved future_schedule: more robust handling of failed parents (explicit join), final join of all futures, including Exn.release_all;
wenzelm
parents:
28980
diff
changeset
|
376 |
[] => body () |
5e03bc760355
improved future_schedule: more robust handling of failed parents (explicit join), final join of all futures, including Exn.release_all;
wenzelm
parents:
28980
diff
changeset
|
377 |
| bad => error (loader_msg |
5e03bc760355
improved future_schedule: more robust handling of failed parents (explicit join), final join of all futures, including Exn.release_all;
wenzelm
parents:
28980
diff
changeset
|
378 |
("failed to load " ^ quote name ^ " (unresolved " ^ commas_quote bad ^ ")") []))); |
29437
a96236886804
schedule_futures: save memory for non-parallel proofs, by applying after_load as soon as possible here;
wenzelm
parents:
29434
diff
changeset
|
379 |
val future' = |
a96236886804
schedule_futures: save memory for non-parallel proofs, by applying after_load as soon as possible here;
wenzelm
parents:
29434
diff
changeset
|
380 |
if par_proofs then future |
a96236886804
schedule_futures: save memory for non-parallel proofs, by applying after_load as soon as possible here;
wenzelm
parents:
29434
diff
changeset
|
381 |
else Future.map (fn after_load => (after_load (); fn () => ())) future; |
a96236886804
schedule_futures: save memory for non-parallel proofs, by applying after_load as soon as possible here;
wenzelm
parents:
29434
diff
changeset
|
382 |
in Symtab.update (name, future') tab end; |
29000
5e03bc760355
improved future_schedule: more robust handling of failed parents (explicit join), final join of all futures, including Exn.release_all;
wenzelm
parents:
28980
diff
changeset
|
383 |
|
29429
a6c641f08af7
schedule_futures: tuned final consolidation, explicit after_load phase;
wenzelm
parents:
29421
diff
changeset
|
384 |
val futures = fold fork tasks Symtab.empty; |
29000
5e03bc760355
improved future_schedule: more robust handling of failed parents (explicit join), final join of all futures, including Exn.release_all;
wenzelm
parents:
28980
diff
changeset
|
385 |
|
34260
2524c1bbd087
kill failed theories in reverse order -- avoids cascaded warnings;
wenzelm
parents:
33522
diff
changeset
|
386 |
val failed = tasks |> maps (fn (name, _) => |
29429
a6c641f08af7
schedule_futures: tuned final consolidation, explicit after_load phase;
wenzelm
parents:
29421
diff
changeset
|
387 |
let |
a6c641f08af7
schedule_futures: tuned final consolidation, explicit after_load phase;
wenzelm
parents:
29421
diff
changeset
|
388 |
val after_load = Future.join (the (Symtab.lookup futures name)); |
32106 | 389 |
val _ = join_thy name; |
29429
a6c641f08af7
schedule_futures: tuned final consolidation, explicit after_load phase;
wenzelm
parents:
29421
diff
changeset
|
390 |
val _ = after_load (); |
34260
2524c1bbd087
kill failed theories in reverse order -- avoids cascaded warnings;
wenzelm
parents:
33522
diff
changeset
|
391 |
in [] end handle exn => [(name, exn)]) |> rev; |
29429
a6c641f08af7
schedule_futures: tuned final consolidation, explicit after_load phase;
wenzelm
parents:
29421
diff
changeset
|
392 |
|
34260
2524c1bbd087
kill failed theories in reverse order -- avoids cascaded warnings;
wenzelm
parents:
33522
diff
changeset
|
393 |
val _ = List.app (kill_thy o #1) failed; |
2524c1bbd087
kill failed theories in reverse order -- avoids cascaded warnings;
wenzelm
parents:
33522
diff
changeset
|
394 |
val _ = Exn.release_all (map (Exn.Exn o #2) failed); |
2524c1bbd087
kill failed theories in reverse order -- avoids cascaded warnings;
wenzelm
parents:
33522
diff
changeset
|
395 |
in () end) (); |
29429
a6c641f08af7
schedule_futures: tuned final consolidation, explicit after_load phase;
wenzelm
parents:
29421
diff
changeset
|
396 |
|
a6c641f08af7
schedule_futures: tuned final consolidation, explicit after_load phase;
wenzelm
parents:
29421
diff
changeset
|
397 |
fun schedule_seq tasks = |
a6c641f08af7
schedule_futures: tuned final consolidation, explicit after_load phase;
wenzelm
parents:
29421
diff
changeset
|
398 |
Graph.topological_order tasks |
30319
a549dc15c037
schedule_seq: handle after_load errors as in schedule_futures;
wenzelm
parents:
29437
diff
changeset
|
399 |
|> List.app (fn name => |
a549dc15c037
schedule_seq: handle after_load errors as in schedule_futures;
wenzelm
parents:
29437
diff
changeset
|
400 |
(case Graph.get_node tasks name of |
a549dc15c037
schedule_seq: handle after_load errors as in schedule_futures;
wenzelm
parents:
29437
diff
changeset
|
401 |
Task body => |
a549dc15c037
schedule_seq: handle after_load errors as in schedule_futures;
wenzelm
parents:
29437
diff
changeset
|
402 |
let val after_load = body () |
31542
3371a3c19bb1
reraise exceptions to preserve position information;
wenzelm
parents:
30819
diff
changeset
|
403 |
in after_load () handle exn => (kill_thy name; reraise exn) end |
30319
a549dc15c037
schedule_seq: handle after_load errors as in schedule_futures;
wenzelm
parents:
29437
diff
changeset
|
404 |
| _ => ())); |
28194 | 405 |
|
24209 | 406 |
in |
407 |
||
32794 | 408 |
fun schedule_tasks tasks = |
29118 | 409 |
if not (Multithreading.enabled ()) then schedule_seq tasks |
410 |
else if Multithreading.self_critical () then |
|
24209 | 411 |
(warning (loader_msg "no multithreading within critical section" []); |
412 |
schedule_seq tasks) |
|
29118 | 413 |
else schedule_futures tasks; |
24209 | 414 |
|
415 |
end; |
|
416 |
||
417 |
||
23967 | 418 |
(* require_thy -- checking database entries wrt. the file-system *) |
15065 | 419 |
|
7211 | 420 |
local |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
421 |
|
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
422 |
fun check_ml master (src_path, info) = |
23871 | 423 |
let val info' = |
424 |
(case info of NONE => NONE |
|
425 |
| SOME (_, id) => |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36953
diff
changeset
|
426 |
(case Thy_Load.check_ml (master_dir master) src_path of NONE => NONE |
23871 | 427 |
| SOME (path', id') => if id <> id' then NONE else SOME (path', id'))) |
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
428 |
in (src_path, info') end; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
429 |
|
24175
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
430 |
fun check_deps dir name = |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
431 |
(case lookup_deps name of |
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
432 |
SOME NONE => (true, NONE, get_parents name) |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
433 |
| NONE => |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36953
diff
changeset
|
434 |
let val {master, text, imports = parents, uses = files} = Thy_Load.deps_thy dir name |
24068 | 435 |
in (false, init_deps (SOME master) text parents files, parents) end |
32794 | 436 |
| SOME (SOME {update_time, master, text, parents, files}) => |
24190 | 437 |
let |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36953
diff
changeset
|
438 |
val (thy_path, thy_id) = Thy_Load.check_thy dir name; |
24190 | 439 |
val master' = SOME (thy_path, thy_id); |
440 |
in |
|
441 |
if Option.map #2 master <> SOME thy_id then |
|
24175
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
442 |
let val {text = text', imports = parents', uses = files', ...} = |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36953
diff
changeset
|
443 |
Thy_Load.deps_thy dir name; |
24175
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
444 |
in (false, init_deps master' text' parents' files', parents') end |
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
445 |
else |
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
446 |
let |
24186
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
447 |
val files' = map (check_ml master') files; |
24307
434c9fbc1787
check_deps: ensure that theory is actually present, not just update_time > 1;
wenzelm
parents:
24230
diff
changeset
|
448 |
val current = update_time >= 0 andalso can get_theory name |
434c9fbc1787
check_deps: ensure that theory is actually present, not just update_time > 1;
wenzelm
parents:
24230
diff
changeset
|
449 |
andalso forall (is_some o snd) files'; |
24175
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
450 |
val update_time' = if current then update_time else ~1; |
25030 | 451 |
val deps' = SOME (make_deps update_time' master' text parents files'); |
24175
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
452 |
in (current, deps', parents) end |
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
453 |
end); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
454 |
|
25030 | 455 |
fun read_text (SOME {update_time, master = master as SOME (path, _), text = _, parents, files}) = |
37902
4e7864f3643d
deps_thy/load_thy: store compact text to reduce space by factor 12;
wenzelm
parents:
37873
diff
changeset
|
456 |
SOME (make_deps update_time master (File.read path) parents files); |
25030 | 457 |
|
23967 | 458 |
in |
459 |
||
37873
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
460 |
fun require_thys initiators dir strs tasks = |
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
461 |
fold_map (require_thy initiators dir) strs tasks |>> forall I |
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
462 |
and require_thy initiators dir str tasks = |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
463 |
let |
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
464 |
val path = Path.expand (Path.explode str); |
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
465 |
val name = Path.implode (Path.base path); |
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
466 |
val dir' = Path.append dir (Path.dir path); |
23871 | 467 |
val _ = member (op =) initiators name andalso error (cycle_msg initiators); |
7066 | 468 |
in |
32794 | 469 |
(case try (Graph.get_node tasks) name of |
24209 | 470 |
SOME task => (task_finished task, tasks) |
23967 | 471 |
| NONE => |
472 |
let |
|
24175
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
473 |
val (current, deps, parents) = check_deps dir' name |
23967 | 474 |
handle ERROR msg => cat_error msg |
475 |
(loader_msg "the error(s) above occurred while examining theory" [name] ^ |
|
476 |
required_by "\n" initiators); |
|
477 |
val parent_names = map base_name parents; |
|
23871 | 478 |
|
32794 | 479 |
val (parents_current, tasks_graph') = |
37873
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
480 |
require_thys (name :: initiators) (Path.append dir (master_dir' deps)) parents tasks; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
481 |
|
23967 | 482 |
val all_current = current andalso parents_current; |
24186
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
483 |
val _ = if not all_current andalso known_thy name then outdate_thy name else (); |
25030 | 484 |
val entry = |
485 |
if all_current then (deps, SOME (get_theory name)) |
|
486 |
else (read_text deps, NONE); |
|
487 |
val _ = change_thys (new_deps name parent_names entry); |
|
23967 | 488 |
|
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
489 |
val upd_time = serial (); |
23974 | 490 |
val tasks_graph'' = tasks_graph' |> new_deps name parent_names |
24209 | 491 |
(if all_current then Finished |
37873
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
492 |
else Task (fn () => load_thy upd_time initiators name)); |
32794 | 493 |
in (all_current, tasks_graph'') end) |
7066 | 494 |
end; |
6484
3f098b0ec683
use_thy etc.: may specify path prefix, which is temporarily used as load path;
wenzelm
parents:
6389
diff
changeset
|
495 |
|
23967 | 496 |
end; |
497 |
||
498 |
||
24209 | 499 |
(* use_thy etc. *) |
23967 | 500 |
|
37873
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
501 |
fun use_thys_dir dir arg = |
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
502 |
schedule_tasks (snd (require_thys [] dir arg Graph.empty)); |
23967 | 503 |
|
37873
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
504 |
val use_thys = use_thys_dir Path.current; |
6241 | 505 |
|
37873
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
506 |
fun use_thy str = |
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
507 |
let |
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
508 |
val name = base_name str; |
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
509 |
val _ = check_unfinished warning name; |
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
510 |
in use_thys [str] end; |
7211 | 511 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
512 |
|
7066 | 513 |
(* begin / end theory *) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
514 |
|
23900
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
515 |
fun begin_theory name parents uses int = |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
516 |
let |
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
517 |
val parent_names = map base_name parents; |
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
518 |
val dir = master_dir'' (lookup_deps name); |
7244 | 519 |
val _ = check_unfinished error name; |
24186
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
520 |
val _ = if int then use_thys_dir dir parents else (); |
17365 | 521 |
|
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
522 |
val theory = Theory.begin_theory name (map get_theory parent_names); |
23900
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
523 |
|
7952 | 524 |
val deps = |
525 |
if known_thy name then get_deps name |
|
37902
4e7864f3643d
deps_thy/load_thy: store compact text to reduce space by factor 12;
wenzelm
parents:
37873
diff
changeset
|
526 |
else init_deps NONE "" parents (map #1 uses); |
23967 | 527 |
val _ = change_thys (new_deps name parent_names (deps, NONE)); |
9451 | 528 |
|
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
529 |
val update_time = (case deps of NONE => 0 | SOME {update_time, ...} => update_time); |
24563 | 530 |
val update_time = if update_time > 0 then update_time else serial (); |
531 |
val theory' = theory |
|
32106 | 532 |
|> Management_Data.put (Future.worker_group (), update_time) |
24563 | 533 |
|> Present.begin_theory update_time dir uses; |
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
534 |
|
23900
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
535 |
val uses_now = map_filter (fn (x, true) => SOME x | _ => NONE) uses; |
28292
cad470c69935
begin_theory: Theory.checkpoint for immediate uses ensures that ML evaluation always starts with non-draft @{theory};
wenzelm
parents:
28195
diff
changeset
|
536 |
val theory'' = |
37873
66d90b2b87bc
eliminated old time_use/time_use_thy variants -- timing is implicitly controlled via Output.timing;
wenzelm
parents:
37871
diff
changeset
|
537 |
fold (fn x => Context.theory_map (exec_file x) o Theory.checkpoint) uses_now theory'; |
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
538 |
in theory'' end; |
7244 | 539 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
540 |
fun end_theory theory = |
7099 | 541 |
let |
16454 | 542 |
val name = Context.theory_name theory; |
24190 | 543 |
val _ = check_files name; |
16504 | 544 |
val theory' = Theory.end_theory theory; |
23900
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
545 |
val _ = change_thy name (fn (deps, _) => (deps, SOME theory')); |
27579 | 546 |
in () end; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
547 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
548 |
|
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
549 |
(* register existing theories *) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
550 |
|
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
551 |
fun register_thy name = |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
552 |
let |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
553 |
val _ = priority ("Registering theory " ^ quote name); |
24563 | 554 |
val thy = get_theory name; |
24096 | 555 |
val _ = map get_theory (get_parents name); |
556 |
val _ = check_unfinished error name; |
|
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
557 |
val _ = touch_thy name; |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36953
diff
changeset
|
558 |
val master = #master (Thy_Load.deps_thy Path.current name); |
32106 | 559 |
val upd_time = #2 (Management_Data.get thy); |
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
560 |
in |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
561 |
CRITICAL (fn () => |
24190 | 562 |
(change_deps name (Option.map |
37902
4e7864f3643d
deps_thy/load_thy: store compact text to reduce space by factor 12;
wenzelm
parents:
37873
diff
changeset
|
563 |
(fn {parents, files, ...} => make_deps upd_time (SOME master) "" parents files)); |
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
564 |
perform Update name)) |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
565 |
end; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
566 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
567 |
fun register_theory theory = |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
568 |
let |
16454 | 569 |
val name = Context.theory_name theory; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
570 |
val parents = Theory.parents_of theory; |
16454 | 571 |
val parent_names = map Context.theory_name parents; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
572 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
573 |
fun err txt bads = |
23871 | 574 |
error (loader_msg txt bads ^ "\ncannot register theory " ^ quote name); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
575 |
|
6666 | 576 |
val nonfinished = filter_out is_finished parent_names; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
577 |
fun get_variant (x, y_name) = |
15531 | 578 |
if Theory.eq_thy (x, get_theory y_name) then NONE |
579 |
else SOME y_name; |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
580 |
val variants = map_filter get_variant (parents ~~ parent_names); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
581 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
582 |
fun register G = |
15531 | 583 |
(Graph.new_node (name, (NONE, SOME theory)) G |
9327 | 584 |
handle Graph.DUP _ => err "duplicate theory entry" []) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
585 |
|> add_deps name parent_names; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
586 |
in |
6666 | 587 |
if not (null nonfinished) then err "non-finished parent theories" nonfinished |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
588 |
else if not (null variants) then err "different versions of parent theories" variants |
23939 | 589 |
else CRITICAL (fn () => (change_thys register; perform Update name)) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
590 |
end; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
591 |
|
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
592 |
|
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
593 |
(* finish all theories *) |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
594 |
|
28976
53c96f58e38f
future_scheduler: no global task group, exceptions via collective join;
wenzelm
parents:
28844
diff
changeset
|
595 |
fun finish () = change_thys (Graph.map_nodes (fn (_, entry) => (NONE, entry))); |
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
596 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
597 |
end; |