author | wenzelm |
Sun, 15 Nov 2020 17:34:19 +0100 | |
changeset 72613 | d01ea9e3bd2d |
parent 72511 | 460d743010bc |
child 72616 | 217e6cf61453 |
permissions | -rw-r--r-- |
56208 | 1 |
(* Title: Pure/PIDE/resources.ML |
42002 | 2 |
Author: Makarius |
6168 | 3 |
|
56208 | 4 |
Resources for theories and auxiliary files. |
6168 | 5 |
*) |
6 |
||
56208 | 7 |
signature RESOURCES = |
6168 | 8 |
sig |
65532 | 9 |
val default_qualifier: string |
71875 | 10 |
val init_session: |
72103 | 11 |
{session_positions: (string * Properties.T) list, |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70049
diff
changeset
|
12 |
session_directories: (string * string) list, |
72613
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72511
diff
changeset
|
13 |
bibtex_entries: (string * string list) list, |
67493
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67473
diff
changeset
|
14 |
docs: string list, |
67219 | 15 |
global_theories: (string * string) list, |
70712
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
16 |
loaded_theories: string list} -> unit |
65478
7c40477e0a87
clarified init_session_base / finish_session_base: retain some information for plain "isabelle process", without rechecking dependencies as in "isabelle console";
wenzelm
parents:
65476
diff
changeset
|
17 |
val finish_session_base: unit -> unit |
65457 | 18 |
val global_theory: string -> string option |
66712 | 19 |
val loaded_theory: string -> bool |
67219 | 20 |
val check_session: Proof.context -> string * Position.T -> string |
67471 | 21 |
val check_doc: Proof.context -> string * Position.T -> string |
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
|
22 |
val master_directory: theory -> Path.T |
48927
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
wenzelm
parents:
48924
diff
changeset
|
23 |
val imports_of: theory -> (string * Position.T) list |
65505 | 24 |
val begin_theory: Path.T -> Thy_Header.header -> theory list -> theory |
46737 | 25 |
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
|
26 |
val theory_qualifier: string -> string |
72613
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72511
diff
changeset
|
27 |
val theory_bibtex_entries: string -> string list |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70049
diff
changeset
|
28 |
val find_theory_file: string -> Path.T option |
67215 | 29 |
val import_name: string -> Path.T -> string -> |
30 |
{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
|
31 |
val check_thy: Path.T -> string -> |
48928 | 32 |
{master: Path.T * SHA1.digest, text: string, theory_pos: Position.T, |
51293
05b1bbae748d
discontinued obsolete 'uses' within theory header;
wenzelm
parents:
51273
diff
changeset
|
33 |
imports: (string * Position.T) list, keywords: Thy_Header.keywords} |
54525 | 34 |
val parse_files: string -> (theory -> Token.file list) parser |
48906 | 35 |
val provide: Path.T * SHA1.digest -> theory -> theory |
69851 | 36 |
val provide_file: Token.file -> theory -> theory |
48906 | 37 |
val provide_parse_files: string -> (theory -> Token.file list * theory) parser |
54446 | 38 |
val loaded_files_current: theory -> bool |
70049 | 39 |
val check_path: Proof.context -> Path.T option -> string * Position.T -> Path.T |
40 |
val check_file: Proof.context -> Path.T option -> string * Position.T -> Path.T |
|
41 |
val check_dir: Proof.context -> Path.T option -> string * Position.T -> Path.T |
|
6168 | 42 |
end; |
43 |
||
56208 | 44 |
structure Resources: RESOURCES = |
6168 | 45 |
struct |
46 |
||
65431
4a3e6cda3b94
provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents:
65058
diff
changeset
|
47 |
(* session base *) |
4a3e6cda3b94
provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents:
65058
diff
changeset
|
48 |
|
65532 | 49 |
val default_qualifier = "Draft"; |
50 |
||
67493
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67473
diff
changeset
|
51 |
type entry = {pos: Position.T, serial: serial}; |
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67473
diff
changeset
|
52 |
|
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67473
diff
changeset
|
53 |
fun make_entry props : entry = |
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67473
diff
changeset
|
54 |
{pos = Position.of_properties props, serial = serial ()}; |
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67473
diff
changeset
|
55 |
|
65478
7c40477e0a87
clarified init_session_base / finish_session_base: retain some information for plain "isabelle process", without rechecking dependencies as in "isabelle console";
wenzelm
parents:
65476
diff
changeset
|
56 |
val empty_session_base = |
72103 | 57 |
{session_positions = []: (string * entry) list, |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70049
diff
changeset
|
58 |
session_directories = Symtab.empty: Path.T list Symtab.table, |
72613
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72511
diff
changeset
|
59 |
bibtex_entries = Symtab.empty: string list Symtab.table, |
67493
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67473
diff
changeset
|
60 |
docs = []: (string * entry) list, |
67219 | 61 |
global_theories = Symtab.empty: string Symtab.table, |
70712
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
62 |
loaded_theories = Symtab.empty: unit Symtab.table}; |
65431
4a3e6cda3b94
provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents:
65058
diff
changeset
|
63 |
|
65441 | 64 |
val global_session_base = |
65478
7c40477e0a87
clarified init_session_base / finish_session_base: retain some information for plain "isabelle process", without rechecking dependencies as in "isabelle console";
wenzelm
parents:
65476
diff
changeset
|
65 |
Synchronized.var "Sessions.base" empty_session_base; |
65441 | 66 |
|
71875 | 67 |
fun init_session |
72613
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72511
diff
changeset
|
68 |
{session_positions, session_directories, bibtex_entries, docs, |
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72511
diff
changeset
|
69 |
global_theories, loaded_theories} = |
65431
4a3e6cda3b94
provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents:
65058
diff
changeset
|
70 |
Synchronized.change global_session_base |
65441 | 71 |
(fn _ => |
72103 | 72 |
{session_positions = sort_by #1 (map (apsnd make_entry) session_positions), |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70049
diff
changeset
|
73 |
session_directories = |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70049
diff
changeset
|
74 |
fold_rev (fn (dir, name) => Symtab.cons_list (name, Path.explode dir)) |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70049
diff
changeset
|
75 |
session_directories Symtab.empty, |
72613
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72511
diff
changeset
|
76 |
bibtex_entries = Symtab.make bibtex_entries, |
67493
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67473
diff
changeset
|
77 |
docs = sort_by #1 (map (apsnd make_entry o rpair []) docs), |
67219 | 78 |
global_theories = Symtab.make global_theories, |
70712
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
79 |
loaded_theories = Symtab.make_set loaded_theories}); |
65431
4a3e6cda3b94
provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents:
65058
diff
changeset
|
80 |
|
65478
7c40477e0a87
clarified init_session_base / finish_session_base: retain some information for plain "isabelle process", without rechecking dependencies as in "isabelle console";
wenzelm
parents:
65476
diff
changeset
|
81 |
fun finish_session_base () = |
7c40477e0a87
clarified init_session_base / finish_session_base: retain some information for plain "isabelle process", without rechecking dependencies as in "isabelle console";
wenzelm
parents:
65476
diff
changeset
|
82 |
Synchronized.change global_session_base |
7c40477e0a87
clarified init_session_base / finish_session_base: retain some information for plain "isabelle process", without rechecking dependencies as in "isabelle console";
wenzelm
parents:
65476
diff
changeset
|
83 |
(fn {global_theories, loaded_theories, ...} => |
72103 | 84 |
{session_positions = [], |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70049
diff
changeset
|
85 |
session_directories = Symtab.empty, |
72613
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72511
diff
changeset
|
86 |
bibtex_entries = Symtab.empty, |
67493
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67473
diff
changeset
|
87 |
docs = [], |
67219 | 88 |
global_theories = global_theories, |
70712
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
89 |
loaded_theories = loaded_theories}); |
65441 | 90 |
|
91 |
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
|
92 |
|
65457 | 93 |
fun global_theory a = Symtab.lookup (get_session_base #global_theories) a; |
66712 | 94 |
fun loaded_theory a = Symtab.defined (get_session_base #loaded_theories) a; |
65431
4a3e6cda3b94
provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents:
65058
diff
changeset
|
95 |
|
71911 | 96 |
|
71912 | 97 |
fun check_name which kind markup ctxt arg = |
98 |
Completion.check_item kind markup (get_session_base which |> sort_by #1) ctxt arg; |
|
67219 | 99 |
|
71911 | 100 |
val check_session = |
101 |
check_name #session_positions "session" |
|
102 |
(fn (name, {pos, serial}) => |
|
103 |
Markup.entity Markup.sessionN name |
|
104 |
|> Markup.properties (Position.entity_properties_of false serial pos)); |
|
67493
c4e9e0c50487
treat sessions as entities with defining position;
wenzelm
parents:
67473
diff
changeset
|
105 |
|
71911 | 106 |
val check_doc = check_name #docs "documentation" (Markup.doc o #1); |
67471 | 107 |
|
108 |
||
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
|
109 |
(* 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
|
110 |
|
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents:
37943
diff
changeset
|
111 |
type files = |
40741
17d6293a1e26
moved file identification to thy_load.ML (where it is actually used);
wenzelm
parents:
40625
diff
changeset
|
112 |
{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
|
113 |
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
|
114 |
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
|
115 |
|
48886
9604c6563226
discontinued separate list of required files -- maintain only provided files as they occur at runtime;
wenzelm
parents:
48881
diff
changeset
|
116 |
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
|
117 |
{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
|
118 |
|
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents:
37943
diff
changeset
|
119 |
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
|
120 |
( |
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents:
37943
diff
changeset
|
121 |
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
|
122 |
val empty = make_files (Path.current, [], []); |
72045
2c7cfd2f9b6c
more thorough extend/merge, notably for master_dir across Theory.join_theory (e.g. for @{file} antiquotation);
wenzelm
parents:
71912
diff
changeset
|
123 |
val extend = I; |
2c7cfd2f9b6c
more thorough extend/merge, notably for master_dir across Theory.join_theory (e.g. for @{file} antiquotation);
wenzelm
parents:
71912
diff
changeset
|
124 |
fun merge ({master_dir, imports, provided = provided1}, {provided = provided2, ...}) = |
2c7cfd2f9b6c
more thorough extend/merge, notably for master_dir across Theory.join_theory (e.g. for @{file} antiquotation);
wenzelm
parents:
71912
diff
changeset
|
125 |
let val provided' = Library.merge (op =) (provided1, provided2) |
2c7cfd2f9b6c
more thorough extend/merge, notably for master_dir across Theory.join_theory (e.g. for @{file} antiquotation);
wenzelm
parents:
71912
diff
changeset
|
126 |
in make_files (master_dir, imports, provided') end |
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
|
127 |
); |
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents:
37943
diff
changeset
|
128 |
|
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents:
37943
diff
changeset
|
129 |
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
|
130 |
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
|
131 |
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
|
132 |
|
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents:
37943
diff
changeset
|
133 |
|
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents:
37943
diff
changeset
|
134 |
val master_directory = #master_dir o Files.get; |
41548
bd0bebf93fa6
Thy_Load.begin_theory: maintain source specification of imports;
wenzelm
parents:
41414
diff
changeset
|
135 |
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
|
136 |
|
65505 | 137 |
fun begin_theory master_dir {name, imports, keywords} parents = |
138 |
Theory.begin_theory name parents |
|
72162 | 139 |
|> map_files (fn _ => (Path.explode (Path.implode_symbolic master_dir), imports, [])) |
65505 | 140 |
|> Thy_Header.add_keywords keywords; |
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
|
141 |
|
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents:
37943
diff
changeset
|
142 |
|
54525 | 143 |
(* theory files *) |
144 |
||
145 |
val thy_path = Path.ext "thy"; |
|
48869 | 146 |
|
65445
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65443
diff
changeset
|
147 |
fun theory_qualifier theory = |
65457 | 148 |
(case global_theory theory of |
149 |
SOME qualifier => qualifier |
|
150 |
| NONE => Long_Name.qualifier theory); |
|
65445
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65443
diff
changeset
|
151 |
|
66712 | 152 |
fun theory_name qualifier theory = |
67104
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
66771
diff
changeset
|
153 |
if Long_Name.is_qualified theory orelse is_some (global_theory theory) |
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
66771
diff
changeset
|
154 |
then theory |
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
66771
diff
changeset
|
155 |
else Long_Name.qualify qualifier theory; |
65471
05e5bffcf1d8
clarified loaded_theories: map to qualified theory name;
wenzelm
parents:
65457
diff
changeset
|
156 |
|
72613
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72511
diff
changeset
|
157 |
fun theory_bibtex_entries theory = |
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72511
diff
changeset
|
158 |
Symtab.lookup_list (get_session_base #bibtex_entries) (theory_qualifier theory); |
d01ea9e3bd2d
clarified bibtex_entries: refer to overall session structure;
wenzelm
parents:
72511
diff
changeset
|
159 |
|
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70049
diff
changeset
|
160 |
fun find_theory_file thy_name = |
70712
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
161 |
let |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
162 |
val thy_file = thy_path (Path.basic (Long_Name.base_name thy_name)); |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
163 |
val session = theory_qualifier thy_name; |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
164 |
val dirs = Symtab.lookup_list (get_session_base #session_directories) session; |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
165 |
in |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
166 |
dirs |> get_first (fn dir => |
72511
460d743010bc
clarified signature: overloaded "+" for Path.append;
wenzelm
parents:
72162
diff
changeset
|
167 |
let val path = dir + thy_file |
70712
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
168 |
in if File.is_file path then SOME path else NONE end) |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
169 |
end; |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70049
diff
changeset
|
170 |
|
70717
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70712
diff
changeset
|
171 |
fun make_theory_node node_name theory = |
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70712
diff
changeset
|
172 |
{node_name = node_name, master_dir = Path.dir node_name, theory_name = theory}; |
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70712
diff
changeset
|
173 |
|
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70712
diff
changeset
|
174 |
fun loaded_theory_node theory = |
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70712
diff
changeset
|
175 |
{node_name = Path.basic theory, master_dir = Path.current, theory_name = theory}; |
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70712
diff
changeset
|
176 |
|
65454 | 177 |
fun import_name qualifier dir s = |
70717
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70712
diff
changeset
|
178 |
let |
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70712
diff
changeset
|
179 |
val theory = theory_name qualifier (Thy_Header.import_name s); |
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70712
diff
changeset
|
180 |
fun theory_node () = |
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70712
diff
changeset
|
181 |
make_theory_node (File.full_path dir (thy_path (Path.expand (Path.explode s)))) theory; |
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70712
diff
changeset
|
182 |
in |
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70712
diff
changeset
|
183 |
if not (Thy_Header.is_base_name s) then theory_node () |
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70712
diff
changeset
|
184 |
else if loaded_theory theory then loaded_theory_node theory |
67104
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
66771
diff
changeset
|
185 |
else |
70717
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70712
diff
changeset
|
186 |
(case find_theory_file theory of |
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70712
diff
changeset
|
187 |
SOME node_name => make_theory_node node_name theory |
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70712
diff
changeset
|
188 |
| NONE => if Long_Name.is_qualified s then loaded_theory_node theory else theory_node ()) |
67104
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
66771
diff
changeset
|
189 |
end; |
65443
dccbfc715904
provide Resources.import_name in ML, similar to Scala version;
wenzelm
parents:
65442
diff
changeset
|
190 |
|
48878 | 191 |
fun check_file dir file = File.check_file (File.full_path dir file); |
192 |
||
54525 | 193 |
fun check_thy dir thy_name = |
194 |
let |
|
65433 | 195 |
val thy_base_name = Long_Name.base_name thy_name; |
196 |
val master_file = |
|
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70049
diff
changeset
|
197 |
(case find_theory_file thy_name of |
70712
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
198 |
SOME path => check_file Path.current path |
65442 | 199 |
| NONE => check_file dir (thy_path (Path.basic thy_base_name))); |
54525 | 200 |
val text = File.read master_file; |
201 |
||
202 |
val {name = (name, pos), imports, keywords} = |
|
203 |
Thy_Header.read (Path.position master_file) text; |
|
65433 | 204 |
val _ = |
205 |
thy_base_name <> name andalso |
|
206 |
error ("Bad theory name " ^ quote name ^ |
|
65442 | 207 |
" for file " ^ Path.print (Path.base master_file) ^ Position.here pos); |
54525 | 208 |
in |
209 |
{master = (master_file, SHA1.digest text), text = text, theory_pos = pos, |
|
210 |
imports = imports, keywords = keywords} |
|
211 |
end; |
|
212 |
||
213 |
||
54526 | 214 |
(* 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
|
215 |
|
9fc880720663
simplified Thy_Load.check_thy (again) -- no need to pass keywords nor find files in body text;
wenzelm
parents:
48897
diff
changeset
|
216 |
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
|
217 |
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
|
218 |
(case Token.get_files tok of |
54526 | 219 |
[] => |
220 |
let |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
221 |
val keywords = Thy_Header.get_keywords thy; |
54526 | 222 |
val master_dir = master_directory thy; |
55708 | 223 |
val pos = Token.pos_of tok; |
58923 | 224 |
val src_paths = Keyword.command_files keywords cmd (Path.explode name); |
54526 | 225 |
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
|
226 |
| files => map Exn.release files)); |
48869 | 227 |
|
48906 | 228 |
fun provide (src_path, id) = |
229 |
map_files (fn (master_dir, imports, provided) => |
|
230 |
if AList.defined (op =) provided src_path then |
|
231 |
error ("Duplicate use of source file: " ^ Path.print src_path) |
|
232 |
else (master_dir, imports, (src_path, id) :: provided)); |
|
233 |
||
69851 | 234 |
fun provide_file (file: Token.file) = provide (#src_path file, #digest file); |
235 |
||
48906 | 236 |
fun provide_parse_files cmd = |
237 |
parse_files cmd >> (fn files => fn thy => |
|
238 |
let |
|
239 |
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
|
240 |
val thy' = fold (fn {src_path, digest, ...} => provide (src_path, digest)) fs thy; |
48906 | 241 |
in (fs, thy') end); |
242 |
||
43702
24fb44c1086a
more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents:
43700
diff
changeset
|
243 |
fun load_file thy src_path = |
24fb44c1086a
more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents:
43700
diff
changeset
|
244 |
let |
24fb44c1086a
more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents:
43700
diff
changeset
|
245 |
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
|
246 |
val text = File.read full_path; |
24fb44c1086a
more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents:
43700
diff
changeset
|
247 |
val id = SHA1.digest text; |
24fb44c1086a
more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents:
43700
diff
changeset
|
248 |
in ((full_path, id), text) end; |
24fb44c1086a
more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents:
43700
diff
changeset
|
249 |
|
54446 | 250 |
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
|
251 |
#provided (Files.get thy) |> |
48896
bb1f461a7815
simplified Thy_Load.provide: do not store full path;
wenzelm
parents:
48888
diff
changeset
|
252 |
forall (fn (src_path, id) => |
43702
24fb44c1086a
more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents:
43700
diff
changeset
|
253 |
(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
|
254 |
NONE => false |
48886
9604c6563226
discontinued separate list of required files -- maintain only provided files as they occur at runtime;
wenzelm
parents:
48881
diff
changeset
|
255 |
| SOME ((_, id'), _) => id = id')); |
37952 | 256 |
|
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
|
257 |
|
67217 | 258 |
(* formal check *) |
49244
fb669aff821e
formal markup for @{file} (for hyperlinks etc.) -- interpret path wrt. master directory as usual;
wenzelm
parents:
48992
diff
changeset
|
259 |
|
70049 | 260 |
fun formal_check check_file ctxt opt_dir (name, pos) = |
54705 | 261 |
let |
67214 | 262 |
fun err msg = error (msg ^ Position.here pos); |
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
|
263 |
|
67214 | 264 |
val _ = Context_Position.report ctxt pos Markup.language_path; |
70049 | 265 |
val dir = |
266 |
(case opt_dir of |
|
267 |
SOME dir => dir |
|
268 |
| NONE => master_directory (Proof_Context.theory_of ctxt)); |
|
72511
460d743010bc
clarified signature: overloaded "+" for Path.append;
wenzelm
parents:
72162
diff
changeset
|
269 |
val path = dir + Path.explode name handle ERROR msg => err msg; |
67214 | 270 |
val _ = Path.expand path handle ERROR msg => err msg; |
72162 | 271 |
val _ = Context_Position.report ctxt pos (Markup.path (Path.implode_symbolic path)); |
67214 | 272 |
val _ = check_file path handle ERROR msg => err msg; |
63675 | 273 |
in path end; |
274 |
||
67217 | 275 |
val check_path = formal_check I; |
276 |
val check_file = formal_check File.check_file; |
|
277 |
val check_dir = formal_check File.check_dir; |
|
278 |
||
279 |
||
280 |
(* antiquotations *) |
|
281 |
||
282 |
local |
|
283 |
||
70049 | 284 |
fun document_antiq (check: Proof.context -> Path.T option -> string * Position.T -> Path.T) = |
69281 | 285 |
Args.context -- Scan.lift (Parse.position Parse.path) >> (fn (ctxt, (name, pos)) => |
286 |
let |
|
70049 | 287 |
val _ = check ctxt NONE (name, pos); |
71899 | 288 |
val latex = Latex.string (Latex.output_ascii_breakable "/" name); |
289 |
in Latex.enclose_block "\\isatt{" "}" [latex] end); |
|
54705 | 290 |
|
69281 | 291 |
fun ML_antiq check = |
292 |
Args.context -- Scan.lift (Parse.position Parse.path) >> (fn (ctxt, (name, pos)) => |
|
70049 | 293 |
check ctxt (SOME Path.current) (name, pos) |> ML_Syntax.print_path); |
63675 | 294 |
|
56135 | 295 |
in |
296 |
||
53171 | 297 |
val _ = Theory.setup |
69592
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69349
diff
changeset
|
298 |
(Thy_Output.antiquotation_verbatim_embedded \<^binding>\<open>session\<close> |
69349
7cef9e386ffe
more accurate positions for "name" (quoted string) and "embedded" (cartouche): refer to content without delimiters, which is e.g. relevant for systematic selection/renaming of scope groups;
wenzelm
parents:
69289
diff
changeset
|
299 |
(Scan.lift Parse.embedded_position) check_session #> |
69592
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69349
diff
changeset
|
300 |
Thy_Output.antiquotation_verbatim_embedded \<^binding>\<open>doc\<close> |
69349
7cef9e386ffe
more accurate positions for "name" (quoted string) and "embedded" (cartouche): refer to content without delimiters, which is e.g. relevant for systematic selection/renaming of scope groups;
wenzelm
parents:
69289
diff
changeset
|
301 |
(Scan.lift Parse.embedded_position) check_doc #> |
69592
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69349
diff
changeset
|
302 |
Thy_Output.antiquotation_raw_embedded \<^binding>\<open>path\<close> (document_antiq check_path) (K I) #> |
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69349
diff
changeset
|
303 |
Thy_Output.antiquotation_raw_embedded \<^binding>\<open>file\<close> (document_antiq check_file) (K I) #> |
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69349
diff
changeset
|
304 |
Thy_Output.antiquotation_raw_embedded \<^binding>\<open>dir\<close> (document_antiq check_dir) (K I) #> |
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69349
diff
changeset
|
305 |
ML_Antiquotation.value_embedded \<^binding>\<open>path\<close> (ML_antiq check_path) #> |
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69349
diff
changeset
|
306 |
ML_Antiquotation.value_embedded \<^binding>\<open>file\<close> (ML_antiq check_file) #> |
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69349
diff
changeset
|
307 |
ML_Antiquotation.value_embedded \<^binding>\<open>dir\<close> (ML_antiq check_dir) #> |
70015
c8e08d8ffb93
clarified signature: more explicit type Path.binding;
wenzelm
parents:
69851
diff
changeset
|
308 |
ML_Antiquotation.value_embedded \<^binding>\<open>path_binding\<close> |
c8e08d8ffb93
clarified signature: more explicit type Path.binding;
wenzelm
parents:
69851
diff
changeset
|
309 |
(Scan.lift (Parse.position Parse.path) >> |
c8e08d8ffb93
clarified signature: more explicit type Path.binding;
wenzelm
parents:
69851
diff
changeset
|
310 |
(ML_Syntax.print_path_binding o Path.explode_binding)) #> |
69282 | 311 |
ML_Antiquotation.value \<^binding>\<open>master_dir\<close> |
312 |
(Args.theory >> (ML_Syntax.print_path o master_directory))); |
|
49244
fb669aff821e
formal markup for @{file} (for hyperlinks etc.) -- interpret path wrt. master directory as usual;
wenzelm
parents:
48992
diff
changeset
|
313 |
|
6168 | 314 |
end; |
56135 | 315 |
|
316 |
end; |