author | wenzelm |
Sun, 21 Aug 2022 11:59:25 +0200 | |
changeset 75941 | 4bbbbaa656f1 |
parent 75922 | b327e5d5d6b4 |
child 76046 | 507c65cc4332 |
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 |
||
75393 | 15 |
object Resources { |
72962 | 16 |
def empty: Resources = |
17 |
new Resources(Sessions.Structure.empty, Sessions.Structure.empty.bootstrap) |
|
74755
510296c0d8d1
clarified signature: avoid potential misunderstanding of Resources.empty as proper Resources;
wenzelm
parents:
74696
diff
changeset
|
18 |
|
74756 | 19 |
def hidden_node(name: Document.Node.Name): Boolean = |
20 |
!name.is_theory || name.theory == Sessions.root_name || File_Format.registry.is_theory(name) |
|
21 |
||
75941 | 22 |
def html_document(snapshot: Document.Snapshot): Option[Browser_Info.HTML_Document] = |
74756 | 23 |
File_Format.registry.get(snapshot.node_name).flatMap(_.html_document(snapshot)) |
72962 | 24 |
} |
25 |
||
65359 | 26 |
class Resources( |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
27 |
val sessions_structure: Sessions.Structure, |
65361 | 28 |
val session_base: Sessions.Base, |
72638
2a7fc87495e0
refer to command_timings/last_timing via resources;
wenzelm
parents:
72637
diff
changeset
|
29 |
val log: Logger = No_Logger, |
75393 | 30 |
command_timings: List[Properties.T] = Nil |
31 |
) { |
|
66959 | 32 |
resources => |
64839 | 33 |
|
69255
800b1ce96fce
more general support for Isabelle/PIDE file formats -- less hardwired Bibtex operations;
wenzelm
parents:
69008
diff
changeset
|
34 |
|
75768 | 35 |
override def toString: String = "Resources(" + session_base.toString + ")" |
36 |
||
37 |
||
72637 | 38 |
/* init session */ |
39 |
||
75393 | 40 |
def init_session_yxml: String = { |
72637 | 41 |
import XML.Encode._ |
42 |
||
43 |
YXML.string_of_body( |
|
44 |
pair(list(pair(string, properties)), |
|
45 |
pair(list(pair(string, string)), |
|
46 |
pair(list(pair(string, list(string))), |
|
72638
2a7fc87495e0
refer to command_timings/last_timing via resources;
wenzelm
parents:
72637
diff
changeset
|
47 |
pair(list(properties), |
74671 | 48 |
pair(list(pair(string, properties)), |
75586 | 49 |
pair(list(Scala.encode_fun), |
74696 | 50 |
pair(list(pair(string, string)), list(string))))))))( |
72646 | 51 |
(sessions_structure.session_positions, |
52 |
(sessions_structure.dest_session_directories, |
|
53 |
(sessions_structure.bibtex_entries, |
|
72638
2a7fc87495e0
refer to command_timings/last_timing via resources;
wenzelm
parents:
72637
diff
changeset
|
54 |
(command_timings, |
74671 | 55 |
(Command_Span.load_commands.map(cmd => (cmd.name, cmd.position)), |
75586 | 56 |
(Scala.functions, |
75885
8342cba8eae8
clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents:
75884
diff
changeset
|
57 |
(sessions_structure.global_theories.toList, |
74696 | 58 |
session_base.loaded_theories.keys))))))))) |
72637 | 59 |
} |
60 |
||
61 |
||
69255
800b1ce96fce
more general support for Isabelle/PIDE file formats -- less hardwired Bibtex operations;
wenzelm
parents:
69008
diff
changeset
|
62 |
/* file formats */ |
800b1ce96fce
more general support for Isabelle/PIDE file formats -- less hardwired Bibtex operations;
wenzelm
parents:
69008
diff
changeset
|
63 |
|
800b1ce96fce
more general support for Isabelle/PIDE file formats -- less hardwired Bibtex operations;
wenzelm
parents:
69008
diff
changeset
|
64 |
def make_theory_name(name: Document.Node.Name): Option[Document.Node.Name] = |
71733 | 65 |
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
|
66 |
|
800b1ce96fce
more general support for Isabelle/PIDE file formats -- less hardwired Bibtex operations;
wenzelm
parents:
69008
diff
changeset
|
67 |
def make_theory_content(thy_name: Document.Node.Name): Option[String] = |
71733 | 68 |
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
|
69 |
|
64839 | 70 |
|
44953 | 71 |
/* file-system operations */ |
72 |
||
73 |
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
|
74 |
(Path.explode(dir) + source_path).expand.implode |
44953 | 75 |
|
65488 | 76 |
def append(node_name: Document.Node.Name, source_path: Path): String = |
77 |
append(node_name.master_dir, source_path) |
|
78 |
||
75393 | 79 |
def file_node(file: Path, dir: String = "", theory: String = ""): Document.Node.Name = { |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
80 |
val node = append(dir, file) |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
81 |
val master_dir = append(dir, file.dir) |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
82 |
Document.Node.Name(node, master_dir, theory) |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
83 |
} |
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
84 |
|
70716 | 85 |
def loaded_theory_node(theory: String): Document.Node.Name = |
86 |
Document.Node.Name(theory, "", theory) |
|
87 |
||
46737 | 88 |
|
64657 | 89 |
/* source files of Isabelle/ML bootstrap */ |
90 |
||
75393 | 91 |
def source_file(raw_name: String): Option[String] = { |
64657 | 92 |
if (Path.is_wellformed(raw_name)) { |
93 |
if (Path.is_valid(raw_name)) { |
|
94 |
def check(p: Path): Option[Path] = if (p.is_file) Some(p) else None |
|
95 |
||
96 |
val path = Path.explode(raw_name) |
|
97 |
val path1 = |
|
98 |
if (path.is_absolute || path.is_current) check(path) |
|
99 |
else { |
|
100 |
check(Path.explode("~~/src/Pure") + path) orElse |
|
101 |
(if (Isabelle_System.getenv("ML_SOURCES") == "") None |
|
102 |
else check(Path.explode("$ML_SOURCES") + path)) |
|
103 |
} |
|
104 |
Some(File.platform_path(path1 getOrElse path)) |
|
105 |
} |
|
106 |
else None |
|
107 |
} |
|
108 |
else Some(raw_name) |
|
109 |
} |
|
110 |
||
111 |
||
46737 | 112 |
/* theory files */ |
113 |
||
75393 | 114 |
def load_commands( |
115 |
syntax: Outer_Syntax, |
|
116 |
name: Document.Node.Name |
|
117 |
) : () => List[Command_Span.Span] = { |
|
66918
ec2b50aeb0dd
more robust treatment of UTF8 in raw byte sources;
wenzelm
parents:
66917
diff
changeset
|
118 |
val (is_utf8, raw_text) = |
ec2b50aeb0dd
more robust treatment of UTF8 in raw byte sources;
wenzelm
parents:
66917
diff
changeset
|
119 |
with_thy_reader(name, reader => (Scan.reader_is_utf8(reader), reader.source.toString)) |
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
120 |
() => |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
121 |
{ |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
122 |
if (syntax.has_load_commands(raw_text)) { |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
123 |
val text = Symbol.decode(Scan.reader_decode_utf8(is_utf8, raw_text)) |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
124 |
syntax.parse_spans(text).filter(_.is_load_command(syntax)) |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
125 |
} |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
126 |
else Nil |
66698
5b9dc3f7bcde
prefer sequential file-system access, but parallel parse;
wenzelm
parents:
66697
diff
changeset
|
127 |
} |
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
128 |
} |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
129 |
|
75393 | 130 |
def loaded_files( |
131 |
syntax: Outer_Syntax, |
|
132 |
name: Document.Node.Name, |
|
133 |
spans: List[Command_Span.Span] |
|
134 |
) : List[Path] = { |
|
72817
1c378ab75d48
clarified signature, notably access to blob files;
wenzelm
parents:
72816
diff
changeset
|
135 |
val dir = name.master_dir_path |
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
136 |
for { span <- spans; file <- span.loaded_files(syntax).files } |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
137 |
yield (dir + Path.explode(file)).expand |
66695 | 138 |
} |
139 |
||
75393 | 140 |
def pure_files(syntax: Outer_Syntax): List[Path] = { |
69560 | 141 |
val pure_dir = Path.explode("~~/src/Pure") |
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
142 |
for { |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
143 |
(name, theory) <- Thy_Header.ml_roots |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
144 |
path = (pure_dir + Path.explode(name)).expand |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
145 |
node_name = Document.Node.Name(path.implode, path.dir.implode, theory) |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
146 |
file <- loaded_files(syntax, node_name, load_commands(syntax, node_name)()) |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
147 |
} yield file |
66701 | 148 |
} |
66696
8f863dae78a0
clarified pure_files, based on uniform loaded_files;
wenzelm
parents:
66695
diff
changeset
|
149 |
|
75885
8342cba8eae8
clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents:
75884
diff
changeset
|
150 |
def global_theory(theory: String): Boolean = |
8342cba8eae8
clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents:
75884
diff
changeset
|
151 |
sessions_structure.global_theories.isDefinedAt(theory) |
8342cba8eae8
clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents:
75884
diff
changeset
|
152 |
|
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
|
153 |
def theory_name(qualifier: String, theory: String): String = |
75885
8342cba8eae8
clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents:
75884
diff
changeset
|
154 |
if (Long_Name.is_qualified(theory) || global_theory(theory)) 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
|
155 |
else Long_Name.qualify(qualifier, theory) |
65471
05e5bffcf1d8
clarified loaded_theories: map to qualified theory name;
wenzelm
parents:
65467
diff
changeset
|
156 |
|
75393 | 157 |
def find_theory_node(theory: String): Option[Document.Node.Name] = { |
72776 | 158 |
val thy_file = Path.basic(Long_Name.base_name(theory)).thy |
75884
3d8b37b1d798
clarified signature: avoid object-oriented HTML_Context;
wenzelm
parents:
75768
diff
changeset
|
159 |
val session = sessions_structure.theory_qualifier(theory) |
70712
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
160 |
val dirs = |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
161 |
sessions_structure.get(session) match { |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
162 |
case Some(info) => info.dirs |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
163 |
case None => Nil |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
164 |
} |
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
165 |
dirs.collectFirst({ |
72857 | 166 |
case dir if (dir + thy_file).is_file => file_node(dir + thy_file, theory = theory) }) |
70712
a3cfe859d915
find theories via session directories only -- ignore known_theories;
wenzelm
parents:
70683
diff
changeset
|
167 |
} |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
168 |
|
75393 | 169 |
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
|
170 |
val theory = theory_name(qualifier, Thy_Header.import_name(s)) |
72857 | 171 |
def theory_node = file_node(Path.explode(s).thy, dir = dir, theory = theory) |
70717
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70716
diff
changeset
|
172 |
|
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70716
diff
changeset
|
173 |
if (!Thy_Header.is_base_name(s)) theory_node |
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70716
diff
changeset
|
174 |
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
|
175 |
else { |
70683
8c7706b053c7
find theory files via session structure: much faster Prover IDE startup;
wenzelm
parents:
70682
diff
changeset
|
176 |
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
|
177 |
case Some(node_name) => node_name |
70717
cceb10dcc9f9
clarified import_name: observe directory notation more strictly;
wenzelm
parents:
70716
diff
changeset
|
178 |
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
|
179 |
} |
65472 | 180 |
} |
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
|
181 |
} |
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
|
182 |
|
65529 | 183 |
def import_name(name: Document.Node.Name, s: String): Document.Node.Name = |
75884
3d8b37b1d798
clarified signature: avoid object-oriented HTML_Context;
wenzelm
parents:
75768
diff
changeset
|
184 |
import_name(sessions_structure.theory_qualifier(name), name.master_dir, s) |
65489 | 185 |
|
70633 | 186 |
def import_name(info: Sessions.Info, s: String): Document.Node.Name = |
187 |
import_name(info.name, info.dir.implode, s) |
|
188 |
||
75393 | 189 |
def find_theory(file: JFile): Option[Document.Node.Name] = { |
70718
5bb025e24224
clarified inversion of file name to theory name, notably for Windows;
wenzelm
parents:
70717
diff
changeset
|
190 |
for { |
75885
8342cba8eae8
clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents:
75884
diff
changeset
|
191 |
qualifier <- sessions_structure.session_directories.get(File.canonical(file).getParentFile) |
70718
5bb025e24224
clarified inversion of file name to theory name, notably for Windows;
wenzelm
parents:
70717
diff
changeset
|
192 |
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
|
193 |
theory = theory_name(qualifier, theory_base) |
5bb025e24224
clarified inversion of file name to theory name, notably for Windows;
wenzelm
parents:
70717
diff
changeset
|
194 |
theory_node <- find_theory_node(theory) |
5bb025e24224
clarified inversion of file name to theory name, notably for Windows;
wenzelm
parents:
70717
diff
changeset
|
195 |
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
|
196 |
} yield theory_node |
70673
b0172698d0d3
theory_name based on session_directories: no need for expensive all_known;
wenzelm
parents:
70652
diff
changeset
|
197 |
} |
b0172698d0d3
theory_name based on session_directories: no need for expensive all_known;
wenzelm
parents:
70652
diff
changeset
|
198 |
|
75393 | 199 |
def complete_import_name(context_name: Document.Node.Name, s: String): List[String] = { |
75884
3d8b37b1d798
clarified signature: avoid object-oriented HTML_Context;
wenzelm
parents:
75768
diff
changeset
|
200 |
val context_session = sessions_structure.theory_qualifier(context_name) |
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
|
201 |
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
|
202 |
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
|
203 |
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
|
204 |
(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
|
205 |
(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
|
206 |
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
|
207 |
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
|
208 |
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
|
209 |
} yield { |
75885
8342cba8eae8
clarified signature: avoid constants from Sessions.Structure within Session.Base;
wenzelm
parents:
75884
diff
changeset
|
210 |
if (session == context_session || global_theory(theory)) theory |
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
|
211 |
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
|
212 |
}).toList.sorted |
66767 | 213 |
} |
214 |
||
75393 | 215 |
def with_thy_reader[A](name: Document.Node.Name, f: Reader[Char] => A): A = { |
66771
925d10a7a610
clarified error for bad session-qualified imports;
wenzelm
parents:
66767
diff
changeset
|
216 |
val path = name.path |
69393
ed0824ef337e
static type for Library.using: avoid Java 11 warnings on "Illegal reflective access";
wenzelm
parents:
69255
diff
changeset
|
217 |
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
|
218 |
else if (name.node == name.theory) |
925d10a7a610
clarified error for bad session-qualified imports;
wenzelm
parents:
66767
diff
changeset
|
219 |
error("Cannot load theory " + quote(name.theory)) |
925d10a7a610
clarified error for bad session-qualified imports;
wenzelm
parents:
66767
diff
changeset
|
220 |
else error ("Cannot load theory file " + path) |
64656 | 221 |
} |
222 |
||
75393 | 223 |
def check_thy( |
224 |
node_name: Document.Node.Name, |
|
225 |
reader: Reader[Char], |
|
226 |
command: Boolean = true, |
|
227 |
strict: Boolean = true |
|
228 |
): Document.Node.Header = { |
|
64826
c97296294f6d
clarified check_thy_reader: check node_name here;
wenzelm
parents:
64825
diff
changeset
|
229 |
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
|
230 |
try { |
72777
164cb0806d0a
proper positions for inlined command messages, e.g. for completion within theory header;
wenzelm
parents:
72776
diff
changeset
|
231 |
val header = Thy_Header.read(node_name, reader, command = command, strict = strict) |
72778 | 232 |
val imports = |
233 |
header.imports.map({ case (s, pos) => |
|
67296
888aa91f0556
clarified check, notably for bibtex theory (amending 5f082b1fa9fa);
wenzelm
parents:
67294
diff
changeset
|
234 |
val name = import_name(node_name, s) |
75922 | 235 |
if (Sessions.illegal_theory(name.theory_base_name)) { |
236 |
error("Illegal theory name " + quote(name.theory_base_name) + Position.here(pos)) |
|
75919 | 237 |
} |
238 |
else (name, pos) |
|
67296
888aa91f0556
clarified check, notably for bibtex theory (amending 5f082b1fa9fa);
wenzelm
parents:
67294
diff
changeset
|
239 |
}) |
72778 | 240 |
Document.Node.Header(imports, header.keywords, header.abbrevs) |
57615
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
wenzelm
parents:
56913
diff
changeset
|
241 |
} |
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
wenzelm
parents:
56913
diff
changeset
|
242 |
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
|
243 |
} |
57615
df1b3452d71c
more explicit discrimination of empty nodes -- suppress from Theories panel;
wenzelm
parents:
56913
diff
changeset
|
244 |
else Document.Node.no_header |
46737 | 245 |
} |
46748
8f3ae4d04a2d
refined node_header -- more direct buffer access (again);
wenzelm
parents:
46737
diff
changeset
|
246 |
|
50566
b43c4f660320
tuned signature: use thy_load to adapt to prover/editor specific view on sources;
wenzelm
parents:
50415
diff
changeset
|
247 |
|
64673
b5965890e54d
more uniform treatment of file name vs. theory name and special header;
wenzelm
parents:
64657
diff
changeset
|
248 |
/* special header */ |
b5965890e54d
more uniform treatment of file name vs. theory name and special header;
wenzelm
parents:
64657
diff
changeset
|
249 |
|
75393 | 250 |
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
|
251 |
val imports = |
75406 | 252 |
if (name.theory == Sessions.root_name) List(import_name(name, Sessions.theory_import)) |
67215 | 253 |
else if (Thy_Header.is_ml_root(name.theory)) List(import_name(name, Thy_Header.ML_BOOTSTRAP)) |
65489 | 254 |
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
|
255 |
else Nil |
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
256 |
if (imports.isEmpty) None |
e9e7f5f5794c
more qualifier treatment, but in the end it is still ignored;
wenzelm
parents:
65441
diff
changeset
|
257 |
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
|
258 |
} |
64673
b5965890e54d
more uniform treatment of file name vs. theory name and special header;
wenzelm
parents:
64657
diff
changeset
|
259 |
|
b5965890e54d
more uniform treatment of file name vs. theory name and special header;
wenzelm
parents:
64657
diff
changeset
|
260 |
|
64797 | 261 |
/* blobs */ |
262 |
||
263 |
def undefined_blobs(nodes: Document.Nodes): List[Document.Node.Name] = |
|
264 |
(for { |
|
265 |
(node_name, node) <- nodes.iterator |
|
65361 | 266 |
if !session_base.loaded_theory(node_name) |
64797 | 267 |
cmd <- node.load_commands.iterator |
268 |
name <- cmd.blobs_undefined.iterator |
|
269 |
} yield name).toList |
|
270 |
||
271 |
||
56316
b1cf8ddc2e04
propagate deps_changed, to resolve missing files without requiring jEdit events (e.g. buffer load/save);
wenzelm
parents:
56315
diff
changeset
|
272 |
/* document changes */ |
50566
b43c4f660320
tuned signature: use thy_load to adapt to prover/editor specific view on sources;
wenzelm
parents:
50415
diff
changeset
|
273 |
|
56316
b1cf8ddc2e04
propagate deps_changed, to resolve missing files without requiring jEdit events (e.g. buffer load/save);
wenzelm
parents:
56315
diff
changeset
|
274 |
def parse_change( |
56315 | 275 |
reparse_limit: Int, |
276 |
previous: Document.Version, |
|
277 |
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
|
278 |
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
|
279 |
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
|
280 |
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
|
281 |
|
73340 | 282 |
def commit(change: Session.Change): Unit = {} |
66959 | 283 |
|
284 |
||
285 |
/* theory and file dependencies */ |
|
286 |
||
69007 | 287 |
def dependencies( |
288 |
thys: List[(Document.Node.Name, Position.T)], |
|
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
70796
diff
changeset
|
289 |
progress: Progress = new Progress): Dependencies[Unit] = |
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
290 |
Dependencies.empty[Unit].require_thys((), thys, progress = progress) |
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
291 |
|
75393 | 292 |
def session_dependencies( |
293 |
info: Sessions.Info, |
|
294 |
progress: Progress = new Progress |
|
295 |
) : Dependencies[Options] = { |
|
73359 | 296 |
info.theories.foldLeft(Dependencies.empty[Options]) { |
297 |
case (dependencies, (options, thys)) => |
|
298 |
dependencies.require_thys(options, |
|
299 |
for { (thy, pos) <- thys } yield (import_name(info, thy), pos), |
|
300 |
progress = progress) |
|
301 |
} |
|
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
302 |
} |
69007 | 303 |
|
75393 | 304 |
object Dependencies { |
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
305 |
def empty[A]: Dependencies[A] = new Dependencies[A](Nil, Map.empty) |
69007 | 306 |
|
307 |
private def show_path(names: List[Document.Node.Name]): String = |
|
308 |
names.map(name => quote(name.theory)).mkString(" via ") |
|
309 |
||
310 |
private def cycle_msg(names: List[Document.Node.Name]): String = |
|
311 |
"Cyclic dependency of " + show_path(names) |
|
312 |
||
313 |
private def required_by(initiators: List[Document.Node.Name]): String = |
|
314 |
if (initiators.isEmpty) "" |
|
315 |
else "\n(required by " + show_path(initiators.reverse) + ")" |
|
66959 | 316 |
} |
317 |
||
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
318 |
final class Dependencies[A] private( |
66959 | 319 |
rev_entries: List[Document.Node.Entry], |
75393 | 320 |
seen: Map[Document.Node.Name, A] |
321 |
) { |
|
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
322 |
private def cons(entry: Document.Node.Entry): Dependencies[A] = |
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
323 |
new Dependencies[A](entry :: rev_entries, seen) |
66959 | 324 |
|
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
325 |
def require_thy(adjunct: A, |
69007 | 326 |
thy: (Document.Node.Name, Position.T), |
327 |
initiators: List[Document.Node.Name] = Nil, |
|
75393 | 328 |
progress: Progress = new Progress): Dependencies[A] = { |
69007 | 329 |
val (name, pos) = thy |
330 |
||
331 |
def message: String = |
|
332 |
"The error(s) above occurred for theory " + quote(name.theory) + |
|
333 |
Dependencies.required_by(initiators) + Position.here(pos) |
|
334 |
||
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
335 |
if (seen.isDefinedAt(name)) this |
69007 | 336 |
else { |
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
337 |
val dependencies1 = new Dependencies[A](rev_entries, seen + (name -> adjunct)) |
69007 | 338 |
if (session_base.loaded_theory(name)) dependencies1 |
339 |
else { |
|
340 |
try { |
|
341 |
if (initiators.contains(name)) error(Dependencies.cycle_msg(initiators)) |
|
342 |
||
343 |
progress.expose_interrupt() |
|
344 |
val header = |
|
72772 | 345 |
try { |
72777
164cb0806d0a
proper positions for inlined command messages, e.g. for completion within theory header;
wenzelm
parents:
72776
diff
changeset
|
346 |
with_thy_reader(name, check_thy(name, _, command = false)).cat_errors(message) |
72772 | 347 |
} |
69007 | 348 |
catch { case ERROR(msg) => cat_error(msg, message) } |
349 |
val entry = Document.Node.Entry(name, header) |
|
70638
f164cec7ac22
clarified signature: prefer operations without position;
wenzelm
parents:
70634
diff
changeset
|
350 |
dependencies1.require_thys(adjunct, header.imports_pos, |
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
351 |
initiators = name :: initiators, progress = progress).cons(entry) |
69007 | 352 |
} |
353 |
catch { |
|
354 |
case e: Throwable => |
|
355 |
dependencies1.cons(Document.Node.Entry(name, Document.Node.bad_header(Exn.message(e)))) |
|
356 |
} |
|
357 |
} |
|
358 |
} |
|
359 |
} |
|
360 |
||
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
361 |
def require_thys(adjunct: A, |
69007 | 362 |
thys: List[(Document.Node.Name, Position.T)], |
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
70796
diff
changeset
|
363 |
progress: Progress = new Progress, |
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
364 |
initiators: List[Document.Node.Name] = Nil): Dependencies[A] = |
73359 | 365 |
thys.foldLeft(this)(_.require_thy(adjunct, _, progress = progress, initiators = initiators)) |
66959 | 366 |
|
367 |
def entries: List[Document.Node.Entry] = rev_entries.reverse |
|
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
368 |
|
67059 | 369 |
def theories: List[Document.Node.Name] = entries.map(_.name) |
72062 | 370 |
def theories_adjunct: List[(Document.Node.Name, A)] = theories.map(name => (name, seen(name))) |
66959 | 371 |
|
372 |
def errors: List[String] = entries.flatMap(_.header.errors) |
|
373 |
||
69008
d55783ea6cf6
more detailed session dependencies, with conditions for theories;
wenzelm
parents:
69007
diff
changeset
|
374 |
def check_errors: Dependencies[A] = |
67056 | 375 |
errors match { |
376 |
case Nil => this |
|
377 |
case errs => error(cat_lines(errs)) |
|
378 |
} |
|
379 |
||
75393 | 380 |
lazy val theory_graph: Document.Node.Name.Graph[Unit] = { |
70652 | 381 |
val regular = theories.toSet |
382 |
val irregular = |
|
383 |
(for { |
|
384 |
entry <- entries.iterator |
|
385 |
imp <- entry.header.imports |
|
386 |
if !regular(imp) |
|
387 |
} yield imp).toSet |
|
388 |
||
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
|
389 |
Document.Node.Name.make_graph( |
70652 | 390 |
irregular.toList.map(name => ((name, ()), Nil)) ::: |
391 |
entries.map(entry => ((entry.name, ()), entry.header.imports))) |
|
392 |
} |
|
70650 | 393 |
|
66959 | 394 |
lazy val loaded_theories: Graph[String, Outer_Syntax] = |
73359 | 395 |
entries.foldLeft(session_base.loaded_theories) { |
396 |
case (graph, entry) => |
|
397 |
val name = entry.name.theory |
|
398 |
val imports = entry.header.imports.map(_.theory) |
|
66959 | 399 |
|
73359 | 400 |
val graph1 = (name :: imports).foldLeft(graph)(_.default_node(_, Outer_Syntax.empty)) |
401 |
val graph2 = imports.foldLeft(graph1)(_.add_edge(_, name)) |
|
66959 | 402 |
|
73359 | 403 |
val syntax0 = if (name == Thy_Header.PURE) List(Thy_Header.bootstrap_syntax) else Nil |
404 |
val syntax1 = (name :: graph2.imm_preds(name).toList).map(graph2.get_node) |
|
405 |
val syntax = Outer_Syntax.merge(syntax0 ::: syntax1) + entry.header |
|
406 |
||
407 |
graph2.map_node(name, _ => syntax) |
|
408 |
} |
|
66959 | 409 |
|
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
410 |
def get_syntax(name: Document.Node.Name): Outer_Syntax = |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
411 |
loaded_theories.get_node(name.theory) |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
412 |
|
75745 | 413 |
lazy val load_commands: List[(Document.Node.Name, List[Command_Span.Span])] = |
72799 | 414 |
theories.zip( |
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
415 |
Par_List.map((e: () => List[Command_Span.Span]) => e(), |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
416 |
theories.map(name => resources.load_commands(get_syntax(name), name)))) |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
417 |
.filter(p => p._2.nonEmpty) |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
418 |
|
75393 | 419 |
def loaded_files( |
420 |
name: Document.Node.Name, |
|
421 |
spans: List[Command_Span.Span] |
|
422 |
) : (String, List[Path]) = { |
|
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
423 |
val theory = name.theory |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
424 |
val syntax = get_syntax(name) |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
425 |
val files1 = resources.loaded_files(syntax, name, spans) |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
426 |
val files2 = if (theory == Thy_Header.PURE) pure_files(syntax) else Nil |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
427 |
(theory, files1 ::: files2) |
66959 | 428 |
} |
429 |
||
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
430 |
def loaded_files: List[Path] = |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
431 |
for { |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
432 |
(name, spans) <- load_commands |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
433 |
file <- loaded_files(name, spans)._2 |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
434 |
} yield file |
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
435 |
|
75393 | 436 |
def imported_files: List[Path] = { |
66959 | 437 |
val base_theories = |
67059 | 438 |
loaded_theories.all_preds(theories.map(_.theory)). |
72063 | 439 |
filter(session_base.loaded_theories.defined) |
66959 | 440 |
|
70740 | 441 |
base_theories.map(theory => session_base.known_theories(theory).name.path) ::: |
72816
ea4f86914cb2
support for PIDE markup for auxiliary files ("blobs");
wenzelm
parents:
72799
diff
changeset
|
442 |
base_theories.flatMap(session_base.known_loaded_files.withDefaultValue(Nil)) |
66959 | 443 |
} |
444 |
||
445 |
lazy val overall_syntax: Outer_Syntax = |
|
72063 | 446 |
Outer_Syntax.merge(loaded_theories.maximals.map(loaded_theories.get_node)) |
66959 | 447 |
|
448 |
override def toString: String = entries.toString |
|
449 |
} |
|
43651
511df47bcadc
some support for theory files within Isabelle/Scala session;
wenzelm
parents:
diff
changeset
|
450 |
} |