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