src/Pure/Thy/thy_info.ML
author wenzelm
Thu, 27 Jul 2000 18:25:01 +0200
changeset 9451 5c25ed3c10a0
parent 9417 c4f7c959eaee
child 9490 c2606af9922c
permissions -rw-r--r--
begin_theory: store *copy* of initial theory;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
8805
wenzelm
parents: 7952
diff changeset
     4
    License:    GPL (GNU GENERAL PUBLIC LICENSE)
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
     5
6362
bbbea7fecb93 removed obsolete user data stuff;
wenzelm
parents: 6329
diff changeset
     6
Theory loader database, including theory and file dependencies.
3976
wenzelm
parents: 3604
diff changeset
     7
*)
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
     8
5209
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
     9
signature BASIC_THY_INFO =
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
    10
sig
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
    11
  val theory: string -> theory
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    12
  val theory_of_sign: Sign.sg -> theory
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    13
  val theory_of_thm: thm -> theory
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
    14
(*val use: string -> unit*)             (*exported later*)
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
    15
  val time_use: string -> unit
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    16
  val touch_thy: string -> unit
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    17
  val use_thy: string -> unit
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    18
  val update_thy: string -> unit
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
    19
  val remove_thy: string -> unit
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    20
  val time_use_thy: string -> unit
6527
f7a7ac2b9926 use_thy_only made pervasive;
wenzelm
parents: 6487
diff changeset
    21
  val use_thy_only: string -> unit
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    22
  val update_thy_only: string -> unit
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    23
end;
5209
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
    24
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    25
signature THY_INFO =
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    26
sig
5209
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
    27
  include BASIC_THY_INFO
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    28
  datatype action = Update | Outdate | Remove
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    29
  val str_of_action: action -> string
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    30
  val add_hook: (action -> string -> unit) -> unit
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    31
  val names: unit -> string list
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
    32
  val known_thy: string -> bool
7935
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
    33
  val check_known_thy: string -> bool
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
    34
  val if_known_thy: (string -> unit) -> string -> unit
7288
21ff5bb68a5c lookup_theory;
wenzelm
parents: 7267
diff changeset
    35
  val lookup_theory: string -> theory option
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    36
  val get_theory: string -> theory
6654
c3686d75e9d6 Added function get_preds.
berghofe
parents: 6527
diff changeset
    37
  val get_preds: string -> string list
7935
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
    38
  val loaded_files: string -> Path.T list
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
    39
  val touch_child_thys: string -> unit
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    40
  val touch_all_thys: unit -> unit
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
    41
  val load_file: bool -> Path.T -> unit
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
    42
  val use: string -> unit
7952
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
    43
  val quiet_update_thy: bool -> string -> unit
8805
wenzelm
parents: 7952
diff changeset
    44
  val begin_theory: (string -> string list -> (Path.T * bool) list -> theory -> theory) ->
wenzelm
parents: 7952
diff changeset
    45
    bool -> string -> string list -> (Path.T * bool) list -> theory
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    46
  val end_theory: theory -> theory
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
    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
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    49
end;
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    50
6362
bbbea7fecb93 removed obsolete user data stuff;
wenzelm
parents: 6329
diff changeset
    51
structure ThyInfo: THY_INFO =
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    52
struct
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    53
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    54
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    55
(** theory loader actions and hooks **)
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    56
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    57
datatype action = Update | Outdate | Remove;
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    58
val str_of_action = fn Update => "Update" | Outdate => "Outdate" | Remove => "Remove";
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    59
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    60
local
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    61
  val hooks = ref ([]: (action -> string -> unit) list);
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    62
in
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    63
  fun add_hook f = hooks := f :: ! hooks;
7191
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
    64
  fun perform action name = seq (fn f => (try (fn () => f action name) (); ())) (! hooks);
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    65
end;
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    66
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    67
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    68
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    69
(** thy database **)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    70
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    71
(* messages *)
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
fun gen_msg txt [] = txt
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    74
  | gen_msg txt names = txt ^ " " ^ commas_quote names;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    75
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    76
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
    77
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    78
val show_path = space_implode " via " o map quote;
9332
ff3a86a00ea5 tuned cycle_msg;
wenzelm
parents: 9327
diff changeset
    79
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
    80
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    81
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
    82
(* derived graph operations *)
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    83
9327
wenzelm
parents: 9137
diff changeset
    84
fun add_deps name parents G = Graph.add_deps_acyclic (name, parents) G
9332
ff3a86a00ea5 tuned cycle_msg;
wenzelm
parents: 9327
diff changeset
    85
  handle Graph.CYCLES namess => error (cat_lines (map cycle_msg namess));
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    86
7952
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
    87
fun upd_deps name entry G =
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
    88
  foldl (fn (H, parent) => Graph.del_edge (parent, name) H) (G, Graph.imm_preds G name)
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
    89
  |> Graph.map_node name (K entry);
3976
wenzelm
parents: 3604
diff changeset
    90
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    91
fun update_node name parents entry G =
7952
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
    92
  (if can (Graph.get_node G) name then upd_deps name entry G else Graph.new_node (name, entry) G)
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
    93
  |> add_deps name parents;
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
    94
   
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
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   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
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   103
fun make_deps present outdated master files =
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   104
  {present = present, outdated = outdated, master = master, files = files}: deps;
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
   105
7211
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   106
fun init_deps master files = Some (make_deps false true master (map (rpair None) files));
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   107
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   108
6362
bbbea7fecb93 removed obsolete user data stuff;
wenzelm
parents: 6329
diff changeset
   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
bbbea7fecb93 removed obsolete user data stuff;
wenzelm
parents: 6329
diff changeset
   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
bbbea7fecb93 removed obsolete user data stuff;
wenzelm
parents: 6329
diff changeset
   114
  fun get_thys () = ! database;
9137
bec42c975d13 use Library.change;
wenzelm
parents: 9036
diff changeset
   115
  val change_thys = Library.change database;
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
   116
end;
5209
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
   117
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
   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
c4f7c959eaee get_names: topologically sorted;
wenzelm
parents: 9332
diff changeset
   122
c4f7c959eaee get_names: topologically sorted;
wenzelm
parents: 9332
diff changeset
   123
(*theory names in topological order*)
c4f7c959eaee get_names: topologically sorted;
wenzelm
parents: 9332
diff changeset
   124
fun get_names () =
c4f7c959eaee get_names: topologically sorted;
wenzelm
parents: 9332
diff changeset
   125
  let val G = get_thys ()
c4f7c959eaee get_names: topologically sorted;
wenzelm
parents: 9332
diff changeset
   126
  in Graph.all_succs G (filter (Library.null o Graph.imm_preds G) (Graph.keys 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
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
   131
fun lookup_thy name =
9327
wenzelm
parents: 9137
diff changeset
   132
  Some (thy_graph Graph.get_node name) handle Graph.UNDEF _ => None;
7935
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
   133
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   134
val known_thy = is_some o lookup_thy;
7935
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
   135
fun check_known_thy name = known_thy name orelse (warning ("Unknown theory " ^ quote name); false);
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
   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
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   140
    Some thy => thy
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   141
  | None => error (loader_msg "nothing known about theory" [name]));
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
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   148
val lookup_deps = apsome #1 o lookup_thy;
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
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   152
fun is_finished name = is_none (get_deps name);
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   153
fun get_files name = (case get_deps name of Some {files, ...} => files | _ => []);
7191
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   154
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   155
fun loaded_files name =
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   156
  (case get_deps name of
7935
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
   157
    None => []
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   158
  | Some {master, files, ...} =>
7935
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
   159
      (case master of Some m => [#1 (ThyLoad.get_thy m)] | None => []) @
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   160
      (mapfilter (apsome #1 o #2) files));
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   161
6654
c3686d75e9d6 Added function get_preds.
berghofe
parents: 6527
diff changeset
   162
fun get_preds name =
9327
wenzelm
parents: 9137
diff changeset
   163
  (thy_graph Graph.imm_preds name) handle Graph.UNDEF _ =>
6654
c3686d75e9d6 Added function get_preds.
berghofe
parents: 6527
diff changeset
   164
    error (loader_msg "nothing known about theory" [name]);
c3686d75e9d6 Added function get_preds.
berghofe
parents: 6527
diff changeset
   165
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   166
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   167
(* access theory *)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   168
7687
3383b8223e46 fixed lookup_theory;
wenzelm
parents: 7589
diff changeset
   169
fun lookup_theory name =
3383b8223e46 fixed lookup_theory;
wenzelm
parents: 7589
diff changeset
   170
  (case lookup_thy name of
3383b8223e46 fixed lookup_theory;
wenzelm
parents: 7589
diff changeset
   171
    Some (_, Some thy) => Some thy
3383b8223e46 fixed lookup_theory;
wenzelm
parents: 7589
diff changeset
   172
  | _ => None);
7288
21ff5bb68a5c lookup_theory;
wenzelm
parents: 7267
diff changeset
   173
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   174
fun get_theory name =
7288
21ff5bb68a5c lookup_theory;
wenzelm
parents: 7267
diff changeset
   175
  (case lookup_theory name of
21ff5bb68a5c lookup_theory;
wenzelm
parents: 7267
diff changeset
   176
    (Some theory) => theory
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   177
  | _ => error (loader_msg "undefined theory entry for" [name]));
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   178
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   179
val theory_of_sign = get_theory o Sign.name_of;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   180
val theory_of_thm = theory_of_sign o Thm.sign_of_thm;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   181
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   182
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
   183
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   184
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   185
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   186
(** thy operations **)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   187
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   188
(* maintain 'outdated' flag *)
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   189
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   190
local
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   191
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   192
fun is_outdated name =
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   193
  (case lookup_deps name of
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   194
    Some (Some {outdated, ...}) => outdated
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   195
  | _ => false);
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   196
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   197
fun outdate_thy name =
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   198
  if is_finished name orelse is_outdated name then ()
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   199
  else (change_deps name (apsome (fn {present, outdated = _, master, files} =>
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   200
    make_deps present true master files)); perform Outdate name);
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   201
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   202
fun check_unfinished name =
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   203
  if is_finished name then (warning (loader_msg "tried to touch finished theory" [name]); None)
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   204
  else Some name;
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   205
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   206
in
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   207
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   208
fun touch_thys names =
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   209
  seq outdate_thy (thy_graph Graph.all_succs (mapfilter check_unfinished names));
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   210
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   211
fun touch_thy name = touch_thys [name];
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   212
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
   213
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   214
fun touch_all_thys () = seq outdate_thy (get_names ());
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   215
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   216
end;
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
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   219
(* check 'finished' state *)
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   220
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   221
fun check_unfinished fail name =
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   222
  if known_thy name andalso is_finished name then
7288
21ff5bb68a5c lookup_theory;
wenzelm
parents: 7267
diff changeset
   223
    fail (loader_msg "cannot update finished theory" [name])
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   224
  else ();
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   225
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   226
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   227
(* load_file *)
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   228
7191
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   229
local
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   230
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   231
fun provide path name info (deps as Some {present, outdated, master, files}) =
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   232
     (if exists (equal path o #1) files then ()
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   233
      else warning (loader_msg "undeclared dependency of theory" [name] ^
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   234
        " on file: " ^ quote (Path.pack path));
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   235
      Some (make_deps present outdated master (overwrite (files, (path, Some info)))))
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   236
  | provide _ _ _ None = None;
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   237
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   238
fun run_file path =
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   239
  (case apsome PureThy.get_name (Context.get_context ()) of
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   240
    None => (ThyLoad.load_file path; ())
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   241
  | Some name =>
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   242
      if known_thy name then change_deps name (provide path name (ThyLoad.load_file path))
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   243
      else (ThyLoad.load_file path; ()));
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   244
7191
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   245
in
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   246
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   247
fun load_file time path =
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   248
  if time then
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   249
    let val name = Path.pack path in
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   250
      timeit (fn () =>
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   251
       (writeln ("\n**** Starting file " ^ quote name ^ " ****");
9036
d9e09ef531dd do not setmp Library.timing;
wenzelm
parents: 8999
diff changeset
   252
        run_file path;
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   253
        writeln ("**** Finished file " ^ quote name ^ " ****\n")))
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   254
    end
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   255
  else run_file path;
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   256
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   257
val use = load_file false o Path.unpack;
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   258
val time_use = load_file true o Path.unpack;
7191
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   259
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   260
end;
6233
wenzelm
parents: 6219
diff changeset
   261
wenzelm
parents: 6219
diff changeset
   262
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   263
(* load_thy *)
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   264
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   265
fun required_by [] = ""
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   266
  | required_by initiators = " (required by " ^ show_path (rev initiators) ^ ")";
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   267
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   268
fun load_thy ml time initiators dir name parents =
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   269
  let
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   270
    val _ = writeln ("Loading theory " ^ quote name ^ required_by initiators);
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   271
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   272
    val _ = touch_thy name;
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   273
    val master = ThyLoad.load_thy dir name ml time;
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   274
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   275
    val files = get_files name;
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   276
    val missing_files = mapfilter (fn (path, None) => Some (Path.pack path) | _ => None) files;
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   277
  in
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   278
    if null missing_files then ()
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   279
    else warning (loader_msg "unresolved dependencies of theory" [name] ^
7223
b0198ca65867 tuned msg;
wenzelm
parents: 7211
diff changeset
   280
      " on file(s): " ^ commas_quote missing_files);
7191
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   281
    change_deps name (fn _ => Some (make_deps true false (Some master) files));
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   282
    perform Update name
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   283
  end;
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   284
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   285
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   286
(* require_thy *)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   287
7211
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   288
local
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   289
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   290
fun load_deps ml dir name =
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   291
  let val (master, (parents, files)) = ThyLoad.deps_thy dir name ml
7191
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   292
  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
   293
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   294
fun file_current (_, None) = false
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   295
  | file_current (path, info) = (info = ThyLoad.check_file path);
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   296
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   297
fun current_deps ml strict dir name =
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   298
  (case lookup_deps name of
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   299
    None => (false, load_deps ml dir name)
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   300
  | Some deps =>
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   301
      let val same_deps = (None, thy_graph Graph.imm_preds name) in
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   302
        (case deps of
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   303
          None => (true, same_deps)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   304
        | Some {present, outdated, master, files} =>
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   305
            if present andalso not strict then (true, same_deps)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   306
            else
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   307
              let val master' = Some (ThyLoad.check_thy dir name ml) in
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   308
                if master <> master' then (false, load_deps ml dir name)
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   309
                else (not outdated andalso forall file_current files, same_deps)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   310
              end)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   311
      end);
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   312
9036
d9e09ef531dd do not setmp Library.timing;
wenzelm
parents: 8999
diff changeset
   313
fun require_thy 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
   314
  let
7066
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   315
    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
   316
    val name = Path.pack (Path.base path);
7066
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   317
  in
9332
ff3a86a00ea5 tuned cycle_msg;
wenzelm
parents: 9327
diff changeset
   318
    if name mem_string initiators then error (cycle_msg initiators) else ();
7952
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
   319
    if known_thy name andalso is_finished name orelse name mem_string visited then
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
   320
      (visited, (true, name))
7066
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   321
    else
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   322
      let
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   323
        val dir = Path.append prfx (Path.dir path);
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   324
        val req_parent =
7211
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   325
          require_thy true time (strict andalso keep_strict) keep_strict (name :: initiators) dir;
6484
3f098b0ec683 use_thy etc.: may specify path prefix, which is temporarily used as load path;
wenzelm
parents: 6389
diff changeset
   326
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   327
        val (current, (new_deps, parents)) = current_deps ml strict dir name handle ERROR =>
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   328
          error (loader_msg "the error(s) above occurred while examining theory" [name] ^
7066
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   329
            (if null initiators then "" else "\n" ^ required_by initiators));
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   330
        val (visited', parent_results) = foldl_map req_parent (name :: visited, parents);
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   331
7066
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   332
        val result =
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   333
          if current andalso forall #1 parent_results then true
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   334
          else
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   335
            ((case new_deps of
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   336
              Some deps => change_thys (update_node name parents (deps, None))
7066
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   337
            | None => ());
9036
d9e09ef531dd do not setmp Library.timing;
wenzelm
parents: 8999
diff changeset
   338
             load_thy ml (time orelse ! Library.timing) initiators dir name parents;
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   339
             false);
7066
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   340
      in (visited', (result, name)) end
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   341
  end;
6484
3f098b0ec683 use_thy etc.: may specify path prefix, which is temporarily used as load path;
wenzelm
parents: 6389
diff changeset
   342
7066
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   343
fun gen_use_thy req s =
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   344
  let val (_, (_, name)) = req [] Path.current ([], s)
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   345
  in Context.context (get_theory name) end;
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   346
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   347
fun warn_finished f name = (check_unfinished warning name; f name);
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   348
7211
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   349
in
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   350
7952
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
   351
val weak_use_thy        = gen_use_thy (require_thy true false false false);
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
   352
fun quiet_update_thy ml = gen_use_thy (require_thy ml false true true);
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   353
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   354
val use_thy          = warn_finished (gen_use_thy (require_thy true false true false));
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   355
val time_use_thy     = warn_finished (gen_use_thy (require_thy true true true false));
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   356
val use_thy_only     = warn_finished (gen_use_thy (require_thy false false true false));
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   357
val update_thy       = warn_finished (gen_use_thy (require_thy true false true true));
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   358
val update_thy_only  = warn_finished (gen_use_thy (require_thy false false true true));
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   359
7211
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   360
end;
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   361
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   362
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   363
(* remove_thy *)
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   364
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   365
fun remove_thy name =
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   366
  if is_finished name then error (loader_msg "cannot remove finished theory" [name])
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   367
  else
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   368
    let val succs = thy_graph Graph.all_succs [name] in
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   369
      writeln (loader_msg "removing" succs);
7191
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   370
      seq (perform Remove) succs;
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   371
      change_thys (Graph.del_nodes succs)
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   372
    end;
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   373
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   374
7066
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   375
(* begin / end theory *)
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   376
8805
wenzelm
parents: 7952
diff changeset
   377
fun begin_theory present upd name parents paths =
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   378
  let
8805
wenzelm
parents: 7952
diff changeset
   379
    val assert_thy = if upd then quiet_update_thy true else weak_use_thy;
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   380
    val _ = check_unfinished error name;
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   381
    val _ = (map Path.basic parents; seq assert_thy parents);
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   382
    val theory = PureThy.begin_theory name (map get_theory parents);
7952
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
   383
    val deps =
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
   384
      if known_thy name then get_deps name
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
   385
      else (init_deps None (map #1 paths));   (*records additional ML files only!*)
6329
bbd03b119f36 added use_path;
wenzelm
parents: 6263
diff changeset
   386
    val use_paths = mapfilter (fn (x, true) => Some x | _ => None) paths;
9451
5c25ed3c10a0 begin_theory: store *copy* of initial theory;
wenzelm
parents: 9417
diff changeset
   387
5c25ed3c10a0 begin_theory: store *copy* of initial theory;
wenzelm
parents: 9417
diff changeset
   388
    val _ = change_thys (update_node name parents (deps, Some (Theory.copy theory)));
8805
wenzelm
parents: 7952
diff changeset
   389
    val theory' = theory |> present name parents paths;
9451
5c25ed3c10a0 begin_theory: store *copy* of initial theory;
wenzelm
parents: 9417
diff changeset
   390
    val _ = put_theory name (Theory.copy theory');
8805
wenzelm
parents: 7952
diff changeset
   391
    val ((), theory'') = Context.pass_theory theory' (seq (load_file false)) use_paths;
9451
5c25ed3c10a0 begin_theory: store *copy* of initial theory;
wenzelm
parents: 9417
diff changeset
   392
    val _ = put_theory name (Theory.copy theory'');
8805
wenzelm
parents: 7952
diff changeset
   393
  in theory'' end;
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   394
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   395
fun end_theory theory =
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   396
  let
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   397
    val theory' = PureThy.end_theory theory;
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   398
    val name = PureThy.get_name theory;
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   399
  in put_theory name theory'; theory' end;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   400
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   401
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   402
(* finish all theories *)
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   403
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   404
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
   405
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   406
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   407
(* register existing theories *)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   408
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   409
fun register_theory theory =
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   410
  let
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   411
    val name = PureThy.get_name theory;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   412
    val parents = Theory.parents_of theory;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   413
    val parent_names = map PureThy.get_name parents;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   414
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   415
    fun err txt bads =
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   416
      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
   417
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   418
    val nonfinished = filter_out is_finished parent_names;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   419
    fun get_variant (x, y_name) =
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   420
      if Theory.eq_thy (x, get_theory y_name) then None
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   421
      else Some y_name;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   422
    val variants = mapfilter get_variant (parents ~~ parent_names);
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   423
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   424
    fun register G =
6362
bbbea7fecb93 removed obsolete user data stuff;
wenzelm
parents: 6329
diff changeset
   425
      (Graph.new_node (name, (None, Some theory)) G
9327
wenzelm
parents: 9137
diff changeset
   426
        handle Graph.DUP _ => err "duplicate theory entry" [])
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   427
      |> add_deps name parent_names;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   428
  in
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   429
    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
   430
    else if not (null variants) then err "different versions of parent theories" variants
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   431
    else (change_thys register; perform Update name)
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   432
  end;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   433
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   434
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   435
(*final declarations of this structure*)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   436
val theory = get_theory;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   437
val names = get_names;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   438
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   439
end;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   440
5209
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
   441
structure BasicThyInfo: BASIC_THY_INFO = ThyInfo;
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
   442
open BasicThyInfo;