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