author | wenzelm |
Sat, 16 Dec 2017 16:46:01 +0100 | |
changeset 67215 | 03d0c958d65a |
parent 67214 | 87038a574d09 |
child 67217 | 53867014e299 |
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 |
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
|
10 |
val init_session_base: |
65532 | 11 |
{global_theories: (string * string) list, |
66712 | 12 |
loaded_theories: string list, |
65441 | 13 |
known_theories: (string * 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
|
14 |
val finish_session_base: unit -> unit |
65457 | 15 |
val global_theory: string -> string option |
66712 | 16 |
val loaded_theory: string -> bool |
65431
4a3e6cda3b94
provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents:
65058
diff
changeset
|
17 |
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
|
18 |
val master_directory: theory -> Path.T |
48927
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
wenzelm
parents:
48924
diff
changeset
|
19 |
val imports_of: theory -> (string * Position.T) list |
65505 | 20 |
val begin_theory: Path.T -> Thy_Header.header -> theory list -> theory |
46737 | 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 |
67215 | 23 |
val import_name: string -> Path.T -> string -> |
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 | 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 | 28 |
val parse_files: string -> (theory -> Token.file list) parser |
48906 | 29 |
val provide: Path.T * SHA1.digest -> theory -> theory |
30 |
val provide_parse_files: string -> (theory -> Token.file list * theory) parser |
|
54446 | 31 |
val loaded_files_current: theory -> bool |
67209 | 32 |
val check_path: Proof.context -> Path.T -> string * Position.T -> Path.T |
33 |
val check_file: Proof.context -> Path.T -> string * Position.T -> Path.T |
|
34 |
val check_dir: Proof.context -> Path.T -> string * Position.T -> Path.T |
|
6168 | 35 |
end; |
36 |
||
56208 | 37 |
structure Resources: RESOURCES = |
6168 | 38 |
struct |
39 |
||
65431
4a3e6cda3b94
provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents:
65058
diff
changeset
|
40 |
(* session base *) |
4a3e6cda3b94
provide session base for "isabelle build" and "isabelle console" ML process;
wenzelm
parents:
65058
diff
changeset
|
41 |
|
65532 | 42 |
val default_qualifier = "Draft"; |
43 |
||
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
|
44 |
val empty_session_base = |
65532 | 45 |
{global_theories = Symtab.empty: string Symtab.table, |
66712 | 46 |
loaded_theories = Symtab.empty: unit Symtab.table, |
65441 | 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 | 49 |
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
|
50 |
Synchronized.var "Sessions.base" empty_session_base; |
65441 | 51 |
|
65532 | 52 |
fun init_session_base {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 | 54 |
(fn _ => |
65532 | 55 |
{global_theories = Symtab.make global_theories, |
66712 | 56 |
loaded_theories = Symtab.make_set loaded_theories, |
65441 | 57 |
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
|
58 |
|
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
|
59 |
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
|
60 |
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
|
61 |
(fn {global_theories, loaded_theories, ...} => |
65532 | 62 |
{global_theories = global_theories, |
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
|
63 |
loaded_theories = loaded_theories, |
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
|
64 |
known_theories = #known_theories empty_session_base}); |
65441 | 65 |
|
66 |
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
|
67 |
|
65457 | 68 |
fun global_theory a = Symtab.lookup (get_session_base #global_theories) a; |
66712 | 69 |
fun loaded_theory a = Symtab.defined (get_session_base #loaded_theories) a; |
65441 | 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 |
|
65505 | 99 |
fun begin_theory master_dir {name, imports, keywords} parents = |
100 |
Theory.begin_theory name parents |
|
101 |
|> map_files (fn _ => (master_dir, imports, [])) |
|
102 |
|> 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
|
103 |
|
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents:
37943
diff
changeset
|
104 |
|
54525 | 105 |
(* theory files *) |
106 |
||
107 |
val thy_path = Path.ext "thy"; |
|
48869 | 108 |
|
65445
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65443
diff
changeset
|
109 |
fun theory_qualifier theory = |
65457 | 110 |
(case global_theory theory of |
111 |
SOME qualifier => qualifier |
|
112 |
| NONE => Long_Name.qualifier theory); |
|
65445
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65443
diff
changeset
|
113 |
|
66712 | 114 |
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
|
115 |
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
|
116 |
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
|
117 |
else Long_Name.qualify qualifier theory; |
65471
05e5bffcf1d8
clarified loaded_theories: map to qualified theory name;
wenzelm
parents:
65457
diff
changeset
|
118 |
|
65454 | 119 |
fun import_name qualifier dir s = |
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
|
120 |
let val theory = theory_name qualifier (Thy_Header.import_name s) in |
67215 | 121 |
if loaded_theory theory |
122 |
then {node_name = Path.basic theory, master_dir = Path.current, theory_name = 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
|
123 |
else |
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
66771
diff
changeset
|
124 |
let |
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
66771
diff
changeset
|
125 |
val node_name = |
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
66771
diff
changeset
|
126 |
(case known_theory theory of |
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
66771
diff
changeset
|
127 |
SOME node_name => node_name |
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
66771
diff
changeset
|
128 |
| NONE => |
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
66771
diff
changeset
|
129 |
if Thy_Header.is_base_name s andalso Long_Name.is_qualified s |
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
66771
diff
changeset
|
130 |
then Path.explode s |
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
66771
diff
changeset
|
131 |
else File.full_path dir (thy_path (Path.expand (Path.explode s)))); |
67215 | 132 |
in {node_name = node_name, master_dir = Path.dir node_name, theory_name = theory} end |
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
|
133 |
end; |
65443
dccbfc715904
provide Resources.import_name in ML, similar to Scala version;
wenzelm
parents:
65442
diff
changeset
|
134 |
|
48878 | 135 |
fun check_file dir file = File.check_file (File.full_path dir file); |
136 |
||
54525 | 137 |
fun check_thy dir thy_name = |
138 |
let |
|
65433 | 139 |
val thy_base_name = Long_Name.base_name thy_name; |
140 |
val master_file = |
|
141 |
(case known_theory thy_name of |
|
65442 | 142 |
SOME known_path => check_file Path.current known_path |
143 |
| NONE => check_file dir (thy_path (Path.basic thy_base_name))); |
|
54525 | 144 |
val text = File.read master_file; |
145 |
||
146 |
val {name = (name, pos), imports, keywords} = |
|
147 |
Thy_Header.read (Path.position master_file) text; |
|
65433 | 148 |
val _ = |
149 |
thy_base_name <> name andalso |
|
150 |
error ("Bad theory name " ^ quote name ^ |
|
65442 | 151 |
" for file " ^ Path.print (Path.base master_file) ^ Position.here pos); |
54525 | 152 |
in |
153 |
{master = (master_file, SHA1.digest text), text = text, theory_pos = pos, |
|
154 |
imports = imports, keywords = keywords} |
|
155 |
end; |
|
156 |
||
157 |
||
54526 | 158 |
(* 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
|
159 |
|
9fc880720663
simplified Thy_Load.check_thy (again) -- no need to pass keywords nor find files in body text;
wenzelm
parents:
48897
diff
changeset
|
160 |
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
|
161 |
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
|
162 |
(case Token.get_files tok of |
54526 | 163 |
[] => |
164 |
let |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
165 |
val keywords = Thy_Header.get_keywords thy; |
54526 | 166 |
val master_dir = master_directory thy; |
55708 | 167 |
val pos = Token.pos_of tok; |
58923 | 168 |
val src_paths = Keyword.command_files keywords cmd (Path.explode name); |
54526 | 169 |
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
|
170 |
| files => map Exn.release files)); |
48869 | 171 |
|
48906 | 172 |
fun provide (src_path, id) = |
173 |
map_files (fn (master_dir, imports, provided) => |
|
174 |
if AList.defined (op =) provided src_path then |
|
175 |
error ("Duplicate use of source file: " ^ Path.print src_path) |
|
176 |
else (master_dir, imports, (src_path, id) :: provided)); |
|
177 |
||
178 |
fun provide_parse_files cmd = |
|
179 |
parse_files cmd >> (fn files => fn thy => |
|
180 |
let |
|
181 |
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
|
182 |
val thy' = fold (fn {src_path, digest, ...} => provide (src_path, digest)) fs thy; |
48906 | 183 |
in (fs, thy') end); |
184 |
||
43702
24fb44c1086a
more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents:
43700
diff
changeset
|
185 |
fun load_file thy src_path = |
24fb44c1086a
more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents:
43700
diff
changeset
|
186 |
let |
24fb44c1086a
more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents:
43700
diff
changeset
|
187 |
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
|
188 |
val text = File.read full_path; |
24fb44c1086a
more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents:
43700
diff
changeset
|
189 |
val id = SHA1.digest text; |
24fb44c1086a
more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents:
43700
diff
changeset
|
190 |
in ((full_path, id), text) end; |
24fb44c1086a
more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents:
43700
diff
changeset
|
191 |
|
54446 | 192 |
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
|
193 |
#provided (Files.get thy) |> |
48896
bb1f461a7815
simplified Thy_Load.provide: do not store full path;
wenzelm
parents:
48888
diff
changeset
|
194 |
forall (fn (src_path, id) => |
43702
24fb44c1086a
more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents:
43700
diff
changeset
|
195 |
(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
|
196 |
NONE => false |
48886
9604c6563226
discontinued separate list of required files -- maintain only provided files as they occur at runtime;
wenzelm
parents:
48881
diff
changeset
|
197 |
| SOME ((_, id'), _) => id = id')); |
37952 | 198 |
|
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
|
199 |
|
56135 | 200 |
(* antiquotations *) |
49244
fb669aff821e
formal markup for @{file} (for hyperlinks etc.) -- interpret path wrt. master directory as usual;
wenzelm
parents:
48992
diff
changeset
|
201 |
|
56135 | 202 |
local |
203 |
||
67214 | 204 |
fun gen_check check_file ctxt dir (name, pos) = |
54705 | 205 |
let |
67214 | 206 |
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
|
207 |
|
67214 | 208 |
val _ = Context_Position.report ctxt pos Markup.language_path; |
209 |
val path = Path.append dir (Path.explode name) handle ERROR msg => err msg; |
|
210 |
val _ = Path.expand path handle ERROR msg => err msg; |
|
56134 | 211 |
val _ = Context_Position.report ctxt pos (Markup.path (Path.smart_implode path)); |
67214 | 212 |
val _ = check_file path handle ERROR msg => err msg; |
63675 | 213 |
in path end; |
214 |
||
67209 | 215 |
fun document_antiq check ctxt (name, pos) = |
63675 | 216 |
let |
217 |
val dir = master_directory (Proof_Context.theory_of ctxt); |
|
67209 | 218 |
val _ = check ctxt dir (name, pos); |
54705 | 219 |
in |
220 |
space_explode "/" name |
|
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
57918
diff
changeset
|
221 |
|> map Latex.output_ascii |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
57918
diff
changeset
|
222 |
|> space_implode (Latex.output_ascii "/" ^ "\\discretionary{}{}{}") |
58741
6e7b009e6d94
clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents:
58716
diff
changeset
|
223 |
|> enclose "\\isatt{" "}" |
54705 | 224 |
end; |
225 |
||
67209 | 226 |
fun ML_antiq check ctxt (name, pos) = |
227 |
let val path = check ctxt Path.current (name, pos); |
|
63675 | 228 |
in "Path.explode " ^ ML_Syntax.print_string (Path.implode path) end; |
229 |
||
56135 | 230 |
in |
231 |
||
67214 | 232 |
val check_path = gen_check I; |
233 |
val check_file = gen_check File.check_file; |
|
234 |
val check_dir = gen_check File.check_dir; |
|
67209 | 235 |
|
53171 | 236 |
val _ = Theory.setup |
67147 | 237 |
(Thy_Output.antiquotation \<^binding>\<open>path\<close> (Scan.lift (Parse.position Parse.path)) |
67209 | 238 |
(document_antiq check_path o #context) #> |
67147 | 239 |
Thy_Output.antiquotation \<^binding>\<open>file\<close> (Scan.lift (Parse.position Parse.path)) |
67209 | 240 |
(document_antiq check_file o #context) #> |
67147 | 241 |
Thy_Output.antiquotation \<^binding>\<open>dir\<close> (Scan.lift (Parse.position Parse.path)) |
67209 | 242 |
(document_antiq check_dir o #context) #> |
67147 | 243 |
ML_Antiquotation.value \<^binding>\<open>path\<close> |
67209 | 244 |
(Args.context -- Scan.lift (Parse.position Parse.path) >> uncurry (ML_antiq check_path)) #> |
67147 | 245 |
ML_Antiquotation.value \<^binding>\<open>file\<close> |
67209 | 246 |
(Args.context -- Scan.lift (Parse.position Parse.path) >> uncurry (ML_antiq check_file)) #> |
67147 | 247 |
ML_Antiquotation.value \<^binding>\<open>dir\<close> |
67209 | 248 |
(Args.context -- Scan.lift (Parse.position Parse.path) >> uncurry (ML_antiq check_dir))); |
49244
fb669aff821e
formal markup for @{file} (for hyperlinks etc.) -- interpret path wrt. master directory as usual;
wenzelm
parents:
48992
diff
changeset
|
249 |
|
6168 | 250 |
end; |
56135 | 251 |
|
252 |
end; |