author | wenzelm |
Sat, 28 Nov 2020 23:28:56 +0100 | |
changeset 72765 | f34f5c057c9e |
parent 72760 | 042180540068 |
child 72772 | a9ef39041114 |
permissions | -rw-r--r-- |
56208 | 1 |
/* Title: Pure/PIDE/resources.scala |
43651
511df47bcadc
some support for theory files within Isabelle/Scala session;
wenzelm
parents:
diff
changeset
|
2 |
Author: Makarius |
511df47bcadc
some support for theory files within Isabelle/Scala session;
wenzelm
parents:
diff
changeset
|
3 |
|
56208 | 4 |
Resources for theories and auxiliary files. |
43651
511df47bcadc
some support for theory files within Isabelle/Scala session;
wenzelm
parents:
diff
changeset
|
5 |
*/ |
511df47bcadc
some support for theory files within Isabelle/Scala session;
wenzelm
parents:
diff
changeset
|
6 |
|
511df47bcadc
some support for theory files within Isabelle/Scala session;
wenzelm
parents:
diff
changeset
|
7 |
package isabelle |
511df47bcadc
some support for theory files within Isabelle/Scala session;
wenzelm
parents:
diff
changeset
|
8 |
|
44953 | 9 |
|
56823
37be55461dbe
more frugal access to theory text via Reader, reduced costs for I/O text decoding;
wenzelm
parents:
56801
diff
changeset
|
10 |
import scala.util.parsing.input.Reader |
48885 | 11 |
|
48409 | 12 |
import java.io.{File => JFile} |
44953 | 13 |
|
14 |
||
65359 | 15 |
class Resources( |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
16 |
val sessions_structure: Sessions.Structure, |
65361 | 17 |
val session_base: Sessions.Base, |
72638
2a7fc87495e0
refer to command_timings/last_timing via resources;
wenzelm
parents:
72637
diff
changeset
|
18 |
val log: Logger = No_Logger, |
2a7fc87495e0
refer to command_timings/last_timing via resources;
wenzelm
parents:
72637
diff
changeset
|
19 |
command_timings: List[Properties.T] = Nil) |
43651
511df47bcadc
some support for theory files within Isabelle/Scala session;
wenzelm
parents:
diff
changeset
|
20 |
{ |
66959 | 21 |
resources => |
64839 | 22 |
|
69255
800b1ce96fce
more general support for Isabelle/PIDE file formats -- less hardwired Bibtex operations;
wenzelm
parents:
69008
diff
changeset
|
23 |
|
72637 | 24 |
/* init session */ |
25 |
||
26 |
def init_session_yxml: String = |
|
27 |
{ |
|
28 |
import XML.Encode._ |
|
29 |
||
30 |
YXML.string_of_body( |
|
31 |
pair(list(pair(string, properties)), |
|
32 |
pair(list(pair(string, string)), |
|
33 |
pair(list(pair(string, string)), |
|
34 |
pair(list(pair(string, list(string))), |
|
72638
2a7fc87495e0
refer to command_timings/last_timing via resources;
wenzelm
parents:
72637
diff
changeset
|
35 |
pair(list(properties), |
72756 | 36 |
pair(list(pair(string, properties)), |
72760
042180540068
clarified protocol: Doc.check at run-time via Scala function;
wenzelm
parents:
72757
diff
changeset
|
37 |
pair(list(pair(string, string)), list(string))))))))( |
72646 | 38 |
(sessions_structure.session_positions, |
39 |
(sessions_structure.dest_session_directories, |
|
40 |
(sessions_structure.session_chapters, |
|
41 |
(sessions_structure.bibtex_entries, |
|
72638
2a7fc87495e0
refer to command_timings/last_timing via resources;
wenzelm
parents:
72637
diff
changeset
|
42 |
(command_timings, |
72756 | 43 |
(Scala.functions.map(fun => (fun.name, fun.position)), |
72646 | 44 |
(session_base.global_theories.toList, |
72760
042180540068
clarified protocol: Doc.check at run-time via Scala function;
wenzelm
parents:
72757
diff
changeset
|
45 |
session_base.loaded_theories.keys))))))))) |
72637 | 46 |
} |
47 |
||
48 |
||
69255
800b1ce96fce
more general support for Isabelle/PIDE file formats -- less hardwired Bibtex operations;
wenzelm
parents:
69008
diff
changeset
|
49 |
/* file formats */ |
800b1ce96fce
more general support for Isabelle/PIDE file formats -- less hardwired Bibtex operations;
wenzelm
parents:
69008
diff
changeset
|
50 |
|
800b1ce96fce
more general support for Isabelle/PIDE file formats -- less hardwired Bibtex operations;
wenzelm
parents:
69008
diff
changeset
|
51 |
def make_theory_name(name: Document.Node.Name): Option[Document.Node.Name] = |
71733 | 52 |
File_Format.registry.get(name).flatMap(_.make_theory_name(resources, name)) |
69255
800b1ce96fce
more general support for Isabelle/PIDE file formats -- less hardwired Bibtex operations;
wenzelm
parents:
69008
diff
changeset
|
53 |
|
800b1ce96fce
more general support for Isabelle/PIDE file formats -- less hardwired Bibtex operations;
wenzelm
parents:
69008
diff
changeset
|
54 |
def make_theory_content(thy_name: Document.Node.Name): Option[String] = |
71733 | 55 |
File_Format.registry.get_theory(thy_name).flatMap(_.make_theory_content(resources, thy_name)) |
69255
800b1ce96fce
more general support for Isabelle/PIDE file formats -- less hardwired Bibtex operations;
wenzelm
parents:
69008
diff
changeset
|
56 |
|
72652 | 57 |
def make_preview(snapshot: Document.Snapshot): Option[Presentation.Preview] = |
71733 | 58 |
File_Format.registry.get(snapshot.node_name).flatMap(_.make_preview(snapshot)) |
69255
800b1ce96fce
more general support for Isabelle/PIDE file formats -- less hardwired Bibtex operations;
wenzelm
parents:
69008
diff
changeset
|
59 |
|
800b1ce96fce
more general support for Isabelle/PIDE file formats -- less hardwired Bibtex operations;
wenzelm
parents:
69008
diff
changeset
|
60 |
def is_hidden(name: Document.Node.Name): Boolean = |
71733 | 61 |
!name.is_theory || name.theory == Sessions.root_name || File_Format.registry.is_theory(name) |
69255
800b1ce96fce
more general support for Isabelle/PIDE file formats -- less hardwired Bibtex operations;
wenzelm
parents:
69008
diff
changeset
|
62 |
|
65250 | 63 |
def thy_path(path: Path): Path = path.ext("thy") |
64 |
||
64839 | 65 |
|
44953 | 66 |
/* file-system operations */ |
67 |
||
68 |
def append(dir: String, source_path: Path): String = |
|
48711
8d381fdef898
need to expand path in order to resolve imports like "~~/src/Tools/Code_Generator";
wenzelm
parents:
48710
diff
changeset
|
69 |
(Path.explode(dir) + source_path).expand.implode |
44953 | 70 |
|
65488 | 71 |
def append(node_name: Document.Node.Name, source_path: Path): String = |
72 |
append(node_name.master_dir, source_path) |
|
73 |
||
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
74 |
def make_theory_node(dir: String, file: Path, theory: String): Document.Node.Name = |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
75 |
{ |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
76 |
val node = append(dir, file) |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
77 |
val master_dir = append(dir, file.dir) |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
78 |
Document.Node.Name(node, master_dir, theory) |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
79 |
} |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
80 |
|
70716 | 81 |
def loaded_theory_node(theory: String): Document.Node.Name = |
82 |
Document.Node.Name(theory, "", theory) |
|
83 |
||
46737 | 84 |
|
64657 | 85 |
/* source files of Isabelle/ML bootstrap */ |
86 |
||
87 |
def source_file(raw_name: String): Option[String] = |
|
88 |
{ |
|
89 |
if (Path.is_wellformed(raw_name)) { |
|
90 |
if (Path.is_valid(raw_name)) { |
|
91 |
def check(p: Path): Option[Path] = if (p.is_file) Some(p) else None |
|
92 |
||
93 |
val path = Path.explode(raw_name) |
|
94 |
val path1 = |
|
95 |
if (path.is_absolute || path.is_current) check(path) |
|
96 |
else { |
|
97 |
check(Path.explode("~~/src/Pure") + path) orElse |
|
98 |
(if (Isabelle_System.getenv("ML_SOURCES") == "") None |
|
99 |
else check(Path.explode("$ML_SOURCES") + path)) |
|
100 |
} |
|
101 |
Some(File.platform_path(path1 getOrElse path)) |
|
102 |
} |
|
103 |
else None |
|
104 |
} |
|
105 |
else Some(raw_name) |
|
106 |
} |
|
107 |
||
108 |
||
46737 | 109 |
/* theory files */ |
110 |
||
66698
5b9dc3f7bcde
prefer sequential file-system access, but parallel parse;
wenzelm
parents:
66697
diff
changeset
|
111 |
def loaded_files(syntax: Outer_Syntax, name: Document.Node.Name): () => List[Path] = |
66695 | 112 |
{ |
66918
ec2b50aeb0dd
more robust treatment of UTF8 in raw byte sources;
wenzelm
parents:
66917
diff
changeset
|
113 |
val (is_utf8, raw_text) = |
ec2b50aeb0dd
more robust treatment of UTF8 in raw byte sources;
wenzelm
parents:
66917
diff
changeset
|
114 |
with_thy_reader(name, reader => (Scan.reader_is_utf8(reader), reader.source.toString)) |
66698
5b9dc3f7bcde
prefer sequential file-system access, but parallel parse;
wenzelm
parents:
66697
diff
changeset
|
115 |
() => { |
72740 | 116 |
if (syntax.has_load_commands(raw_text)) { |
66918
ec2b50aeb0dd
more robust treatment of UTF8 in raw byte sources;
wenzelm
parents:
66917
diff
changeset
|
117 |
val text = Symbol.decode(Scan.reader_decode_utf8(is_utf8, raw_text)) |
66698
5b9dc3f7bcde
prefer sequential file-system access, but parallel parse;
wenzelm
parents:
66697
diff
changeset
|
118 |
val spans = syntax.parse_spans(text) |
5b9dc3f7bcde
prefer sequential file-system access, but parallel parse;
wenzelm
parents:
66697
diff
changeset
|
119 |
val dir = Path.explode(name.master_dir) |
72742 | 120 |
(for { |
121 |
span <- spans.iterator |
|
72757 | 122 |
file <- span.loaded_files(syntax).files |
72742 | 123 |
} yield (dir + Path.explode(file)).expand).toList |
66698
5b9dc3f7bcde
prefer sequential file-system access, but parallel parse;
wenzelm
parents:
66697
diff
changeset
|
124 |
} |
5b9dc3f7bcde
prefer sequential file-system access, but parallel parse;
wenzelm
parents:
66697
diff
changeset
|
125 |
else Nil |
66696
8f863dae78a0
clarified pure_files, based on uniform loaded_files;
wenzelm
parents:
66695
diff
changeset
|
126 |
} |
66695 | 127 |
} |
128 |
||
69560 | 129 |
def pure_files(syntax: Outer_Syntax): List[Path] = |
66701 | 130 |
{ |
69560 | 131 |
val pure_dir = Path.explode("~~/src/Pure") |
66701 | 132 |
val roots = |
133 |
for { (name, _) <- Thy_Header.ml_roots } |
|
69560 | 134 |
yield (pure_dir + Path.explode(name)).expand |
66701 | 135 |
val files = |
136 |
for { |
|
137 |
(path, (_, theory)) <- roots zip Thy_Header.ml_roots |
|
138 |
file <- loaded_files(syntax, Document.Node.Name(path.implode, path.dir.implode, theory))() |
|
139 |
} yield file |
|
140 |
roots ::: files |
|
141 |
} |
|
66696
8f863dae78a0
clarified pure_files, based on uniform loaded_files;
wenzelm
parents:
66695
diff
changeset
|
142 |
|
67104
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
67060
diff
changeset
|
143 |
def theory_name(qualifier: String, theory: String): String = |
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
67060
diff
changeset
|
144 |
if (Long_Name.is_qualified(theory) || session_base.global_theories.isDefinedAt(theory)) |
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
67060
diff
changeset
|
145 |
theory |
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
67060
diff
changeset
|
146 |
else Long_Name.qualify(qualifier, theory) |
65471
05e5bffcf1d8
clarified loaded_theories: map to qualified theory name;
wenzelm
parents:
65467
diff
changeset
|
147 |
|
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
148 |
def find_theory_node(theory: String): Option[Document.Node.Name] = |
70712
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
149 |
{ |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
150 |
val thy_file = thy_path(Path.basic(Long_Name.base_name(theory))) |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
151 |
val session = session_base.theory_qualifier(theory) |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
152 |
val dirs = |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
153 |
sessions_structure.get(session) match { |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
154 |
case Some(info) => info.dirs |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
155 |
case None => Nil |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
156 |
} |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
157 |
dirs.collectFirst({ |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
158 |
case dir if (dir + thy_file).is_file => make_theory_node("", dir + thy_file, theory) }) |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
159 |
} |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
160 |
|
65445
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
161 |
def import_name(qualifier: String, dir: String, s: String): Document.Node.Name = |
67104
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
67060
diff
changeset
|
162 |
{ |
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
67060
diff
changeset
|
163 |
val theory = theory_name(qualifier, Thy_Header.import_name(s)) |
70717
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70716
diff
changeset
|
164 |
def theory_node = make_theory_node(dir, thy_path(Path.explode(s)), theory) |
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70716
diff
changeset
|
165 |
|
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70716
diff
changeset
|
166 |
if (!Thy_Header.is_base_name(s)) theory_node |
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70716
diff
changeset
|
167 |
else if (session_base.loaded_theory(theory)) 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:
67060
diff
changeset
|
168 |
else { |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
169 |
find_theory_node(theory) match { |
67104
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
67060
diff
changeset
|
170 |
case Some(node_name) => node_name |
70717
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70716
diff
changeset
|
171 |
case None => if (Long_Name.is_qualified(s)) 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:
67060
diff
changeset
|
172 |
} |
65472 | 173 |
} |
67104
a2fa0c6a7aff
clarified theory_name vs. loaded_theory: proper import_name for already loaded theories from other sessions (amending 4c98c929a12a);
wenzelm
parents:
67060
diff
changeset
|
174 |
} |
51634
553953ad8165
more general Thy_Load.import_name, e.g. relevant for Isabelle/eclipse -- NB: Thy_Load serves as main hub for funny overriding to adapt to provers and editors;
wenzelm
parents:
51293
diff
changeset
|
175 |
|
65529 | 176 |
def import_name(name: Document.Node.Name, s: String): Document.Node.Name = |
66966 | 177 |
import_name(session_base.theory_qualifier(name), name.master_dir, s) |
65489 | 178 |
|
70633 | 179 |
def import_name(info: Sessions.Info, s: String): Document.Node.Name = |
180 |
import_name(info.name, info.dir.implode, s) |
|
181 |
||
70718
5bb025e24224
clarified inversion of file name to theory name, notably for Windows;
wenzelm
parents:
70717
diff
changeset
|
182 |
def find_theory(file: JFile): Option[Document.Node.Name] = |
70673
b0172698d0d3
theory_name based on session_directories: no need for expensive all_known;
wenzelm
parents:
70652
diff
changeset
|
183 |
{ |
70718
5bb025e24224
clarified inversion of file name to theory name, notably for Windows;
wenzelm
parents:
70717
diff
changeset
|
184 |
for { |
5bb025e24224
clarified inversion of file name to theory name, notably for Windows;
wenzelm
parents:
70717
diff
changeset
|
185 |
qualifier <- session_base.session_directories.get(File.canonical(file).getParentFile) |
5bb025e24224
clarified inversion of file name to theory name, notably for Windows;
wenzelm
parents:
70717
diff
changeset
|
186 |
theory_base <- proper_string(Thy_Header.theory_name(file.getName)) |
5bb025e24224
clarified inversion of file name to theory name, notably for Windows;
wenzelm
parents:
70717
diff
changeset
|
187 |
theory = theory_name(qualifier, theory_base) |
5bb025e24224
clarified inversion of file name to theory name, notably for Windows;
wenzelm
parents:
70717
diff
changeset
|
188 |
theory_node <- find_theory_node(theory) |
5bb025e24224
clarified inversion of file name to theory name, notably for Windows;
wenzelm
parents:
70717
diff
changeset
|
189 |
if File.eq(theory_node.path.file, file) |
5bb025e24224
clarified inversion of file name to theory name, notably for Windows;
wenzelm
parents:
70717
diff
changeset
|
190 |
} yield theory_node |
70673
b0172698d0d3
theory_name based on session_directories: no need for expensive all_known;
wenzelm
parents:
70652
diff
changeset
|
191 |
} |
b0172698d0d3
theory_name based on session_directories: no need for expensive all_known;
wenzelm
parents:
70652
diff
changeset
|
192 |
|
70713
fd188463066e
clarified theory imports completion, based on session directories and current master directory (no support for local session-subdirectories);
wenzelm
parents:
70712
diff
changeset
|
193 |
def complete_import_name(context_name: Document.Node.Name, s: String): List[String] = |
66767 | 194 |
{ |
70713
fd188463066e
clarified theory imports completion, based on session directories and current master directory (no support for local session-subdirectories);
wenzelm
parents:
70712
diff
changeset
|
195 |
val context_session = session_base.theory_qualifier(context_name) |
fd188463066e
clarified theory imports completion, based on session directories and current master directory (no support for local session-subdirectories);
wenzelm
parents:
70712
diff
changeset
|
196 |
val context_dir = |
fd188463066e
clarified theory imports completion, based on session directories and current master directory (no support for local session-subdirectories);
wenzelm
parents:
70712
diff
changeset
|
197 |
try { Some(context_name.master_dir_path) } |
fd188463066e
clarified theory imports completion, based on session directories and current master directory (no support for local session-subdirectories);
wenzelm
parents:
70712
diff
changeset
|
198 |
catch { case ERROR(_) => None } |
fd188463066e
clarified theory imports completion, based on session directories and current master directory (no support for local session-subdirectories);
wenzelm
parents:
70712
diff
changeset
|
199 |
(for { |
fd188463066e
clarified theory imports completion, based on session directories and current master directory (no support for local session-subdirectories);
wenzelm
parents:
70712
diff
changeset
|
200 |
(session, (info, _)) <- sessions_structure.imports_graph.iterator |
fd188463066e
clarified theory imports completion, based on session directories and current master directory (no support for local session-subdirectories);
wenzelm
parents:
70712
diff
changeset
|
201 |
dir <- (if (session == context_session) context_dir.toList else info.dirs).iterator |
fd188463066e
clarified theory imports completion, based on session directories and current master directory (no support for local session-subdirectories);
wenzelm
parents:
70712
diff
changeset
|
202 |
theory <- Thy_Header.try_read_dir(dir).iterator |
fd188463066e
clarified theory imports completion, based on session directories and current master directory (no support for local session-subdirectories);
wenzelm
parents:
70712
diff
changeset
|
203 |
if Completion.completed(s)(theory) |
fd188463066e
clarified theory imports completion, based on session directories and current master directory (no support for local session-subdirectories);
wenzelm
parents:
70712
diff
changeset
|
204 |
} yield { |
fd188463066e
clarified theory imports completion, based on session directories and current master directory (no support for local session-subdirectories);
wenzelm
parents:
70712
diff
changeset
|
205 |
if (session == context_session || session_base.global_theories.isDefinedAt(theory)) theory |
fd188463066e
clarified theory imports completion, based on session directories and current master directory (no support for local session-subdirectories);
wenzelm
parents:
70712
diff
changeset
|
206 |
else Long_Name.qualify(session, theory) |
fd188463066e
clarified theory imports completion, based on session directories and current master directory (no support for local session-subdirectories);
wenzelm
parents:
70712
diff
changeset
|
207 |
}).toList.sorted |
66767 | 208 |
} |
209 |
||
64656 | 210 |
def with_thy_reader[A](name: Document.Node.Name, f: Reader[Char] => A): A = |
211 |
{ |
|
66771
925d10a7a610
clarified error for bad session-qualified imports;
wenzelm
parents:
66767
diff
changeset
|
212 |
val path = name.path |
69393
ed0824ef337e
static type for Library.using: avoid Java 11 warnings on "Illegal reflective access";
wenzelm
parents:
69255
diff
changeset
|
213 |
if (path.is_file) using(Scan.byte_reader(path.file))(f) |
66771
925d10a7a610
clarified error for bad session-qualified imports;
wenzelm
parents:
66767
diff
changeset
|
214 |
else if (name.node == name.theory) |
925d10a7a610
clarified error for bad session-qualified imports;
wenzelm
parents:
66767
diff
changeset
|
215 |
error("Cannot load theory " + quote(name.theory)) |
925d10a7a610
clarified error for bad session-qualified imports;
wenzelm
parents:
66767
diff
changeset
|
216 |
else error ("Cannot load theory file " + path) |
64656 | 217 |
} |
218 |
||
65359 | 219 |
def check_thy_reader(node_name: Document.Node.Name, reader: Reader[Char], |
220 |
start: Token.Pos = Token.Pos.command, strict: Boolean = true): Document.Node.Header = |
|
46737 | 221 |
{ |
64826
c97296294f6d
clarified check_thy_reader: check node_name here;
wenzelm
parents:
64825
diff
changeset
|
222 |
if (node_name.is_theory && reader.source.length > 0) { |
57615
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
wenzelm
parents:
56913
diff
changeset
|
223 |
try { |
72765 | 224 |
val header = Thy_Header.read(reader, start, strict).check_keywords |
48885 | 225 |
|
65439 | 226 |
val base_name = node_name.theory_base_name |
72072 | 227 |
if (Long_Name.is_qualified(header.name)) { |
228 |
error("Bad theory name " + quote(header.name) + " with qualification" + |
|
229 |
Position.here(header.pos)) |
|
230 |
} |
|
231 |
if (base_name != header.name) { |
|
70638
f164cec7ac22
clarified signature: prefer operations without position;
wenzelm
parents:
70634
diff
changeset
|
232 |
error("Bad theory name " + quote(header.name) + |
f164cec7ac22
clarified signature: prefer operations without position;
wenzelm
parents:
70634
diff
changeset
|
233 |
" for file " + thy_path(Path.basic(base_name)) + Position.here(header.pos) + |
f164cec7ac22
clarified signature: prefer operations without position;
wenzelm
parents:
70634
diff
changeset
|
234 |
Completion.report_theories(header.pos, List(base_name))) |
72072 | 235 |
} |
48885 | 236 |
|
70638
f164cec7ac22
clarified signature: prefer operations without position;
wenzelm
parents:
70634
diff
changeset
|
237 |
val imports_pos = |
f164cec7ac22
clarified signature: prefer operations without position;
wenzelm
parents:
70634
diff
changeset
|
238 |
header.imports_pos.map({ case (s, pos) => |
67296
888aa91f0556
clarified check, notably for bibtex theory (amending 5f082b1fa9fa);
wenzelm
parents:
67294
diff
changeset
|
239 |
val name = import_name(node_name, s) |
888aa91f0556
clarified check, notably for bibtex theory (amending 5f082b1fa9fa);
wenzelm
parents:
67294
diff
changeset
|
240 |
if (Sessions.exclude_theory(name.theory_base_name)) |
888aa91f0556
clarified check, notably for bibtex theory (amending 5f082b1fa9fa);
wenzelm
parents:
67294
diff
changeset
|
241 |
error("Bad theory name " + quote(name.theory_base_name) + Position.here(pos)) |
888aa91f0556
clarified check, notably for bibtex theory (amending 5f082b1fa9fa);
wenzelm
parents:
67294
diff
changeset
|
242 |
(name, pos) |
888aa91f0556
clarified check, notably for bibtex theory (amending 5f082b1fa9fa);
wenzelm
parents:
67294
diff
changeset
|
243 |
}) |
70638
f164cec7ac22
clarified signature: prefer operations without position;
wenzelm
parents:
70634
diff
changeset
|
244 |
Document.Node.Header(imports_pos, header.keywords, header.abbrevs) |
57615
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
wenzelm
parents:
56913
diff
changeset
|
245 |
} |
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
wenzelm
parents:
56913
diff
changeset
|
246 |
catch { case exn: Throwable => Document.Node.bad_header(Exn.message(exn)) } |
50414
e17a1f179bb0
explore theory_body_files via future, for improved performance;
wenzelm
parents:
50291
diff
changeset
|
247 |
} |
57615
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
wenzelm
parents:
56913
diff
changeset
|
248 |
else Document.Node.no_header |
46737 | 249 |
} |
46748
8f3ae4d04a2d
refined node_header -- more direct buffer access (again);
wenzelm
parents:
46737
diff
changeset
|
250 |
|
65359 | 251 |
def check_thy(name: Document.Node.Name, start: Token.Pos = Token.Pos.command, |
252 |
strict: Boolean = true): Document.Node.Header = |
|
253 |
with_thy_reader(name, check_thy_reader(name, _, start, strict)) |
|
50566
b43c4f660320
tuned signature: use thy_load to adapt to prover/editor specific view on sources;
wenzelm
parents:
50415
diff
changeset
|
254 |
|
b43c4f660320
tuned signature: use thy_load to adapt to prover/editor specific view on sources;
wenzelm
parents:
50415
diff
changeset
|
255 |
|
64673
b5965890e54d
more uniform treatment of file name vs. theory name and special header;
wenzelm
parents:
64657
diff
changeset
|
256 |
/* special header */ |
b5965890e54d
more uniform treatment of file name vs. theory name and special header;
wenzelm
parents:
64657
diff
changeset
|
257 |
|
b5965890e54d
more uniform treatment of file name vs. theory name and special header;
wenzelm
parents:
64657
diff
changeset
|
258 |
def special_header(name: Document.Node.Name): Option[Document.Node.Header] = |
65445
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
259 |
{ |
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
260 |
val imports = |
67215 | 261 |
if (name.theory == Sessions.root_name) List(import_name(name, Sessions.theory_name)) |
262 |
else if (Thy_Header.is_ml_root(name.theory)) List(import_name(name, Thy_Header.ML_BOOTSTRAP)) |
|
65489 | 263 |
else if (Thy_Header.is_bootstrap(name.theory)) List(import_name(name, Thy_Header.PURE)) |
65445
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
264 |
else Nil |
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
265 |
if (imports.isEmpty) None |
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
266 |
else Some(Document.Node.Header(imports.map((_, Position.none)))) |
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
267 |
} |
64673
b5965890e54d
more uniform treatment of file name vs. theory name and special header;
wenzelm
parents:
64657
diff
changeset
|
268 |
|
b5965890e54d
more uniform treatment of file name vs. theory name and special header;
wenzelm
parents:
64657
diff
changeset
|
269 |
|
64797 | 270 |
/* blobs */ |
271 |
||
272 |
def undefined_blobs(nodes: Document.Nodes): List[Document.Node.Name] = |
|
273 |
(for { |
|
274 |
(node_name, node) <- nodes.iterator |
|
65361 | 275 |
if !session_base.loaded_theory(node_name) |
64797 | 276 |
cmd <- node.load_commands.iterator |
277 |
name <- cmd.blobs_undefined.iterator |
|
278 |
} yield name).toList |
|
279 |
||
280 |
||
56316
b1cf8ddc2e04
propagate deps_changed, to resolve missing files without requiring jEdit events (e.g. buffer load/save);
wenzelm
parents:
56315
diff
changeset
|
281 |
/* document changes */ |
50566
b43c4f660320
tuned signature: use thy_load to adapt to prover/editor specific view on sources;
wenzelm
parents:
50415
diff
changeset
|
282 |
|
56316
b1cf8ddc2e04
propagate deps_changed, to resolve missing files without requiring jEdit events (e.g. buffer load/save);
wenzelm
parents:
56315
diff
changeset
|
283 |
def parse_change( |
56315 | 284 |
reparse_limit: Int, |
285 |
previous: Document.Version, |
|
286 |
doc_blobs: Document.Blobs, |
|
68336
09ac56914b29
Document.update includes node consolidation / presentation as regular print operation: avoid user operations on protocol thread;
wenzelm
parents:
68317
diff
changeset
|
287 |
edits: List[Document.Edit_Text], |
70796
2739631ac368
discontinued pointless dump_checkpoint and share_common_data -- superseded by base logic image in Isabelle/MMT;
wenzelm
parents:
70740
diff
changeset
|
288 |
consolidate: List[Document.Node.Name]): Session.Change = |
2739631ac368
discontinued pointless dump_checkpoint and share_common_data -- superseded by base logic image in Isabelle/MMT;
wenzelm
parents:
70740
diff
changeset
|
289 |
Thy_Syntax.parse_change(resources, reparse_limit, previous, doc_blobs, edits, consolidate) |
55134
1b67b17cdad5
propagate update of outer syntax keywords: global propertiesChanged, buffer TokenMarker.markTokens, text area repainting;
wenzelm
parents:
54521
diff
changeset
|
290 |
|
56316
b1cf8ddc2e04
propagate deps_changed, to resolve missing files without requiring jEdit events (e.g. buffer load/save);
wenzelm
parents:
56315
diff
changeset
|
291 |
def commit(change: Session.Change) { } |
66959 | 292 |
|
293 |
||
294 |
/* theory and file dependencies */ |
|
295 |
||
69007 | 296 |
def dependencies( |
297 |
thys: List[(Document.Node.Name, Position.T)], |
|
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
70796
diff
changeset
|
298 |
progress: Progress = new Progress): Dependencies[Unit] = |
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
299 |
Dependencies.empty[Unit].require_thys((), thys, progress = progress) |
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
300 |
|
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
70796
diff
changeset
|
301 |
def session_dependencies(info: Sessions.Info, progress: Progress = new Progress) |
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
302 |
: Dependencies[Options] = |
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
303 |
{ |
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
304 |
(Dependencies.empty[Options] /: info.theories)({ case (dependencies, (options, thys)) => |
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
305 |
dependencies.require_thys(options, |
70633 | 306 |
for { (thy, pos) <- thys } yield (import_name(info, thy), pos), |
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
307 |
progress = progress) |
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
308 |
}) |
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
309 |
} |
69007 | 310 |
|
66959 | 311 |
object Dependencies |
312 |
{ |
|
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
313 |
def empty[A]: Dependencies[A] = new Dependencies[A](Nil, Map.empty) |
69007 | 314 |
|
315 |
private def show_path(names: List[Document.Node.Name]): String = |
|
316 |
names.map(name => quote(name.theory)).mkString(" via ") |
|
317 |
||
318 |
private def cycle_msg(names: List[Document.Node.Name]): String = |
|
319 |
"Cyclic dependency of " + show_path(names) |
|
320 |
||
321 |
private def required_by(initiators: List[Document.Node.Name]): String = |
|
322 |
if (initiators.isEmpty) "" |
|
323 |
else "\n(required by " + show_path(initiators.reverse) + ")" |
|
66959 | 324 |
} |
325 |
||
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
326 |
final class Dependencies[A] private( |
66959 | 327 |
rev_entries: List[Document.Node.Entry], |
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
328 |
seen: Map[Document.Node.Name, A]) |
66959 | 329 |
{ |
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
330 |
private def cons(entry: Document.Node.Entry): Dependencies[A] = |
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
331 |
new Dependencies[A](entry :: rev_entries, seen) |
66959 | 332 |
|
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
333 |
def require_thy(adjunct: A, |
69007 | 334 |
thy: (Document.Node.Name, Position.T), |
335 |
initiators: List[Document.Node.Name] = Nil, |
|
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
70796
diff
changeset
|
336 |
progress: Progress = new Progress): Dependencies[A] = |
69007 | 337 |
{ |
338 |
val (name, pos) = thy |
|
339 |
||
340 |
def message: String = |
|
341 |
"The error(s) above occurred for theory " + quote(name.theory) + |
|
342 |
Dependencies.required_by(initiators) + Position.here(pos) |
|
343 |
||
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
344 |
if (seen.isDefinedAt(name)) this |
69007 | 345 |
else { |
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
346 |
val dependencies1 = new Dependencies[A](rev_entries, seen + (name -> adjunct)) |
69007 | 347 |
if (session_base.loaded_theory(name)) dependencies1 |
348 |
else { |
|
349 |
try { |
|
350 |
if (initiators.contains(name)) error(Dependencies.cycle_msg(initiators)) |
|
351 |
||
352 |
progress.expose_interrupt() |
|
353 |
val header = |
|
354 |
try { check_thy(name, Token.Pos.file(name.node)).cat_errors(message) } |
|
355 |
catch { case ERROR(msg) => cat_error(msg, message) } |
|
356 |
val entry = Document.Node.Entry(name, header) |
|
70638
f164cec7ac22
clarified signature: prefer operations without position;
wenzelm
parents:
70634
diff
changeset
|
357 |
dependencies1.require_thys(adjunct, header.imports_pos, |
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
358 |
initiators = name :: initiators, progress = progress).cons(entry) |
69007 | 359 |
} |
360 |
catch { |
|
361 |
case e: Throwable => |
|
362 |
dependencies1.cons(Document.Node.Entry(name, Document.Node.bad_header(Exn.message(e)))) |
|
363 |
} |
|
364 |
} |
|
365 |
} |
|
366 |
} |
|
367 |
||
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
368 |
def require_thys(adjunct: A, |
69007 | 369 |
thys: List[(Document.Node.Name, Position.T)], |
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
70796
diff
changeset
|
370 |
progress: Progress = new Progress, |
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
371 |
initiators: List[Document.Node.Name] = Nil): Dependencies[A] = |
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
372 |
(this /: thys)(_.require_thy(adjunct, _, progress = progress, initiators = initiators)) |
66959 | 373 |
|
374 |
def entries: List[Document.Node.Entry] = rev_entries.reverse |
|
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
375 |
|
67059 | 376 |
def theories: List[Document.Node.Name] = entries.map(_.name) |
72062 | 377 |
def theories_adjunct: List[(Document.Node.Name, A)] = theories.map(name => (name, seen(name))) |
66959 | 378 |
|
379 |
def errors: List[String] = entries.flatMap(_.header.errors) |
|
380 |
||
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
381 |
def check_errors: Dependencies[A] = |
67056 | 382 |
errors match { |
383 |
case Nil => this |
|
384 |
case errs => error(cat_lines(errs)) |
|
385 |
} |
|
386 |
||
70674
29bb1ebb188f
clarified signature: proper Document.Node.Ordering conforming to equality (e.g. required in situations where theory names are ambiguous due to overlapping session directories);
wenzelm
parents:
70673
diff
changeset
|
387 |
lazy val theory_graph: Document.Node.Name.Graph[Unit] = |
70652 | 388 |
{ |
389 |
val regular = theories.toSet |
|
390 |
val irregular = |
|
391 |
(for { |
|
392 |
entry <- entries.iterator |
|
393 |
imp <- entry.header.imports |
|
394 |
if !regular(imp) |
|
395 |
} yield imp).toSet |
|
396 |
||
70674
29bb1ebb188f
clarified signature: proper Document.Node.Ordering conforming to equality (e.g. required in situations where theory names are ambiguous due to overlapping session directories);
wenzelm
parents:
70673
diff
changeset
|
397 |
Document.Node.Name.make_graph( |
70652 | 398 |
irregular.toList.map(name => ((name, ()), Nil)) ::: |
399 |
entries.map(entry => ((entry.name, ()), entry.header.imports))) |
|
400 |
} |
|
70650 | 401 |
|
66959 | 402 |
lazy val loaded_theories: Graph[String, Outer_Syntax] = |
403 |
(session_base.loaded_theories /: entries)({ case (graph, entry) => |
|
404 |
val name = entry.name.theory |
|
70638
f164cec7ac22
clarified signature: prefer operations without position;
wenzelm
parents:
70634
diff
changeset
|
405 |
val imports = entry.header.imports.map(_.theory) |
66959 | 406 |
|
407 |
val graph1 = (graph /: (name :: imports))(_.default_node(_, Outer_Syntax.empty)) |
|
408 |
val graph2 = (graph1 /: imports)(_.add_edge(_, name)) |
|
409 |
||
410 |
val syntax0 = if (name == Thy_Header.PURE) List(Thy_Header.bootstrap_syntax) else Nil |
|
72063 | 411 |
val syntax1 = (name :: graph2.imm_preds(name).toList).map(graph2.get_node) |
66959 | 412 |
val syntax = Outer_Syntax.merge(syntax0 ::: syntax1) + entry.header |
413 |
||
414 |
graph2.map_node(name, _ => syntax) |
|
415 |
}) |
|
416 |
||
69561 | 417 |
def loaded_files(pure: Boolean): List[(String, List[Path])] = |
66959 | 418 |
{ |
69560 | 419 |
val loaded_files = |
420 |
theories.map(_.theory) zip |
|
421 |
Par_List.map((e: () => List[Path]) => e(), |
|
422 |
theories.map(name => |
|
423 |
resources.loaded_files(loaded_theories.get_node(name.theory), name))) |
|
424 |
||
69561 | 425 |
if (pure) { |
69560 | 426 |
val pure_files = resources.pure_files(overall_syntax) |
427 |
loaded_files.map({ case (name, files) => |
|
428 |
(name, if (name == Thy_Header.PURE) pure_files ::: files else files) }) |
|
429 |
} |
|
430 |
else loaded_files |
|
66959 | 431 |
} |
432 |
||
433 |
def imported_files: List[Path] = |
|
434 |
{ |
|
435 |
val base_theories = |
|
67059 | 436 |
loaded_theories.all_preds(theories.map(_.theory)). |
72063 | 437 |
filter(session_base.loaded_theories.defined) |
66959 | 438 |
|
70740 | 439 |
base_theories.map(theory => session_base.known_theories(theory).name.path) ::: |
440 |
base_theories.flatMap(session_base.known_loaded_files(_)) |
|
66959 | 441 |
} |
442 |
||
443 |
lazy val overall_syntax: Outer_Syntax = |
|
72063 | 444 |
Outer_Syntax.merge(loaded_theories.maximals.map(loaded_theories.get_node)) |
66959 | 445 |
|
446 |
override def toString: String = entries.toString |
|
447 |
} |
|
43651
511df47bcadc
some support for theory files within Isabelle/Scala session;
wenzelm
parents:
diff
changeset
|
448 |
} |