src/Pure/Thy/thy_info.ML
author wenzelm
Mon, 30 Jul 2007 11:12:28 +0200
changeset 24071 82873bc360c2
parent 24068 245b7e68a3bc
child 24080 8c67d869531b
permissions -rw-r--r--
marked some CRITICAL sections;
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
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    12
  val touch_thy: string -> unit
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
    13
  val remove_thy: string -> unit
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    14
end;
5209
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
    15
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    16
signature THY_INFO =
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    17
sig
5209
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
    18
  include BASIC_THY_INFO
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    19
  datatype action = Update | Outdate | Remove
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    20
  val str_of_action: action -> string
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    21
  val add_hook: (action -> string -> unit) -> unit
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    22
  val names: unit -> string list
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
    23
  val known_thy: string -> bool
7935
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
    24
  val check_known_thy: string -> bool
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
    25
  val if_known_thy: (string -> unit) -> string -> unit
7288
21ff5bb68a5c lookup_theory;
wenzelm
parents: 7267
diff changeset
    26
  val lookup_theory: string -> theory option
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    27
  val get_theory: string -> theory
19547
17f504343d0f added the_theory;
wenzelm
parents: 19482
diff changeset
    28
  val the_theory: string -> theory -> theory
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
    29
  val get_parents: string -> string list
7935
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
    30
  val loaded_files: string -> Path.T list
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
    31
  val touch_child_thys: string -> unit
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    32
  val touch_all_thys: unit -> unit
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
    33
  val load_file: bool -> Path.T -> unit
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
    34
  val use: string -> unit
24057
f42665561801 removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents: 23982
diff changeset
    35
  val time_use: string -> unit
9822
dcf5f9886b8f added pretend_use_thy_only;
wenzelm
parents: 9778
diff changeset
    36
  val pretend_use_thy_only: string -> unit
24057
f42665561801 removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents: 23982
diff changeset
    37
  val use_thys: string list -> unit
f42665561801 removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents: 23982
diff changeset
    38
  val use_thy: string -> unit
f42665561801 removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents: 23982
diff changeset
    39
  val time_use_thy: string -> unit
f42665561801 removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents: 23982
diff changeset
    40
  val update_thy: string -> unit
23900
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
    41
  val begin_theory: string -> string list -> (Path.T * bool) list -> bool -> theory
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    42
  val end_theory: theory -> theory
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
    43
  val finish: unit -> unit
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    44
  val register_theory: theory -> unit
15633
741deccec4e3 new display of theory stamps
paulson
parents: 15570
diff changeset
    45
  val pretty_theory: theory -> Pretty.T
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
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    51
(** theory loader actions and hooks **)
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    52
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    53
datatype action = Update | Outdate | Remove;
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    54
val str_of_action = fn Update => "Update" | Outdate => "Outdate" | Remove => "Remove";
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    55
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    56
local
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    57
  val hooks = ref ([]: (action -> string -> unit) list);
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    58
in
23939
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
    59
  fun add_hook f = CRITICAL (fn () => change hooks (cons f));
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
    60
  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
    61
end;
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    62
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    63
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    64
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    65
(** thy database **)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    66
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    67
(* messages *)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    68
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
    69
fun loader_msg txt [] = "Theory loader: " ^ txt
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
    70
  | loader_msg txt names = "Theory loader: " ^ txt ^ " " ^ commas_quote names;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    71
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    72
val show_path = space_implode " via " o map quote;
9332
ff3a86a00ea5 tuned cycle_msg;
wenzelm
parents: 9327
diff changeset
    73
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
    74
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    75
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
    76
(* derived graph operations *)
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    77
9327
wenzelm
parents: 9137
diff changeset
    78
fun add_deps name parents G = Graph.add_deps_acyclic (name, parents) G
9332
ff3a86a00ea5 tuned cycle_msg;
wenzelm
parents: 9327
diff changeset
    79
  handle Graph.CYCLES namess => error (cat_lines (map cycle_msg namess));
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    80
7952
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
    81
fun upd_deps name entry G =
19473
wenzelm
parents: 19305
diff changeset
    82
  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
    83
  |> Graph.map_node name (K entry);
3976
wenzelm
parents: 3604
diff changeset
    84
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
    85
fun new_deps name parents entry G =
7952
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
    86
  (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
    87
  |> add_deps name parents;
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    88
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    89
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    90
(* thy database *)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    91
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
    92
type master = (Path.T * File.ident) * (Path.T * File.ident) option;
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
    93
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    94
type deps =
23910
30e1eb0c5b2f added simultaneous use_thys;
wenzelm
parents: 23900
diff changeset
    95
  {outdated: bool,              (*entry considered outdated*)
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
    96
    master: master option,      (*master dependencies for thy + attached ML file*)
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
    97
    text: string list,          (*source text for thy*)
23893
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
    98
    parents: string list,       (*source specification of parents (partially qualified)*)
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
    99
    files:                      (*auxiliary files: source path, physical path + identifier*)
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   100
      (Path.T * (Path.T * File.ident) option) list};
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   101
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   102
fun make_deps outdated master text parents files : deps =
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   103
  {outdated = outdated, master = master, text = text, parents = parents, files = files};
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   104
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   105
fun init_deps master text parents files =
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   106
  SOME (make_deps true master text parents (map (rpair NONE) files));
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   107
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   108
fun master_idents (NONE: master option) = []
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   109
  | master_idents (SOME ((_, thy_id), NONE)) = [thy_id]
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   110
  | master_idents (SOME ((_, thy_id), SOME (_, ml_id))) = [thy_id, ml_id];
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   111
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   112
fun master_dir (NONE: master option) = Path.current
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   113
  | master_dir (SOME ((path, _), _)) = Path.dir path;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   114
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   115
fun master_dir' (d: deps option) = the_default Path.current (Option.map (master_dir o #master) d);
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   116
fun master_dir'' d = the_default Path.current (Option.map master_dir' d);
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
   117
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   118
fun base_name s = Path.implode (Path.base (Path.explode s));
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   119
7211
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   120
6362
bbbea7fecb93 removed obsolete user data stuff;
wenzelm
parents: 6329
diff changeset
   121
type thy = deps option * theory option;
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
   122
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   123
local
6362
bbbea7fecb93 removed obsolete user data stuff;
wenzelm
parents: 6329
diff changeset
   124
  val database = ref (Graph.empty: thy Graph.T);
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   125
in
6362
bbbea7fecb93 removed obsolete user data stuff;
wenzelm
parents: 6329
diff changeset
   126
  fun get_thys () = ! database;
23939
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   127
  fun change_thys f = CRITICAL (fn () => Library.change database f);
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
   128
end;
5209
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
   129
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
   130
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   131
(* access thy graph *)
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
fun thy_graph f x = f (get_thys ()) x;
9417
c4f7c959eaee get_names: topologically sorted;
wenzelm
parents: 9332
diff changeset
   134
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   135
fun get_names () = Graph.topological_order (get_thys ());
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   136
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   137
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   138
(* access thy *)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   139
7935
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
   140
fun lookup_thy name =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   141
  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
   142
16047
b2bf9a5cde37 tuned pretty_sg;
wenzelm
parents: 15801
diff changeset
   143
val known_thy = is_some o lookup_thy;
7935
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
   144
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
   145
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
   146
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   147
fun get_thy name =
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   148
  (case lookup_thy name of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   149
    SOME thy => thy
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   150
  | 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
   151
23939
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   152
fun change_thy name f = CRITICAL (fn () =>
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   153
  (get_thy name; change_thys (Graph.map_node name f)));
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   154
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   155
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   156
(* access deps *)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   157
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   158
val lookup_deps = Option.map #1 o lookup_thy;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   159
val get_deps = #1 o get_thy;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   160
fun change_deps name f = change_thy name (fn (deps, x) => (f deps, x));
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   161
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   162
fun is_finished name = is_none (get_deps name);
7191
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   163
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   164
fun loaded_files name =
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   165
  (case get_deps name of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   166
    NONE => []
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   167
  | SOME {master, files, ...} =>
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   168
      (case master of SOME ((thy_path, _), _) => [thy_path] | NONE => []) @
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19473
diff changeset
   169
      (map_filter (Option.map #1 o #2) files));
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   170
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   171
fun get_parents name =
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   172
  thy_graph Graph.imm_preds name handle Graph.UNDEF _ =>
6654
c3686d75e9d6 Added function get_preds.
berghofe
parents: 6527
diff changeset
   173
    error (loader_msg "nothing known about theory" [name]);
c3686d75e9d6 Added function get_preds.
berghofe
parents: 6527
diff changeset
   174
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   175
16047
b2bf9a5cde37 tuned pretty_sg;
wenzelm
parents: 15801
diff changeset
   176
(* pretty printing a theory *)
b2bf9a5cde37 tuned pretty_sg;
wenzelm
parents: 15801
diff changeset
   177
b2bf9a5cde37 tuned pretty_sg;
wenzelm
parents: 15801
diff changeset
   178
local
15633
741deccec4e3 new display of theory stamps
paulson
parents: 15570
diff changeset
   179
16047
b2bf9a5cde37 tuned pretty_sg;
wenzelm
parents: 15801
diff changeset
   180
fun relevant_names names =
b2bf9a5cde37 tuned pretty_sg;
wenzelm
parents: 15801
diff changeset
   181
  let
b2bf9a5cde37 tuned pretty_sg;
wenzelm
parents: 15801
diff changeset
   182
    val (finished, unfinished) =
19305
5c16895d548b avoid polymorphic equality;
wenzelm
parents: 18721
diff changeset
   183
      List.filter (fn name => name = Context.draftN orelse known_thy name) names
5c16895d548b avoid polymorphic equality;
wenzelm
parents: 18721
diff changeset
   184
      |> List.partition (fn name => name <> Context.draftN andalso is_finished name);
16047
b2bf9a5cde37 tuned pretty_sg;
wenzelm
parents: 15801
diff changeset
   185
  in (if not (null finished) then [List.last finished] else []) @ unfinished end;
15633
741deccec4e3 new display of theory stamps
paulson
parents: 15570
diff changeset
   186
16047
b2bf9a5cde37 tuned pretty_sg;
wenzelm
parents: 15801
diff changeset
   187
in
15633
741deccec4e3 new display of theory stamps
paulson
parents: 15570
diff changeset
   188
16454
af39c6510b86 removed obsolete theory_of_sign, theory_of_thm;
wenzelm
parents: 16047
diff changeset
   189
fun pretty_theory thy =
af39c6510b86 removed obsolete theory_of_sign, theory_of_thm;
wenzelm
parents: 16047
diff changeset
   190
  Pretty.str_list "{" "}" (relevant_names (Context.names_of thy));
15633
741deccec4e3 new display of theory stamps
paulson
parents: 15570
diff changeset
   191
16047
b2bf9a5cde37 tuned pretty_sg;
wenzelm
parents: 15801
diff changeset
   192
end;
b2bf9a5cde37 tuned pretty_sg;
wenzelm
parents: 15801
diff changeset
   193
15633
741deccec4e3 new display of theory stamps
paulson
parents: 15570
diff changeset
   194
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   195
(* access theory *)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   196
7687
3383b8223e46 fixed lookup_theory;
wenzelm
parents: 7589
diff changeset
   197
fun lookup_theory name =
3383b8223e46 fixed lookup_theory;
wenzelm
parents: 7589
diff changeset
   198
  (case lookup_thy name of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   199
    SOME (_, SOME thy) => SOME thy
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   200
  | _ => NONE);
7288
21ff5bb68a5c lookup_theory;
wenzelm
parents: 7267
diff changeset
   201
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   202
fun get_theory name =
7288
21ff5bb68a5c lookup_theory;
wenzelm
parents: 7267
diff changeset
   203
  (case lookup_theory name of
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   204
    SOME theory => theory
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   205
  | _ => error (loader_msg "undefined theory entry for" [name]));
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   206
19547
17f504343d0f added the_theory;
wenzelm
parents: 19482
diff changeset
   207
fun the_theory name thy =
17f504343d0f added the_theory;
wenzelm
parents: 19482
diff changeset
   208
  if Context.theory_name thy = name then thy
17f504343d0f added the_theory;
wenzelm
parents: 19482
diff changeset
   209
  else get_theory name;
17f504343d0f added the_theory;
wenzelm
parents: 19482
diff changeset
   210
22137
8134eb5f4501 added @{theory};
wenzelm
parents: 22095
diff changeset
   211
val _ = ML_Context.value_antiq "theory"
8134eb5f4501 added @{theory};
wenzelm
parents: 22095
diff changeset
   212
  (Scan.lift Args.name
8134eb5f4501 added @{theory};
wenzelm
parents: 22095
diff changeset
   213
    >> (fn name => (name ^ "_thy", "ThyInfo.theory " ^ ML_Syntax.print_string name))
22148
3b99944136ef tuned comments
wenzelm
parents: 22137
diff changeset
   214
  || Scan.succeed ("thy", "ML_Context.the_context ()"));
22137
8134eb5f4501 added @{theory};
wenzelm
parents: 22095
diff changeset
   215
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   216
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   217
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   218
(** thy operations **)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   219
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   220
(* maintain 'outdated' flag *)
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   221
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   222
local
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   223
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   224
fun is_outdated name =
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   225
  (case lookup_deps name of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   226
    SOME (SOME {outdated, ...}) => outdated
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   227
  | _ => false);
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   228
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   229
fun outdate_thy name =
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   230
  if is_finished name orelse is_outdated name then ()
23939
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   231
  else CRITICAL (fn () =>
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   232
   (change_deps name (Option.map (fn {outdated = _, master, text, parents, files} =>
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   233
    make_deps true master text parents files)); perform Outdate name));
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   234
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   235
fun check_unfinished name =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   236
  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
   237
  else SOME name;
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   238
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   239
in
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   240
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   241
fun touch_thys names =
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19473
diff changeset
   242
  List.app outdate_thy (thy_graph Graph.all_succs (map_filter check_unfinished names));
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   243
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   244
fun touch_thy name = touch_thys [name];
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   245
fun touch_child_thys name = touch_thys (thy_graph Graph.imm_succs name);
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   246
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   247
fun touch_all_thys () = List.app outdate_thy (get_names ());
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   248
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   249
end;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   250
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   251
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   252
(* check 'finished' state *)
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   253
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   254
fun check_unfinished fail name =
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   255
  if known_thy name andalso is_finished name then
7288
21ff5bb68a5c lookup_theory;
wenzelm
parents: 7267
diff changeset
   256
    fail (loader_msg "cannot update finished theory" [name])
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   257
  else ();
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   258
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   259
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   260
(* load_file *)
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   261
7191
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   262
local
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   263
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   264
fun provide path name info (deps as SOME {outdated, master, text, parents, files}) =
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   265
     (if AList.defined (op =) files path then ()
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   266
      else warning (loader_msg "undeclared dependency of theory" [name] ^
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 20664
diff changeset
   267
        " on file: " ^ quote (Path.implode path));
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   268
      SOME (make_deps outdated master text parents (AList.update (op =) (path, SOME info) files)))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   269
  | provide _ _ _ NONE = NONE;
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   270
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   271
fun run_file path =
22095
07875394618e moved ML context stuff to from Context to ML_Context;
wenzelm
parents: 22086
diff changeset
   272
  (case Option.map (Context.theory_name o Context.the_theory) (ML_Context.get_context ()) of
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   273
    NONE => (ThyLoad.load_ml Path.current path; ())
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   274
  | SOME name =>
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   275
      (case lookup_deps name of
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   276
        SOME deps =>
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   277
          change_deps name (provide path name (ThyLoad.load_ml (master_dir' deps) path))
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   278
      | NONE => (ThyLoad.load_ml Path.current path; ())));
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   279
7191
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   280
in
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   281
24057
f42665561801 removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents: 23982
diff changeset
   282
fun load_file time path =
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   283
  if time then
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 20664
diff changeset
   284
    let val name = Path.implode path in
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   285
      timeit (fn () =>
9778
1f6dca5c4bbb replaced writeln by priority;
wenzelm
parents: 9490
diff changeset
   286
       (priority ("\n**** Starting file " ^ quote name ^ " ****");
9036
d9e09ef531dd do not setmp Library.timing;
wenzelm
parents: 8999
diff changeset
   287
        run_file path;
9778
1f6dca5c4bbb replaced writeln by priority;
wenzelm
parents: 9490
diff changeset
   288
        priority ("**** Finished file " ^ quote name ^ " ****\n")))
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   289
    end
24057
f42665561801 removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents: 23982
diff changeset
   290
  else run_file path;
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   291
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 20664
diff changeset
   292
val use = load_file false o Path.explode;
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 20664
diff changeset
   293
val time_use = load_file true o Path.explode;
7191
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   294
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   295
end;
6233
wenzelm
parents: 6219
diff changeset
   296
wenzelm
parents: 6219
diff changeset
   297
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   298
(* load_thy *)
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   299
9490
c2606af9922c tuned msg;
wenzelm
parents: 9451
diff changeset
   300
fun required_by _ [] = ""
c2606af9922c tuned msg;
wenzelm
parents: 9451
diff changeset
   301
  | required_by s initiators = s ^ "(required by " ^ show_path (rev initiators) ^ ")";
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   302
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   303
fun load_thy really ml time initiators dir name =
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   304
  let
9822
dcf5f9886b8f added pretend_use_thy_only;
wenzelm
parents: 9778
diff changeset
   305
    val _ =
dcf5f9886b8f added pretend_use_thy_only;
wenzelm
parents: 9778
diff changeset
   306
      if really then priority ("Loading theory " ^ quote name ^ required_by " " initiators)
dcf5f9886b8f added pretend_use_thy_only;
wenzelm
parents: 9778
diff changeset
   307
      else priority ("Registering theory " ^ quote name);
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   308
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   309
    val (master_path, text, files) =
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   310
      (case get_deps name of
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   311
        SOME {master = SOME ((master_path, _), _), text = text as _ :: _, files, ...} =>
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   312
          (master_path, text, files)
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   313
      | _ => error (loader_msg "corrupted dependency information" [name]));
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   314
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   315
    val _ = touch_thy name;
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   316
    val _ =
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   317
      if really then
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   318
        ThyLoad.load_thy dir name (Position.path master_path) text ml (time orelse ! Output.timing)
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   319
      else ();
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   320
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 20664
diff changeset
   321
    val missing_files = map_filter (fn (path, NONE) => SOME (Path.implode path) | _ => NONE) files;
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   322
    val _ =
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   323
      if null missing_files then ()
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   324
      else warning (loader_msg "unresolved dependencies of theory" [name] ^
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   325
        " on file(s): " ^ commas_quote missing_files);
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   326
  in
23939
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   327
    CRITICAL (fn () =>
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   328
     (change_deps name
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   329
        (Option.map (fn {master, parents, files, ...} => make_deps false master [] parents files));
23939
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   330
      perform Update name))
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   331
  end;
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   332
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   333
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   334
(* require_thy -- checking database entries wrt. the file-system *)
15065
9feac0b7f935 Some changes to allow qualified theory import.
berghofe
parents: 14981
diff changeset
   335
7211
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   336
local
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   337
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   338
fun check_ml master (src_path, info) =
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   339
  let val info' =
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   340
    (case info of NONE => NONE
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   341
    | SOME (_, id) =>
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   342
        (case ThyLoad.check_ml (master_dir master) src_path of NONE => NONE
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   343
        | SOME (path', id') => if id <> id' then NONE else SOME (path', id')))
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   344
  in (src_path, info') end;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   345
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   346
fun check_deps ml strict dir name =
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   347
  (case lookup_deps name of
23893
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   348
    SOME NONE => (true, NONE, get_parents name)
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   349
  | NONE =>
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   350
      let val {master, text, imports = parents, uses = files} = ThyLoad.deps_thy dir name ml
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   351
      in (false, init_deps (SOME master) text parents files, parents) end
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   352
  | SOME (deps as SOME {outdated, master, text, parents, files}) =>
23910
30e1eb0c5b2f added simultaneous use_thys;
wenzelm
parents: 23900
diff changeset
   353
      if not strict andalso can get_theory name then (true, deps, parents)
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   354
      else
23893
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   355
        let val master' = SOME (ThyLoad.check_thy dir name ml) in
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   356
          if master_idents master <> master_idents master'
23893
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   357
          then
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   358
            let val {text = text', imports = parents', uses = files', ...} =
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   359
              ThyLoad.deps_thy dir name ml;
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   360
            in (false, init_deps master' text' parents' files', parents') end
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   361
          else
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   362
            let
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   363
              val checked_files = map (check_ml master') files;
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   364
              val current = not outdated andalso forall (is_some o snd) checked_files;
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   365
              val deps' = SOME (make_deps (not current) master' text parents checked_files);
23893
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   366
            in (current, deps', parents) end
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   367
        end);
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   368
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   369
in
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   370
23974
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   371
fun require_thys really ml time strict keep_strict initiators dir strs tasks =
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   372
  fold_map (require_thy really ml time strict keep_strict initiators dir) strs tasks
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   373
  |>> forall I
23974
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   374
and require_thy really ml time strict keep_strict initiators dir str tasks =
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   375
  let
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 20664
diff changeset
   376
    val path = Path.expand (Path.explode str);
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 20664
diff changeset
   377
    val name = Path.implode (Path.base path);
23893
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   378
    val dir' = Path.append dir (Path.dir path);
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   379
    val _ = member (op =) initiators name andalso error (cycle_msg initiators);
7066
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   380
  in
23974
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   381
    (case try (Graph.get_node (fst tasks)) name of
23982
e3c4c0b9ae05 require_thy/schedule: improved task graph, actually observe dependencies on running tasks;
wenzelm
parents: 23974
diff changeset
   382
      SOME task => (Task.is_finished task, tasks)
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   383
    | NONE =>
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   384
        let
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   385
          val (current, deps, parents) = check_deps ml strict dir' name
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   386
            handle ERROR msg => cat_error msg
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   387
              (loader_msg "the error(s) above occurred while examining theory" [name] ^
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   388
                required_by "\n" initiators);
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   389
          val parent_names = map base_name parents;
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   390
23974
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   391
          val (parents_current, (tasks_graph', tasks_len')) =
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   392
            require_thys true true time (strict andalso keep_strict) keep_strict
23974
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   393
              (name :: initiators) (Path.append dir (master_dir' deps)) parents tasks;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   394
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   395
          val all_current = current andalso parents_current;
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   396
          val thy = if all_current orelse not really then SOME (get_theory name) else NONE;
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   397
          val _ = change_thys (new_deps name parent_names (deps, thy));
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   398
23974
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   399
          val tasks_graph'' = tasks_graph' |> new_deps name parent_names
23982
e3c4c0b9ae05 require_thy/schedule: improved task graph, actually observe dependencies on running tasks;
wenzelm
parents: 23974
diff changeset
   400
           (if all_current then Task.Finished
e3c4c0b9ae05 require_thy/schedule: improved task graph, actually observe dependencies on running tasks;
wenzelm
parents: 23974
diff changeset
   401
            else Task.Task (fn () => load_thy really ml time initiators dir' name));
23974
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   402
          val tasks_len'' = if all_current then tasks_len' else tasks_len' + 1;
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   403
        in (all_current, (tasks_graph'', tasks_len'')) end)
7066
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   404
  end;
6484
3f098b0ec683 use_thy etc.: may specify path prefix, which is temporarily used as load path;
wenzelm
parents: 6389
diff changeset
   405
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   406
end;
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   407
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   408
23982
e3c4c0b9ae05 require_thy/schedule: improved task graph, actually observe dependencies on running tasks;
wenzelm
parents: 23974
diff changeset
   409
(* variations on use_thy -- scheduling required theories *)
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   410
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   411
local
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   412
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   413
fun schedule_seq tasks =
23974
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   414
  Graph.topological_order tasks
23982
e3c4c0b9ae05 require_thy/schedule: improved task graph, actually observe dependencies on running tasks;
wenzelm
parents: 23974
diff changeset
   415
  |> List.app (fn name => (case Graph.get_node tasks name of Task.Task f => f () | _ => ()));
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   416
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   417
fun max_task (task as (_, (Task.Task _, _))) NONE = SOME task
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   418
  | max_task (task as (_, (Task.Task _, m))) (task' as SOME (_, (_, m'))) =
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   419
      if m > m' then SOME task else task'
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   420
  | max_task _ task' = task';
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   421
23982
e3c4c0b9ae05 require_thy/schedule: improved task graph, actually observe dependencies on running tasks;
wenzelm
parents: 23974
diff changeset
   422
fun next_task G =
e3c4c0b9ae05 require_thy/schedule: improved task graph, actually observe dependencies on running tasks;
wenzelm
parents: 23974
diff changeset
   423
  let
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   424
    val tasks = Graph.minimals G |> map (fn name =>
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   425
      (name, (Graph.get_node G name, length (Graph.imm_succs G name))))
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   426
    val finished = filter (Task.is_finished o fst o snd) tasks;
23982
e3c4c0b9ae05 require_thy/schedule: improved task graph, actually observe dependencies on running tasks;
wenzelm
parents: 23974
diff changeset
   427
  in
e3c4c0b9ae05 require_thy/schedule: improved task graph, actually observe dependencies on running tasks;
wenzelm
parents: 23974
diff changeset
   428
    if not (null finished) then next_task (Graph.del_nodes (map fst finished) G)
e3c4c0b9ae05 require_thy/schedule: improved task graph, actually observe dependencies on running tasks;
wenzelm
parents: 23974
diff changeset
   429
    else if null tasks then ((Task.Finished, I), G)
e3c4c0b9ae05 require_thy/schedule: improved task graph, actually observe dependencies on running tasks;
wenzelm
parents: 23974
diff changeset
   430
    else
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   431
      (case fold max_task tasks NONE of
23982
e3c4c0b9ae05 require_thy/schedule: improved task graph, actually observe dependencies on running tasks;
wenzelm
parents: 23974
diff changeset
   432
        NONE => ((Task.Running, I), G)
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   433
      | SOME (name, (task, _)) =>
23982
e3c4c0b9ae05 require_thy/schedule: improved task graph, actually observe dependencies on running tasks;
wenzelm
parents: 23974
diff changeset
   434
          ((task, Graph.del_nodes [name]), Graph.map_node name (K Task.Running) G))
e3c4c0b9ae05 require_thy/schedule: improved task graph, actually observe dependencies on running tasks;
wenzelm
parents: 23974
diff changeset
   435
  end;
23974
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   436
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   437
fun schedule_tasks (tasks, n) =
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   438
  let val m = ! Multithreading.max_threads in
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   439
    if m <= 1 orelse n <= 1 then schedule_seq tasks
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   440
    else if Multithreading.self_critical () then
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   441
     (warning (loader_msg "no multithreading within critical section" []);
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   442
      schedule_seq tasks)
23974
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   443
    else
23982
e3c4c0b9ae05 require_thy/schedule: improved task graph, actually observe dependencies on running tasks;
wenzelm
parents: 23974
diff changeset
   444
      (case Multithreading.schedule (Int.min (m, n)) next_task tasks of
23974
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   445
        [] => ()
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   446
      | exns => raise Exn.EXCEPTIONS (exns, ""))
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   447
  end;
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   448
24057
f42665561801 removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents: 23982
diff changeset
   449
fun gen_use_thy' req dir arg =
23974
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   450
  let val (_, tasks) = req [] dir arg (Graph.empty, 0)
24057
f42665561801 removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents: 23982
diff changeset
   451
  in schedule_tasks tasks end;
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   452
23893
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   453
fun gen_use_thy req str =
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   454
  let val name = base_name str in
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   455
    check_unfinished warning name;
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   456
    gen_use_thy' req Path.current str;
24071
82873bc360c2 marked some CRITICAL sections;
wenzelm
parents: 24068
diff changeset
   457
    CRITICAL (fn () => ML_Context.set_context (SOME (Context.Theory (get_theory name))))
23893
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   458
  end;
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   459
7211
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   460
in
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   461
23893
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   462
val quiet_update_thys    = gen_use_thy' (require_thys true true false true true);
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   463
val pretend_use_thy_only = gen_use_thy' (require_thy false false false true false) Path.current;
23910
30e1eb0c5b2f added simultaneous use_thys;
wenzelm
parents: 23900
diff changeset
   464
val use_thys             = gen_use_thy' (require_thys true true false true false) Path.current;
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   465
23893
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   466
val use_thy              = gen_use_thy (require_thy true true false true false);
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   467
val time_use_thy         = gen_use_thy (require_thy true true true true false);
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   468
val update_thy           = gen_use_thy (require_thy true true false true true);
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   469
7211
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   470
end;
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   471
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   472
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   473
(* remove_thy *)
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   474
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   475
fun remove_thy name =
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   476
  if is_finished name then error (loader_msg "cannot remove finished theory" [name])
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   477
  else
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   478
    let val succs = thy_graph Graph.all_succs [name] in
9778
1f6dca5c4bbb replaced writeln by priority;
wenzelm
parents: 9490
diff changeset
   479
      priority (loader_msg "removing" succs);
23939
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   480
      CRITICAL (fn () => (List.app (perform Remove) succs; change_thys (Graph.del_nodes succs)))
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   481
    end;
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   482
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   483
7066
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   484
(* begin / end theory *)
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   485
17365
a8e19032497d begin_theory: tuned interface, check uses;
wenzelm
parents: 17192
diff changeset
   486
fun check_uses name uses =
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   487
  let val illegal = map (fn ext => Path.ext ext (Path.basic name)) ("" :: ThyLoad.ml_exts) in
17365
a8e19032497d begin_theory: tuned interface, check uses;
wenzelm
parents: 17192
diff changeset
   488
    (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
   489
      NONE => ()
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 20664
diff changeset
   490
    | SOME (path, _) => error ("Illegal use of theory ML file: " ^ quote (Path.implode path)))
17365
a8e19032497d begin_theory: tuned interface, check uses;
wenzelm
parents: 17192
diff changeset
   491
  end;
a8e19032497d begin_theory: tuned interface, check uses;
wenzelm
parents: 17192
diff changeset
   492
23900
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
   493
fun begin_theory name parents uses int =
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   494
  let
23893
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   495
    val parent_names = map base_name parents;
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   496
    val dir = master_dir'' (lookup_deps name);
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   497
    val _ = check_unfinished error name;
23893
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   498
    val _ = if int then quiet_update_thys dir parents else ();
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   499
    (* FIXME tmp *)
24071
82873bc360c2 marked some CRITICAL sections;
wenzelm
parents: 24068
diff changeset
   500
    val _ = CRITICAL (fn () =>
82873bc360c2 marked some CRITICAL sections;
wenzelm
parents: 24068
diff changeset
   501
      ML_Context.set_context (SOME (Context.Theory (get_theory (List.last parent_names)))));
17365
a8e19032497d begin_theory: tuned interface, check uses;
wenzelm
parents: 17192
diff changeset
   502
    val _ = check_uses name uses;
a8e19032497d begin_theory: tuned interface, check uses;
wenzelm
parents: 17192
diff changeset
   503
23900
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
   504
    val theory =
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
   505
      Theory.begin_theory name (map get_theory parent_names)
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
   506
      |> Present.begin_theory dir uses;
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
   507
7952
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
   508
    val deps =
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
   509
      if known_thy name then get_deps name
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   510
      else init_deps NONE [] parents (map #1 uses);
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   511
    val _ = change_thys (new_deps name parent_names (deps, NONE));
9451
5c25ed3c10a0 begin_theory: store *copy* of initial theory;
wenzelm
parents: 9417
diff changeset
   512
23900
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
   513
    val uses_now = map_filter (fn (x, true) => SOME x | _ => NONE) uses;
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
   514
    val ((), theory') =
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
   515
      ML_Context.pass_context (Context.Theory theory) (List.app (load_file false)) uses_now
22086
cf6019fece63 adapted ML context operations;
wenzelm
parents: 21858
diff changeset
   516
      ||> Context.the_theory;
23900
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
   517
  in theory' end;
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   518
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   519
fun end_theory theory =
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   520
  let
16454
af39c6510b86 removed obsolete theory_of_sign, theory_of_thm;
wenzelm
parents: 16047
diff changeset
   521
    val name = Context.theory_name theory;
16504
7c1cb7ce24eb Theory.begin/end_theory;
wenzelm
parents: 16454
diff changeset
   522
    val theory' = Theory.end_theory theory;
23900
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
   523
    val _ = change_thy name (fn (deps, _) => (deps, SOME theory'));
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
   524
  in theory' end;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   525
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   526
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   527
(* finish all theories *)
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   528
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   529
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
   530
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   531
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   532
(* register existing theories *)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   533
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   534
fun register_theory theory =
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   535
  let
16454
af39c6510b86 removed obsolete theory_of_sign, theory_of_thm;
wenzelm
parents: 16047
diff changeset
   536
    val name = Context.theory_name theory;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   537
    val parents = Theory.parents_of theory;
16454
af39c6510b86 removed obsolete theory_of_sign, theory_of_thm;
wenzelm
parents: 16047
diff changeset
   538
    val parent_names = map Context.theory_name parents;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   539
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   540
    fun err txt bads =
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   541
      error (loader_msg txt bads ^ "\ncannot register theory " ^ quote name);
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   542
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   543
    val nonfinished = filter_out is_finished parent_names;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   544
    fun get_variant (x, y_name) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   545
      if Theory.eq_thy (x, get_theory y_name) then NONE
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   546
      else SOME y_name;
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19473
diff changeset
   547
    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
   548
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   549
    fun register G =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   550
      (Graph.new_node (name, (NONE, SOME theory)) G
9327
wenzelm
parents: 9137
diff changeset
   551
        handle Graph.DUP _ => err "duplicate theory entry" [])
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   552
      |> add_deps name parent_names;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   553
  in
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   554
    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
   555
    else if not (null variants) then err "different versions of parent theories" variants
23939
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   556
    else CRITICAL (fn () => (change_thys register; perform Update name))
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   557
  end;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   558
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15633
diff changeset
   559
val _ = register_theory ProtoPure.thy;
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15633
diff changeset
   560
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   561
(*final declarations of this structure*)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   562
val theory = get_theory;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   563
val names = get_names;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   564
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   565
end;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   566
5209
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
   567
structure BasicThyInfo: BASIC_THY_INFO = ThyInfo;
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
   568
open BasicThyInfo;