author | wenzelm |
Sun, 22 Jul 2007 21:20:55 +0200 | |
changeset 23910 | 30e1eb0c5b2f |
parent 23900 | b25b1444a246 |
child 23939 | e543359fe8b6 |
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 |
|
6241 | 12 |
(*val use: string -> unit*) (*exported later*) |
13 |
val time_use: string -> unit |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
14 |
val touch_thy: string -> unit |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
15 |
val use_thy: string -> unit |
23910 | 16 |
val use_thys: string list -> unit |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
17 |
val update_thy: string -> unit |
6666 | 18 |
val remove_thy: string -> unit |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
19 |
val time_use_thy: string -> unit |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
20 |
end; |
5209 | 21 |
|
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
22 |
signature THY_INFO = |
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
23 |
sig |
5209 | 24 |
include BASIC_THY_INFO |
7099 | 25 |
datatype action = Update | Outdate | Remove |
26 |
val str_of_action: action -> string |
|
27 |
val add_hook: (action -> string -> unit) -> unit |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
28 |
val names: unit -> string list |
7910 | 29 |
val known_thy: string -> bool |
7935 | 30 |
val check_known_thy: string -> bool |
31 |
val if_known_thy: (string -> unit) -> string -> unit |
|
7288 | 32 |
val lookup_theory: string -> theory option |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
33 |
val get_theory: string -> theory |
19547 | 34 |
val the_theory: string -> theory -> theory |
23871 | 35 |
val get_parents: string -> string list |
7935 | 36 |
val loaded_files: string -> Path.T list |
7910 | 37 |
val touch_child_thys: string -> unit |
7099 | 38 |
val touch_all_thys: unit -> unit |
7941 | 39 |
val load_file: bool -> Path.T -> unit |
6241 | 40 |
val use: string -> unit |
9822 | 41 |
val pretend_use_thy_only: string -> unit |
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 |
6666 | 44 |
val finish: unit -> unit |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
45 |
val register_theory: theory -> unit |
15633 | 46 |
val pretty_theory: theory -> Pretty.T |
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 |
|
60 |
fun add_hook f = hooks := f :: ! hooks; |
|
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 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
86 |
fun update_node 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 |
|
23871 | 93 |
type master = (Path.T * File.ident) * (Path.T * File.ident) option; |
94 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
95 |
type deps = |
23910 | 96 |
{outdated: bool, (*entry considered outdated*) |
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
97 |
master: master option, (*master dependencies for thy + attached ML file*) |
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
98 |
parents: string list, (*source specification of parents (partially qualified)*) |
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
99 |
files: (*auxiliary files: source path, physical path + identifier*) |
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
100 |
(Path.T * (Path.T * File.ident) option) list}; |
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
101 |
|
23910 | 102 |
fun make_deps outdated master parents files : deps = |
103 |
{outdated = outdated, master = master, parents = parents, files = files}; |
|
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
104 |
|
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
105 |
fun init_deps master parents files = |
23910 | 106 |
SOME (make_deps true master parents (map (rpair NONE) files)); |
23871 | 107 |
|
108 |
fun master_idents (NONE: master option) = [] |
|
109 |
| master_idents (SOME ((_, thy_id), NONE)) = [thy_id] |
|
110 |
| master_idents (SOME ((_, thy_id), SOME (_, ml_id))) = [thy_id, ml_id]; |
|
111 |
||
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
112 |
fun master_dir (NONE: master option) = Path.current |
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
113 |
| master_dir (SOME ((path, _), _)) = Path.dir path; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
114 |
|
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
115 |
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
|
116 |
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
|
117 |
|
7211 | 118 |
|
6362 | 119 |
type thy = deps option * theory option; |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
120 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
121 |
local |
6362 | 122 |
val database = ref (Graph.empty: thy Graph.T); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
123 |
in |
6362 | 124 |
fun get_thys () = ! database; |
9137 | 125 |
val change_thys = Library.change database; |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
126 |
end; |
5209 | 127 |
|
128 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
129 |
(* access thy graph *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
130 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
131 |
fun thy_graph f x = f (get_thys ()) x; |
9417 | 132 |
|
133 |
(*theory names in topological order*) |
|
134 |
fun get_names () = |
|
135 |
let val G = get_thys () |
|
14774 | 136 |
in Graph.all_succs G (Graph.minimals G) end; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
137 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
138 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
139 |
(* access thy *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
140 |
|
7935 | 141 |
fun lookup_thy name = |
15531 | 142 |
SOME (thy_graph Graph.get_node name) handle Graph.UNDEF _ => NONE; |
7935 | 143 |
|
16047 | 144 |
val known_thy = is_some o lookup_thy; |
7935 | 145 |
fun check_known_thy name = known_thy name orelse (warning ("Unknown theory " ^ quote name); false); |
146 |
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
|
147 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
148 |
fun get_thy name = |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
149 |
(case lookup_thy name of |
15531 | 150 |
SOME thy => thy |
151 |
| 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
|
152 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
153 |
fun change_thy name f = (get_thy name; change_thys (Graph.map_node name f)); |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
154 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
155 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
156 |
(* access deps *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
157 |
|
15570 | 158 |
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
|
159 |
val get_deps = #1 o get_thy; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
160 |
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
|
161 |
|
6666 | 162 |
fun is_finished name = is_none (get_deps name); |
15531 | 163 |
fun get_files name = (case get_deps name of SOME {files, ...} => files | _ => []); |
7191 | 164 |
|
165 |
fun loaded_files name = |
|
166 |
(case get_deps name of |
|
15531 | 167 |
NONE => [] |
168 |
| SOME {master, files, ...} => |
|
23871 | 169 |
(case master of SOME ((thy_path, _), _) => [thy_path] | NONE => []) @ |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
170 |
(map_filter (Option.map #1 o #2) files)); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
171 |
|
23871 | 172 |
fun get_parents name = |
9327 | 173 |
(thy_graph Graph.imm_preds name) handle Graph.UNDEF _ => |
6654 | 174 |
error (loader_msg "nothing known about theory" [name]); |
175 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
176 |
|
16047 | 177 |
(* pretty printing a theory *) |
178 |
||
179 |
local |
|
15633 | 180 |
|
16047 | 181 |
fun relevant_names names = |
182 |
let |
|
183 |
val (finished, unfinished) = |
|
19305 | 184 |
List.filter (fn name => name = Context.draftN orelse known_thy name) names |
185 |
|> List.partition (fn name => name <> Context.draftN andalso is_finished name); |
|
16047 | 186 |
in (if not (null finished) then [List.last finished] else []) @ unfinished end; |
15633 | 187 |
|
16047 | 188 |
in |
15633 | 189 |
|
16454 | 190 |
fun pretty_theory thy = |
191 |
Pretty.str_list "{" "}" (relevant_names (Context.names_of thy)); |
|
15633 | 192 |
|
16047 | 193 |
end; |
194 |
||
15633 | 195 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
196 |
(* access theory *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
197 |
|
7687 | 198 |
fun lookup_theory name = |
199 |
(case lookup_thy name of |
|
15531 | 200 |
SOME (_, SOME thy) => SOME thy |
201 |
| _ => NONE); |
|
7288 | 202 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
203 |
fun get_theory name = |
7288 | 204 |
(case lookup_theory name of |
23871 | 205 |
SOME theory => theory |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
206 |
| _ => error (loader_msg "undefined theory entry for" [name])); |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
207 |
|
19547 | 208 |
fun the_theory name thy = |
209 |
if Context.theory_name thy = name then thy |
|
210 |
else get_theory name; |
|
211 |
||
22137 | 212 |
val _ = ML_Context.value_antiq "theory" |
213 |
(Scan.lift Args.name |
|
214 |
>> (fn name => (name ^ "_thy", "ThyInfo.theory " ^ ML_Syntax.print_string name)) |
|
22148 | 215 |
|| Scan.succeed ("thy", "ML_Context.the_context ()")); |
22137 | 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 |
|
6241 | 221 |
(* maintain 'outdated' flag *) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
222 |
|
7099 | 223 |
local |
224 |
||
6241 | 225 |
fun is_outdated name = |
226 |
(case lookup_deps name of |
|
15531 | 227 |
SOME (SOME {outdated, ...}) => outdated |
6241 | 228 |
| _ => false); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
229 |
|
6241 | 230 |
fun outdate_thy name = |
7099 | 231 |
if is_finished name orelse is_outdated name then () |
23910 | 232 |
else (change_deps name (Option.map (fn {outdated = _, master, parents, files} => |
233 |
make_deps true master parents files)); perform Outdate name); |
|
7099 | 234 |
|
7910 | 235 |
fun check_unfinished name = |
15531 | 236 |
if is_finished name then (warning (loader_msg "tried to touch finished theory" [name]); NONE) |
237 |
else SOME name; |
|
7910 | 238 |
|
7099 | 239 |
in |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
240 |
|
7910 | 241 |
fun touch_thys names = |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
242 |
List.app outdate_thy (thy_graph Graph.all_succs (map_filter check_unfinished names)); |
7910 | 243 |
|
244 |
fun touch_thy name = touch_thys [name]; |
|
245 |
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
|
246 |
|
15570 | 247 |
fun touch_all_thys () = List.app outdate_thy (get_names ()); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
248 |
|
7099 | 249 |
end; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
250 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
251 |
|
7244 | 252 |
(* check 'finished' state *) |
253 |
||
254 |
fun check_unfinished fail name = |
|
7910 | 255 |
if known_thy name andalso is_finished name then |
7288 | 256 |
fail (loader_msg "cannot update finished theory" [name]) |
7244 | 257 |
else (); |
258 |
||
259 |
||
7941 | 260 |
(* load_file *) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
261 |
|
7191 | 262 |
local |
263 |
||
23910 | 264 |
fun provide path name info (deps as SOME {outdated, master, parents, files}) = |
23871 | 265 |
(if AList.defined (op =) files path then () |
7941 | 266 |
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
|
267 |
" on file: " ^ quote (Path.implode path)); |
23910 | 268 |
SOME (make_deps outdated master parents (AList.update (op =) (path, SOME info) files))) |
15531 | 269 |
| provide _ _ _ NONE = NONE; |
7941 | 270 |
|
271 |
fun run_file path = |
|
22095
07875394618e
moved ML context stuff to from Context to ML_Context;
wenzelm
parents:
22086
diff
changeset
|
272 |
(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
|
273 |
NONE => (ThyLoad.load_ml Path.current path; ()) |
23871 | 274 |
| SOME name => |
275 |
(case lookup_deps name of |
|
276 |
SOME deps => |
|
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
277 |
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
|
278 |
| NONE => (ThyLoad.load_ml Path.current path; ()))); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
279 |
|
7191 | 280 |
in |
281 |
||
18721 | 282 |
fun load_file time path = Output.toplevel_errors (fn () => |
7941 | 283 |
if time then |
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
284 |
let val name = Path.implode path in |
7244 | 285 |
timeit (fn () => |
9778 | 286 |
(priority ("\n**** Starting file " ^ quote name ^ " ****"); |
9036 | 287 |
run_file path; |
9778 | 288 |
priority ("**** Finished file " ^ quote name ^ " ****\n"))) |
7244 | 289 |
end |
18721 | 290 |
else run_file path) (); |
7941 | 291 |
|
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
292 |
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
|
293 |
val time_use = load_file true o Path.explode; |
7191 | 294 |
|
295 |
end; |
|
6233 | 296 |
|
297 |
||
7099 | 298 |
(* load_thy *) |
299 |
||
9490 | 300 |
fun required_by _ [] = "" |
301 |
| required_by s initiators = s ^ "(required by " ^ show_path (rev initiators) ^ ")"; |
|
7099 | 302 |
|
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
303 |
fun load_thy really ml time initiators dir name = |
7099 | 304 |
let |
9822 | 305 |
val _ = |
306 |
if really then priority ("Loading theory " ^ quote name ^ required_by " " initiators) |
|
307 |
else priority ("Registering theory " ^ quote name); |
|
7099 | 308 |
|
309 |
val _ = touch_thy name; |
|
9822 | 310 |
val master = |
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
311 |
if really then ThyLoad.load_thy dir name ml time |
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
312 |
else #1 (ThyLoad.deps_thy dir name ml); |
7099 | 313 |
|
314 |
val files = get_files name; |
|
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
315 |
val missing_files = map_filter (fn (path, NONE) => SOME (Path.implode path) | _ => NONE) files; |
7099 | 316 |
in |
317 |
if null missing_files then () |
|
318 |
else warning (loader_msg "unresolved dependencies of theory" [name] ^ |
|
7223 | 319 |
" on file(s): " ^ commas_quote missing_files); |
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
320 |
change_deps name |
23910 | 321 |
(Option.map (fn {parents, ...} => make_deps false (SOME master) parents files)); |
7099 | 322 |
perform Update name |
323 |
end; |
|
324 |
||
325 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
326 |
(* require_thy *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
327 |
|
23871 | 328 |
fun base_name s = Path.implode (Path.base (Path.explode s)); |
15065 | 329 |
|
7211 | 330 |
local |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
331 |
|
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
332 |
fun check_ml master (src_path, info) = |
23871 | 333 |
let val info' = |
334 |
(case info of NONE => NONE |
|
335 |
| SOME (_, id) => |
|
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
336 |
(case ThyLoad.check_ml (master_dir master) src_path of NONE => NONE |
23871 | 337 |
| 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
|
338 |
in (src_path, info') end; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
339 |
|
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
340 |
fun check_deps ml strict dir name = |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
341 |
(case lookup_deps name of |
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
342 |
SOME NONE => (true, NONE, get_parents name) |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
343 |
| NONE => |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
344 |
let val (master, (parents, files)) = ThyLoad.deps_thy dir name ml |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
345 |
in (false, init_deps (SOME master) parents files, parents) end |
23910 | 346 |
| SOME (deps as SOME {outdated, master, parents, files}) => |
347 |
if not strict andalso can get_theory name then (true, deps, parents) |
|
23871 | 348 |
else |
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
349 |
let val master' = SOME (ThyLoad.check_thy dir name ml) in |
23871 | 350 |
if master_idents master <> master_idents master' |
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
351 |
then |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
352 |
let val (parents', files') = #2 (ThyLoad.deps_thy dir name ml) |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
353 |
in (false, init_deps master' parents' files', parents') end |
23871 | 354 |
else |
355 |
let |
|
356 |
val checked_files = map (check_ml master') files; |
|
357 |
val current = not outdated andalso forall (is_some o snd) checked_files; |
|
23910 | 358 |
val deps' = SOME (make_deps (not current) master' parents checked_files); |
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
359 |
in (current, deps', parents) end |
23871 | 360 |
end); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
361 |
|
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
362 |
fun require_thys really ml time strict keep_strict initiators dir strs visited = |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
363 |
fold_map (require_thy really ml time strict keep_strict initiators dir) strs visited |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
364 |
and require_thy really ml time strict keep_strict initiators dir str visited = |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
365 |
let |
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
366 |
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
|
367 |
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
|
368 |
val dir' = Path.append dir (Path.dir path); |
23871 | 369 |
val _ = member (op =) initiators name andalso error (cycle_msg initiators); |
7066 | 370 |
in |
23871 | 371 |
if known_thy name andalso is_finished name orelse member (op =) visited name |
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
372 |
then (true, visited) |
7066 | 373 |
else |
374 |
let |
|
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
375 |
val (current, deps, parents) = check_deps ml strict dir' name |
18678 | 376 |
handle ERROR msg => cat_error msg |
377 |
(loader_msg "the error(s) above occurred while examining theory" [name] ^ |
|
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
378 |
required_by "\n" initiators); |
23871 | 379 |
|
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
380 |
val (parents_current, visited') = |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
381 |
require_thys true true time (strict andalso keep_strict) keep_strict |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
382 |
(name :: initiators) (Path.append dir (master_dir' deps)) parents (name :: visited); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
383 |
|
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
384 |
val all_current = current andalso forall I parents_current; |
23871 | 385 |
val thy = if all_current orelse not really then SOME (get_theory name) else NONE; |
386 |
val _ = change_thys (update_node name (map base_name parents) (deps, thy)); |
|
387 |
val _ = |
|
388 |
if all_current then () |
|
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
389 |
else load_thy really ml (time orelse ! Output.timing) initiators dir' name; |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
390 |
in (all_current, visited') end |
7066 | 391 |
end; |
6484
3f098b0ec683
use_thy etc.: may specify path prefix, which is temporarily used as load path;
wenzelm
parents:
6389
diff
changeset
|
392 |
|
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
393 |
fun gen_use_thy' req dir arg = |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
394 |
Output.toplevel_errors (fn () => (req [] dir arg []; ())) (); |
6241 | 395 |
|
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
396 |
fun gen_use_thy req str = |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
397 |
let val name = base_name str in |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
398 |
check_unfinished warning name; |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
399 |
gen_use_thy' req Path.current str; |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
400 |
ML_Context.set_context (SOME (Context.Theory (get_theory name))) |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
401 |
end; |
7244 | 402 |
|
7211 | 403 |
in |
404 |
||
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
405 |
val quiet_update_thys = gen_use_thy' (require_thys true true false true true); |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
406 |
val pretend_use_thy_only = gen_use_thy' (require_thy false false false true false) Path.current; |
23910 | 407 |
val use_thys = gen_use_thy' (require_thys true true false true false) Path.current; |
7244 | 408 |
|
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
409 |
val use_thy = gen_use_thy (require_thy true true false true false); |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
410 |
val time_use_thy = gen_use_thy (require_thy true true true true false); |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
411 |
val update_thy = gen_use_thy (require_thy true true false true true); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
412 |
|
7211 | 413 |
end; |
414 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
415 |
|
6666 | 416 |
(* remove_thy *) |
417 |
||
418 |
fun remove_thy name = |
|
7910 | 419 |
if is_finished name then error (loader_msg "cannot remove finished theory" [name]) |
6666 | 420 |
else |
421 |
let val succs = thy_graph Graph.all_succs [name] in |
|
9778 | 422 |
priority (loader_msg "removing" succs); |
15570 | 423 |
List.app (perform Remove) succs; |
7191 | 424 |
change_thys (Graph.del_nodes succs) |
6666 | 425 |
end; |
426 |
||
427 |
||
7066 | 428 |
(* begin / end theory *) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
429 |
|
17365 | 430 |
fun check_uses name uses = |
23871 | 431 |
let val illegal = map (fn ext => Path.ext ext (Path.basic name)) ("" :: ThyLoad.ml_exts) in |
17365 | 432 |
(case find_first (member (op =) illegal o Path.base o Path.expand o #1) uses of |
433 |
NONE => () |
|
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
20664
diff
changeset
|
434 |
| SOME (path, _) => error ("Illegal use of theory ML file: " ^ quote (Path.implode path))) |
17365 | 435 |
end; |
436 |
||
23900
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
437 |
fun begin_theory name parents uses int = |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
438 |
let |
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
439 |
val parent_names = map base_name parents; |
23886
f40fba467384
simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents:
23871
diff
changeset
|
440 |
val dir = master_dir'' (lookup_deps name); |
7244 | 441 |
val _ = check_unfinished error name; |
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
442 |
val _ = if int then quiet_update_thys dir parents else (); |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
443 |
(* FIXME tmp *) |
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
444 |
val _ = ML_Context.set_context (SOME (Context.Theory (get_theory (List.last parent_names)))); |
17365 | 445 |
val _ = check_uses name uses; |
446 |
||
23900
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
447 |
val theory = |
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
448 |
Theory.begin_theory name (map get_theory parent_names) |
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
449 |
|> Present.begin_theory dir uses; |
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
450 |
|
7952 | 451 |
val deps = |
452 |
if known_thy name then get_deps name |
|
23893
8babfcaaf129
deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents:
23886
diff
changeset
|
453 |
else init_deps NONE parents (map #1 uses); |
23900
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
454 |
val _ = change_thys (update_node name parent_names (deps, NONE)); |
9451 | 455 |
|
23900
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
456 |
val uses_now = map_filter (fn (x, true) => SOME x | _ => NONE) uses; |
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
457 |
val ((), theory') = |
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
458 |
ML_Context.pass_context (Context.Theory theory) (List.app (load_file false)) uses_now |
22086 | 459 |
||> Context.the_theory; |
23900
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
460 |
in theory' end; |
7244 | 461 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
462 |
fun end_theory theory = |
7099 | 463 |
let |
16454 | 464 |
val name = Context.theory_name theory; |
16504 | 465 |
val theory' = Theory.end_theory theory; |
23900
b25b1444a246
begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents:
23893
diff
changeset
|
466 |
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
|
467 |
in theory' end; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
468 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
469 |
|
6666 | 470 |
(* finish all theories *) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
471 |
|
15531 | 472 |
fun finish () = change_thys (Graph.map_nodes (fn (_, entry) => (NONE, entry))); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
473 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
474 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
475 |
(* register existing theories *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
476 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
477 |
fun register_theory theory = |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
478 |
let |
16454 | 479 |
val name = Context.theory_name theory; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
480 |
val parents = Theory.parents_of theory; |
16454 | 481 |
val parent_names = map Context.theory_name parents; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
482 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
483 |
fun err txt bads = |
23871 | 484 |
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
|
485 |
|
6666 | 486 |
val nonfinished = filter_out is_finished parent_names; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
487 |
fun get_variant (x, y_name) = |
15531 | 488 |
if Theory.eq_thy (x, get_theory y_name) then NONE |
489 |
else SOME y_name; |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
490 |
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
|
491 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
492 |
fun register G = |
15531 | 493 |
(Graph.new_node (name, (NONE, SOME theory)) G |
9327 | 494 |
handle Graph.DUP _ => err "duplicate theory entry" []) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
495 |
|> add_deps name parent_names; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
496 |
in |
6666 | 497 |
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
|
498 |
else if not (null variants) then err "different versions of parent theories" variants |
7099 | 499 |
else (change_thys register; perform Update name) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
500 |
end; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
501 |
|
15801 | 502 |
val _ = register_theory ProtoPure.thy; |
503 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
504 |
(*final declarations of this structure*) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
505 |
val theory = get_theory; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
506 |
val names = get_names; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
507 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
508 |
end; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
509 |
|
5209 | 510 |
structure BasicThyInfo: BASIC_THY_INFO = ThyInfo; |
511 |
open BasicThyInfo; |