author | wenzelm |
Wed, 02 Jan 2008 16:32:53 +0100 | |
changeset 25775 | 90525e67ede7 |
parent 25736 | 68834086f910 |
child 25994 | d35484265f46 |
permissions | -rw-r--r-- |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
1 |
(* Title: Pure/Thy/thy_info.ML |
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
2 |
ID: $Id$ |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
3 |
Author: Markus Wenzel, TU Muenchen |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
4 |
|
15801 | 5 |
Main part of theory loader database, including handling of theory and |
6 |
file dependencies. |
|
3976 | 7 |
*) |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
8 |
|
5209 | 9 |
signature BASIC_THY_INFO = |
10 |
sig |
|
11 |
val theory: string -> theory |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
12 |
val touch_thy: string -> unit |
6666 | 13 |
val remove_thy: string -> unit |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
14 |
end; |
5209 | 15 |
|
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
16 |
signature THY_INFO = |
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
17 |
sig |
5209 | 18 |
include BASIC_THY_INFO |
7099 | 19 |
datatype action = Update | Outdate | Remove |
20 |
val str_of_action: action -> string |
|
21 |
val add_hook: (action -> string -> unit) -> unit |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
22 |
val names: unit -> string list |
7910 | 23 |
val known_thy: string -> bool |
7935 | 24 |
val check_known_thy: string -> bool |
25 |
val if_known_thy: (string -> unit) -> string -> unit |
|
7288 | 26 |
val lookup_theory: string -> theory option |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
27 |
val get_theory: string -> theory |
19547 | 28 |
val the_theory: string -> theory -> theory |
24563 | 29 |
val is_finished: string -> bool |
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
30 |
val loaded_files: string -> Path.T list |
23871 | 31 |
val get_parents: string -> string list |
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
32 |
val pretty_theory: theory -> Pretty.T |
7910 | 33 |
val touch_child_thys: string -> unit |
25013 | 34 |
val provide_file: Path.T -> string -> unit |
7941 | 35 |
val load_file: bool -> Path.T -> unit |
6241 | 36 |
val use: string -> unit |
24057
f42665561801
removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents:
23982
diff
changeset
|
37 |
val time_use: string -> unit |
f42665561801
removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents:
23982
diff
changeset
|
38 |
val use_thys: string list -> unit |
f42665561801
removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents:
23982
diff
changeset
|
39 |
val use_thy: string -> unit |
f42665561801
removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents:
23982
diff
changeset
|
40 |
val time_use_thy: string -> unit |
24563 | 41 |
val thy_ord: theory * theory -> order |
23900
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
42 |
val begin_theory: string -> string list -> (Path.T * bool) list -> bool -> theory |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
43 |
val end_theory: theory -> theory |
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
44 |
val register_thy: string -> unit |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
45 |
val register_theory: theory -> unit |
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
46 |
val finish: unit -> unit |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
47 |
end; |
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
48 |
|
6362 | 49 |
structure ThyInfo: THY_INFO = |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
50 |
struct |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
51 |
|
7099 | 52 |
(** theory loader actions and hooks **) |
53 |
||
54 |
datatype action = Update | Outdate | Remove; |
|
55 |
val str_of_action = fn Update => "Update" | Outdate => "Outdate" | Remove => "Remove"; |
|
56 |
||
57 |
local |
|
58 |
val hooks = ref ([]: (action -> string -> unit) list); |
|
59 |
in |
|
23939 | 60 |
fun add_hook f = CRITICAL (fn () => change hooks (cons f)); |
15570 | 61 |
fun perform action name = List.app (fn f => (try (fn () => f action name) (); ())) (! hooks); |
7099 | 62 |
end; |
63 |
||
64 |
||
65 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
66 |
(** thy database **) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
67 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
68 |
(* messages *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
69 |
|
23871 | 70 |
fun loader_msg txt [] = "Theory loader: " ^ txt |
71 |
| 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
|
72 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
73 |
val show_path = space_implode " via " o map quote; |
9332 | 74 |
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
|
75 |
|
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
76 |
|
6666 | 77 |
(* derived graph operations *) |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
78 |
|
9327 | 79 |
fun add_deps name parents G = Graph.add_deps_acyclic (name, parents) G |
9332 | 80 |
handle Graph.CYCLES namess => error (cat_lines (map cycle_msg namess)); |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
81 |
|
7952 | 82 |
fun upd_deps name entry G = |
19473 | 83 |
fold (fn parent => Graph.del_edge (parent, name)) (Graph.imm_preds G name) G |
7952 | 84 |
|> Graph.map_node name (K entry); |
3976 | 85 |
|
23967 | 86 |
fun new_deps name parents entry G = |
7952 | 87 |
(if can (Graph.get_node G) name then upd_deps name entry G else Graph.new_node (name, entry) G) |
88 |
|> add_deps name parents; |
|
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
89 |
|
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
90 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
91 |
(* thy database *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
92 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
93 |
type deps = |
24190 | 94 |
{update_time: int, (*symbolic time of update; negative value means outdated*) |
95 |
master: (Path.T * File.ident) option, (*master dependencies for thy file*) |
|
96 |
text: string list, (*source text for thy*) |
|
97 |
parents: string list, (*source specification of parents (partially qualified)*) |
|
98 |
(*auxiliary files: source path, physical path + identifier*) |
|
99 |
files: (Path.T * (Path.T * File.ident) option) list}; |
|
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
100 |
|
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
101 |
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
|
102 |
{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
|
103 |
|
24068 | 104 |
fun init_deps master text parents files = |
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
105 |
SOME (make_deps ~1 master text parents (map (rpair NONE) files)); |
23871 | 106 |
|
24190 | 107 |
fun master_dir NONE = Path.current |
108 |
| master_dir (SOME (path, _)) = Path.dir path; |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
109 |
|
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
110 |
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
|
111 |
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
|
112 |
|
23967 | 113 |
fun base_name s = Path.implode (Path.base (Path.explode s)); |
114 |
||
7211 | 115 |
|
6362 | 116 |
type thy = deps option * theory option; |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
117 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
118 |
local |
6362 | 119 |
val database = ref (Graph.empty: thy Graph.T); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
120 |
in |
6362 | 121 |
fun get_thys () = ! database; |
23939 | 122 |
fun change_thys f = CRITICAL (fn () => Library.change database f); |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
123 |
end; |
5209 | 124 |
|
125 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
126 |
(* access thy graph *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
127 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
128 |
fun thy_graph f x = f (get_thys ()) x; |
9417 | 129 |
|
23967 | 130 |
fun get_names () = Graph.topological_order (get_thys ()); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
131 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
132 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
133 |
(* access thy *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
134 |
|
7935 | 135 |
fun lookup_thy name = |
15531 | 136 |
SOME (thy_graph Graph.get_node name) handle Graph.UNDEF _ => NONE; |
7935 | 137 |
|
16047 | 138 |
val known_thy = is_some o lookup_thy; |
7935 | 139 |
fun check_known_thy name = known_thy name orelse (warning ("Unknown theory " ^ quote name); false); |
140 |
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
|
141 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
142 |
fun get_thy name = |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
143 |
(case lookup_thy name of |
15531 | 144 |
SOME thy => thy |
145 |
| 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
|
146 |
|
23939 | 147 |
fun change_thy name f = CRITICAL (fn () => |
148 |
(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
|
149 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
150 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
151 |
(* access deps *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
152 |
|
15570 | 153 |
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
|
154 |
val get_deps = #1 o get_thy; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
155 |
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
|
156 |
|
6666 | 157 |
fun is_finished name = is_none (get_deps name); |
7191 | 158 |
|
159 |
fun loaded_files name = |
|
160 |
(case get_deps name of |
|
15531 | 161 |
NONE => [] |
162 |
| SOME {master, files, ...} => |
|
24190 | 163 |
(case master of SOME (thy_path, _) => [thy_path] | NONE => []) @ |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
164 |
(map_filter (Option.map #1 o #2) files)); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
165 |
|
23871 | 166 |
fun get_parents name = |
23967 | 167 |
thy_graph Graph.imm_preds name handle Graph.UNDEF _ => |
6654 | 168 |
error (loader_msg "nothing known about theory" [name]); |
169 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
170 |
|
24563 | 171 |
(* pretty_theory *) |
16047 | 172 |
|
173 |
local |
|
15633 | 174 |
|
16047 | 175 |
fun relevant_names names = |
176 |
let |
|
177 |
val (finished, unfinished) = |
|
19305 | 178 |
List.filter (fn name => name = Context.draftN orelse known_thy name) names |
179 |
|> List.partition (fn name => name <> Context.draftN andalso is_finished name); |
|
16047 | 180 |
in (if not (null finished) then [List.last finished] else []) @ unfinished end; |
15633 | 181 |
|
16047 | 182 |
in |
15633 | 183 |
|
16454 | 184 |
fun pretty_theory thy = |
185 |
Pretty.str_list "{" "}" (relevant_names (Context.names_of thy)); |
|
15633 | 186 |
|
16047 | 187 |
end; |
188 |
||
15633 | 189 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
190 |
(* access theory *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
191 |
|
7687 | 192 |
fun lookup_theory name = |
193 |
(case lookup_thy name of |
|
15531 | 194 |
SOME (_, SOME thy) => SOME thy |
195 |
| _ => NONE); |
|
7288 | 196 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
197 |
fun get_theory name = |
7288 | 198 |
(case lookup_theory name of |
23871 | 199 |
SOME theory => theory |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
200 |
| _ => error (loader_msg "undefined theory entry for" [name])); |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
201 |
|
19547 | 202 |
fun the_theory name thy = |
203 |
if Context.theory_name thy = name then thy |
|
204 |
else get_theory name; |
|
205 |
||
22137 | 206 |
val _ = ML_Context.value_antiq "theory" |
207 |
(Scan.lift Args.name |
|
208 |
>> (fn name => (name ^ "_thy", "ThyInfo.theory " ^ ML_Syntax.print_string name)) |
|
22148 | 209 |
|| Scan.succeed ("thy", "ML_Context.the_context ()")); |
22137 | 210 |
|
24696 | 211 |
val _ = ML_Context.value_antiq "theory_ref" |
212 |
(Scan.lift Args.name |
|
213 |
>> (fn name => (name ^ "_thy", |
|
214 |
"Theory.check_thy (ThyInfo.theory " ^ ML_Syntax.print_string name ^ ")")) |
|
215 |
|| Scan.succeed ("thy", "Theory.check_thy (ML_Context.the_context ())")); |
|
216 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
217 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
218 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
219 |
(** thy operations **) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
220 |
|
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
221 |
(* check state *) |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
222 |
|
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
223 |
fun check_unfinished fail name = |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
224 |
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
|
225 |
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
|
226 |
else (); |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
227 |
|
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
228 |
fun check_files name = |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
229 |
let |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
230 |
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
|
231 |
val missing_files = map_filter (fn (path, NONE) => SOME (Path.implode path) | _ => NONE) files; |
24190 | 232 |
val _ = null missing_files orelse |
233 |
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
|
234 |
" on file(s): " ^ commas_quote missing_files); |
24190 | 235 |
in () end; |
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
236 |
|
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
237 |
|
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
238 |
(* maintain update_time *) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
239 |
|
7099 | 240 |
local |
241 |
||
6241 | 242 |
fun is_outdated name = |
243 |
(case lookup_deps name of |
|
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
244 |
SOME (SOME {update_time, ...}) => update_time < 0 |
6241 | 245 |
| _ => false); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
246 |
|
25013 | 247 |
fun unfinished name = |
24186
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
248 |
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
|
249 |
else SOME name; |
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
250 |
|
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
251 |
in |
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
252 |
|
6241 | 253 |
fun outdate_thy name = |
7099 | 254 |
if is_finished name orelse is_outdated name then () |
23939 | 255 |
else CRITICAL (fn () => |
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
256 |
(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
|
257 |
make_deps ~1 master text parents files)); perform Outdate name)); |
7099 | 258 |
|
7910 | 259 |
fun touch_thys names = |
25013 | 260 |
List.app outdate_thy (thy_graph Graph.all_succs (map_filter unfinished names)); |
7910 | 261 |
|
262 |
fun touch_thy name = touch_thys [name]; |
|
263 |
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
|
264 |
|
7099 | 265 |
end; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
266 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
267 |
|
7941 | 268 |
(* load_file *) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
269 |
|
7191 | 270 |
local |
271 |
||
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
272 |
fun provide path name info (deps as SOME {update_time, master, text, parents, files}) = |
23871 | 273 |
(if AList.defined (op =) files path then () |
7941 | 274 |
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
|
275 |
" on file: " ^ quote (Path.implode path)); |
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
276 |
SOME (make_deps update_time master text parents |
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
277 |
(AList.update (op =) (path, SOME info) files))) |
15531 | 278 |
| provide _ _ _ NONE = NONE; |
7941 | 279 |
|
280 |
fun run_file path = |
|
22095
07875394618e
moved ML context stuff to from Context to ML_Context;
wenzelm
parents:
22086
diff
changeset
|
281 |
(case Option.map (Context.theory_name o Context.the_theory) (ML_Context.get_context ()) of |
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
282 |
NONE => (ThyLoad.load_ml Path.current path; ()) |
23871 | 283 |
| SOME name => |
284 |
(case lookup_deps name of |
|
285 |
SOME deps => |
|
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
286 |
change_deps name (provide path name (ThyLoad.load_ml (master_dir' deps) path)) |
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
287 |
| NONE => (ThyLoad.load_ml Path.current path; ()))); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
288 |
|
7191 | 289 |
in |
290 |
||
25013 | 291 |
fun provide_file path name = |
292 |
let |
|
293 |
val deps = get_deps name; |
|
294 |
val _ = check_unfinished error name; |
|
295 |
in |
|
296 |
(case ThyLoad.check_file (master_dir' deps) path of |
|
297 |
SOME path_info => change_deps name (provide path name path_info) |
|
298 |
| NONE => error ("Could not find file " ^ quote (Path.implode path))) |
|
299 |
end; |
|
300 |
||
24057
f42665561801
removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents:
23982
diff
changeset
|
301 |
fun load_file time path = |
7941 | 302 |
if time then |
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
303 |
let val name = Path.implode path in |
7244 | 304 |
timeit (fn () => |
9778 | 305 |
(priority ("\n**** Starting file " ^ quote name ^ " ****"); |
9036 | 306 |
run_file path; |
9778 | 307 |
priority ("**** Finished file " ^ quote name ^ " ****\n"))) |
7244 | 308 |
end |
24057
f42665561801
removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents:
23982
diff
changeset
|
309 |
else run_file path; |
7941 | 310 |
|
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
311 |
val use = load_file false o Path.explode; |
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
312 |
val time_use = load_file true o Path.explode; |
7191 | 313 |
|
314 |
end; |
|
6233 | 315 |
|
316 |
||
7099 | 317 |
(* load_thy *) |
318 |
||
9490 | 319 |
fun required_by _ [] = "" |
320 |
| required_by s initiators = s ^ "(required by " ^ show_path (rev initiators) ^ ")"; |
|
7099 | 321 |
|
24190 | 322 |
fun load_thy time upd_time initiators dir name = |
7099 | 323 |
let |
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
324 |
val _ = priority ("Loading theory " ^ quote name ^ required_by " " initiators); |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
325 |
val (pos, text, files) = |
24068 | 326 |
(case get_deps name of |
24190 | 327 |
SOME {master = SOME (master_path, _), text as _ :: _, files, ...} => |
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
328 |
(Position.path master_path, text, files) |
24068 | 329 |
| _ => error (loader_msg "corrupted dependency information" [name])); |
330 |
val _ = touch_thy name; |
|
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
331 |
val _ = CRITICAL (fn () => |
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
332 |
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
|
333 |
make_deps upd_time master text parents files))); |
24190 | 334 |
val _ = ThyLoad.load_thy dir name pos text (time orelse ! Output.timing); |
7099 | 335 |
in |
23939 | 336 |
CRITICAL (fn () => |
337 |
(change_deps name |
|
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
338 |
(Option.map (fn {update_time, master, parents, files, ...} => |
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
339 |
make_deps update_time master [] parents files)); |
23939 | 340 |
perform Update name)) |
7099 | 341 |
end; |
342 |
||
343 |
||
24209 | 344 |
(* scheduling loader tasks *) |
345 |
||
346 |
datatype task = Task of (unit -> unit) | Finished | Running; |
|
347 |
fun task_finished Finished = true | task_finished _ = false; |
|
348 |
||
349 |
local |
|
350 |
||
24230 | 351 |
fun max_task (name, (Task body, m)) NONE = SOME (name: string, (body, m)) |
24229
4b5306c36bd9
schedule_tasks: alphabetical order for equivalent tasks;
wenzelm
parents:
24209
diff
changeset
|
352 |
| max_task (name, (Task body, m)) (task' as SOME (name', (_, m'))) = |
4b5306c36bd9
schedule_tasks: alphabetical order for equivalent tasks;
wenzelm
parents:
24209
diff
changeset
|
353 |
if m > m' orelse m = m' andalso name < name' then SOME (name, (body, m)) else task' |
24209 | 354 |
| max_task _ task' = task'; |
355 |
||
356 |
fun next_task G = |
|
357 |
let |
|
358 |
val tasks = Graph.minimals G |> map (fn name => |
|
359 |
(name, (Graph.get_node G name, length (Graph.imm_succs G name)))); |
|
360 |
val finished = filter (task_finished o fst o snd) tasks; |
|
361 |
in |
|
362 |
if not (null finished) then next_task (Graph.del_nodes (map fst finished) G) |
|
363 |
else if null tasks then (Multithreading.Terminate, G) |
|
364 |
else |
|
365 |
(case fold max_task tasks NONE of |
|
366 |
NONE => (Multithreading.Wait, G) |
|
367 |
| SOME (name, (body, _)) => |
|
25736 | 368 |
(Multithreading.Task {body = PrintMode.closure body, |
369 |
cont = Graph.del_nodes [name], fail = K Graph.empty}, |
|
24209 | 370 |
Graph.map_node name (K Running) G)) |
371 |
end; |
|
372 |
||
373 |
fun schedule_seq tasks = |
|
374 |
Graph.topological_order tasks |
|
375 |
|> List.app (fn name => (case Graph.get_node tasks name of Task body => body () | _ => ())); |
|
376 |
||
377 |
in |
|
378 |
||
379 |
fun schedule_tasks tasks n = |
|
25775
90525e67ede7
added Multithreading.max_threads_value, which maps a value of 0 to number of CPUs;
wenzelm
parents:
25736
diff
changeset
|
380 |
let val m = Multithreading.max_threads_value () in |
24209 | 381 |
if m <= 1 orelse n <= 1 then schedule_seq tasks |
382 |
else if Multithreading.self_critical () then |
|
383 |
(warning (loader_msg "no multithreading within critical section" []); |
|
384 |
schedule_seq tasks) |
|
385 |
else |
|
386 |
(case Multithreading.schedule (Int.min (m, n)) next_task tasks of |
|
387 |
[] => () |
|
388 |
| exns => raise Exn.EXCEPTIONS (exns, "")) |
|
389 |
end; |
|
390 |
||
391 |
end; |
|
392 |
||
393 |
||
23967 | 394 |
(* require_thy -- checking database entries wrt. the file-system *) |
15065 | 395 |
|
7211 | 396 |
local |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
397 |
|
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
398 |
fun check_ml master (src_path, info) = |
23871 | 399 |
let val info' = |
400 |
(case info of NONE => NONE |
|
401 |
| SOME (_, id) => |
|
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
402 |
(case ThyLoad.check_ml (master_dir master) src_path of NONE => NONE |
23871 | 403 |
| 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
|
404 |
in (src_path, info') end; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
405 |
|
24175
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
406 |
fun check_deps dir name = |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
407 |
(case lookup_deps name of |
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
408 |
SOME NONE => (true, NONE, get_parents name) |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
409 |
| NONE => |
24190 | 410 |
let val {master, text, imports = parents, uses = files} = ThyLoad.deps_thy dir name |
24068 | 411 |
in (false, init_deps (SOME master) text parents files, parents) end |
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
412 |
| SOME (deps as SOME {update_time, master, text, parents, files}) => |
24190 | 413 |
let |
414 |
val (thy_path, thy_id) = ThyLoad.check_thy dir name; |
|
415 |
val master' = SOME (thy_path, thy_id); |
|
416 |
in |
|
417 |
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
|
418 |
let val {text = text', imports = parents', uses = files', ...} = |
24190 | 419 |
ThyLoad.deps_thy dir name; |
24175
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
420 |
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
|
421 |
else |
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
422 |
let |
24186
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
423 |
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
|
424 |
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
|
425 |
andalso forall (is_some o snd) files'; |
24175
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
426 |
val update_time' = if current then update_time else ~1; |
25030 | 427 |
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
|
428 |
in (current, deps', parents) end |
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
429 |
end); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
430 |
|
25030 | 431 |
fun read_text (SOME {update_time, master = master as SOME (path, _), text = _, parents, files}) = |
432 |
SOME (make_deps update_time master (explode (File.read path)) parents files); |
|
433 |
||
23967 | 434 |
in |
435 |
||
24175
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
436 |
fun require_thys time initiators dir strs tasks = |
24186
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
437 |
fold_map (require_thy time initiators dir) strs tasks |>> forall I |
24175
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
438 |
and require_thy time initiators dir str tasks = |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
439 |
let |
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
440 |
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
|
441 |
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
|
442 |
val dir' = Path.append dir (Path.dir path); |
23871 | 443 |
val _ = member (op =) initiators name andalso error (cycle_msg initiators); |
7066 | 444 |
in |
23974 | 445 |
(case try (Graph.get_node (fst tasks)) name of |
24209 | 446 |
SOME task => (task_finished task, tasks) |
23967 | 447 |
| NONE => |
448 |
let |
|
24175
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
449 |
val (current, deps, parents) = check_deps dir' name |
23967 | 450 |
handle ERROR msg => cat_error msg |
451 |
(loader_msg "the error(s) above occurred while examining theory" [name] ^ |
|
452 |
required_by "\n" initiators); |
|
453 |
val parent_names = map base_name parents; |
|
23871 | 454 |
|
23974 | 455 |
val (parents_current, (tasks_graph', tasks_len')) = |
24175
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
456 |
require_thys time (name :: initiators) |
38a15a3a1aad
theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents:
24151
diff
changeset
|
457 |
(Path.append dir (master_dir' deps)) parents tasks; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
458 |
|
23967 | 459 |
val all_current = current andalso parents_current; |
24186
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
460 |
val _ = if not all_current andalso known_thy name then outdate_thy name else (); |
25030 | 461 |
val entry = |
462 |
if all_current then (deps, SOME (get_theory name)) |
|
463 |
else (read_text deps, NONE); |
|
464 |
val _ = change_thys (new_deps name parent_names entry); |
|
23967 | 465 |
|
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
466 |
val upd_time = serial (); |
23974 | 467 |
val tasks_graph'' = tasks_graph' |> new_deps name parent_names |
24209 | 468 |
(if all_current then Finished |
469 |
else Task (fn () => load_thy time upd_time initiators dir' name)); |
|
23974 | 470 |
val tasks_len'' = if all_current then tasks_len' else tasks_len' + 1; |
471 |
in (all_current, (tasks_graph'', tasks_len'')) end) |
|
7066 | 472 |
end; |
6484
3f098b0ec683
use_thy etc.: may specify path prefix, which is temporarily used as load path;
wenzelm
parents:
6389
diff
changeset
|
473 |
|
23967 | 474 |
end; |
475 |
||
476 |
||
24209 | 477 |
(* use_thy etc. *) |
23967 | 478 |
|
479 |
local |
|
480 |
||
24057
f42665561801
removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents:
23982
diff
changeset
|
481 |
fun gen_use_thy' req dir arg = |
24209 | 482 |
let val (_, (tasks, n)) = req [] dir arg (Graph.empty, 0) |
483 |
in schedule_tasks tasks n end; |
|
6241 | 484 |
|
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
485 |
fun gen_use_thy req str = |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
486 |
let val name = base_name str in |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
487 |
check_unfinished warning name; |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
488 |
gen_use_thy' req Path.current str; |
24071 | 489 |
CRITICAL (fn () => ML_Context.set_context (SOME (Context.Theory (get_theory name)))) |
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
490 |
end; |
7244 | 491 |
|
7211 | 492 |
in |
493 |
||
24186
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
494 |
val use_thys_dir = gen_use_thy' (require_thys false); |
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
495 |
val use_thys = use_thys_dir Path.current; |
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
496 |
val use_thy = gen_use_thy (require_thy false); |
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
497 |
val time_use_thy = gen_use_thy (require_thy true); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
498 |
|
7211 | 499 |
end; |
500 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
501 |
|
6666 | 502 |
(* remove_thy *) |
503 |
||
504 |
fun remove_thy name = |
|
7910 | 505 |
if is_finished name then error (loader_msg "cannot remove finished theory" [name]) |
6666 | 506 |
else |
507 |
let val succs = thy_graph Graph.all_succs [name] in |
|
9778 | 508 |
priority (loader_msg "removing" succs); |
23939 | 509 |
CRITICAL (fn () => (List.app (perform Remove) succs; change_thys (Graph.del_nodes succs))) |
6666 | 510 |
end; |
511 |
||
512 |
||
24563 | 513 |
(* update_time *) |
514 |
||
515 |
structure UpdateTime = TheoryDataFun |
|
516 |
( |
|
517 |
type T = int; |
|
518 |
val empty = 0; |
|
519 |
val copy = I; |
|
520 |
fun extend _ = empty; |
|
521 |
fun merge _ _ = empty; |
|
522 |
); |
|
523 |
||
524 |
val thy_ord = int_ord o pairself UpdateTime.get; |
|
525 |
||
526 |
||
7066 | 527 |
(* begin / end theory *) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
528 |
|
23900
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
529 |
fun begin_theory name parents uses int = |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
530 |
let |
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
531 |
val parent_names = map base_name parents; |
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
532 |
val dir = master_dir'' (lookup_deps name); |
7244 | 533 |
val _ = check_unfinished error name; |
24186
d7f267b806c9
check_deps: really do reload the master text if required;
wenzelm
parents:
24175
diff
changeset
|
534 |
val _ = if int then use_thys_dir dir parents else (); |
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
535 |
(* FIXME tmp *) |
24071 | 536 |
val _ = CRITICAL (fn () => |
537 |
ML_Context.set_context (SOME (Context.Theory (get_theory (List.last parent_names))))); |
|
17365 | 538 |
|
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
539 |
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
|
540 |
|
7952 | 541 |
val deps = |
542 |
if known_thy name then get_deps name |
|
24068 | 543 |
else init_deps NONE [] parents (map #1 uses); |
23967 | 544 |
val _ = change_thys (new_deps name parent_names (deps, NONE)); |
9451 | 545 |
|
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
546 |
val update_time = (case deps of NONE => 0 | SOME {update_time, ...} => update_time); |
24563 | 547 |
val update_time = if update_time > 0 then update_time else serial (); |
548 |
val theory' = theory |
|
549 |
|> UpdateTime.put update_time |
|
550 |
|> Present.begin_theory update_time dir uses; |
|
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
551 |
|
23900
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
552 |
val uses_now = map_filter (fn (x, true) => SOME x | _ => NONE) uses; |
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
553 |
val ((), theory'') = |
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
554 |
ML_Context.pass_context (Context.Theory theory') (List.app (load_file false)) uses_now |
22086 | 555 |
||> Context.the_theory; |
24151
255f76dcc16b
replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents:
24133
diff
changeset
|
556 |
in theory'' end; |
7244 | 557 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
558 |
fun end_theory theory = |
7099 | 559 |
let |
16454 | 560 |
val name = Context.theory_name theory; |
24190 | 561 |
val _ = check_files name; |
16504 | 562 |
val theory' = Theory.end_theory theory; |
23900
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
563 |
val _ = change_thy name (fn (deps, _) => (deps, SOME theory')); |
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
564 |
in theory' end; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
565 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
566 |
|
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
567 |
(* register existing theories *) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
568 |
|
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
569 |
fun register_thy name = |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
570 |
let |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
571 |
val _ = priority ("Registering theory " ^ quote name); |
24563 | 572 |
val thy = get_theory name; |
24096 | 573 |
val _ = map get_theory (get_parents name); |
574 |
val _ = check_unfinished error name; |
|
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
575 |
val _ = touch_thy name; |
24190 | 576 |
val master = #master (ThyLoad.deps_thy Path.current name); |
24563 | 577 |
val upd_time = UpdateTime.get thy; |
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
578 |
in |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
579 |
CRITICAL (fn () => |
24190 | 580 |
(change_deps name (Option.map |
581 |
(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
|
582 |
perform Update name)) |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
583 |
end; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
584 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
585 |
fun register_theory theory = |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
586 |
let |
16454 | 587 |
val name = Context.theory_name theory; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
588 |
val parents = Theory.parents_of theory; |
16454 | 589 |
val parent_names = map Context.theory_name parents; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
590 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
591 |
fun err txt bads = |
23871 | 592 |
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
|
593 |
|
6666 | 594 |
val nonfinished = filter_out is_finished parent_names; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
595 |
fun get_variant (x, y_name) = |
15531 | 596 |
if Theory.eq_thy (x, get_theory y_name) then NONE |
597 |
else SOME y_name; |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
598 |
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
|
599 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
600 |
fun register G = |
15531 | 601 |
(Graph.new_node (name, (NONE, SOME theory)) G |
9327 | 602 |
handle Graph.DUP _ => err "duplicate theory entry" []) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
603 |
|> add_deps name parent_names; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
604 |
in |
6666 | 605 |
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
|
606 |
else if not (null variants) then err "different versions of parent theories" variants |
23939 | 607 |
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
|
608 |
end; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
609 |
|
15801 | 610 |
val _ = register_theory ProtoPure.thy; |
611 |
||
24080
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
612 |
|
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
613 |
(* finish all theories *) |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
614 |
|
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
615 |
fun finish () = change_thys (Graph.map_nodes (fn (_, entry) => (NONE, entry))); |
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
616 |
|
8c67d869531b
added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents:
24071
diff
changeset
|
617 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
618 |
(*final declarations of this structure*) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
619 |
val theory = get_theory; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
620 |
val names = get_names; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
621 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
622 |
end; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
623 |
|
5209 | 624 |
structure BasicThyInfo: BASIC_THY_INFO = ThyInfo; |
625 |
open BasicThyInfo; |