src/Pure/PIDE/resources.ML
author wenzelm
Thu, 13 Apr 2017 12:19:28 +0200
changeset 65476 a72ae9eb4462
parent 65474 5624e9694915
child 65478 7c40477e0a87
permissions -rw-r--r--
tuned signature (again);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
56208
06cc31dff138 clarifed module name;
wenzelm
parents: 56204
diff changeset
     1
(*  Title:      Pure/PIDE/resources.ML
42002
wenzelm
parents: 41955
diff changeset
     2
    Author:     Makarius
6168
9d5b74068bf9 Theory loader primitives.
wenzelm
parents:
diff changeset
     3
56208
06cc31dff138 clarifed module name;
wenzelm
parents: 56204
diff changeset
     4
Resources for theories and auxiliary files.
6168
9d5b74068bf9 Theory loader primitives.
wenzelm
parents:
diff changeset
     5
*)
9d5b74068bf9 Theory loader primitives.
wenzelm
parents:
diff changeset
     6
56208
06cc31dff138 clarifed module name;
wenzelm
parents: 56204
diff changeset
     7
signature RESOURCES =
6168
9d5b74068bf9 Theory loader primitives.
wenzelm
parents:
diff changeset
     8
sig
65441
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
     9
  val set_session_base:
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    10
    {default_qualifier: string,
65457
2bf0d2fcd506 proper import qualifier for global theories;
wenzelm
parents: 65454
diff changeset
    11
     global_theories: (string * string) list,
65441
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    12
     loaded_theories: (string * string) list,
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    13
     known_theories: (string * string) list} -> unit
65431
4a3e6cda3b94 provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents: 65058
diff changeset
    14
  val reset_session_base: unit -> unit
65441
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    15
  val default_qualifier: unit -> string
65457
2bf0d2fcd506 proper import qualifier for global theories;
wenzelm
parents: 65454
diff changeset
    16
  val global_theory: string -> string option
65471
05e5bffcf1d8 clarified loaded_theories: map to qualified theory name;
wenzelm
parents: 65457
diff changeset
    17
  val loaded_theory: string -> string option
65431
4a3e6cda3b94 provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents: 65058
diff changeset
    18
  val known_theory: string -> Path.T option
37949
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    19
  val master_directory: theory -> Path.T
48927
ef462b5558eb theory def/ref position reports, which enable hyperlinks etc.;
wenzelm
parents: 48924
diff changeset
    20
  val imports_of: theory -> (string * Position.T) list
46737
09ab89658a5d clarified module Thy_Load;
wenzelm
parents: 44478
diff changeset
    21
  val thy_path: Path.T -> Path.T
65445
e9e7f5f5794c more qualifier treatment, but in the end it is still ignored;
wenzelm
parents: 65443
diff changeset
    22
  val theory_qualifier: string -> string
65454
2b22b7d8649f clarified, according to Scala version;
wenzelm
parents: 65445
diff changeset
    23
  val import_name: string -> Path.T -> string ->
2b22b7d8649f clarified, according to Scala version;
wenzelm
parents: 65445
diff changeset
    24
    {node_name: Path.T, master_dir: Path.T, theory_name: string}
48898
9fc880720663 simplified Thy_Load.check_thy (again) -- no need to pass keywords nor find files in body text;
wenzelm
parents: 48897
diff changeset
    25
  val check_thy: Path.T -> string ->
48928
698fb0e27b11 more accurate defining position of theory;
wenzelm
parents: 48927
diff changeset
    26
   {master: Path.T * SHA1.digest, text: string, theory_pos: Position.T,
51293
05b1bbae748d discontinued obsolete 'uses' within theory header;
wenzelm
parents: 51273
diff changeset
    27
    imports: (string * Position.T) list, keywords: Thy_Header.keywords}
54525
wenzelm
parents: 54523
diff changeset
    28
  val parse_files: string -> (theory -> Token.file list) parser
48906
5b192d6b7a54 tuned signature;
wenzelm
parents: 48905
diff changeset
    29
  val provide: Path.T * SHA1.digest -> theory -> theory
5b192d6b7a54 tuned signature;
wenzelm
parents: 48905
diff changeset
    30
  val provide_parse_files: string -> (theory -> Token.file list * theory) parser
54446
31884c67d73a tuned signature;
wenzelm
parents: 53403
diff changeset
    31
  val loaded_files_current: theory -> bool
46938
cda018294515 some support for outer syntax keyword declarations within theory header;
wenzelm
parents: 46811
diff changeset
    32
  val begin_theory: Path.T -> Thy_Header.header -> theory list -> theory
65058
3e9f382fb67e absent timing information means zero, according to 0070053570c4, f235646b1b73;
wenzelm
parents: 63675
diff changeset
    33
  val load_thy: bool -> HTML.symbols -> (Toplevel.transition -> Time.time) -> int ->
61381
ddca85598c65 more explicit HTML.symbols;
wenzelm
parents: 61379
diff changeset
    34
    Path.T -> Thy_Header.header -> Position.T -> string -> theory list ->
ddca85598c65 more explicit HTML.symbols;
wenzelm
parents: 61379
diff changeset
    35
    theory * (unit -> unit) * int
6168
9d5b74068bf9 Theory loader primitives.
wenzelm
parents:
diff changeset
    36
end;
9d5b74068bf9 Theory loader primitives.
wenzelm
parents:
diff changeset
    37
56208
06cc31dff138 clarifed module name;
wenzelm
parents: 56204
diff changeset
    38
structure Resources: RESOURCES =
6168
9d5b74068bf9 Theory loader primitives.
wenzelm
parents:
diff changeset
    39
struct
9d5b74068bf9 Theory loader primitives.
wenzelm
parents:
diff changeset
    40
65431
4a3e6cda3b94 provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents: 65058
diff changeset
    41
(* session base *)
4a3e6cda3b94 provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents: 65058
diff changeset
    42
65441
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    43
val init_session_base =
65445
e9e7f5f5794c more qualifier treatment, but in the end it is still ignored;
wenzelm
parents: 65443
diff changeset
    44
  {default_qualifier = "Draft",
65457
2bf0d2fcd506 proper import qualifier for global theories;
wenzelm
parents: 65454
diff changeset
    45
   global_theories = Symtab.empty: string Symtab.table,
65471
05e5bffcf1d8 clarified loaded_theories: map to qualified theory name;
wenzelm
parents: 65457
diff changeset
    46
   loaded_theories = Symtab.empty: string Symtab.table,
65441
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    47
   known_theories = Symtab.empty: Path.T Symtab.table};
65431
4a3e6cda3b94 provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents: 65058
diff changeset
    48
65441
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    49
val global_session_base =
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    50
  Synchronized.var "Sessions.base" init_session_base;
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    51
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    52
fun set_session_base {default_qualifier, global_theories, loaded_theories, known_theories} =
65431
4a3e6cda3b94 provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents: 65058
diff changeset
    53
  Synchronized.change global_session_base
65441
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    54
    (fn _ =>
65445
e9e7f5f5794c more qualifier treatment, but in the end it is still ignored;
wenzelm
parents: 65443
diff changeset
    55
      {default_qualifier =
e9e7f5f5794c more qualifier treatment, but in the end it is still ignored;
wenzelm
parents: 65443
diff changeset
    56
        if default_qualifier <> "" then default_qualifier
e9e7f5f5794c more qualifier treatment, but in the end it is still ignored;
wenzelm
parents: 65443
diff changeset
    57
        else #default_qualifier init_session_base,
65457
2bf0d2fcd506 proper import qualifier for global theories;
wenzelm
parents: 65454
diff changeset
    58
       global_theories = Symtab.make global_theories,
65471
05e5bffcf1d8 clarified loaded_theories: map to qualified theory name;
wenzelm
parents: 65457
diff changeset
    59
       loaded_theories = Symtab.make loaded_theories,
65441
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    60
       known_theories = Symtab.make (map (apsnd Path.explode) known_theories)});
65431
4a3e6cda3b94 provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents: 65058
diff changeset
    61
4a3e6cda3b94 provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents: 65058
diff changeset
    62
fun reset_session_base () =
65441
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    63
  Synchronized.change global_session_base (K init_session_base);
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    64
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    65
fun get_session_base f = f (Synchronized.value global_session_base);
65431
4a3e6cda3b94 provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents: 65058
diff changeset
    66
65441
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    67
fun default_qualifier () = get_session_base #default_qualifier;
65457
2bf0d2fcd506 proper import qualifier for global theories;
wenzelm
parents: 65454
diff changeset
    68
fun global_theory a = Symtab.lookup (get_session_base #global_theories) a;
65441
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    69
fun loaded_theory a = Symtab.lookup (get_session_base #loaded_theories) a;
9425e4d8bdb6 more session_base information in ML;
wenzelm
parents: 65433
diff changeset
    70
fun known_theory a = Symtab.lookup (get_session_base #known_theories) a;
65431
4a3e6cda3b94 provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents: 65058
diff changeset
    71
4a3e6cda3b94 provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents: 65058
diff changeset
    72
37949
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    73
(* manage source files *)
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    74
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    75
type files =
40741
17d6293a1e26 moved file identification to thy_load.ML (where it is actually used);
wenzelm
parents: 40625
diff changeset
    76
 {master_dir: Path.T,  (*master directory of theory source*)
48927
ef462b5558eb theory def/ref position reports, which enable hyperlinks etc.;
wenzelm
parents: 48924
diff changeset
    77
  imports: (string * Position.T) list,  (*source specification of imports*)
48896
bb1f461a7815 simplified Thy_Load.provide: do not store full path;
wenzelm
parents: 48888
diff changeset
    78
  provided: (Path.T * SHA1.digest) list};  (*source path, digest*)
37949
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    79
48886
9604c6563226 discontinued separate list of required files -- maintain only provided files as they occur at runtime;
wenzelm
parents: 48881
diff changeset
    80
fun make_files (master_dir, imports, provided): files =
9604c6563226 discontinued separate list of required files -- maintain only provided files as they occur at runtime;
wenzelm
parents: 48881
diff changeset
    81
 {master_dir = master_dir, imports = imports, provided = provided};
37949
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    82
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    83
structure Files = Theory_Data
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    84
(
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    85
  type T = files;
48886
9604c6563226 discontinued separate list of required files -- maintain only provided files as they occur at runtime;
wenzelm
parents: 48881
diff changeset
    86
  val empty = make_files (Path.current, [], []);
37949
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    87
  fun extend _ = empty;
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    88
  fun merge _ = empty;
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    89
);
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    90
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    91
fun map_files f =
48886
9604c6563226 discontinued separate list of required files -- maintain only provided files as they occur at runtime;
wenzelm
parents: 48881
diff changeset
    92
  Files.map (fn {master_dir, imports, provided} =>
9604c6563226 discontinued separate list of required files -- maintain only provided files as they occur at runtime;
wenzelm
parents: 48881
diff changeset
    93
    make_files (f (master_dir, imports, provided)));
37949
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    94
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    95
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    96
val master_directory = #master_dir o Files.get;
41548
bd0bebf93fa6 Thy_Load.begin_theory: maintain source specification of imports;
wenzelm
parents: 41414
diff changeset
    97
val imports_of = #imports o Files.get;
37949
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
    98
48888
wenzelm
parents: 48887
diff changeset
    99
fun put_deps master_dir imports = map_files (fn _ => (master_dir, imports, []));
37949
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
   100
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
   101
54525
wenzelm
parents: 54523
diff changeset
   102
(* theory files *)
wenzelm
parents: 54523
diff changeset
   103
wenzelm
parents: 54523
diff changeset
   104
val thy_path = Path.ext "thy";
48869
wenzelm
parents: 48868
diff changeset
   105
65445
e9e7f5f5794c more qualifier treatment, but in the end it is still ignored;
wenzelm
parents: 65443
diff changeset
   106
fun theory_qualifier theory =
65457
2bf0d2fcd506 proper import qualifier for global theories;
wenzelm
parents: 65454
diff changeset
   107
  (case global_theory theory of
2bf0d2fcd506 proper import qualifier for global theories;
wenzelm
parents: 65454
diff changeset
   108
    SOME qualifier => qualifier
2bf0d2fcd506 proper import qualifier for global theories;
wenzelm
parents: 65454
diff changeset
   109
  | NONE => Long_Name.qualifier theory);
65445
e9e7f5f5794c more qualifier treatment, but in the end it is still ignored;
wenzelm
parents: 65443
diff changeset
   110
65476
a72ae9eb4462 tuned signature (again);
wenzelm
parents: 65474
diff changeset
   111
fun theory_name qualifier theory0 =
65471
05e5bffcf1d8 clarified loaded_theories: map to qualified theory name;
wenzelm
parents: 65457
diff changeset
   112
  (case loaded_theory theory0 of
05e5bffcf1d8 clarified loaded_theories: map to qualified theory name;
wenzelm
parents: 65457
diff changeset
   113
    SOME theory => (true, theory)
05e5bffcf1d8 clarified loaded_theories: map to qualified theory name;
wenzelm
parents: 65457
diff changeset
   114
  | NONE =>
65474
5624e9694915 tuned according to Scala version;
wenzelm
parents: 65471
diff changeset
   115
      let val theory =
65471
05e5bffcf1d8 clarified loaded_theories: map to qualified theory name;
wenzelm
parents: 65457
diff changeset
   116
        if Long_Name.is_qualified theory0 orelse is_some (global_theory theory0)
05e5bffcf1d8 clarified loaded_theories: map to qualified theory name;
wenzelm
parents: 65457
diff changeset
   117
          orelse true (* FIXME *) then theory0
65474
5624e9694915 tuned according to Scala version;
wenzelm
parents: 65471
diff changeset
   118
        else Long_Name.qualify qualifier theory0
5624e9694915 tuned according to Scala version;
wenzelm
parents: 65471
diff changeset
   119
      in (false, theory) end);
65471
05e5bffcf1d8 clarified loaded_theories: map to qualified theory name;
wenzelm
parents: 65457
diff changeset
   120
65454
2b22b7d8649f clarified, according to Scala version;
wenzelm
parents: 65445
diff changeset
   121
fun import_name qualifier dir s =
65476
a72ae9eb4462 tuned signature (again);
wenzelm
parents: 65474
diff changeset
   122
  (case theory_name qualifier (Thy_Header.import_name s) of
65474
5624e9694915 tuned according to Scala version;
wenzelm
parents: 65471
diff changeset
   123
    (true, theory) =>
5624e9694915 tuned according to Scala version;
wenzelm
parents: 65471
diff changeset
   124
      {node_name = Path.basic theory, master_dir = Path.current, theory_name = theory}
5624e9694915 tuned according to Scala version;
wenzelm
parents: 65471
diff changeset
   125
  | (false, theory) =>
5624e9694915 tuned according to Scala version;
wenzelm
parents: 65471
diff changeset
   126
      let val node_name =
65471
05e5bffcf1d8 clarified loaded_theories: map to qualified theory name;
wenzelm
parents: 65457
diff changeset
   127
        (case known_theory theory of
05e5bffcf1d8 clarified loaded_theories: map to qualified theory name;
wenzelm
parents: 65457
diff changeset
   128
          SOME node_name => node_name
65474
5624e9694915 tuned according to Scala version;
wenzelm
parents: 65471
diff changeset
   129
        | NONE => File.full_path dir (thy_path (Path.expand (Path.explode s))))
5624e9694915 tuned according to Scala version;
wenzelm
parents: 65471
diff changeset
   130
      in {node_name = node_name, master_dir = Path.dir node_name, theory_name = theory} end);
65443
dccbfc715904 provide Resources.import_name in ML, similar to Scala version;
wenzelm
parents: 65442
diff changeset
   131
48878
5e850e6fa3c3 tuned errors;
wenzelm
parents: 48877
diff changeset
   132
fun check_file dir file = File.check_file (File.full_path dir file);
5e850e6fa3c3 tuned errors;
wenzelm
parents: 48877
diff changeset
   133
54525
wenzelm
parents: 54523
diff changeset
   134
fun check_thy dir thy_name =
wenzelm
parents: 54523
diff changeset
   135
  let
65433
a260181505c1 refer to known_theory;
wenzelm
parents: 65431
diff changeset
   136
    val thy_base_name = Long_Name.base_name thy_name;
a260181505c1 refer to known_theory;
wenzelm
parents: 65431
diff changeset
   137
    val master_file =
a260181505c1 refer to known_theory;
wenzelm
parents: 65431
diff changeset
   138
      (case known_theory thy_name of
65442
1ca6d8a2a00d clarified;
wenzelm
parents: 65441
diff changeset
   139
        SOME known_path => check_file Path.current known_path
1ca6d8a2a00d clarified;
wenzelm
parents: 65441
diff changeset
   140
      | NONE => check_file dir (thy_path (Path.basic thy_base_name)));
54525
wenzelm
parents: 54523
diff changeset
   141
    val text = File.read master_file;
wenzelm
parents: 54523
diff changeset
   142
wenzelm
parents: 54523
diff changeset
   143
    val {name = (name, pos), imports, keywords} =
wenzelm
parents: 54523
diff changeset
   144
      Thy_Header.read (Path.position master_file) text;
65433
a260181505c1 refer to known_theory;
wenzelm
parents: 65431
diff changeset
   145
    val _ =
a260181505c1 refer to known_theory;
wenzelm
parents: 65431
diff changeset
   146
      thy_base_name <> name andalso
a260181505c1 refer to known_theory;
wenzelm
parents: 65431
diff changeset
   147
        error ("Bad theory name " ^ quote name ^
65442
1ca6d8a2a00d clarified;
wenzelm
parents: 65441
diff changeset
   148
          " for file " ^ Path.print (Path.base master_file) ^ Position.here pos);
54525
wenzelm
parents: 54523
diff changeset
   149
  in
wenzelm
parents: 54523
diff changeset
   150
   {master = (master_file, SHA1.digest text), text = text, theory_pos = pos,
wenzelm
parents: 54523
diff changeset
   151
    imports = imports, keywords = keywords}
wenzelm
parents: 54523
diff changeset
   152
  end;
wenzelm
parents: 54523
diff changeset
   153
wenzelm
parents: 54523
diff changeset
   154
54526
92961f196d9e load files that are not provided by PIDE blobs;
wenzelm
parents: 54525
diff changeset
   155
(* load files *)
48898
9fc880720663 simplified Thy_Load.check_thy (again) -- no need to pass keywords nor find files in body text;
wenzelm
parents: 48897
diff changeset
   156
9fc880720663 simplified Thy_Load.check_thy (again) -- no need to pass keywords nor find files in body text;
wenzelm
parents: 48897
diff changeset
   157
fun parse_files cmd =
9fc880720663 simplified Thy_Load.check_thy (again) -- no need to pass keywords nor find files in body text;
wenzelm
parents: 48897
diff changeset
   158
  Scan.ahead Parse.not_eof -- Parse.path >> (fn (tok, name) => fn thy =>
9fc880720663 simplified Thy_Load.check_thy (again) -- no need to pass keywords nor find files in body text;
wenzelm
parents: 48897
diff changeset
   159
    (case Token.get_files tok of
54526
92961f196d9e load files that are not provided by PIDE blobs;
wenzelm
parents: 54525
diff changeset
   160
      [] =>
92961f196d9e load files that are not provided by PIDE blobs;
wenzelm
parents: 54525
diff changeset
   161
        let
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   162
          val keywords = Thy_Header.get_keywords thy;
54526
92961f196d9e load files that are not provided by PIDE blobs;
wenzelm
parents: 54525
diff changeset
   163
          val master_dir = master_directory thy;
55708
f4b114070675 tuned signature;
wenzelm
parents: 55614
diff changeset
   164
          val pos = Token.pos_of tok;
58923
cb9b69cca999 more explicit Keyword.keywords;
wenzelm
parents: 58918
diff changeset
   165
          val src_paths = Keyword.command_files keywords cmd (Path.explode name);
54526
92961f196d9e load files that are not provided by PIDE blobs;
wenzelm
parents: 54525
diff changeset
   166
        in map (Command.read_file master_dir pos) src_paths end
54520
cee77d2e9582 release file errors at runtime: Command.eval instead of Command.read;
wenzelm
parents: 54519
diff changeset
   167
    | files => map Exn.release files));
48869
wenzelm
parents: 48868
diff changeset
   168
48906
5b192d6b7a54 tuned signature;
wenzelm
parents: 48905
diff changeset
   169
fun provide (src_path, id) =
5b192d6b7a54 tuned signature;
wenzelm
parents: 48905
diff changeset
   170
  map_files (fn (master_dir, imports, provided) =>
5b192d6b7a54 tuned signature;
wenzelm
parents: 48905
diff changeset
   171
    if AList.defined (op =) provided src_path then
5b192d6b7a54 tuned signature;
wenzelm
parents: 48905
diff changeset
   172
      error ("Duplicate use of source file: " ^ Path.print src_path)
5b192d6b7a54 tuned signature;
wenzelm
parents: 48905
diff changeset
   173
    else (master_dir, imports, (src_path, id) :: provided));
5b192d6b7a54 tuned signature;
wenzelm
parents: 48905
diff changeset
   174
5b192d6b7a54 tuned signature;
wenzelm
parents: 48905
diff changeset
   175
fun provide_parse_files cmd =
5b192d6b7a54 tuned signature;
wenzelm
parents: 48905
diff changeset
   176
  parse_files cmd >> (fn files => fn thy =>
5b192d6b7a54 tuned signature;
wenzelm
parents: 48905
diff changeset
   177
    let
5b192d6b7a54 tuned signature;
wenzelm
parents: 48905
diff changeset
   178
      val fs = files thy;
55788
67699e08e969 store blobs / inlined files as separate text lines: smaller values are more healthy for the Poly/ML RTS and allow implicit sharing;
wenzelm
parents: 55708
diff changeset
   179
      val thy' = fold (fn {src_path, digest, ...} => provide (src_path, digest)) fs thy;
48906
5b192d6b7a54 tuned signature;
wenzelm
parents: 48905
diff changeset
   180
    in (fs, thy') end);
5b192d6b7a54 tuned signature;
wenzelm
parents: 48905
diff changeset
   181
43702
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43700
diff changeset
   182
fun load_file thy src_path =
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43700
diff changeset
   183
  let
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43700
diff changeset
   184
    val full_path = check_file (master_directory thy) src_path;
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43700
diff changeset
   185
    val text = File.read full_path;
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43700
diff changeset
   186
    val id = SHA1.digest text;
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43700
diff changeset
   187
  in ((full_path, id), text) end;
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43700
diff changeset
   188
54446
31884c67d73a tuned signature;
wenzelm
parents: 53403
diff changeset
   189
fun loaded_files_current thy =
48886
9604c6563226 discontinued separate list of required files -- maintain only provided files as they occur at runtime;
wenzelm
parents: 48881
diff changeset
   190
  #provided (Files.get thy) |>
48896
bb1f461a7815 simplified Thy_Load.provide: do not store full path;
wenzelm
parents: 48888
diff changeset
   191
    forall (fn (src_path, id) =>
43702
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43700
diff changeset
   192
      (case try (load_file thy) src_path of
37949
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
   193
        NONE => false
48886
9604c6563226 discontinued separate list of required files -- maintain only provided files as they occur at runtime;
wenzelm
parents: 48881
diff changeset
   194
      | SOME ((_, id'), _) => id = id'));
37952
f6c40213675b Thy_Load.check_loaded via Theory.at_end;
wenzelm
parents: 37950
diff changeset
   195
37949
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 37943
diff changeset
   196
54525
wenzelm
parents: 54523
diff changeset
   197
(* load theory *)
37977
3ceccd415145 simplified/clarified theory loader: more explicit task management, kill old versions at start, commit results only in the very end, non-optional master dependency, do not store text in deps;
wenzelm
parents: 37952
diff changeset
   198
51294
0850d43cb355 discontinued obsolete header "files" -- these are loaded explicitly after exploring dependencies;
wenzelm
parents: 51293
diff changeset
   199
fun begin_theory master_dir {name, imports, keywords} parents =
37977
3ceccd415145 simplified/clarified theory loader: more explicit task management, kill old versions at start, commit results only in the very end, non-optional master dependency, do not store text in deps;
wenzelm
parents: 37952
diff changeset
   200
  Theory.begin_theory name parents
48888
wenzelm
parents: 48887
diff changeset
   201
  |> put_deps master_dir imports
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   202
  |> Thy_Header.add_keywords keywords;
37977
3ceccd415145 simplified/clarified theory loader: more explicit task management, kill old versions at start, commit results only in the very end, non-optional master dependency, do not store text in deps;
wenzelm
parents: 37952
diff changeset
   203
58923
cb9b69cca999 more explicit Keyword.keywords;
wenzelm
parents: 58918
diff changeset
   204
fun excursion keywords master_dir last_timing init elements =
46959
cdc791910460 defer actual parsing of command spans and thus allow new commands to be used in the same theory where defined;
wenzelm
parents: 46958
diff changeset
   205
  let
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   206
    fun prepare_span st span =
57905
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 56803
diff changeset
   207
      Command_Span.content span
59689
7968c57ea240 simplified Command.resolve_files in ML, using blobs_index from Scala;
wenzelm
parents: 59123
diff changeset
   208
      |> Command.read keywords (Command.read_thy st) master_dir init ([], ~1)
51268
fcc4b89a600d simplified Outer_Syntax.read_span: internalized Toplevel.is_ignored;
wenzelm
parents: 51228
diff changeset
   209
      |> (fn tr => Toplevel.put_timing (last_timing tr) tr);
51217
65ab2c4f4c32 support for prescient timing information within command transactions;
wenzelm
parents: 50201
diff changeset
   210
51268
fcc4b89a600d simplified Outer_Syntax.read_span: internalized Toplevel.is_ignored;
wenzelm
parents: 51228
diff changeset
   211
    fun element_result span_elem (st, _) =
46959
cdc791910460 defer actual parsing of command spans and thus allow new commands to be used in the same theory where defined;
wenzelm
parents: 46958
diff changeset
   212
      let
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   213
        val elem = Thy_Syntax.map_element (prepare_span st) span_elem;
58923
cb9b69cca999 more explicit Keyword.keywords;
wenzelm
parents: 58918
diff changeset
   214
        val (results, st') = Toplevel.element_result keywords elem st;
51273
d54ee0cad2ab clarified Toplevel.element_result: scheduling policies happen here;
wenzelm
parents: 51268
diff changeset
   215
        val pos' = Toplevel.pos_of (Thy_Syntax.last_element elem);
51268
fcc4b89a600d simplified Outer_Syntax.read_span: internalized Toplevel.is_ignored;
wenzelm
parents: 51228
diff changeset
   216
      in (results, (st', pos')) end;
46959
cdc791910460 defer actual parsing of command spans and thus allow new commands to be used in the same theory where defined;
wenzelm
parents: 46958
diff changeset
   217
cdc791910460 defer actual parsing of command spans and thus allow new commands to be used in the same theory where defined;
wenzelm
parents: 46958
diff changeset
   218
    val (results, (end_state, end_pos)) =
cdc791910460 defer actual parsing of command spans and thus allow new commands to be used in the same theory where defined;
wenzelm
parents: 46958
diff changeset
   219
      fold_map element_result elements (Toplevel.toplevel, Position.none);
cdc791910460 defer actual parsing of command spans and thus allow new commands to be used in the same theory where defined;
wenzelm
parents: 46958
diff changeset
   220
cdc791910460 defer actual parsing of command spans and thus allow new commands to be used in the same theory where defined;
wenzelm
parents: 46958
diff changeset
   221
    val thy = Toplevel.end_theory end_pos end_state;
51273
d54ee0cad2ab clarified Toplevel.element_result: scheduling policies happen here;
wenzelm
parents: 51268
diff changeset
   222
  in (results, thy) end;
46959
cdc791910460 defer actual parsing of command spans and thus allow new commands to be used in the same theory where defined;
wenzelm
parents: 46958
diff changeset
   223
61381
ddca85598c65 more explicit HTML.symbols;
wenzelm
parents: 61379
diff changeset
   224
fun load_thy document symbols last_timing update_time master_dir header text_pos text parents =
43712
3c2c912af2ef moved Outer_Syntax.load_thy to Thy_Load.load_thy;
wenzelm
parents: 43702
diff changeset
   225
  let
58918
8d36bc5eaed3 simplified keyword kinds;
wenzelm
parents: 58904
diff changeset
   226
    val (name, _) = #name header;
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   227
    val keywords =
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   228
      fold (curry Keyword.merge_keywords o Thy_Header.get_keywords) parents
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   229
        (Keyword.add_keywords (#keywords header) Keyword.empty_keywords);
43712
3c2c912af2ef moved Outer_Syntax.load_thy to Thy_Load.load_thy;
wenzelm
parents: 43702
diff changeset
   230
59083
88b0b1f28adc tuned signature;
wenzelm
parents: 58934
diff changeset
   231
    val toks = Token.explode keywords text_pos text;
57905
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 56803
diff changeset
   232
    val spans = Outer_Syntax.parse_spans toks;
58923
cb9b69cca999 more explicit Keyword.keywords;
wenzelm
parents: 58918
diff changeset
   233
    val elements = Thy_Syntax.parse_elements keywords spans;
43712
3c2c912af2ef moved Outer_Syntax.load_thy to Thy_Load.load_thy;
wenzelm
parents: 43702
diff changeset
   234
54456
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   235
    fun init () =
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   236
      begin_theory master_dir header parents
f4b1440d9880 simplified HTML theory presentation;
wenzelm
parents: 54455
diff changeset
   237
      |> Present.begin_theory update_time
61381
ddca85598c65 more explicit HTML.symbols;
wenzelm
parents: 61379
diff changeset
   238
        (fn () => implode (map (HTML.present_span symbols keywords) spans));
43712
3c2c912af2ef moved Outer_Syntax.load_thy to Thy_Load.load_thy;
wenzelm
parents: 43702
diff changeset
   239
54526
92961f196d9e load files that are not provided by PIDE blobs;
wenzelm
parents: 54525
diff changeset
   240
    val (results, thy) =
58849
ef7700ecce83 discontinued pointless option: timing is always on (overall theory only);
wenzelm
parents: 58741
diff changeset
   241
      cond_timeit true ("theory " ^ quote name)
58923
cb9b69cca999 more explicit Keyword.keywords;
wenzelm
parents: 58918
diff changeset
   242
        (fn () => excursion keywords master_dir last_timing init elements);
43712
3c2c912af2ef moved Outer_Syntax.load_thy to Thy_Load.load_thy;
wenzelm
parents: 43702
diff changeset
   243
51331
e7fab0b5dbe7 join all proofs before scheduling present phase (ordered according to weight);
wenzelm
parents: 51326
diff changeset
   244
    fun present () =
e7fab0b5dbe7 join all proofs before scheduling present phase (ordered according to weight);
wenzelm
parents: 51326
diff changeset
   245
      let
51332
8707df0b0255 refined parallel_proofs = 2: fork whole Isar sub-proofs, not just terminal ones;
wenzelm
parents: 51331
diff changeset
   246
        val res = filter_out (Toplevel.is_ignored o #1) (maps Toplevel.join_results results);
51331
e7fab0b5dbe7 join all proofs before scheduling present phase (ordered according to weight);
wenzelm
parents: 51326
diff changeset
   247
      in
51556
7ada6dfa9ab5 more liberal handling of skipped proofs;
wenzelm
parents: 51423
diff changeset
   248
        if exists (Toplevel.is_skipped_proof o #2) res then
7ada6dfa9ab5 more liberal handling of skipped proofs;
wenzelm
parents: 51423
diff changeset
   249
          warning ("Cannot present theory with skipped proofs: " ^ quote name)
7ada6dfa9ab5 more liberal handling of skipped proofs;
wenzelm
parents: 51423
diff changeset
   250
        else
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   251
          let val tex_source = Thy_Output.present_thy thy res toks |> Buffer.content;
54458
96ccc8972fc7 prefer explicit "document" flag -- eliminated stateful Present.no_document;
wenzelm
parents: 54456
diff changeset
   252
          in if document then Present.theory_output name tex_source else () end
51331
e7fab0b5dbe7 join all proofs before scheduling present phase (ordered according to weight);
wenzelm
parents: 51326
diff changeset
   253
      end;
43712
3c2c912af2ef moved Outer_Syntax.load_thy to Thy_Load.load_thy;
wenzelm
parents: 43702
diff changeset
   254
51331
e7fab0b5dbe7 join all proofs before scheduling present phase (ordered according to weight);
wenzelm
parents: 51326
diff changeset
   255
  in (thy, present, size text) end;
43712
3c2c912af2ef moved Outer_Syntax.load_thy to Thy_Load.load_thy;
wenzelm
parents: 43702
diff changeset
   256
42002
wenzelm
parents: 41955
diff changeset
   257
56135
efa24d31e595 added ML antiquotation @{path};
wenzelm
parents: 56134
diff changeset
   258
(* antiquotations *)
49244
fb669aff821e formal markup for @{file} (for hyperlinks etc.) -- interpret path wrt. master directory as usual;
wenzelm
parents: 48992
diff changeset
   259
56135
efa24d31e595 added ML antiquotation @{path};
wenzelm
parents: 56134
diff changeset
   260
local
efa24d31e595 added ML antiquotation @{path};
wenzelm
parents: 56134
diff changeset
   261
63669
256fc20716f2 clarified antiquotations;
wenzelm
parents: 61381
diff changeset
   262
fun err msg pos = error (msg ^ Position.here pos);
256fc20716f2 clarified antiquotations;
wenzelm
parents: 61381
diff changeset
   263
63675
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   264
fun check_path check_file ctxt dir (name, pos) =
54705
0dff3326d12a provide @{file_unchecked} in Isabelle/Pure;
wenzelm
parents: 54526
diff changeset
   265
  let
56034
1c59b555ac4a some Markup.language_path to prevent completion of symbols (notably "~") -- always "delimited" for simplicity in contrast to 42ac3cfb89f6;
wenzelm
parents: 55882
diff changeset
   266
    val _ = Context_Position.report ctxt pos Markup.language_path;
1c59b555ac4a some Markup.language_path to prevent completion of symbols (notably "~") -- always "delimited" for simplicity in contrast to 42ac3cfb89f6;
wenzelm
parents: 55882
diff changeset
   267
63669
256fc20716f2 clarified antiquotations;
wenzelm
parents: 61381
diff changeset
   268
    val path = Path.append dir (Path.explode name) handle ERROR msg => err msg pos;
256fc20716f2 clarified antiquotations;
wenzelm
parents: 61381
diff changeset
   269
    val _ = Path.expand path handle ERROR msg => err msg pos;
56134
4a7a07c01857 clarified Path.smart_implode;
wenzelm
parents: 56034
diff changeset
   270
    val _ = Context_Position.report ctxt pos (Markup.path (Path.smart_implode path));
63669
256fc20716f2 clarified antiquotations;
wenzelm
parents: 61381
diff changeset
   271
    val _ =
256fc20716f2 clarified antiquotations;
wenzelm
parents: 61381
diff changeset
   272
      (case check_file of
256fc20716f2 clarified antiquotations;
wenzelm
parents: 61381
diff changeset
   273
        NONE => path
256fc20716f2 clarified antiquotations;
wenzelm
parents: 61381
diff changeset
   274
      | SOME check => (check path handle ERROR msg => err msg pos));
63675
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   275
  in path end;
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   276
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   277
fun document_antiq check_file ctxt (name, pos) =
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   278
  let
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   279
    val dir = master_directory (Proof_Context.theory_of ctxt);
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   280
    val _ = check_path check_file ctxt dir (name, pos);
54705
0dff3326d12a provide @{file_unchecked} in Isabelle/Pure;
wenzelm
parents: 54526
diff changeset
   281
  in
0dff3326d12a provide @{file_unchecked} in Isabelle/Pure;
wenzelm
parents: 54526
diff changeset
   282
    space_explode "/" name
58716
23a380cc45f4 official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents: 57918
diff changeset
   283
    |> map Latex.output_ascii
23a380cc45f4 official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents: 57918
diff changeset
   284
    |> space_implode (Latex.output_ascii "/" ^ "\\discretionary{}{}{}")
58741
6e7b009e6d94 clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents: 58716
diff changeset
   285
    |> enclose "\\isatt{" "}"
54705
0dff3326d12a provide @{file_unchecked} in Isabelle/Pure;
wenzelm
parents: 54526
diff changeset
   286
  end;
0dff3326d12a provide @{file_unchecked} in Isabelle/Pure;
wenzelm
parents: 54526
diff changeset
   287
63675
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   288
fun ML_antiq check_file ctxt (name, pos) =
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   289
  let val path = check_path check_file ctxt Path.current (name, pos);
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   290
  in "Path.explode " ^ ML_Syntax.print_string (Path.implode path) end;
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   291
56135
efa24d31e595 added ML antiquotation @{path};
wenzelm
parents: 56134
diff changeset
   292
in
efa24d31e595 added ML antiquotation @{path};
wenzelm
parents: 56134
diff changeset
   293
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 52788
diff changeset
   294
val _ = Theory.setup
63669
256fc20716f2 clarified antiquotations;
wenzelm
parents: 61381
diff changeset
   295
 (Thy_Output.antiquotation @{binding path} (Scan.lift (Parse.position Parse.path))
63675
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   296
    (document_antiq NONE o #context) #>
63669
256fc20716f2 clarified antiquotations;
wenzelm
parents: 61381
diff changeset
   297
  Thy_Output.antiquotation @{binding file} (Scan.lift (Parse.position Parse.path))
63675
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   298
    (document_antiq (SOME File.check_file) o #context) #>
63669
256fc20716f2 clarified antiquotations;
wenzelm
parents: 61381
diff changeset
   299
  Thy_Output.antiquotation @{binding dir} (Scan.lift (Parse.position Parse.path))
63675
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   300
    (document_antiq (SOME File.check_dir) o #context) #>
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   301
  ML_Antiquotation.value @{binding path}
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   302
    (Args.context -- Scan.lift (Parse.position Parse.path)
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   303
      >> uncurry (ML_antiq NONE)) #>
63669
256fc20716f2 clarified antiquotations;
wenzelm
parents: 61381
diff changeset
   304
  ML_Antiquotation.value @{binding file}
63675
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   305
    (Args.context -- Scan.lift (Parse.position Parse.path)
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   306
      >> uncurry (ML_antiq (SOME File.check_file))) #>
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   307
  ML_Antiquotation.value @{binding dir}
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   308
    (Args.context -- Scan.lift (Parse.position Parse.path)
e217525d6b64 uniform ML and document antiquotations;
wenzelm
parents: 63673
diff changeset
   309
      >> uncurry (ML_antiq (SOME File.check_dir))));
49244
fb669aff821e formal markup for @{file} (for hyperlinks etc.) -- interpret path wrt. master directory as usual;
wenzelm
parents: 48992
diff changeset
   310
6168
9d5b74068bf9 Theory loader primitives.
wenzelm
parents:
diff changeset
   311
end;
56135
efa24d31e595 added ML antiquotation @{path};
wenzelm
parents: 56134
diff changeset
   312
efa24d31e595 added ML antiquotation @{path};
wenzelm
parents: 56134
diff changeset
   313
end;