src/Pure/Thy/thy_info.ML
author wenzelm
Wed, 08 Oct 2008 20:21:35 +0200
changeset 28533 4e2417eb603e
parent 28449 b6c57eb0fc39
child 28831 23f4928bb7e3
permissions -rw-r--r--
Future.joint_results is already uninterruptible;
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
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
     9
signature THY_INFO =
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    10
sig
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    11
  datatype action = Update | Outdate | Remove
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    12
  val str_of_action: action -> string
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    13
  val add_hook: (action -> string -> unit) -> unit
26614
1f09a22a1027 export get_names (formerly names);
wenzelm
parents: 26494
diff changeset
    14
  val get_names: unit -> string list
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
    15
  val known_thy: string -> bool
7935
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
    16
  val check_known_thy: string -> bool
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
    17
  val if_known_thy: (string -> unit) -> string -> unit
7288
21ff5bb68a5c lookup_theory;
wenzelm
parents: 7267
diff changeset
    18
  val lookup_theory: string -> theory option
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    19
  val get_theory: string -> theory
19547
17f504343d0f added the_theory;
wenzelm
parents: 19482
diff changeset
    20
  val the_theory: string -> theory -> theory
24563
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
    21
  val is_finished: string -> bool
26983
e40f28cdd19b exported master_directory;
wenzelm
parents: 26881
diff changeset
    22
  val master_directory: string -> Path.T
24080
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
    23
  val loaded_files: string -> Path.T list
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
    24
  val get_parents: string -> string list
27495
d2bb5d61b392 moved and renamed IsarCmd.kill_theory to ThyInfo.kill_thy;
wenzelm
parents: 27345
diff changeset
    25
  val touch_thy: string -> unit
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
    26
  val touch_child_thys: string -> unit
25013
bf4f7571407f added generic provide_file;
wenzelm
parents: 24696
diff changeset
    27
  val provide_file: Path.T -> string -> unit
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
    28
  val load_file: bool -> Path.T -> unit
26494
6816ca8b48ef added exec_file;
wenzelm
parents: 26455
diff changeset
    29
  val exec_file: bool -> Path.T -> Context.generic -> Context.generic
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
    30
  val use: string -> unit
24057
f42665561801 removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents: 23982
diff changeset
    31
  val time_use: string -> unit
f42665561801 removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents: 23982
diff changeset
    32
  val use_thys: string list -> unit
f42665561801 removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents: 23982
diff changeset
    33
  val use_thy: string -> unit
f42665561801 removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents: 23982
diff changeset
    34
  val time_use_thy: string -> unit
27495
d2bb5d61b392 moved and renamed IsarCmd.kill_theory to ThyInfo.kill_thy;
wenzelm
parents: 27345
diff changeset
    35
  val remove_thy: string -> unit
d2bb5d61b392 moved and renamed IsarCmd.kill_theory to ThyInfo.kill_thy;
wenzelm
parents: 27345
diff changeset
    36
  val kill_thy: string -> unit
24563
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
    37
  val thy_ord: theory * theory -> order
23900
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
    38
  val begin_theory: string -> string list -> (Path.T * bool) list -> bool -> theory
27579
97ce525f664c end_theory: no result;
wenzelm
parents: 27495
diff changeset
    39
  val end_theory: theory -> unit
24080
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
    40
  val register_thy: string -> unit
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    41
  val register_theory: theory -> unit
24080
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
    42
  val finish: unit -> unit
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    43
end;
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    44
6362
bbbea7fecb93 removed obsolete user data stuff;
wenzelm
parents: 6329
diff changeset
    45
structure ThyInfo: THY_INFO =
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    46
struct
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    47
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    48
(** theory loader actions and hooks **)
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    49
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    50
datatype action = Update | Outdate | Remove;
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    51
val str_of_action = fn Update => "Update" | Outdate => "Outdate" | Remove => "Remove";
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    52
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    53
local
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    54
  val hooks = ref ([]: (action -> string -> unit) list);
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    55
in
23939
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
    56
  fun add_hook f = CRITICAL (fn () => change hooks (cons f));
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
    57
  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
    58
end;
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    59
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    60
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
    61
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    62
(** thy database **)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    63
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    64
(* messages *)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    65
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
    66
fun loader_msg txt [] = "Theory loader: " ^ txt
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
    67
  | 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
    68
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    69
val show_path = space_implode " via " o map quote;
9332
ff3a86a00ea5 tuned cycle_msg;
wenzelm
parents: 9327
diff changeset
    70
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
    71
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    72
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
    73
(* derived graph operations *)
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    74
9327
wenzelm
parents: 9137
diff changeset
    75
fun add_deps name parents G = Graph.add_deps_acyclic (name, parents) G
9332
ff3a86a00ea5 tuned cycle_msg;
wenzelm
parents: 9327
diff changeset
    76
  handle Graph.CYCLES namess => error (cat_lines (map cycle_msg namess));
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    77
7952
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
    78
fun upd_deps name entry G =
19473
wenzelm
parents: 19305
diff changeset
    79
  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
    80
  |> Graph.map_node name (K entry);
3976
wenzelm
parents: 3604
diff changeset
    81
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
    82
fun new_deps name parents entry G =
7952
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
    83
  (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
    84
  |> add_deps name parents;
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    85
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
    86
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    87
(* thy database *)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    88
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
    89
type deps =
24190
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
    90
  {update_time: int,                      (*symbolic time of update; negative value means outdated*)
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
    91
    master: (Path.T * File.ident) option, (*master dependencies for thy file*)
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
    92
    text: string list,                    (*source text for thy*)
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
    93
    parents: string list,                 (*source specification of parents (partially qualified)*)
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
    94
      (*auxiliary files: source path, physical path + identifier*)
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
    95
    files: (Path.T * (Path.T * File.ident) option) list};
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
    96
24151
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
    97
fun make_deps update_time master text parents files : deps =
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
    98
  {update_time = update_time, master = master, text = text, parents = parents, files = files};
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
    99
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   100
fun init_deps master text parents files =
24151
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   101
  SOME (make_deps ~1 master text parents (map (rpair NONE) files));
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   102
24190
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   103
fun master_dir NONE = Path.current
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   104
  | master_dir (SOME (path, _)) = Path.dir path;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   105
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   106
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
   107
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
   108
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   109
fun base_name s = Path.implode (Path.base (Path.explode s));
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   110
7211
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   111
6362
bbbea7fecb93 removed obsolete user data stuff;
wenzelm
parents: 6329
diff changeset
   112
type thy = deps option * theory option;
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
   113
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   114
local
6362
bbbea7fecb93 removed obsolete user data stuff;
wenzelm
parents: 6329
diff changeset
   115
  val database = ref (Graph.empty: thy Graph.T);
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   116
in
6362
bbbea7fecb93 removed obsolete user data stuff;
wenzelm
parents: 6329
diff changeset
   117
  fun get_thys () = ! database;
23939
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   118
  fun change_thys f = CRITICAL (fn () => Library.change database f);
3604
6bf9f09f3d61 Moved functions for theory information storage / retrieval
berghofe
parents:
diff changeset
   119
end;
5209
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
   120
a69fe5a61b6c theory_of renamed to theory (and made public);
wenzelm
parents: 4975
diff changeset
   121
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   122
(* access thy graph *)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   123
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   124
fun thy_graph f x = f (get_thys ()) x;
9417
c4f7c959eaee get_names: topologically sorted;
wenzelm
parents: 9332
diff changeset
   125
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   126
fun get_names () = Graph.topological_order (get_thys ());
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   127
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   128
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   129
(* access thy *)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   130
7935
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
   131
fun lookup_thy name =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   132
  SOME (thy_graph Graph.get_node name) handle Graph.UNDEF _ => NONE;
7935
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
   133
16047
b2bf9a5cde37 tuned pretty_sg;
wenzelm
parents: 15801
diff changeset
   134
val known_thy = is_some o lookup_thy;
7935
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
   135
fun check_known_thy name = known_thy name orelse (warning ("Unknown theory " ^ quote name); false);
ac62465ed06c added check_known_thy, if_known_thy;
wenzelm
parents: 7910
diff changeset
   136
fun if_known_thy f name = if check_known_thy name then f name else ();
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   137
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   138
fun get_thy name =
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   139
  (case lookup_thy name of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   140
    SOME thy => thy
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   141
  | NONE => error (loader_msg "nothing known about theory" [name]));
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   142
23939
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   143
fun change_thy name f = CRITICAL (fn () =>
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   144
  (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
   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
26983
e40f28cdd19b exported master_directory;
wenzelm
parents: 26881
diff changeset
   153
val is_finished = is_none o get_deps;
e40f28cdd19b exported master_directory;
wenzelm
parents: 26881
diff changeset
   154
val master_directory = master_dir' o get_deps;
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, ...} =>
24190
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   160
      (case master of SOME (thy_path, _) => [thy_path] | 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
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   163
fun get_parents name =
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
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
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   168
(* access theory *)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   169
7687
3383b8223e46 fixed lookup_theory;
wenzelm
parents: 7589
diff changeset
   170
fun lookup_theory name =
3383b8223e46 fixed lookup_theory;
wenzelm
parents: 7589
diff changeset
   171
  (case lookup_thy name of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   172
    SOME (_, SOME thy) => SOME thy
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   173
  | _ => NONE);
7288
21ff5bb68a5c lookup_theory;
wenzelm
parents: 7267
diff changeset
   174
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   175
fun get_theory name =
7288
21ff5bb68a5c lookup_theory;
wenzelm
parents: 7267
diff changeset
   176
  (case lookup_theory name of
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   177
    SOME theory => theory
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   178
  | _ => error (loader_msg "undefined theory entry for" [name]));
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   179
19547
17f504343d0f added the_theory;
wenzelm
parents: 19482
diff changeset
   180
fun the_theory name thy =
17f504343d0f added the_theory;
wenzelm
parents: 19482
diff changeset
   181
  if Context.theory_name thy = name then thy
17f504343d0f added the_theory;
wenzelm
parents: 19482
diff changeset
   182
  else get_theory name;
17f504343d0f added the_theory;
wenzelm
parents: 19482
diff changeset
   183
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   184
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   185
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   186
(** thy operations **)
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   187
24080
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   188
(* check state *)
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   189
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   190
fun check_unfinished fail name =
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   191
  if known_thy name andalso is_finished name then
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   192
    fail (loader_msg "cannot update finished theory" [name])
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   193
  else ();
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   194
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   195
fun check_files name =
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   196
  let
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   197
    val files = (case get_deps name of SOME {files, ...} => files | NONE => []);
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   198
    val missing_files = map_filter (fn (path, NONE) => SOME (Path.implode path) | _ => NONE) files;
24190
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   199
    val _ = null missing_files orelse
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   200
      error (loader_msg "unresolved dependencies of theory" [name] ^
24080
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   201
        " on file(s): " ^ commas_quote missing_files);
24190
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   202
  in () end;
24080
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   203
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   204
24151
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   205
(* maintain update_time *)
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   206
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   207
local
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   208
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   209
fun is_outdated name =
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   210
  (case lookup_deps name of
24151
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   211
    SOME (SOME {update_time, ...}) => update_time < 0
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   212
  | _ => false);
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   213
25013
bf4f7571407f added generic provide_file;
wenzelm
parents: 24696
diff changeset
   214
fun unfinished name =
24186
d7f267b806c9 check_deps: really do reload the master text if required;
wenzelm
parents: 24175
diff changeset
   215
  if is_finished name then (warning (loader_msg "tried to touch finished theory" [name]); NONE)
d7f267b806c9 check_deps: really do reload the master text if required;
wenzelm
parents: 24175
diff changeset
   216
  else SOME name;
d7f267b806c9 check_deps: really do reload the master text if required;
wenzelm
parents: 24175
diff changeset
   217
d7f267b806c9 check_deps: really do reload the master text if required;
wenzelm
parents: 24175
diff changeset
   218
in
d7f267b806c9 check_deps: really do reload the master text if required;
wenzelm
parents: 24175
diff changeset
   219
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   220
fun outdate_thy name =
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   221
  if is_finished name orelse is_outdated name then ()
23939
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   222
  else CRITICAL (fn () =>
24151
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   223
   (change_deps name (Option.map (fn {master, text, parents, files, ...} =>
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   224
    make_deps ~1 master text parents files)); perform Outdate name));
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   225
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   226
fun touch_thys names =
25013
bf4f7571407f added generic provide_file;
wenzelm
parents: 24696
diff changeset
   227
  List.app outdate_thy (thy_graph Graph.all_succs (map_filter unfinished names));
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   228
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   229
fun touch_thy name = touch_thys [name];
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   230
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
   231
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   232
end;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   233
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   234
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   235
(* load_file *)
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   236
7191
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   237
local
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   238
24151
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   239
fun provide path name info (deps as SOME {update_time, master, text, parents, files}) =
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   240
     (if AList.defined (op =) files path then ()
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   241
      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
   242
        " on file: " ^ quote (Path.implode path));
24151
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   243
      SOME (make_deps update_time master text parents
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   244
        (AList.update (op =) (path, SOME info) files)))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   245
  | provide _ _ _ NONE = NONE;
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   246
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   247
fun run_file path =
26415
1b624d6e9163 adapted to Context.thread_data interface;
wenzelm
parents: 25994
diff changeset
   248
  (case Option.map (Context.theory_name o Context.the_theory) (Context.thread_data ()) of
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   249
    NONE => (ThyLoad.load_ml Path.current path; ())
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   250
  | SOME name =>
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   251
      (case lookup_deps name of
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   252
        SOME deps =>
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   253
          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
   254
      | NONE => (ThyLoad.load_ml Path.current path; ())));
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   255
7191
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   256
in
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   257
25013
bf4f7571407f added generic provide_file;
wenzelm
parents: 24696
diff changeset
   258
fun provide_file path name =
bf4f7571407f added generic provide_file;
wenzelm
parents: 24696
diff changeset
   259
  let
26983
e40f28cdd19b exported master_directory;
wenzelm
parents: 26881
diff changeset
   260
    val dir = master_directory name;
25013
bf4f7571407f added generic provide_file;
wenzelm
parents: 24696
diff changeset
   261
    val _ = check_unfinished error name;
bf4f7571407f added generic provide_file;
wenzelm
parents: 24696
diff changeset
   262
  in
26983
e40f28cdd19b exported master_directory;
wenzelm
parents: 26881
diff changeset
   263
    (case ThyLoad.check_file dir path of
25013
bf4f7571407f added generic provide_file;
wenzelm
parents: 24696
diff changeset
   264
      SOME path_info => change_deps name (provide path name path_info)
bf4f7571407f added generic provide_file;
wenzelm
parents: 24696
diff changeset
   265
    | NONE => error ("Could not find file " ^ quote (Path.implode path)))
bf4f7571407f added generic provide_file;
wenzelm
parents: 24696
diff changeset
   266
  end;
bf4f7571407f added generic provide_file;
wenzelm
parents: 24696
diff changeset
   267
24057
f42665561801 removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents: 23982
diff changeset
   268
fun load_file time path =
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   269
  if time then
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 20664
diff changeset
   270
    let val name = Path.implode path in
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   271
      timeit (fn () =>
9778
1f6dca5c4bbb replaced writeln by priority;
wenzelm
parents: 9490
diff changeset
   272
       (priority ("\n**** Starting file " ^ quote name ^ " ****");
9036
d9e09ef531dd do not setmp Library.timing;
wenzelm
parents: 8999
diff changeset
   273
        run_file path;
9778
1f6dca5c4bbb replaced writeln by priority;
wenzelm
parents: 9490
diff changeset
   274
        priority ("**** Finished file " ^ quote name ^ " ****\n")))
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   275
    end
24057
f42665561801 removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents: 23982
diff changeset
   276
  else run_file path;
7941
653964583bd3 improved ml handling;
wenzelm
parents: 7935
diff changeset
   277
26494
6816ca8b48ef added exec_file;
wenzelm
parents: 26455
diff changeset
   278
fun exec_file time path = ML_Context.exec (fn () => load_file time path);
6816ca8b48ef added exec_file;
wenzelm
parents: 26455
diff changeset
   279
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 20664
diff changeset
   280
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
   281
val time_use = load_file true o Path.explode;
7191
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   282
fcce2387ad6d added pretend_use;
wenzelm
parents: 7099
diff changeset
   283
end;
6233
wenzelm
parents: 6219
diff changeset
   284
wenzelm
parents: 6219
diff changeset
   285
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   286
(* load_thy *)
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   287
9490
c2606af9922c tuned msg;
wenzelm
parents: 9451
diff changeset
   288
fun required_by _ [] = ""
c2606af9922c tuned msg;
wenzelm
parents: 9451
diff changeset
   289
  | required_by s initiators = s ^ "(required by " ^ show_path (rev initiators) ^ ")";
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   290
27843
0bd68bf0cbb8 load_thy: removed obsolete dir argument;
wenzelm
parents: 27579
diff changeset
   291
fun load_thy time upd_time initiators name =
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   292
  let
24080
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   293
    val _ = priority ("Loading theory " ^ quote name ^ required_by " " initiators);
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   294
    val (pos, text, files) =
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   295
      (case get_deps name of
24190
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   296
        SOME {master = SOME (master_path, _), text as _ :: _, files, ...} =>
26881
bb68f50644a9 renamed Position.path to Path.position;
wenzelm
parents: 26614
diff changeset
   297
          (Path.position master_path, text, files)
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   298
      | _ => error (loader_msg "corrupted dependency information" [name]));
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   299
    val _ = touch_thy name;
24151
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   300
    val _ = CRITICAL (fn () =>
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   301
      change_deps name (Option.map (fn {master, text, parents, files, ...} =>
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   302
        make_deps upd_time master text parents files)));
27843
0bd68bf0cbb8 load_thy: removed obsolete dir argument;
wenzelm
parents: 27579
diff changeset
   303
    val _ = OuterSyntax.load_thy name pos text (time orelse ! Output.timing);
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   304
  in
23939
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   305
    CRITICAL (fn () =>
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   306
     (change_deps name
24151
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   307
        (Option.map (fn {update_time, master, parents, files, ...} =>
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   308
          make_deps update_time master [] parents files));
23939
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   309
      perform Update name))
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   310
  end;
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   311
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   312
24209
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   313
(* scheduling loader tasks *)
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   314
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   315
datatype task = Task of (unit -> unit) | Finished | Running;
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   316
fun task_finished Finished = true | task_finished _ = false;
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   317
28194
c6dad24124f1 added future_scheduler (default false);
wenzelm
parents: 28126
diff changeset
   318
fun future_schedule task_graph =
c6dad24124f1 added future_scheduler (default false);
wenzelm
parents: 28126
diff changeset
   319
  let
c6dad24124f1 added future_scheduler (default false);
wenzelm
parents: 28126
diff changeset
   320
    val tasks = Graph.topological_order task_graph |> map_filter (fn name =>
c6dad24124f1 added future_scheduler (default false);
wenzelm
parents: 28126
diff changeset
   321
      (case Graph.get_node task_graph name of Task body => SOME (name, body) | _ => NONE));
c6dad24124f1 added future_scheduler (default false);
wenzelm
parents: 28126
diff changeset
   322
28449
b6c57eb0fc39 future_schedule: back to one group for all loader tasks;
wenzelm
parents: 28445
diff changeset
   323
    val group = TaskQueue.new_group ();
28194
c6dad24124f1 added future_scheduler (default false);
wenzelm
parents: 28126
diff changeset
   324
    fun future (name, body) tab =
c6dad24124f1 added future_scheduler (default false);
wenzelm
parents: 28126
diff changeset
   325
      let
c6dad24124f1 added future_scheduler (default false);
wenzelm
parents: 28126
diff changeset
   326
        val deps = map_filter (Symtab.lookup tab) (Graph.imm_preds task_graph name);
28304
4b0477452943 future tasks: support boolean priorities (true = high, false = low/irrelevant);
wenzelm
parents: 28292
diff changeset
   327
        val x = Future.future (SOME group) deps true body;
28194
c6dad24124f1 added future_scheduler (default false);
wenzelm
parents: 28126
diff changeset
   328
      in (x, Symtab.update (name, Future.task_of x) tab) end;
28533
4e2417eb603e Future.joint_results is already uninterruptible;
wenzelm
parents: 28449
diff changeset
   329
  in ignore (Exn.release_all (Future.join_results (#1 (fold_map future tasks Symtab.empty)))) end;
28194
c6dad24124f1 added future_scheduler (default false);
wenzelm
parents: 28126
diff changeset
   330
24209
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   331
local
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   332
24230
f63bca3e574e made SML/NJ happy;
wenzelm
parents: 24229
diff changeset
   333
fun max_task (name, (Task body, m)) NONE = SOME (name: string, (body, m))
24229
4b5306c36bd9 schedule_tasks: alphabetical order for equivalent tasks;
wenzelm
parents: 24209
diff changeset
   334
  | max_task (name, (Task body, m)) (task' as SOME (name', (_, m'))) =
4b5306c36bd9 schedule_tasks: alphabetical order for equivalent tasks;
wenzelm
parents: 24209
diff changeset
   335
      if m > m' orelse m = m' andalso name < name' then SOME (name, (body, m)) else task'
24209
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   336
  | max_task _ task' = task';
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   337
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   338
fun next_task G =
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   339
  let
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   340
    val tasks = Graph.minimals G |> map (fn name =>
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   341
      (name, (Graph.get_node G name, length (Graph.imm_succs G name))));
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   342
    val finished = filter (task_finished o fst o snd) tasks;
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   343
  in
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   344
    if not (null finished) then next_task (Graph.del_nodes (map fst finished) G)
28126
7332b623b569 moved Multithreading.task/schedule to Concurrent/schedule.ML
wenzelm
parents: 27843
diff changeset
   345
    else if null tasks then (Schedule.Terminate, G)
24209
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   346
    else
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   347
      (case fold max_task tasks NONE of
28126
7332b623b569 moved Multithreading.task/schedule to Concurrent/schedule.ML
wenzelm
parents: 27843
diff changeset
   348
        NONE => (Schedule.Wait, G)
24209
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   349
      | SOME (name, (body, _)) =>
28126
7332b623b569 moved Multithreading.task/schedule to Concurrent/schedule.ML
wenzelm
parents: 27843
diff changeset
   350
         (Schedule.Task {body = PrintMode.closure body,
25736
68834086f910 scheduling/next_task: PrintMode.closure;
wenzelm
parents: 25030
diff changeset
   351
           cont = Graph.del_nodes [name], fail = K Graph.empty},
24209
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   352
          Graph.map_node name (K Running) G))
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   353
  end;
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   354
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   355
fun schedule_seq tasks =
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   356
  Graph.topological_order tasks
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   357
  |> List.app (fn name => (case Graph.get_node tasks name of Task body => body () | _ => ()));
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   358
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   359
in
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   360
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   361
fun schedule_tasks tasks n =
25775
90525e67ede7 added Multithreading.max_threads_value, which maps a value of 0 to number of CPUs;
wenzelm
parents: 25736
diff changeset
   362
  let val m = Multithreading.max_threads_value () in
28435
97de495414e8 schedule_tasks: single theory is loaded concurrently as well (cf. concurrent Toplevel.excursion);
wenzelm
parents: 28366
diff changeset
   363
    if m <= 1 then schedule_seq tasks
24209
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   364
    else if Multithreading.self_critical () then
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   365
     (warning (loader_msg "no multithreading within critical section" []);
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   366
      schedule_seq tasks)
28194
c6dad24124f1 added future_scheduler (default false);
wenzelm
parents: 28126
diff changeset
   367
    else if ! future_scheduler then future_schedule tasks
28445
526b8adcd117 more robust treatment of Interrupt (cf. exn.ML);
wenzelm
parents: 28435
diff changeset
   368
    else ignore (Exn.release_all (map Exn.Exn (Schedule.schedule (Int.min (m, n)) next_task tasks)))
24209
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   369
  end;
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   370
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   371
end;
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   372
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   373
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   374
(* require_thy -- checking database entries wrt. the file-system *)
15065
9feac0b7f935 Some changes to allow qualified theory import.
berghofe
parents: 14981
diff changeset
   375
7211
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   376
local
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   377
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   378
fun check_ml master (src_path, info) =
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   379
  let val info' =
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   380
    (case info of NONE => NONE
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   381
    | SOME (_, id) =>
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   382
        (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
   383
        | 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
   384
  in (src_path, info') end;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   385
24175
38a15a3a1aad theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents: 24151
diff changeset
   386
fun check_deps dir name =
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   387
  (case lookup_deps name of
23893
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   388
    SOME NONE => (true, NONE, get_parents name)
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   389
  | NONE =>
24190
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   390
      let val {master, text, imports = parents, uses = files} = ThyLoad.deps_thy dir name
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   391
      in (false, init_deps (SOME master) text parents files, parents) end
24151
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   392
  | SOME (deps as SOME {update_time, master, text, parents, files}) =>
24190
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   393
      let
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   394
        val (thy_path, thy_id) = ThyLoad.check_thy dir name;
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   395
        val master' = SOME (thy_path, thy_id);
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   396
      in
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   397
        if Option.map #2 master <> SOME thy_id then
24175
38a15a3a1aad theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents: 24151
diff changeset
   398
          let val {text = text', imports = parents', uses = files', ...} =
24190
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   399
            ThyLoad.deps_thy dir name;
24175
38a15a3a1aad theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents: 24151
diff changeset
   400
          in (false, init_deps master' text' parents' files', parents') end
38a15a3a1aad theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents: 24151
diff changeset
   401
        else
38a15a3a1aad theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents: 24151
diff changeset
   402
          let
24186
d7f267b806c9 check_deps: really do reload the master text if required;
wenzelm
parents: 24175
diff changeset
   403
            val files' = map (check_ml master') files;
24307
434c9fbc1787 check_deps: ensure that theory is actually present, not just update_time > 1;
wenzelm
parents: 24230
diff changeset
   404
            val current = update_time >= 0 andalso can get_theory name
434c9fbc1787 check_deps: ensure that theory is actually present, not just update_time > 1;
wenzelm
parents: 24230
diff changeset
   405
              andalso forall (is_some o snd) files';
24175
38a15a3a1aad theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents: 24151
diff changeset
   406
            val update_time' = if current then update_time else ~1;
25030
7507f590486f require_thy: read_text *after* checking parents
wenzelm
parents: 25013
diff changeset
   407
            val deps' = SOME (make_deps update_time' master' text parents files');
24175
38a15a3a1aad theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents: 24151
diff changeset
   408
          in (current, deps', parents) end
38a15a3a1aad theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents: 24151
diff changeset
   409
      end);
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   410
25030
7507f590486f require_thy: read_text *after* checking parents
wenzelm
parents: 25013
diff changeset
   411
fun read_text (SOME {update_time, master = master as SOME (path, _), text = _, parents, files}) =
7507f590486f require_thy: read_text *after* checking parents
wenzelm
parents: 25013
diff changeset
   412
  SOME (make_deps update_time master (explode (File.read path)) parents files);
7507f590486f require_thy: read_text *after* checking parents
wenzelm
parents: 25013
diff changeset
   413
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   414
in
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   415
24175
38a15a3a1aad theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents: 24151
diff changeset
   416
fun require_thys time initiators dir strs tasks =
24186
d7f267b806c9 check_deps: really do reload the master text if required;
wenzelm
parents: 24175
diff changeset
   417
      fold_map (require_thy time initiators dir) strs tasks |>> forall I
24175
38a15a3a1aad theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents: 24151
diff changeset
   418
and require_thy time initiators dir str tasks =
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   419
  let
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 20664
diff changeset
   420
    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
   421
    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
   422
    val dir' = Path.append dir (Path.dir path);
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   423
    val _ = member (op =) initiators name andalso error (cycle_msg initiators);
7066
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   424
  in
23974
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   425
    (case try (Graph.get_node (fst tasks)) name of
24209
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   426
      SOME task => (task_finished task, tasks)
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   427
    | NONE =>
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   428
        let
24175
38a15a3a1aad theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents: 24151
diff changeset
   429
          val (current, deps, parents) = check_deps dir' name
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   430
            handle ERROR msg => cat_error msg
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   431
              (loader_msg "the error(s) above occurred while examining theory" [name] ^
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   432
                required_by "\n" initiators);
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   433
          val parent_names = map base_name parents;
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   434
23974
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   435
          val (parents_current, (tasks_graph', tasks_len')) =
24175
38a15a3a1aad theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents: 24151
diff changeset
   436
            require_thys time (name :: initiators)
38a15a3a1aad theory loader: removed obsolete update_thy (coincides with use_thy);
wenzelm
parents: 24151
diff changeset
   437
              (Path.append dir (master_dir' deps)) parents tasks;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   438
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   439
          val all_current = current andalso parents_current;
24186
d7f267b806c9 check_deps: really do reload the master text if required;
wenzelm
parents: 24175
diff changeset
   440
          val _ = if not all_current andalso known_thy name then outdate_thy name else ();
25030
7507f590486f require_thy: read_text *after* checking parents
wenzelm
parents: 25013
diff changeset
   441
          val entry =
7507f590486f require_thy: read_text *after* checking parents
wenzelm
parents: 25013
diff changeset
   442
            if all_current then (deps, SOME (get_theory name))
7507f590486f require_thy: read_text *after* checking parents
wenzelm
parents: 25013
diff changeset
   443
            else (read_text deps, NONE);
7507f590486f require_thy: read_text *after* checking parents
wenzelm
parents: 25013
diff changeset
   444
          val _ = change_thys (new_deps name parent_names entry);
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   445
24151
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   446
          val upd_time = serial ();
23974
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   447
          val tasks_graph'' = tasks_graph' |> new_deps name parent_names
24209
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   448
           (if all_current then Finished
27843
0bd68bf0cbb8 load_thy: removed obsolete dir argument;
wenzelm
parents: 27579
diff changeset
   449
            else Task (fn () => load_thy time upd_time initiators name));
23974
16ecf0a5a6bb require_thy: tuned tasks graph, removed visited;
wenzelm
parents: 23967
diff changeset
   450
          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
   451
        in (all_current, (tasks_graph'', tasks_len'')) end)
7066
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   452
  end;
6484
3f098b0ec683 use_thy etc.: may specify path prefix, which is temporarily used as load path;
wenzelm
parents: 6389
diff changeset
   453
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   454
end;
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   455
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   456
24209
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   457
(* use_thy etc. *)
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   458
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   459
local
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   460
24057
f42665561801 removed obsolete Output.ML_errors/toplevel_errors;
wenzelm
parents: 23982
diff changeset
   461
fun gen_use_thy' req dir arg =
24209
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   462
  let val (_, (tasks, n)) = req [] dir arg (Graph.empty, 0)
8a2c8d623e43 schedule: misc cleanup, more precise task model;
wenzelm
parents: 24190
diff changeset
   463
  in schedule_tasks tasks n end;
6241
d3c6184ca6c5 time_use made pervasive;
wenzelm
parents: 6233
diff changeset
   464
23893
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   465
fun gen_use_thy req str =
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   466
  let val name = base_name str in
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   467
    check_unfinished warning name;
25994
d35484265f46 use_thy: do not set implicit ML context anymore;
wenzelm
parents: 25775
diff changeset
   468
    gen_use_thy' req Path.current str
23893
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   469
  end;
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   470
7211
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   471
in
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   472
24186
d7f267b806c9 check_deps: really do reload the master text if required;
wenzelm
parents: 24175
diff changeset
   473
val use_thys_dir = gen_use_thy' (require_thys false);
d7f267b806c9 check_deps: really do reload the master text if required;
wenzelm
parents: 24175
diff changeset
   474
val use_thys = use_thys_dir Path.current;
d7f267b806c9 check_deps: really do reload the master text if required;
wenzelm
parents: 24175
diff changeset
   475
val use_thy = gen_use_thy (require_thy false);
d7f267b806c9 check_deps: really do reload the master text if required;
wenzelm
parents: 24175
diff changeset
   476
val time_use_thy = gen_use_thy (require_thy true);
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   477
7211
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   478
end;
8e4aa9044599 fixed thy_only;
wenzelm
parents: 7191
diff changeset
   479
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   480
27495
d2bb5d61b392 moved and renamed IsarCmd.kill_theory to ThyInfo.kill_thy;
wenzelm
parents: 27345
diff changeset
   481
(* remove theory *)
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   482
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   483
fun remove_thy name =
7910
e54db490c537 added known_thy;
wenzelm
parents: 7892
diff changeset
   484
  if is_finished name then error (loader_msg "cannot remove finished theory" [name])
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   485
  else
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   486
    let val succs = thy_graph Graph.all_succs [name] in
9778
1f6dca5c4bbb replaced writeln by priority;
wenzelm
parents: 9490
diff changeset
   487
      priority (loader_msg "removing" succs);
23939
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   488
      CRITICAL (fn () => (List.app (perform Remove) succs; change_thys (Graph.del_nodes succs)))
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   489
    end;
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   490
27495
d2bb5d61b392 moved and renamed IsarCmd.kill_theory to ThyInfo.kill_thy;
wenzelm
parents: 27345
diff changeset
   491
val kill_thy = if_known_thy remove_thy;
d2bb5d61b392 moved and renamed IsarCmd.kill_theory to ThyInfo.kill_thy;
wenzelm
parents: 27345
diff changeset
   492
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   493
24563
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   494
(* update_time *)
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   495
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   496
structure UpdateTime = TheoryDataFun
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   497
(
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   498
  type T = int;
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   499
  val empty = 0;
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   500
  val copy = I;
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   501
  fun extend _ = empty;
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   502
  fun merge _ _ = empty;
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   503
);
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   504
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   505
val thy_ord = int_ord o pairself UpdateTime.get;
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   506
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   507
7066
febce8eee487 require_thy: fixed performance leak;
wenzelm
parents: 6900
diff changeset
   508
(* begin / end theory *)
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   509
23900
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
   510
fun begin_theory name parents uses int =
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   511
  let
23893
8babfcaaf129 deps: maintain source specification of parents (prevents repeated ThyLoad.deps_thy);
wenzelm
parents: 23886
diff changeset
   512
    val parent_names = map base_name parents;
23886
f40fba467384 simplified ThyLoad interfaces: only one additional directory;
wenzelm
parents: 23871
diff changeset
   513
    val dir = master_dir'' (lookup_deps name);
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   514
    val _ = check_unfinished error name;
24186
d7f267b806c9 check_deps: really do reload the master text if required;
wenzelm
parents: 24175
diff changeset
   515
    val _ = if int then use_thys_dir dir parents else ();
17365
a8e19032497d begin_theory: tuned interface, check uses;
wenzelm
parents: 17192
diff changeset
   516
24151
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   517
    val theory = Theory.begin_theory name (map get_theory parent_names);
23900
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
   518
7952
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
   519
    val deps =
43d3e087688c quiet_update_thy: ml flag;
wenzelm
parents: 7941
diff changeset
   520
      if known_thy name then get_deps name
24068
245b7e68a3bc deps: keep thy source text, avoid reloading;
wenzelm
parents: 24057
diff changeset
   521
      else init_deps NONE [] parents (map #1 uses);
23967
92130b24e87f require_thy: explicit tasks graph;
wenzelm
parents: 23939
diff changeset
   522
    val _ = change_thys (new_deps name parent_names (deps, NONE));
9451
5c25ed3c10a0 begin_theory: store *copy* of initial theory;
wenzelm
parents: 9417
diff changeset
   523
24151
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   524
    val update_time = (case deps of NONE => 0 | SOME {update_time, ...} => update_time);
24563
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   525
    val update_time = if update_time > 0 then update_time else serial ();
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   526
    val theory' = theory
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   527
      |> UpdateTime.put update_time
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   528
      |> Present.begin_theory update_time dir uses;
24151
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   529
23900
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
   530
    val uses_now = map_filter (fn (x, true) => SOME x | _ => NONE) uses;
28292
cad470c69935 begin_theory: Theory.checkpoint for immediate uses ensures that ML evaluation always starts with non-draft @{theory};
wenzelm
parents: 28195
diff changeset
   531
    val theory'' =
cad470c69935 begin_theory: Theory.checkpoint for immediate uses ensures that ML evaluation always starts with non-draft @{theory};
wenzelm
parents: 28195
diff changeset
   532
      fold (fn x => Context.theory_map (exec_file false x) o Theory.checkpoint) uses_now theory';
24151
255f76dcc16b replaced outdated flag by update_time (multithreading-safe presentation order);
wenzelm
parents: 24133
diff changeset
   533
  in theory'' end;
7244
ad714526c23e may_load_file;
wenzelm
parents: 7223
diff changeset
   534
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   535
fun end_theory theory =
7099
8142ccd13963 added update_thy_only;
wenzelm
parents: 7066
diff changeset
   536
  let
16454
af39c6510b86 removed obsolete theory_of_sign, theory_of_thm;
wenzelm
parents: 16047
diff changeset
   537
    val name = Context.theory_name theory;
24190
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   538
    val _ = check_files name;
16504
7c1cb7ce24eb Theory.begin/end_theory;
wenzelm
parents: 16454
diff changeset
   539
    val theory' = Theory.end_theory theory;
23900
b25b1444a246 begin_theory: simplified interface, keep thy info empty until end_theory;
wenzelm
parents: 23893
diff changeset
   540
    val _ = change_thy name (fn (deps, _) => (deps, SOME theory'));
27579
97ce525f664c end_theory: no result;
wenzelm
parents: 27495
diff changeset
   541
  in () end;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   542
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   543
24080
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   544
(* register existing theories *)
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   545
24080
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   546
fun register_thy name =
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   547
  let
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   548
    val _ = priority ("Registering theory " ^ quote name);
24563
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   549
    val thy = get_theory name;
24096
74926cdbf071 register_thy: more sanity checks;
wenzelm
parents: 24080
diff changeset
   550
    val _ = map get_theory (get_parents name);
74926cdbf071 register_thy: more sanity checks;
wenzelm
parents: 24080
diff changeset
   551
    val _ = check_unfinished error name;
24080
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   552
    val _ = touch_thy name;
24190
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   553
    val master = #master (ThyLoad.deps_thy Path.current name);
24563
f2edc70f8962 export is_finished;
wenzelm
parents: 24314
diff changeset
   554
    val upd_time = UpdateTime.get thy;
24080
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   555
  in
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   556
    CRITICAL (fn () =>
24190
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   557
     (change_deps name (Option.map
b400ec231fde discontinued attached ML files;
wenzelm
parents: 24186
diff changeset
   558
       (fn {parents, files, ...} => make_deps upd_time (SOME master) [] parents files));
24080
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   559
      perform Update name))
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   560
  end;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   561
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   562
fun register_theory theory =
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   563
  let
16454
af39c6510b86 removed obsolete theory_of_sign, theory_of_thm;
wenzelm
parents: 16047
diff changeset
   564
    val name = Context.theory_name theory;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   565
    val parents = Theory.parents_of theory;
16454
af39c6510b86 removed obsolete theory_of_sign, theory_of_thm;
wenzelm
parents: 16047
diff changeset
   566
    val parent_names = map Context.theory_name parents;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   567
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   568
    fun err txt bads =
23871
0dd5696f58b6 removed obsolete use/update_thy_only;
wenzelm
parents: 22215
diff changeset
   569
      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
   570
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   571
    val nonfinished = filter_out is_finished parent_names;
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   572
    fun get_variant (x, y_name) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   573
      if Theory.eq_thy (x, get_theory y_name) then NONE
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   574
      else SOME y_name;
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19473
diff changeset
   575
    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
   576
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   577
    fun register G =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15158
diff changeset
   578
      (Graph.new_node (name, (NONE, SOME theory)) G
9327
wenzelm
parents: 9137
diff changeset
   579
        handle Graph.DUP _ => err "duplicate theory entry" [])
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   580
      |> add_deps name parent_names;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   581
  in
6666
be06ed5d0b4c cleaned comments;
wenzelm
parents: 6654
diff changeset
   582
    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
   583
    else if not (null variants) then err "different versions of parent theories" variants
23939
e543359fe8b6 marked some CRITICAL sections;
wenzelm
parents: 23910
diff changeset
   584
    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
   585
  end;
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   586
24080
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   587
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   588
(* finish all theories *)
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   589
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   590
fun finish () = change_thys (Graph.map_nodes (fn (_, entry) => (NONE, entry)));
8c67d869531b added register_thy (replaces pretend_use_thy_only and really flag);
wenzelm
parents: 24071
diff changeset
   591
6211
43d0efafa025 Theory loader database: theory and file dependencies, theory values
wenzelm
parents: 5211
diff changeset
   592
end;