author | wenzelm |
Wed, 26 Apr 2006 22:38:05 +0200 | |
changeset 19473 | d87a8838afa4 |
parent 19305 | 5c16895d548b |
child 19482 | 9f11af8f7ef9 |
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 |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
16 |
val update_thy: string -> unit |
6666 | 17 |
val remove_thy: string -> unit |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
18 |
val time_use_thy: string -> unit |
6527 | 19 |
val use_thy_only: string -> unit |
7099 | 20 |
val update_thy_only: string -> unit |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
21 |
end; |
5209 | 22 |
|
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
23 |
signature THY_INFO = |
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
24 |
sig |
5209 | 25 |
include BASIC_THY_INFO |
7099 | 26 |
datatype action = Update | Outdate | Remove |
27 |
val str_of_action: action -> string |
|
28 |
val add_hook: (action -> string -> unit) -> unit |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
29 |
val names: unit -> string list |
7910 | 30 |
val known_thy: string -> bool |
7935 | 31 |
val check_known_thy: string -> bool |
32 |
val if_known_thy: (string -> unit) -> string -> unit |
|
7288 | 33 |
val lookup_theory: string -> theory option |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
34 |
val get_theory: string -> theory |
6654 | 35 |
val get_preds: 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 |
7952 | 41 |
val quiet_update_thy: bool -> string -> unit |
9822 | 42 |
val pretend_use_thy_only: string -> unit |
15158
2281784015a5
Fixed several bugs related to path specifications in theory names.
berghofe
parents:
15065
diff
changeset
|
43 |
val begin_theory: (Path.T option -> string -> string list -> |
2281784015a5
Fixed several bugs related to path specifications in theory names.
berghofe
parents:
15065
diff
changeset
|
44 |
(Path.T * bool) list -> theory -> theory) -> |
17365 | 45 |
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
|
46 |
val end_theory: theory -> theory |
6666 | 47 |
val finish: unit -> unit |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
48 |
val register_theory: theory -> unit |
15633 | 49 |
val pretty_theory: theory -> Pretty.T |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
50 |
end; |
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
51 |
|
6362 | 52 |
structure ThyInfo: THY_INFO = |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
53 |
struct |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
54 |
|
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
55 |
|
7099 | 56 |
(** theory loader actions and hooks **) |
57 |
||
58 |
datatype action = Update | Outdate | Remove; |
|
59 |
val str_of_action = fn Update => "Update" | Outdate => "Outdate" | Remove => "Remove"; |
|
60 |
||
61 |
local |
|
62 |
val hooks = ref ([]: (action -> string -> unit) list); |
|
63 |
in |
|
64 |
fun add_hook f = hooks := f :: ! hooks; |
|
15570 | 65 |
fun perform action name = List.app (fn f => (try (fn () => f action name) (); ())) (! hooks); |
7099 | 66 |
end; |
67 |
||
68 |
||
69 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
70 |
(** thy database **) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
71 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
72 |
(* messages *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
73 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
74 |
fun gen_msg txt [] = txt |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
75 |
| gen_msg txt names = txt ^ " " ^ commas_quote names; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
76 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
77 |
fun loader_msg txt names = gen_msg ("Theory loader: " ^ txt) names; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
78 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
79 |
val show_path = space_implode " via " o map quote; |
9332 | 80 |
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
|
81 |
|
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
82 |
|
6666 | 83 |
(* derived graph operations *) |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
84 |
|
9327 | 85 |
fun add_deps name parents G = Graph.add_deps_acyclic (name, parents) G |
9332 | 86 |
handle Graph.CYCLES namess => error (cat_lines (map cycle_msg namess)); |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
87 |
|
7952 | 88 |
fun upd_deps name entry G = |
19473 | 89 |
fold (fn parent => Graph.del_edge (parent, name)) (Graph.imm_preds G name) G |
7952 | 90 |
|> Graph.map_node name (K entry); |
3976 | 91 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
92 |
fun update_node name parents entry G = |
7952 | 93 |
(if can (Graph.get_node G) name then upd_deps name entry G else Graph.new_node (name, entry) G) |
94 |
|> add_deps name parents; |
|
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
95 |
|
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
96 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
97 |
(* thy database *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
98 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
99 |
type deps = |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
100 |
{present: bool, outdated: bool, |
7941 | 101 |
master: ThyLoad.master option, files: (Path.T * (Path.T * File.info) option) list}; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
102 |
|
6241 | 103 |
fun make_deps present outdated master files = |
104 |
{present = present, outdated = outdated, master = master, files = files}: deps; |
|
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
105 |
|
15531 | 106 |
fun init_deps master files = SOME (make_deps false true master (map (rpair NONE) files)); |
7211 | 107 |
|
108 |
||
6362 | 109 |
type thy = deps option * theory option; |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
110 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
111 |
local |
6362 | 112 |
val database = ref (Graph.empty: thy Graph.T); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
113 |
in |
6362 | 114 |
fun get_thys () = ! database; |
9137 | 115 |
val change_thys = Library.change database; |
3604
6bf9f09f3d61
Moved functions for theory information storage / retrieval
berghofe
parents:
diff
changeset
|
116 |
end; |
5209 | 117 |
|
118 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
119 |
(* access thy graph *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
120 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
121 |
fun thy_graph f x = f (get_thys ()) x; |
9417 | 122 |
|
123 |
(*theory names in topological order*) |
|
124 |
fun get_names () = |
|
125 |
let val G = get_thys () |
|
14774 | 126 |
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
|
127 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
128 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
129 |
(* access thy *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
130 |
|
7935 | 131 |
fun lookup_thy name = |
15531 | 132 |
SOME (thy_graph Graph.get_node name) handle Graph.UNDEF _ => NONE; |
7935 | 133 |
|
16047 | 134 |
val known_thy = is_some o lookup_thy; |
7935 | 135 |
fun check_known_thy name = known_thy name orelse (warning ("Unknown theory " ^ quote name); false); |
136 |
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
|
137 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
138 |
fun get_thy name = |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
139 |
(case lookup_thy name of |
15531 | 140 |
SOME thy => thy |
141 |
| 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
|
142 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
143 |
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
|
144 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
145 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
146 |
(* access deps *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
147 |
|
15570 | 148 |
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
|
149 |
val get_deps = #1 o get_thy; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
150 |
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
|
151 |
|
6666 | 152 |
fun is_finished name = is_none (get_deps name); |
15531 | 153 |
fun get_files name = (case get_deps name of SOME {files, ...} => files | _ => []); |
7191 | 154 |
|
155 |
fun loaded_files name = |
|
156 |
(case get_deps name of |
|
15531 | 157 |
NONE => [] |
158 |
| SOME {master, files, ...} => |
|
159 |
(case master of SOME m => [#1 (ThyLoad.get_thy m)] | NONE => []) @ |
|
15570 | 160 |
(List.mapPartial (Option.map #1 o #2) files)); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
161 |
|
6654 | 162 |
fun get_preds name = |
9327 | 163 |
(thy_graph Graph.imm_preds name) handle Graph.UNDEF _ => |
6654 | 164 |
error (loader_msg "nothing known about theory" [name]); |
165 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
166 |
|
16047 | 167 |
(* pretty printing a theory *) |
168 |
||
169 |
local |
|
15633 | 170 |
|
16047 | 171 |
fun relevant_names names = |
172 |
let |
|
173 |
val (finished, unfinished) = |
|
19305 | 174 |
List.filter (fn name => name = Context.draftN orelse known_thy name) names |
175 |
|> List.partition (fn name => name <> Context.draftN andalso is_finished name); |
|
16047 | 176 |
in (if not (null finished) then [List.last finished] else []) @ unfinished end; |
15633 | 177 |
|
16047 | 178 |
in |
15633 | 179 |
|
16454 | 180 |
fun pretty_theory thy = |
181 |
Pretty.str_list "{" "}" (relevant_names (Context.names_of thy)); |
|
15633 | 182 |
|
16047 | 183 |
end; |
184 |
||
15633 | 185 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
186 |
(* access theory *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
187 |
|
7687 | 188 |
fun lookup_theory name = |
189 |
(case lookup_thy name of |
|
15531 | 190 |
SOME (_, SOME thy) => SOME thy |
191 |
| _ => NONE); |
|
7288 | 192 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
193 |
fun get_theory name = |
7288 | 194 |
(case lookup_theory name of |
15531 | 195 |
(SOME theory) => theory |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
196 |
| _ => error (loader_msg "undefined theory entry for" [name])); |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
197 |
|
15531 | 198 |
fun put_theory name theory = change_thy name (fn (deps, _) => (deps, SOME theory)); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
199 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
200 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
201 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
202 |
(** thy operations **) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
203 |
|
6241 | 204 |
(* maintain 'outdated' flag *) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
205 |
|
7099 | 206 |
local |
207 |
||
6241 | 208 |
fun is_outdated name = |
209 |
(case lookup_deps name of |
|
15531 | 210 |
SOME (SOME {outdated, ...}) => outdated |
6241 | 211 |
| _ => false); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
212 |
|
6241 | 213 |
fun outdate_thy name = |
7099 | 214 |
if is_finished name orelse is_outdated name then () |
15570 | 215 |
else (change_deps name (Option.map (fn {present, outdated = _, master, files} => |
7099 | 216 |
make_deps present true master files)); perform Outdate name); |
217 |
||
7910 | 218 |
fun check_unfinished name = |
15531 | 219 |
if is_finished name then (warning (loader_msg "tried to touch finished theory" [name]); NONE) |
220 |
else SOME name; |
|
7910 | 221 |
|
7099 | 222 |
in |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
223 |
|
7910 | 224 |
fun touch_thys names = |
15570 | 225 |
List.app outdate_thy (thy_graph Graph.all_succs (List.mapPartial check_unfinished names)); |
7910 | 226 |
|
227 |
fun touch_thy name = touch_thys [name]; |
|
228 |
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
|
229 |
|
15570 | 230 |
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
|
231 |
|
7099 | 232 |
end; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
233 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
234 |
|
7244 | 235 |
(* check 'finished' state *) |
236 |
||
237 |
fun check_unfinished fail name = |
|
7910 | 238 |
if known_thy name andalso is_finished name then |
7288 | 239 |
fail (loader_msg "cannot update finished theory" [name]) |
7244 | 240 |
else (); |
241 |
||
242 |
||
7941 | 243 |
(* load_file *) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
244 |
|
15570 | 245 |
val opt_path = Option.map (Path.dir o fst o ThyLoad.get_thy); |
19473 | 246 |
fun opt_path' (d: deps option) = the_default NONE (Option.map (opt_path o #master) d); |
247 |
fun opt_path'' d = the_default NONE (Option.map opt_path' d); |
|
15158
2281784015a5
Fixed several bugs related to path specifications in theory names.
berghofe
parents:
15065
diff
changeset
|
248 |
|
7191 | 249 |
local |
250 |
||
15531 | 251 |
fun provide path name info (deps as SOME {present, outdated, master, files}) = |
7941 | 252 |
(if exists (equal path o #1) files then () |
253 |
else warning (loader_msg "undeclared dependency of theory" [name] ^ |
|
254 |
" on file: " ^ quote (Path.pack path)); |
|
17192 | 255 |
SOME (make_deps present outdated master (AList.update (op =) (path, SOME info) files))) |
15531 | 256 |
| provide _ _ _ NONE = NONE; |
7941 | 257 |
|
258 |
fun run_file path = |
|
16454 | 259 |
(case Option.map Context.theory_name (Context.get_context ()) of |
15531 | 260 |
NONE => (ThyLoad.load_file NONE path; ()) |
261 |
| SOME name => (case lookup_deps name of |
|
262 |
SOME deps => change_deps name (provide path name |
|
15158
2281784015a5
Fixed several bugs related to path specifications in theory names.
berghofe
parents:
15065
diff
changeset
|
263 |
(ThyLoad.load_file (opt_path' deps) path)) |
15531 | 264 |
| NONE => (ThyLoad.load_file NONE path; ()))); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
265 |
|
7191 | 266 |
in |
267 |
||
18721 | 268 |
fun load_file time path = Output.toplevel_errors (fn () => |
7941 | 269 |
if time then |
7244 | 270 |
let val name = Path.pack path in |
271 |
timeit (fn () => |
|
9778 | 272 |
(priority ("\n**** Starting file " ^ quote name ^ " ****"); |
9036 | 273 |
run_file path; |
9778 | 274 |
priority ("**** Finished file " ^ quote name ^ " ****\n"))) |
7244 | 275 |
end |
18721 | 276 |
else run_file path) (); |
7941 | 277 |
|
278 |
val use = load_file false o Path.unpack; |
|
279 |
val time_use = load_file true o Path.unpack; |
|
7191 | 280 |
|
281 |
end; |
|
6233 | 282 |
|
283 |
||
7099 | 284 |
(* load_thy *) |
285 |
||
9490 | 286 |
fun required_by _ [] = "" |
287 |
| required_by s initiators = s ^ "(required by " ^ show_path (rev initiators) ^ ")"; |
|
7099 | 288 |
|
15065 | 289 |
fun load_thy really ml time initiators dir name = |
7099 | 290 |
let |
9822 | 291 |
val _ = |
292 |
if really then priority ("Loading theory " ^ quote name ^ required_by " " initiators) |
|
293 |
else priority ("Registering theory " ^ quote name); |
|
7099 | 294 |
|
295 |
val _ = touch_thy name; |
|
9822 | 296 |
val master = |
297 |
if really then ThyLoad.load_thy dir name ml time |
|
298 |
else #1 (ThyLoad.deps_thy dir name ml); |
|
7099 | 299 |
|
300 |
val files = get_files name; |
|
15570 | 301 |
val missing_files = List.mapPartial (fn (path, NONE) => SOME (Path.pack path) | _ => NONE) files; |
7099 | 302 |
in |
303 |
if null missing_files then () |
|
304 |
else warning (loader_msg "unresolved dependencies of theory" [name] ^ |
|
7223 | 305 |
" on file(s): " ^ commas_quote missing_files); |
15531 | 306 |
change_deps name (fn _ => SOME (make_deps true false (SOME master) files)); |
7099 | 307 |
perform Update name |
308 |
end; |
|
309 |
||
310 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
311 |
(* require_thy *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
312 |
|
15065 | 313 |
fun base_of_path s = Path.pack (Path.base (Path.unpack s)); |
314 |
||
7211 | 315 |
local |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
316 |
|
7941 | 317 |
fun load_deps ml dir name = |
318 |
let val (master, (parents, files)) = ThyLoad.deps_thy dir name ml |
|
15531 | 319 |
in (SOME (init_deps (SOME master) files), parents) end; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
320 |
|
15531 | 321 |
fun file_current master (_, NONE) = false |
15158
2281784015a5
Fixed several bugs related to path specifications in theory names.
berghofe
parents:
15065
diff
changeset
|
322 |
| file_current master (path, info) = |
2281784015a5
Fixed several bugs related to path specifications in theory names.
berghofe
parents:
15065
diff
changeset
|
323 |
(info = ThyLoad.check_file (opt_path master) path); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
324 |
|
7941 | 325 |
fun current_deps ml strict dir name = |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
326 |
(case lookup_deps name of |
15531 | 327 |
NONE => (false, load_deps ml dir name) |
328 |
| SOME deps => |
|
15158
2281784015a5
Fixed several bugs related to path specifications in theory names.
berghofe
parents:
15065
diff
changeset
|
329 |
let |
15531 | 330 |
fun get_name s = (case opt_path'' (lookup_deps s) of NONE => s |
331 |
| SOME p => Path.pack (Path.append p (Path.basic s))); |
|
332 |
val same_deps = (NONE, map get_name (thy_graph Graph.imm_preds name)) |
|
15158
2281784015a5
Fixed several bugs related to path specifications in theory names.
berghofe
parents:
15065
diff
changeset
|
333 |
in |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
334 |
(case deps of |
15531 | 335 |
NONE => (true, same_deps) |
336 |
| SOME {present, outdated, master, files} => |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
337 |
if present andalso not strict then (true, same_deps) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
338 |
else |
15531 | 339 |
let val master' = SOME (ThyLoad.check_thy dir name ml) in |
7941 | 340 |
if master <> master' then (false, load_deps ml dir name) |
15158
2281784015a5
Fixed several bugs related to path specifications in theory names.
berghofe
parents:
15065
diff
changeset
|
341 |
else (not outdated andalso forall (file_current master') files, same_deps) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
342 |
end) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
343 |
end); |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
344 |
|
9822 | 345 |
fun require_thy really ml time strict keep_strict initiators prfx (visited, str) = |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
346 |
let |
7066 | 347 |
val path = Path.expand (Path.unpack str); |
6484
3f098b0ec683
use_thy etc.: may specify path prefix, which is temporarily used as load path;
wenzelm
parents:
6389
diff
changeset
|
348 |
val name = Path.pack (Path.base path); |
7066 | 349 |
in |
9332 | 350 |
if name mem_string initiators then error (cycle_msg initiators) else (); |
7952 | 351 |
if known_thy name andalso is_finished name orelse name mem_string visited then |
352 |
(visited, (true, name)) |
|
7066 | 353 |
else |
354 |
let |
|
355 |
val dir = Path.append prfx (Path.dir path); |
|
9822 | 356 |
val req_parent = require_thy true true time (strict andalso keep_strict) keep_strict |
15065 | 357 |
(name :: initiators); |
6484
3f098b0ec683
use_thy etc.: may specify path prefix, which is temporarily used as load path;
wenzelm
parents:
6389
diff
changeset
|
358 |
|
18678 | 359 |
val (current, (new_deps, parents)) = current_deps ml strict dir name |
360 |
handle ERROR msg => cat_error msg |
|
361 |
(loader_msg "the error(s) above occurred while examining theory" [name] ^ |
|
362 |
(if null initiators then "" else required_by "\n" initiators)); |
|
19473 | 363 |
val dir' = the_default dir (opt_path'' new_deps); |
15065 | 364 |
val (visited', parent_results) = foldl_map (req_parent dir') (name :: visited, parents); |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
365 |
|
15531 | 366 |
val thy = if not really then SOME (get_theory name) else NONE; |
7066 | 367 |
val result = |
17756 | 368 |
if current andalso forall fst parent_results then true |
7066 | 369 |
else |
370 |
((case new_deps of |
|
15531 | 371 |
SOME deps => change_thys (update_node name (map base_of_path parents) (deps, thy)) |
372 |
| NONE => ()); |
|
15065 | 373 |
load_thy really ml (time orelse ! Output.timing) initiators dir name; |
7099 | 374 |
false); |
7066 | 375 |
in (visited', (result, name)) end |
376 |
end; |
|
6484
3f098b0ec683
use_thy etc.: may specify path prefix, which is temporarily used as load path;
wenzelm
parents:
6389
diff
changeset
|
377 |
|
18721 | 378 |
fun gen_use_thy' req prfx s = Output.toplevel_errors (fn () => |
15158
2281784015a5
Fixed several bugs related to path specifications in theory names.
berghofe
parents:
15065
diff
changeset
|
379 |
let val (_, (_, name)) = req [] prfx ([], s) |
18721 | 380 |
in Context.context (get_theory name) end) (); |
6241 | 381 |
|
15158
2281784015a5
Fixed several bugs related to path specifications in theory names.
berghofe
parents:
15065
diff
changeset
|
382 |
fun gen_use_thy req = gen_use_thy' req Path.current; |
2281784015a5
Fixed several bugs related to path specifications in theory names.
berghofe
parents:
15065
diff
changeset
|
383 |
|
7244 | 384 |
fun warn_finished f name = (check_unfinished warning name; f name); |
385 |
||
7211 | 386 |
in |
387 |
||
15158
2281784015a5
Fixed several bugs related to path specifications in theory names.
berghofe
parents:
15065
diff
changeset
|
388 |
val weak_use_thy = gen_use_thy' (require_thy true true false false false); |
2281784015a5
Fixed several bugs related to path specifications in theory names.
berghofe
parents:
15065
diff
changeset
|
389 |
fun quiet_update_thy' ml = gen_use_thy' (require_thy true ml false true true); |
2281784015a5
Fixed several bugs related to path specifications in theory names.
berghofe
parents:
15065
diff
changeset
|
390 |
fun quiet_update_thy ml = gen_use_thy (require_thy true ml false true true); |
7244 | 391 |
|
9822 | 392 |
val use_thy = warn_finished (gen_use_thy (require_thy true true false true false)); |
393 |
val time_use_thy = warn_finished (gen_use_thy (require_thy true true true true false)); |
|
394 |
val use_thy_only = warn_finished (gen_use_thy (require_thy true false false true false)); |
|
395 |
val update_thy = warn_finished (gen_use_thy (require_thy true true false true true)); |
|
396 |
val update_thy_only = warn_finished (gen_use_thy (require_thy true false false true true)); |
|
397 |
val pretend_use_thy_only = warn_finished (gen_use_thy (require_thy false false false true false)); |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
398 |
|
7211 | 399 |
end; |
400 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
401 |
|
6666 | 402 |
(* remove_thy *) |
403 |
||
404 |
fun remove_thy name = |
|
7910 | 405 |
if is_finished name then error (loader_msg "cannot remove finished theory" [name]) |
6666 | 406 |
else |
407 |
let val succs = thy_graph Graph.all_succs [name] in |
|
9778 | 408 |
priority (loader_msg "removing" succs); |
15570 | 409 |
List.app (perform Remove) succs; |
7191 | 410 |
change_thys (Graph.del_nodes succs) |
6666 | 411 |
end; |
412 |
||
413 |
||
7066 | 414 |
(* begin / end theory *) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
415 |
|
17365 | 416 |
fun check_uses name uses = |
417 |
let val illegal = map (fn ext => Path.ext ext (Path.basic name)) ThyLoad.ml_exts in |
|
418 |
(case find_first (member (op =) illegal o Path.base o Path.expand o #1) uses of |
|
419 |
NONE => () |
|
420 |
| SOME (path, _) => error ("Illegal use of theory ML file: " ^ quote (Path.pack path))) |
|
421 |
end; |
|
422 |
||
423 |
fun begin_theory present name parents uses int = |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
424 |
let |
15065 | 425 |
val bparents = map base_of_path parents; |
15158
2281784015a5
Fixed several bugs related to path specifications in theory names.
berghofe
parents:
15065
diff
changeset
|
426 |
val dir' = opt_path'' (lookup_deps name); |
19473 | 427 |
val dir = the_default Path.current dir'; |
17365 | 428 |
val assert_thy = if int then quiet_update_thy' true dir else weak_use_thy dir; |
7244 | 429 |
val _ = check_unfinished error name; |
15570 | 430 |
val _ = List.app assert_thy parents; |
17365 | 431 |
val _ = check_uses name uses; |
432 |
||
16504 | 433 |
val theory = Theory.begin_theory name (map get_theory bparents); |
7952 | 434 |
val deps = |
435 |
if known_thy name then get_deps name |
|
17365 | 436 |
else (init_deps NONE (map #1 uses)); (*records additional ML files only!*) |
437 |
val uses_now = List.mapPartial (fn (x, true) => SOME x | _ => NONE) uses; |
|
9451 | 438 |
|
15531 | 439 |
val _ = change_thys (update_node name bparents (deps, SOME (Theory.copy theory))); |
17365 | 440 |
val theory' = theory |> present dir' name bparents uses; |
9451 | 441 |
val _ = put_theory name (Theory.copy theory'); |
17365 | 442 |
val ((), theory'') = Context.pass_theory theory' (List.app (load_file false)) uses_now; |
9451 | 443 |
val _ = put_theory name (Theory.copy theory''); |
8805 | 444 |
in theory'' end; |
7244 | 445 |
|
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
446 |
fun end_theory theory = |
7099 | 447 |
let |
16454 | 448 |
val name = Context.theory_name theory; |
16504 | 449 |
val theory' = Theory.end_theory theory; |
7099 | 450 |
in put_theory name theory'; theory' end; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
451 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
452 |
|
6666 | 453 |
(* finish all theories *) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
454 |
|
15531 | 455 |
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
|
456 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
457 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
458 |
(* register existing theories *) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
459 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
460 |
fun register_theory theory = |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
461 |
let |
16454 | 462 |
val name = Context.theory_name theory; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
463 |
val parents = Theory.parents_of theory; |
16454 | 464 |
val parent_names = map Context.theory_name parents; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
465 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
466 |
fun err txt bads = |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
467 |
error (loader_msg txt bads ^ "\n" ^ gen_msg "cannot register theory" [name]); |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
468 |
|
6666 | 469 |
val nonfinished = filter_out is_finished parent_names; |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
470 |
fun get_variant (x, y_name) = |
15531 | 471 |
if Theory.eq_thy (x, get_theory y_name) then NONE |
472 |
else SOME y_name; |
|
15570 | 473 |
val variants = List.mapPartial get_variant (parents ~~ parent_names); |
6211
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 |
fun register G = |
15531 | 476 |
(Graph.new_node (name, (NONE, SOME theory)) G |
9327 | 477 |
handle Graph.DUP _ => err "duplicate theory entry" []) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
478 |
|> add_deps name parent_names; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
479 |
in |
6666 | 480 |
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
|
481 |
else if not (null variants) then err "different versions of parent theories" variants |
7099 | 482 |
else (change_thys register; perform Update name) |
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
483 |
end; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
484 |
|
15801 | 485 |
val _ = register_theory ProtoPure.thy; |
486 |
||
6211
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
487 |
|
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
488 |
(*final declarations of this structure*) |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
489 |
val theory = get_theory; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
490 |
val names = get_names; |
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 |
end; |
43d0efafa025
Theory loader database: theory and file dependencies, theory values
wenzelm
parents:
5211
diff
changeset
|
493 |
|
5209 | 494 |
structure BasicThyInfo: BASIC_THY_INFO = ThyInfo; |
495 |
open BasicThyInfo; |