author | wenzelm |
Fri, 21 Mar 2025 18:37:05 +0100 | |
changeset 82316 | 83584916b6d7 |
parent 81655 | 775514416939 |
permissions | -rw-r--r-- |
64622
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
1 |
/* Title: Pure/PIDE/rendering.scala |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
2 |
Author: Makarius |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
3 |
|
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
4 |
Isabelle-specific implementation of quasi-abstract rendering and |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
5 |
markup interpretation. |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
6 |
*/ |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
7 |
|
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
8 |
package isabelle |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
9 |
|
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
10 |
|
66158 | 11 |
import java.io.{File => JFile} |
12 |
import java.nio.file.FileSystems |
|
13 |
||
72869 | 14 |
import scala.collection.immutable.SortedMap |
15 |
||
16 |
||
66158 | 17 |
|
75393 | 18 |
object Rendering { |
65101 | 19 |
/* color */ |
20 |
||
75393 | 21 |
object Color extends Enumeration { |
65104
66b19d05dcee
decorations for background and foreground colors;
wenzelm
parents:
65101
diff
changeset
|
22 |
// background |
68871
f5c76072db55
more explicit status for "canceled" command within theory node;
wenzelm
parents:
68822
diff
changeset
|
23 |
val unprocessed1, running1, canceled, bad, intensify, entity, active, active_result, |
67322 | 24 |
markdown_bullet1, markdown_bullet2, markdown_bullet3, markdown_bullet4 = Value |
71601 | 25 |
val background_colors: ValueSet = values |
65104
66b19d05dcee
decorations for background and foreground colors;
wenzelm
parents:
65101
diff
changeset
|
26 |
|
66b19d05dcee
decorations for background and foreground colors;
wenzelm
parents:
65101
diff
changeset
|
27 |
// foreground |
65637 | 28 |
val quoted, antiquoted = Value |
71601 | 29 |
val foreground_colors: ValueSet = values -- background_colors |
65121 | 30 |
|
65124 | 31 |
// message underline |
65637 | 32 |
val writeln, information, warning, legacy, error = Value |
71601 | 33 |
val message_underline_colors: ValueSet = values -- background_colors -- foreground_colors |
65124 | 34 |
|
35 |
// message background |
|
65637 | 36 |
val writeln_message, information_message, tracing_message, |
37 |
warning_message, legacy_message, error_message = Value |
|
71601 | 38 |
val message_background_colors: ValueSet = |
65143 | 39 |
values -- background_colors -- foreground_colors -- message_underline_colors |
65144 | 40 |
|
41 |
// text |
|
65637 | 42 |
val main, keyword1, keyword2, keyword3, quasi_keyword, improper, operator, |
43 |
tfree, tvar, free, skolem, bound, `var`, inner_numeral, inner_quoted, |
|
69965
da5e7278286b
more markup for various text kinds, notably for nested formal comments;
wenzelm
parents:
69916
diff
changeset
|
44 |
inner_cartouche, comment1, comment2, comment3, dynamic, class_parameter, |
da5e7278286b
more markup for various text kinds, notably for nested formal comments;
wenzelm
parents:
69916
diff
changeset
|
45 |
antiquote, raw_text, plain_text = Value |
71601 | 46 |
val text_colors: ValueSet = |
65144 | 47 |
values -- background_colors -- foreground_colors -- message_underline_colors -- |
48 |
message_background_colors |
|
65911 | 49 |
|
65913 | 50 |
// text overview |
65911 | 51 |
val unprocessed, running = Value |
65913 | 52 |
val text_overview_colors = Set(unprocessed, running, error, warning) |
65101 | 53 |
} |
54 |
||
55 |
||
65190 | 56 |
/* output messages */ |
64676 | 57 |
|
58 |
val state_pri = 1 |
|
59 |
val writeln_pri = 2 |
|
60 |
val information_pri = 3 |
|
61 |
val tracing_pri = 4 |
|
62 |
val warning_pri = 5 |
|
63 |
val legacy_pri = 6 |
|
64 |
val error_pri = 7 |
|
65 |
||
66 |
val message_pri = Map( |
|
67 |
Markup.STATE -> state_pri, |
|
68 |
Markup.STATE_MESSAGE -> state_pri, |
|
69 |
Markup.WRITELN -> writeln_pri, |
|
70 |
Markup.WRITELN_MESSAGE -> writeln_pri, |
|
71 |
Markup.INFORMATION -> information_pri, |
|
72 |
Markup.INFORMATION_MESSAGE -> information_pri, |
|
73 |
Markup.TRACING -> tracing_pri, |
|
74 |
Markup.TRACING_MESSAGE -> tracing_pri, |
|
75 |
Markup.WARNING -> warning_pri, |
|
76 |
Markup.WARNING_MESSAGE -> warning_pri, |
|
77 |
Markup.LEGACY -> legacy_pri, |
|
78 |
Markup.LEGACY_MESSAGE -> legacy_pri, |
|
79 |
Markup.ERROR -> error_pri, |
|
65133 | 80 |
Markup.ERROR_MESSAGE -> error_pri |
81 |
).withDefaultValue(0) |
|
64676 | 82 |
|
65121 | 83 |
val message_underline_color = Map( |
84 |
writeln_pri -> Color.writeln, |
|
85 |
information_pri -> Color.information, |
|
86 |
warning_pri -> Color.warning, |
|
87 |
legacy_pri -> Color.legacy, |
|
88 |
error_pri -> Color.error) |
|
89 |
||
65124 | 90 |
val message_background_color = Map( |
91 |
writeln_pri -> Color.writeln_message, |
|
92 |
information_pri -> Color.information_message, |
|
93 |
tracing_pri -> Color.tracing_message, |
|
94 |
warning_pri -> Color.warning_message, |
|
95 |
legacy_pri -> Color.legacy_message, |
|
96 |
error_pri -> Color.error_message) |
|
97 |
||
75840
f8c412a45af8
more accurate treatment of option "editor_output_state", e.g. when changed via Isabelle/jEdit Plugin Options panel;
wenzelm
parents:
75419
diff
changeset
|
98 |
def output_messages(results: Command.Results, output_state: Boolean): List[XML.Elem] = { |
65190 | 99 |
val (states, other) = |
72727 | 100 |
results.iterator.map(_._2).filterNot(Protocol.is_result).toList |
101 |
.partition(Protocol.is_state) |
|
82316
83584916b6d7
support for writeln_urgent, which is shown in Output before state messages (reminiscent of old Output.urgent_message before 521cea5fa777);
wenzelm
parents:
81655
diff
changeset
|
102 |
val (urgent, regular) = other.partition(Protocol.is_urgent) |
83584916b6d7
support for writeln_urgent, which is shown in Output before state messages (reminiscent of old Output.urgent_message before 521cea5fa777);
wenzelm
parents:
81655
diff
changeset
|
103 |
|
83584916b6d7
support for writeln_urgent, which is shown in Output before state messages (reminiscent of old Output.urgent_message before 521cea5fa777);
wenzelm
parents:
81655
diff
changeset
|
104 |
urgent ::: (if (output_state) states else Nil) ::: regular |
65190 | 105 |
} |
106 |
||
64676 | 107 |
|
65144 | 108 |
/* text color */ |
109 |
||
81558
b57996a0688c
clarified term positions and markup: syntax = true means this is via concrete syntax;
wenzelm
parents:
81555
diff
changeset
|
110 |
def get_text_color(markup: Markup): Option[Color.Value] = |
81564
56075edacb10
tuned: more robust wrt. changes the Markup space;
wenzelm
parents:
81561
diff
changeset
|
111 |
if (Markup.has_syntax(markup.properties)) None |
56075edacb10
tuned: more robust wrt. changes the Markup space;
wenzelm
parents:
81561
diff
changeset
|
112 |
else text_color.get(markup.name) |
81555 | 113 |
|
81561 | 114 |
def get_foreground_text_color(markup: Markup): Option[Color.Value] = |
115 |
foreground.get(markup.name) orElse get_text_color(markup) |
|
81559 | 116 |
|
81564
56075edacb10
tuned: more robust wrt. changes the Markup space;
wenzelm
parents:
81561
diff
changeset
|
117 |
val text_color = Map( |
65144 | 118 |
Markup.KEYWORD1 -> Color.keyword1, |
119 |
Markup.KEYWORD2 -> Color.keyword2, |
|
120 |
Markup.KEYWORD3 -> Color.keyword3, |
|
121 |
Markup.QUASI_KEYWORD -> Color.quasi_keyword, |
|
81564
56075edacb10
tuned: more robust wrt. changes the Markup space;
wenzelm
parents:
81561
diff
changeset
|
122 |
Markup.IMPROPER -> Color.improper, |
65144 | 123 |
Markup.OPERATOR -> Color.operator, |
65145 | 124 |
Markup.STRING -> Color.main, |
125 |
Markup.ALT_STRING -> Color.main, |
|
126 |
Markup.CARTOUCHE -> Color.main, |
|
65144 | 127 |
Markup.LITERAL -> Color.keyword1, |
65145 | 128 |
Markup.DELIMITER -> Color.main, |
65144 | 129 |
Markup.TFREE -> Color.tfree, |
130 |
Markup.TVAR -> Color.tvar, |
|
81564
56075edacb10
tuned: more robust wrt. changes the Markup space;
wenzelm
parents:
81561
diff
changeset
|
131 |
Markup.FREE -> Color.free, |
56075edacb10
tuned: more robust wrt. changes the Markup space;
wenzelm
parents:
81561
diff
changeset
|
132 |
Markup.SKOLEM -> Color.skolem, |
65144 | 133 |
Markup.BOUND -> Color.bound, |
65637 | 134 |
Markup.VAR -> Color.`var`, |
65144 | 135 |
Markup.INNER_STRING -> Color.inner_quoted, |
136 |
Markup.INNER_CARTOUCHE -> Color.inner_cartouche, |
|
137 |
Markup.DYNAMIC_FACT -> Color.dynamic, |
|
138 |
Markup.CLASS_PARAMETER -> Color.class_parameter, |
|
139 |
Markup.ANTIQUOTE -> Color.antiquote, |
|
69965
da5e7278286b
more markup for various text kinds, notably for nested formal comments;
wenzelm
parents:
69916
diff
changeset
|
140 |
Markup.RAW_TEXT -> Color.raw_text, |
da5e7278286b
more markup for various text kinds, notably for nested formal comments;
wenzelm
parents:
69916
diff
changeset
|
141 |
Markup.PLAIN_TEXT -> Color.plain_text, |
65144 | 142 |
Markup.ML_KEYWORD1 -> Color.keyword1, |
143 |
Markup.ML_KEYWORD2 -> Color.keyword2, |
|
144 |
Markup.ML_KEYWORD3 -> Color.keyword3, |
|
65145 | 145 |
Markup.ML_DELIMITER -> Color.main, |
65144 | 146 |
Markup.ML_NUMERAL -> Color.inner_numeral, |
147 |
Markup.ML_CHAR -> Color.inner_quoted, |
|
148 |
Markup.ML_STRING -> Color.inner_quoted, |
|
69320 | 149 |
Markup.ML_COMMENT -> Color.comment1, |
69970
b5a47478897a
clarified rendering, notably of \<^latex>CARTOUCHE in outer syntax;
wenzelm
parents:
69965
diff
changeset
|
150 |
Markup.COMMENT -> Color.comment1, |
69320 | 151 |
Markup.COMMENT1 -> Color.comment1, |
152 |
Markup.COMMENT2 -> Color.comment2, |
|
153 |
Markup.COMMENT3 -> Color.comment3) |
|
65144 | 154 |
|
81559 | 155 |
private val foreground = |
66074 | 156 |
Map( |
157 |
Markup.STRING -> Color.quoted, |
|
158 |
Markup.ALT_STRING -> Color.quoted, |
|
159 |
Markup.CARTOUCHE -> Color.quoted, |
|
160 |
Markup.ANTIQUOTED -> Color.antiquoted) |
|
161 |
||
65144 | 162 |
|
65149 | 163 |
/* tooltips */ |
65101 | 164 |
|
81651 | 165 |
def gui_name(name: String, kind: String = "", prefix: String = ""): String = |
166 |
GUI.Name(name, kind = Word.informal(kind), prefix = prefix, |
|
81655 | 167 |
style = GUI.Style_Symbol_Decoded).toString |
81651 | 168 |
|
81559 | 169 |
def get_tooltip_description(name: String): Option[String] = tooltip_description.get(name) |
170 |
||
171 |
private val tooltip_description = |
|
64622
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
172 |
Map( |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
173 |
Markup.TOKEN_RANGE -> "inner syntax token", |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
174 |
Markup.FREE -> "free variable", |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
175 |
Markup.SKOLEM -> "skolem variable", |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
176 |
Markup.BOUND -> "bound variable", |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
177 |
Markup.VAR -> "schematic variable", |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
178 |
Markup.TFREE -> "free type variable", |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
179 |
Markup.TVAR -> "schematic type variable") |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
180 |
|
65149 | 181 |
|
72900 | 182 |
/* entity focus */ |
183 |
||
75393 | 184 |
object Focus { |
72900 | 185 |
def apply(ids: Set[Long]): Focus = new Focus(ids) |
186 |
val empty: Focus = apply(Set.empty) |
|
72905 | 187 |
def make(args: List[Text.Info[Focus]]): Focus = |
73359 | 188 |
args.foldLeft(empty) { case (focus1, Text.Info(_, focus2)) => focus1 ++ focus2 } |
72927
69f768aff611
clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents:
72926
diff
changeset
|
189 |
|
69f768aff611
clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents:
72926
diff
changeset
|
190 |
val full: Focus = |
75393 | 191 |
new Focus(Set.empty) { |
72927
69f768aff611
clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents:
72926
diff
changeset
|
192 |
override def apply(id: Long): Boolean = true |
69f768aff611
clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents:
72926
diff
changeset
|
193 |
override def toString: String = "Focus.full" |
69f768aff611
clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents:
72926
diff
changeset
|
194 |
} |
72900 | 195 |
} |
196 |
||
75393 | 197 |
sealed class Focus private[Rendering](protected val rep: Set[Long]) { |
72900 | 198 |
def defined: Boolean = rep.nonEmpty |
199 |
def apply(id: Long): Boolean = rep.contains(id) |
|
200 |
def + (id: Long): Focus = if (rep.contains(id)) this else new Focus(rep + id) |
|
201 |
def ++ (other: Focus): Focus = |
|
202 |
if (this eq other) this |
|
203 |
else if (rep.isEmpty) other |
|
73359 | 204 |
else other.rep.iterator.foldLeft(this)(_ + _) |
72900 | 205 |
override def toString: String = rep.mkString("Focus(", ",", ")") |
206 |
} |
|
207 |
||
208 |
||
65149 | 209 |
/* markup elements */ |
210 |
||
81559 | 211 |
val position_elements: Markup.Elements = |
72692
22aeec526ffd
support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents:
71601
diff
changeset
|
212 |
Markup.Elements(Markup.BINDING, Markup.ENTITY, Markup.REPORT, Markup.POSITION) |
22aeec526ffd
support for PIDE markup in batch build (inactive due to pide_reports=false);
wenzelm
parents:
71601
diff
changeset
|
213 |
|
81559 | 214 |
val semantic_completion_elements: Markup.Elements = |
66053 | 215 |
Markup.Elements(Markup.COMPLETION, Markup.NO_COMPLETION) |
216 |
||
81559 | 217 |
val language_context_elements: Markup.Elements = |
74887 | 218 |
Markup.Elements(Markup.STRING, Markup.ALT_STRING, |
66053 | 219 |
Markup.CARTOUCHE, Markup.COMMENT, Markup.LANGUAGE, |
220 |
Markup.ML_STRING, Markup.ML_COMMENT) |
|
221 |
||
81559 | 222 |
val language_elements: Markup.Elements = Markup.Elements(Markup.LANGUAGE) |
66053 | 223 |
|
81559 | 224 |
val active_elements: Markup.Elements = |
69650 | 225 |
Markup.Elements(Markup.DIALOG, Markup.BROWSER, Markup.GRAPHVIEW, Markup.THEORY_EXPORTS, |
65149 | 226 |
Markup.SENDBACK, Markup.JEDIT_ACTION, Markup.SIMP_TRACE_PANEL) |
227 |
||
81559 | 228 |
val background_elements: Markup.Elements = |
68758 | 229 |
Document_Status.Command_Status.proper_elements + Markup.WRITELN_MESSAGE + |
65149 | 230 |
Markup.STATE_MESSAGE + Markup.INFORMATION_MESSAGE + |
231 |
Markup.TRACING_MESSAGE + Markup.WARNING_MESSAGE + |
|
232 |
Markup.LEGACY_MESSAGE + Markup.ERROR_MESSAGE + |
|
233 |
Markup.BAD + Markup.INTENSIFY + Markup.ENTITY + |
|
67322 | 234 |
Markup.Markdown_Bullet.name ++ active_elements |
65149 | 235 |
|
81559 | 236 |
val foreground_elements: Markup.Elements = Markup.Elements(foreground.keySet) |
66074 | 237 |
|
81559 | 238 |
val text_color_elements: Markup.Elements = |
81564
56075edacb10
tuned: more robust wrt. changes the Markup space;
wenzelm
parents:
81561
diff
changeset
|
239 |
Markup.Elements(text_color.keySet) |
65149 | 240 |
|
81559 | 241 |
val structure_elements: Markup.Elements = |
81300
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
242 |
Markup.Elements(Markup.NOTATION, Markup.EXPRESSION, Markup.LANGUAGE, Markup.ML_TYPING, |
81304
228f4b9d1d67
clarified rendering: entity acts as atomic notation / expression;
wenzelm
parents:
81303
diff
changeset
|
243 |
Markup.MARKDOWN_PARAGRAPH, Markup.MARKDOWN_ITEM, Markup.Markdown_List.name, Markup.ENTITY, |
81300
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
244 |
Markup.COMMAND_SPAN) |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
245 |
|
81559 | 246 |
val tooltip_elements: Markup.Elements = |
80911
8ad5e6df050b
block markup for specific notation, notably infix and binder;
wenzelm
parents:
80889
diff
changeset
|
247 |
Markup.Elements(Markup.LANGUAGE, Markup.NOTATION, Markup.EXPRESSION, Markup.TIMING, |
8ad5e6df050b
block markup for specific notation, notably infix and binder;
wenzelm
parents:
80889
diff
changeset
|
248 |
Markup.ENTITY, Markup.SORTING, Markup.TYPING, Markup.CLASS_PARAMETER, Markup.ML_TYPING, |
81303
cee03fbcec0d
more rendering for Markup.COMMAND_SPAN, following Rendering.structure_elements;
wenzelm
parents:
81300
diff
changeset
|
249 |
Markup.ML_BREAKPOINT, Markup.PATH, Markup.DOC, Markup.URL, Markup.COMMAND_SPAN, |
69648 | 250 |
Markup.MARKDOWN_PARAGRAPH, Markup.MARKDOWN_ITEM, Markup.Markdown_List.name) ++ |
81559 | 251 |
Markup.Elements(tooltip_description.keySet) |
64622
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
252 |
|
81559 | 253 |
val tooltip_message_elements: Markup.Elements = |
65129
06a7c2d316cf
more general tooltips, with uniform info range handling;
wenzelm
parents:
65126
diff
changeset
|
254 |
Markup.Elements(Markup.WRITELN, Markup.INFORMATION, Markup.WARNING, Markup.LEGACY, Markup.ERROR, |
06a7c2d316cf
more general tooltips, with uniform info range handling;
wenzelm
parents:
65126
diff
changeset
|
255 |
Markup.BAD) |
06a7c2d316cf
more general tooltips, with uniform info range handling;
wenzelm
parents:
65126
diff
changeset
|
256 |
|
81559 | 257 |
val message_elements: Markup.Elements = Markup.Elements(message_pri.keySet) |
258 |
val warning_elements: Markup.Elements = Markup.Elements(Markup.WARNING, Markup.LEGACY) |
|
259 |
val error_elements: Markup.Elements = Markup.Elements(Markup.ERROR) |
|
71499 | 260 |
|
81559 | 261 |
val comment_elements: Markup.Elements = |
80949
97924a26a5c3
add comments to rendering, e.g. to collect them from build database;
Fabian Huch <huch@in.tum.de>
parents:
80911
diff
changeset
|
262 |
Markup.Elements(Markup.ML_COMMENT, Markup.COMMENT, Markup.COMMENT1, Markup.COMMENT2, |
97924a26a5c3
add comments to rendering, e.g. to collect them from build database;
Fabian Huch <huch@in.tum.de>
parents:
80911
diff
changeset
|
263 |
Markup.COMMENT3) |
97924a26a5c3
add comments to rendering, e.g. to collect them from build database;
Fabian Huch <huch@in.tum.de>
parents:
80911
diff
changeset
|
264 |
|
81559 | 265 |
val entity_elements: Markup.Elements = Markup.Elements(Markup.ENTITY) |
67132 | 266 |
|
81559 | 267 |
val antiquoted_elements: Markup.Elements = Markup.Elements(Markup.ANTIQUOTED) |
67336 | 268 |
|
81559 | 269 |
val meta_data_elements: Markup.Elements = |
69900 | 270 |
Markup.Elements(Markup.META_TITLE, Markup.META_CREATOR, Markup.META_CONTRIBUTOR, |
69916
3235ecdcd884
more meta data from "dcterms" (superset of "dc");
wenzelm
parents:
69900
diff
changeset
|
271 |
Markup.META_DATE, Markup.META_DESCRIPTION, Markup.META_LICENSE) |
69900 | 272 |
|
81559 | 273 |
val document_tag_elements: Markup.Elements = |
74782 | 274 |
Markup.Elements(Markup.Document_Tag.name) |
70135
ad6d4a14adb5
report document tags as seen in the text (not the active tag of Thy_Output.present_thy);
wenzelm
parents:
69970
diff
changeset
|
275 |
|
81559 | 276 |
val markdown_elements: Markup.Elements = |
67336 | 277 |
Markup.Elements(Markup.MARKDOWN_PARAGRAPH, Markup.MARKDOWN_ITEM, Markup.Markdown_List.name, |
278 |
Markup.Markdown_Bullet.name) |
|
64622
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
279 |
} |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
280 |
|
72856 | 281 |
class Rendering( |
64622
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
282 |
val snapshot: Document.Snapshot, |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
283 |
val options: Options, |
75393 | 284 |
val session: Session |
285 |
) { |
|
64622
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
286 |
override def toString: String = "Rendering(" + snapshot.toString + ")" |
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
287 |
|
72856 | 288 |
def get_text(range: Text.Range): Option[String] = None |
66114 | 289 |
|
64622
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
290 |
|
66117 | 291 |
/* caret */ |
292 |
||
75393 | 293 |
def before_caret_range(caret: Text.Offset): Text.Range = { |
66117 | 294 |
val former_caret = snapshot.revert(caret) |
295 |
snapshot.convert(Text.Range(former_caret - 1, former_caret)) |
|
296 |
} |
|
297 |
||
298 |
||
64877 | 299 |
/* completion */ |
300 |
||
66054
fb0eea226a4d
more uniform syntax_completion + semantic_completion;
wenzelm
parents:
66053
diff
changeset
|
301 |
def semantic_completion(completed_range: Option[Text.Range], caret_range: Text.Range) |
64877 | 302 |
: Option[Text.Info[Completion.Semantic]] = |
303 |
if (snapshot.is_outdated) None |
|
304 |
else { |
|
66054
fb0eea226a4d
more uniform syntax_completion + semantic_completion;
wenzelm
parents:
66053
diff
changeset
|
305 |
snapshot.select(caret_range, Rendering.semantic_completion_elements, _ => |
64877 | 306 |
{ |
307 |
case Completion.Semantic.Info(info) => |
|
308 |
completed_range match { |
|
309 |
case Some(range0) if range0.contains(info.range) && range0 != info.range => None |
|
310 |
case _ => Some(info) |
|
311 |
} |
|
312 |
case _ => None |
|
313 |
}).headOption.map(_.info) |
|
314 |
} |
|
315 |
||
66054
fb0eea226a4d
more uniform syntax_completion + semantic_completion;
wenzelm
parents:
66053
diff
changeset
|
316 |
def semantic_completion_result( |
fb0eea226a4d
more uniform syntax_completion + semantic_completion;
wenzelm
parents:
66053
diff
changeset
|
317 |
history: Completion.History, |
66055 | 318 |
unicode: Boolean, |
66054
fb0eea226a4d
more uniform syntax_completion + semantic_completion;
wenzelm
parents:
66053
diff
changeset
|
319 |
completed_range: Option[Text.Range], |
75393 | 320 |
caret_range: Text.Range |
321 |
): (Boolean, Option[Completion.Result]) = { |
|
66054
fb0eea226a4d
more uniform syntax_completion + semantic_completion;
wenzelm
parents:
66053
diff
changeset
|
322 |
semantic_completion(completed_range, caret_range) match { |
fb0eea226a4d
more uniform syntax_completion + semantic_completion;
wenzelm
parents:
66053
diff
changeset
|
323 |
case Some(Text.Info(_, Completion.No_Completion)) => (true, None) |
fb0eea226a4d
more uniform syntax_completion + semantic_completion;
wenzelm
parents:
66053
diff
changeset
|
324 |
case Some(Text.Info(range, names: Completion.Names)) => |
72856 | 325 |
get_text(range) match { |
66055 | 326 |
case Some(original) => (false, names.complete(range, history, unicode, original)) |
66054
fb0eea226a4d
more uniform syntax_completion + semantic_completion;
wenzelm
parents:
66053
diff
changeset
|
327 |
case None => (false, None) |
fb0eea226a4d
more uniform syntax_completion + semantic_completion;
wenzelm
parents:
66053
diff
changeset
|
328 |
} |
fb0eea226a4d
more uniform syntax_completion + semantic_completion;
wenzelm
parents:
66053
diff
changeset
|
329 |
case None => (false, None) |
fb0eea226a4d
more uniform syntax_completion + semantic_completion;
wenzelm
parents:
66053
diff
changeset
|
330 |
} |
fb0eea226a4d
more uniform syntax_completion + semantic_completion;
wenzelm
parents:
66053
diff
changeset
|
331 |
} |
fb0eea226a4d
more uniform syntax_completion + semantic_completion;
wenzelm
parents:
66053
diff
changeset
|
332 |
|
66053 | 333 |
def language_context(range: Text.Range): Option[Completion.Language_Context] = |
334 |
snapshot.select(range, Rendering.language_context_elements, _ => |
|
335 |
{ |
|
76965 | 336 |
case Text.Info(_, XML.Elem(Markup.Language(lang), _)) => |
337 |
if (lang.delimited) Some(Completion.Language_Context(lang)) else None |
|
66053 | 338 |
case Text.Info(_, elem) |
339 |
if elem.name == Markup.ML_STRING || elem.name == Markup.ML_COMMENT => |
|
340 |
Some(Completion.Language_Context.ML_inner) |
|
341 |
case Text.Info(_, _) => |
|
342 |
Some(Completion.Language_Context.inner) |
|
343 |
}).headOption.map(_.info) |
|
344 |
||
66158 | 345 |
|
346 |
/* file-system path completion */ |
|
347 |
||
72842
6aae62f55c2b
clarified markup: support more completion, e.g. within ROOTS;
wenzelm
parents:
72729
diff
changeset
|
348 |
def language_path(range: Text.Range): Option[Text.Info[Boolean]] = |
66053 | 349 |
snapshot.select(range, Rendering.language_elements, _ => |
350 |
{ |
|
76965 | 351 |
case Text.Info(info_range, XML.Elem(Markup.Language(lang), _)) if lang.is_path => |
352 |
Some((lang.delimited, snapshot.convert(info_range))) |
|
66053 | 353 |
case _ => None |
72842
6aae62f55c2b
clarified markup: support more completion, e.g. within ROOTS;
wenzelm
parents:
72729
diff
changeset
|
354 |
}).headOption.map({ case Text.Info(_, (delimited, range)) => Text.Info(range, delimited) }) |
66053 | 355 |
|
75393 | 356 |
def path_completion(caret: Text.Offset): Option[Completion.Result] = { |
357 |
def complete(text: String): List[(String, List[String])] = { |
|
66158 | 358 |
try { |
359 |
val path = Path.explode(text) |
|
360 |
val (dir, base_name) = |
|
361 |
if (text == "" || text.endsWith("/")) (path, "") |
|
69366 | 362 |
else (path.dir, path.file_name) |
66158 | 363 |
|
76858 | 364 |
val directory = new JFile(session.resources.append_path(snapshot.node_name.master_dir, dir)) |
66158 | 365 |
val files = directory.listFiles |
366 |
if (files == null) Nil |
|
367 |
else { |
|
368 |
val ignore = |
|
66923 | 369 |
space_explode(':', options.string("completion_path_ignore")). |
66158 | 370 |
map(s => FileSystems.getDefault.getPathMatcher("glob:" + s)) |
371 |
(for { |
|
372 |
file <- files.iterator |
|
373 |
||
374 |
name = file.getName |
|
375 |
if name.startsWith(base_name) |
|
376 |
path_name = new JFile(name).toPath |
|
377 |
if !ignore.exists(matcher => matcher.matches(path_name)) |
|
378 |
||
379 |
text1 = (dir + Path.basic(name)).implode_short |
|
380 |
if text != text1 |
|
381 |
||
382 |
is_dir = new JFile(directory, name).isDirectory |
|
383 |
replacement = text1 + (if (is_dir) "/" else "") |
|
384 |
descr = List(text1, if (is_dir) "(directory)" else "(file)") |
|
385 |
} yield (replacement, descr)).take(options.int("completion_limit")).toList |
|
386 |
} |
|
387 |
} |
|
388 |
catch { case ERROR(_) => Nil } |
|
389 |
} |
|
390 |
||
391 |
def is_wrapped(s: String): Boolean = |
|
392 |
s.startsWith("\"") && s.endsWith("\"") || |
|
393 |
s.startsWith(Symbol.open_decoded) && s.endsWith(Symbol.close_decoded) |
|
394 |
||
395 |
for { |
|
72842
6aae62f55c2b
clarified markup: support more completion, e.g. within ROOTS;
wenzelm
parents:
72729
diff
changeset
|
396 |
Text.Info(r1, delimited) <- language_path(before_caret_range(caret)) |
72856 | 397 |
s1 <- get_text(r1) |
72842
6aae62f55c2b
clarified markup: support more completion, e.g. within ROOTS;
wenzelm
parents:
72729
diff
changeset
|
398 |
(r2, s2) <- |
6aae62f55c2b
clarified markup: support more completion, e.g. within ROOTS;
wenzelm
parents:
72729
diff
changeset
|
399 |
if (is_wrapped(s1)) { |
6aae62f55c2b
clarified markup: support more completion, e.g. within ROOTS;
wenzelm
parents:
72729
diff
changeset
|
400 |
Some((Text.Range(r1.start + 1, r1.stop - 1), s1.substring(1, s1.length - 1))) |
6aae62f55c2b
clarified markup: support more completion, e.g. within ROOTS;
wenzelm
parents:
72729
diff
changeset
|
401 |
} |
6aae62f55c2b
clarified markup: support more completion, e.g. within ROOTS;
wenzelm
parents:
72729
diff
changeset
|
402 |
else if (delimited) Some((r1, s1)) |
6aae62f55c2b
clarified markup: support more completion, e.g. within ROOTS;
wenzelm
parents:
72729
diff
changeset
|
403 |
else None |
66158 | 404 |
if Path.is_valid(s2) |
405 |
paths = complete(s2) |
|
406 |
if paths.nonEmpty |
|
407 |
items = paths.map(p => Completion.Item(r2, s2, "", p._2, p._1, 0, false)) |
|
408 |
} yield Completion.Result(r2, s2, false, items) |
|
409 |
} |
|
66053 | 410 |
|
64877 | 411 |
|
65139 | 412 |
/* spell checker */ |
413 |
||
76233
f3b23f4eaaac
clarified signature, to support external tools like "isabelle narration";
wenzelm
parents:
75958
diff
changeset
|
414 |
lazy val spell_checker_include: Markup.Elements = |
67395
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67336
diff
changeset
|
415 |
Markup.Elements(space_explode(',', options.string("spell_checker_include")): _*) |
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67336
diff
changeset
|
416 |
|
76233
f3b23f4eaaac
clarified signature, to support external tools like "isabelle narration";
wenzelm
parents:
75958
diff
changeset
|
417 |
lazy val spell_checker_exclude: Markup.Elements = |
f3b23f4eaaac
clarified signature, to support external tools like "isabelle narration";
wenzelm
parents:
75958
diff
changeset
|
418 |
Markup.Elements(space_explode(',', options.string("spell_checker_exclude")): _*) |
f3b23f4eaaac
clarified signature, to support external tools like "isabelle narration";
wenzelm
parents:
75958
diff
changeset
|
419 |
|
f3b23f4eaaac
clarified signature, to support external tools like "isabelle narration";
wenzelm
parents:
75958
diff
changeset
|
420 |
lazy val spell_checker_elements: Markup.Elements = |
f3b23f4eaaac
clarified signature, to support external tools like "isabelle narration";
wenzelm
parents:
75958
diff
changeset
|
421 |
spell_checker_include ++ spell_checker_exclude |
65139 | 422 |
|
75393 | 423 |
def spell_checker(range: Text.Range): List[Text.Info[Text.Range]] = { |
67395
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67336
diff
changeset
|
424 |
val result = |
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67336
diff
changeset
|
425 |
snapshot.select(range, spell_checker_elements, _ => |
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67336
diff
changeset
|
426 |
{ |
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67336
diff
changeset
|
427 |
case info => |
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67336
diff
changeset
|
428 |
Some( |
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67336
diff
changeset
|
429 |
if (spell_checker_include(info.info.name)) |
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67336
diff
changeset
|
430 |
Some(snapshot.convert(info.range)) |
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67336
diff
changeset
|
431 |
else None) |
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67336
diff
changeset
|
432 |
}) |
78592 | 433 |
for (case Text.Info(range, Some(range1)) <- result) |
67395
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67336
diff
changeset
|
434 |
yield Text.Info(range, range1) |
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67336
diff
changeset
|
435 |
} |
65139 | 436 |
|
437 |
def spell_checker_point(range: Text.Range): Option[Text.Range] = |
|
67395
b39d596b77ce
more accurate spell-checking for nested quotations / antiquotations, notably in formal comments;
wenzelm
parents:
67336
diff
changeset
|
438 |
spell_checker(range).headOption.map(_.info) |
65139 | 439 |
|
440 |
||
65101 | 441 |
/* text background */ |
442 |
||
75393 | 443 |
def background( |
444 |
elements: Markup.Elements, |
|
445 |
range: Text.Range, |
|
446 |
focus: Rendering.Focus |
|
447 |
) : List[Text.Info[Rendering.Color.Value]] = { |
|
65101 | 448 |
for { |
449 |
Text.Info(r, result) <- |
|
450 |
snapshot.cumulate[(List[Markup], Option[Rendering.Color.Value])]( |
|
72906 | 451 |
range, (List(Markup.Empty), None), elements, |
65101 | 452 |
command_states => |
453 |
{ |
|
72925 | 454 |
case ((markups, color), Text.Info(_, XML.Elem(markup, _))) |
68758 | 455 |
if markups.nonEmpty && Document_Status.Command_Status.proper_elements(markup.name) => |
65101 | 456 |
Some((markup :: markups, color)) |
457 |
case (_, Text.Info(_, XML.Elem(Markup(Markup.BAD, _), _))) => |
|
458 |
Some((Nil, Some(Rendering.Color.bad))) |
|
459 |
case (_, Text.Info(_, XML.Elem(Markup(Markup.INTENSIFY, _), _))) => |
|
460 |
Some((Nil, Some(Rendering.Color.intensify))) |
|
72929 | 461 |
case (_, Text.Info(_, XML.Elem(Markup.Entity.Occ(i), _))) if focus(i) => |
72903 | 462 |
Some((Nil, Some(Rendering.Color.entity))) |
67322 | 463 |
case (_, Text.Info(_, XML.Elem(Markup.Markdown_Bullet(depth), _))) => |
65101 | 464 |
val color = |
65150 | 465 |
depth % 4 match { |
67322 | 466 |
case 1 => Rendering.Color.markdown_bullet1 |
467 |
case 2 => Rendering.Color.markdown_bullet2 |
|
468 |
case 3 => Rendering.Color.markdown_bullet3 |
|
469 |
case _ => Rendering.Color.markdown_bullet4 |
|
65101 | 470 |
} |
471 |
Some((Nil, Some(color))) |
|
72907 | 472 |
case (_, Text.Info(_, Protocol.Dialog(_, serial, result))) => |
65101 | 473 |
command_states.collectFirst( |
474 |
{ case st if st.results.defined(serial) => st.results.get(serial).get }) match |
|
475 |
{ |
|
476 |
case Some(Protocol.Dialog_Result(res)) if res == result => |
|
477 |
Some((Nil, Some(Rendering.Color.active_result))) |
|
478 |
case _ => |
|
479 |
Some((Nil, Some(Rendering.Color.active))) |
|
480 |
} |
|
481 |
case (_, Text.Info(_, elem)) => |
|
482 |
if (Rendering.active_elements(elem.name)) |
|
483 |
Some((Nil, Some(Rendering.Color.active))) |
|
484 |
else None |
|
485 |
}) |
|
486 |
color <- |
|
72925 | 487 |
result match { |
65101 | 488 |
case (markups, opt_color) if markups.nonEmpty => |
68758 | 489 |
val status = Document_Status.Command_Status.make(markups.iterator) |
65101 | 490 |
if (status.is_unprocessed) Some(Rendering.Color.unprocessed1) |
491 |
else if (status.is_running) Some(Rendering.Color.running1) |
|
68871
f5c76072db55
more explicit status for "canceled" command within theory node;
wenzelm
parents:
68822
diff
changeset
|
492 |
else if (status.is_canceled) Some(Rendering.Color.canceled) |
65101 | 493 |
else opt_color |
494 |
case (_, opt_color) => opt_color |
|
72925 | 495 |
} |
65101 | 496 |
} yield Text.Info(r, color) |
497 |
} |
|
498 |
||
499 |
||
500 |
/* text foreground */ |
|
501 |
||
502 |
def foreground(range: Text.Range): List[Text.Info[Rendering.Color.Value]] = |
|
503 |
snapshot.select(range, Rendering.foreground_elements, _ => |
|
504 |
{ |
|
66074 | 505 |
case info => Some(Rendering.foreground(info.info.name)) |
65101 | 506 |
}) |
507 |
||
508 |
||
72904 | 509 |
/* entity focus */ |
64767 | 510 |
|
72904 | 511 |
def entity_focus_defs(range: Text.Range): Rendering.Focus = |
72905 | 512 |
Rendering.Focus.make( |
513 |
snapshot.cumulate(range, Rendering.Focus.empty, Rendering.entity_elements, _ => |
|
72904 | 514 |
{ |
515 |
case (focus, Text.Info(_, XML.Elem(Markup.Entity.Def(i), _))) => Some(focus + i) |
|
516 |
case _ => None |
|
72905 | 517 |
})) |
72904 | 518 |
|
72927
69f768aff611
clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents:
72926
diff
changeset
|
519 |
def entity_focus(range: Text.Range, defs_focus: Rendering.Focus): Rendering.Focus = |
72905 | 520 |
Rendering.Focus.make( |
521 |
snapshot.cumulate(range, Rendering.Focus.empty, Rendering.entity_elements, _ => |
|
72904 | 522 |
{ |
523 |
case (focus, Text.Info(_, XML.Elem(Markup.Entity.Ref(i), _))) |
|
72927
69f768aff611
clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents:
72926
diff
changeset
|
524 |
if defs_focus(i) => Some(focus + i) |
72904 | 525 |
case _ => None |
72905 | 526 |
})) |
72904 | 527 |
|
528 |
||
529 |
/* caret focus */ |
|
64767 | 530 |
|
75393 | 531 |
def caret_focus(caret_range: Text.Range, defs_range: Text.Range): Rendering.Focus = { |
72904 | 532 |
val focus = entity_focus_defs(caret_range) |
533 |
if (focus.defined) focus |
|
72927
69f768aff611
clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents:
72926
diff
changeset
|
534 |
else if (defs_range == Text.Range.offside) Rendering.Focus.empty |
69f768aff611
clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents:
72926
diff
changeset
|
535 |
else { |
69f768aff611
clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents:
72926
diff
changeset
|
536 |
val defs_focus = |
69f768aff611
clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents:
72926
diff
changeset
|
537 |
if (defs_range == Text.Range.full) Rendering.Focus.full |
69f768aff611
clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents:
72926
diff
changeset
|
538 |
else entity_focus_defs(defs_range) |
69f768aff611
clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents:
72926
diff
changeset
|
539 |
entity_focus(caret_range, defs_focus) |
69f768aff611
clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents:
72926
diff
changeset
|
540 |
} |
64767 | 541 |
} |
542 |
||
75393 | 543 |
def caret_focus_ranges(caret_range: Text.Range, defs_range: Text.Range): List[Text.Range] = { |
72927
69f768aff611
clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents:
72926
diff
changeset
|
544 |
val focus = caret_focus(caret_range, defs_range) |
72926 | 545 |
if (focus.defined) { |
72927
69f768aff611
clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents:
72926
diff
changeset
|
546 |
snapshot.cumulate[Boolean](defs_range, false, Rendering.entity_elements, _ => |
72904 | 547 |
{ |
72929 | 548 |
case (_, Text.Info(_, XML.Elem(Markup.Entity.Occ(i), _))) if focus(i) => Some(true) |
72904 | 549 |
case _ => None |
550 |
}).flatMap(info => if (info.info) Some(info.range) else None) |
|
64767 | 551 |
} |
552 |
else Nil |
|
553 |
} |
|
65121 | 554 |
|
555 |
||
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72856
diff
changeset
|
556 |
/* messages */ |
65121 | 557 |
|
75393 | 558 |
def message_underline_color( |
559 |
elements: Markup.Elements, |
|
560 |
range: Text.Range |
|
561 |
) : List[Text.Info[Rendering.Color.Value]] = { |
|
65121 | 562 |
val results = |
563 |
snapshot.cumulate[Int](range, 0, elements, _ => |
|
564 |
{ |
|
565 |
case (pri, Text.Info(_, elem)) => Some(pri max Rendering.message_pri(elem.name)) |
|
566 |
}) |
|
567 |
for { |
|
568 |
Text.Info(r, pri) <- results |
|
569 |
color <- Rendering.message_underline_color.get(pri) |
|
570 |
} yield Text.Info(r, color) |
|
571 |
} |
|
65149 | 572 |
|
75393 | 573 |
def text_messages(range: Text.Range): List[Text.Info[XML.Elem]] = { |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72856
diff
changeset
|
574 |
val results = |
72872 | 575 |
snapshot.cumulate[Vector[Command.Results.Entry]]( |
576 |
range, Vector.empty, Rendering.message_elements, command_states => |
|
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72856
diff
changeset
|
577 |
{ |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72856
diff
changeset
|
578 |
case (res, Text.Info(_, elem)) => |
72872 | 579 |
Command.State.get_result_proper(command_states, elem.markup.properties) |
580 |
.map(res :+ _) |
|
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72856
diff
changeset
|
581 |
}) |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72856
diff
changeset
|
582 |
|
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72856
diff
changeset
|
583 |
var seen_serials = Set.empty[Long] |
75393 | 584 |
def seen(i: Long): Boolean = { |
72872 | 585 |
val b = seen_serials(i) |
586 |
seen_serials += i |
|
587 |
b |
|
588 |
} |
|
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72856
diff
changeset
|
589 |
for { |
72872 | 590 |
Text.Info(range, entries) <- results |
591 |
(i, elem) <- entries if !seen(i) |
|
72869 | 592 |
} yield Text.Info(range, elem) |
72858
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72856
diff
changeset
|
593 |
} |
cb0c407fbc6e
added "isabelle log": print messages from build database;
wenzelm
parents:
72856
diff
changeset
|
594 |
|
65149 | 595 |
|
81300
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
596 |
/* markup structure */ |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
597 |
|
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
598 |
def markup_structure( |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
599 |
elements: Markup.Elements, |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
600 |
ranges: List[Text.Range], |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
601 |
filter: Text.Markup => Boolean = _ => true |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
602 |
): List[Text.Markup] = { |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
603 |
def cumulate(range: Text.Range): List[Text.Info[Option[Text.Markup]]] = |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
604 |
snapshot.cumulate[Option[Text.Markup]](range, None, elements, _ => |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
605 |
{ |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
606 |
case (old, markup) => |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
607 |
Some(if (old.isEmpty || filter(markup)) Some(markup) else old) |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
608 |
}) |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
609 |
|
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
610 |
Library.distinct( |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
611 |
for (range <- ranges; case Text.Info(_, Some(m)) <- cumulate(range)) |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
612 |
yield m) |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
613 |
} |
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
614 |
|
42ff2b915b1d
support Isabelle/jEdit action isabelle.select_structure;
wenzelm
parents:
81205
diff
changeset
|
615 |
|
65149 | 616 |
/* tooltips */ |
617 |
||
69899 | 618 |
def timing_threshold: Double = 0.0 |
65149 | 619 |
|
620 |
private sealed case class Tooltip_Info( |
|
621 |
range: Text.Range, |
|
622 |
timing: Timing = Timing.zero, |
|
81395 | 623 |
messages: List[(Long, XML.Elem)] = Nil, |
624 |
rev_infos: List[(Boolean, Int, XML.Elem)] = Nil |
|
75393 | 625 |
) { |
81203 | 626 |
def add_timing(t: Timing): Tooltip_Info = copy(timing = timing + t) |
81395 | 627 |
def add_message(r0: Text.Range, serial: Long, msg: XML.Elem): Tooltip_Info = { |
65149 | 628 |
val r = snapshot.convert(r0) |
81395 | 629 |
if (range == r) copy(messages = (serial -> msg) :: messages) |
630 |
else copy(range = r, messages = List(serial -> msg)) |
|
65149 | 631 |
} |
81395 | 632 |
def add_info(r0: Text.Range, info: XML.Elem, |
633 |
important: Boolean = true, |
|
634 |
ord: Int = 0 |
|
635 |
): Tooltip_Info = { |
|
65149 | 636 |
val r = snapshot.convert(r0) |
81395 | 637 |
val entry = (important, ord, info) |
81205
a22af970a5f9
clarified order of tooltips: make it less dependent on report order from ML (which differs for input vs. output);
wenzelm
parents:
81204
diff
changeset
|
638 |
if (range == r) copy(rev_infos = entry :: rev_infos) |
a22af970a5f9
clarified order of tooltips: make it less dependent on report order from ML (which differs for input vs. output);
wenzelm
parents:
81204
diff
changeset
|
639 |
else copy (range = r, rev_infos = List(entry)) |
65149 | 640 |
} |
81395 | 641 |
def add_info_text(r0: Text.Range, text: String, ord: Int = 0): Tooltip_Info = |
642 |
add_info(r0, Pretty.string(text), ord = ord) |
|
67933
604da273e18d
more robust timing info: do not rely on order of markup;
wenzelm
parents:
67824
diff
changeset
|
643 |
|
81395 | 644 |
def timing_info(elem: XML.Elem): Option[XML.Elem] = |
645 |
if (elem.markup.name == Markup.TIMING) { |
|
646 |
if (timing.elapsed.seconds >= timing_threshold) { |
|
647 |
Some(Pretty.string(timing.message)) |
|
648 |
} |
|
649 |
else None |
|
67933
604da273e18d
more robust timing info: do not rely on order of markup;
wenzelm
parents:
67824
diff
changeset
|
650 |
} |
81395 | 651 |
else Some(elem) |
652 |
def infos(important: Boolean = true): List[XML.Elem] = |
|
67933
604da273e18d
more robust timing info: do not rely on order of markup;
wenzelm
parents:
67824
diff
changeset
|
653 |
for { |
81395 | 654 |
(is_important, _, elem) <- rev_infos.reverse.sortBy(_._2) if is_important == important |
655 |
elem1 <- timing_info(elem) |
|
656 |
} yield elem1 |
|
65149 | 657 |
} |
658 |
||
65488 | 659 |
def perhaps_append_file(node_name: Document.Node.Name, name: String): String = |
76858 | 660 |
if (Path.is_valid(name)) session.resources.append_path(node_name.master_dir, Path.explode(name)) |
76663 | 661 |
else name |
65487 | 662 |
|
81395 | 663 |
def tooltips(elements: Markup.Elements, range: Text.Range): Option[Text.Info[List[XML.Elem]]] = { |
65149 | 664 |
val results = |
67824
661cd25304ae
more compact markup tree: output messages are already stored in command results (e.g. relevant for XML data representation);
wenzelm
parents:
67395
diff
changeset
|
665 |
snapshot.cumulate[Tooltip_Info](range, Tooltip_Info(range), elements, command_states => |
65149 | 666 |
{ |
81203 | 667 |
case (info, Text.Info(_, XML.Elem(Markup.Timing(t), _))) => Some(info.add_timing(t)) |
65149 | 668 |
|
67824
661cd25304ae
more compact markup tree: output messages are already stored in command results (e.g. relevant for XML data representation);
wenzelm
parents:
67395
diff
changeset
|
669 |
case (info, Text.Info(r0, msg @ XML.Elem(Markup(Markup.BAD, Markup.Serial(i)), body))) |
81203 | 670 |
if body.nonEmpty => Some(info.add_message(r0, i, msg)) |
67824
661cd25304ae
more compact markup tree: output messages are already stored in command results (e.g. relevant for XML data representation);
wenzelm
parents:
67395
diff
changeset
|
671 |
|
661cd25304ae
more compact markup tree: output messages are already stored in command results (e.g. relevant for XML data representation);
wenzelm
parents:
67395
diff
changeset
|
672 |
case (info, Text.Info(r0, XML.Elem(Markup(name, props), _))) |
661cd25304ae
more compact markup tree: output messages are already stored in command results (e.g. relevant for XML data representation);
wenzelm
parents:
67395
diff
changeset
|
673 |
if Rendering.tooltip_message_elements(name) => |
81395 | 674 |
for ((i, msg) <- Command.State.get_result_proper(command_states, props)) |
675 |
yield info.add_message(r0, i, msg) |
|
65149 | 676 |
|
677 |
case (info, Text.Info(r0, XML.Elem(Markup.Entity(kind, name), _))) |
|
678 |
if kind != "" && kind != Markup.ML_DEF => |
|
81651 | 679 |
val txt = Rendering.gui_name(name, kind = kind) |
680 |
val info1 = info.add_info_text(r0, txt, ord = 2) |
|
81204 | 681 |
Some(if (kind == Markup.COMMAND) info1.add_info(r0, XML.elem(Markup.TIMING)) else info1) |
65149 | 682 |
|
683 |
case (info, Text.Info(r0, XML.Elem(Markup.Path(name), _))) => |
|
65488 | 684 |
val file = perhaps_append_file(snapshot.node_name, name) |
81397 | 685 |
val info1 = |
686 |
if (name == file) info |
|
81651 | 687 |
else info.add_info_text(r0, Rendering.gui_name(name, kind = "path")) |
688 |
Some(info1.add_info_text(r0, Rendering.gui_name(file, kind = "file"))) |
|
65149 | 689 |
|
690 |
case (info, Text.Info(r0, XML.Elem(Markup.Doc(name), _))) => |
|
81651 | 691 |
Some(info.add_info_text(r0, Rendering.gui_name(name, kind = "doc"))) |
65149 | 692 |
|
693 |
case (info, Text.Info(r0, XML.Elem(Markup.Url(name), _))) => |
|
81651 | 694 |
Some(info.add_info_text(r0, Rendering.gui_name(name, kind = "URL"))) |
65149 | 695 |
|
81303
cee03fbcec0d
more rendering for Markup.COMMAND_SPAN, following Rendering.structure_elements;
wenzelm
parents:
81300
diff
changeset
|
696 |
case (info, Text.Info(r0, XML.Elem(Markup.Command_Span(span), _))) => |
81651 | 697 |
Some(info.add_info_text(r0, Rendering.gui_name(span.name, kind = Markup.COMMAND_SPAN))) |
81303
cee03fbcec0d
more rendering for Markup.COMMAND_SPAN, following Rendering.structure_elements;
wenzelm
parents:
81300
diff
changeset
|
698 |
|
65149 | 699 |
case (info, Text.Info(r0, XML.Elem(Markup(name, _), body))) |
700 |
if name == Markup.SORTING || name == Markup.TYPING => |
|
81205
a22af970a5f9
clarified order of tooltips: make it less dependent on report order from ML (which differs for input vs. output);
wenzelm
parents:
81204
diff
changeset
|
701 |
Some(info.add_info(r0, Pretty.block(XML.Text("::") :: Pretty.brk(1) :: body), ord = 3)) |
65149 | 702 |
|
703 |
case (info, Text.Info(r0, XML.Elem(Markup(Markup.CLASS_PARAMETER, _), body))) => |
|
81204 | 704 |
Some(info.add_info(r0, Pretty.block(body, indent = 0))) |
65149 | 705 |
|
706 |
case (info, Text.Info(r0, XML.Elem(Markup(Markup.ML_TYPING, _), body))) => |
|
81204 | 707 |
Some(info.add_info(r0, Pretty.block(XML.Text("ML:") :: Pretty.brk(1) :: body), |
708 |
important = false)) |
|
65149 | 709 |
|
710 |
case (info, Text.Info(r0, Protocol.ML_Breakpoint(breakpoint))) => |
|
81396 | 711 |
val text = |
712 |
if (session.debugger.breakpoint_state(breakpoint)) "breakpoint (enabled)" |
|
713 |
else "breakpoint (disabled)" |
|
714 |
Some(info.add_info_text(r0, text)) |
|
81303
cee03fbcec0d
more rendering for Markup.COMMAND_SPAN, following Rendering.structure_elements;
wenzelm
parents:
81300
diff
changeset
|
715 |
|
76965 | 716 |
case (info, Text.Info(r0, XML.Elem(Markup.Language(lang), _))) => |
81395 | 717 |
Some(info.add_info_text(r0, "language: " + lang.description)) |
65149 | 718 |
|
80911
8ad5e6df050b
block markup for specific notation, notably infix and binder;
wenzelm
parents:
80889
diff
changeset
|
719 |
case (info, Text.Info(r0, XML.Elem(Markup.Notation(kind, name), _))) => |
81651 | 720 |
val description = Rendering.gui_name(name, kind = kind, prefix = Markup.NOTATION) |
721 |
Some(info.add_info_text(r0, description, ord = 1)) |
|
80911
8ad5e6df050b
block markup for specific notation, notably infix and binder;
wenzelm
parents:
80889
diff
changeset
|
722 |
|
81630
5b87f8dacd8e
more uniform Markup.notation vs. Markup.expression;
wenzelm
parents:
81564
diff
changeset
|
723 |
case (info, Text.Info(r0, XML.Elem(Markup.Expression(kind, name), _))) => |
81651 | 724 |
val description = Rendering.gui_name(name, kind = kind, prefix = Markup.EXPRESSION) |
725 |
Some(info.add_info_text(r0, description, ord = 1)) |
|
65149 | 726 |
|
727 |
case (info, Text.Info(r0, XML.Elem(Markup(Markup.MARKDOWN_PARAGRAPH, _), _))) => |
|
81395 | 728 |
Some(info.add_info_text(r0, "Markdown: paragraph")) |
67323
d02208cefbdb
PIDE markup for Markdown items (which may consist of multiple paragraphs or lists);
wenzelm
parents:
67322
diff
changeset
|
729 |
case (info, Text.Info(r0, XML.Elem(Markup(Markup.MARKDOWN_ITEM, _), _))) => |
81395 | 730 |
Some(info.add_info_text(r0, "Markdown: item")) |
65149 | 731 |
case (info, Text.Info(r0, XML.Elem(Markup.Markdown_List(kind), _))) => |
81395 | 732 |
Some(info.add_info_text(r0, "Markdown: " + kind)) |
65149 | 733 |
|
734 |
case (info, Text.Info(r0, XML.Elem(Markup(name, _), _))) => |
|
81559 | 735 |
Rendering.get_tooltip_description(name).map(desc => info.add_info_text(r0, desc)) |
65149 | 736 |
}).map(_.info) |
737 |
||
738 |
if (results.isEmpty) None |
|
739 |
else { |
|
740 |
val r = Text.Range(results.head.range.start, results.last.range.stop) |
|
741 |
val all_tips = |
|
81395 | 742 |
results.flatMap(_.messages).foldLeft(SortedMap.empty[Long, XML.Elem])(_ + _) |
72869 | 743 |
.iterator.map(_._2).toList ::: |
81204 | 744 |
results.flatMap(res => res.infos()) ::: |
745 |
results.flatMap(res => res.infos(important = false)).lastOption.toList |
|
65149 | 746 |
if (all_tips.isEmpty) None else Some(Text.Info(r, all_tips)) |
747 |
} |
|
748 |
} |
|
65911 | 749 |
|
750 |
||
71499 | 751 |
/* messages */ |
752 |
||
753 |
def warnings(range: Text.Range): List[Text.Markup] = |
|
754 |
snapshot.select(range, Rendering.warning_elements, _ => Some(_)).map(_.info) |
|
755 |
||
756 |
def errors(range: Text.Range): List[Text.Markup] = |
|
757 |
snapshot.select(range, Rendering.error_elements, _ => Some(_)).map(_.info) |
|
758 |
||
759 |
||
80949
97924a26a5c3
add comments to rendering, e.g. to collect them from build database;
Fabian Huch <huch@in.tum.de>
parents:
80911
diff
changeset
|
760 |
/* comments */ |
97924a26a5c3
add comments to rendering, e.g. to collect them from build database;
Fabian Huch <huch@in.tum.de>
parents:
80911
diff
changeset
|
761 |
|
97924a26a5c3
add comments to rendering, e.g. to collect them from build database;
Fabian Huch <huch@in.tum.de>
parents:
80911
diff
changeset
|
762 |
def comments(range: Text.Range): List[Text.Markup] = |
97924a26a5c3
add comments to rendering, e.g. to collect them from build database;
Fabian Huch <huch@in.tum.de>
parents:
80911
diff
changeset
|
763 |
snapshot.select(range, Rendering.comment_elements, _ => Some(_)).map(_.info) |
97924a26a5c3
add comments to rendering, e.g. to collect them from build database;
Fabian Huch <huch@in.tum.de>
parents:
80911
diff
changeset
|
764 |
|
97924a26a5c3
add comments to rendering, e.g. to collect them from build database;
Fabian Huch <huch@in.tum.de>
parents:
80911
diff
changeset
|
765 |
|
65911 | 766 |
/* command status overview */ |
767 |
||
75393 | 768 |
def overview_color(range: Text.Range): Option[Rendering.Color.Value] = { |
65911 | 769 |
if (snapshot.is_outdated) None |
770 |
else { |
|
771 |
val results = |
|
68758 | 772 |
snapshot.cumulate[List[Markup]](range, Nil, Document_Status.Command_Status.liberal_elements, |
773 |
_ => |
|
774 |
{ |
|
775 |
case (status, Text.Info(_, elem)) => Some(elem.markup :: status) |
|
776 |
}, status = true) |
|
65911 | 777 |
if (results.isEmpty) None |
778 |
else { |
|
68758 | 779 |
val status = Document_Status.Command_Status.make(results.iterator.flatMap(_.info)) |
65911 | 780 |
|
781 |
if (status.is_running) Some(Rendering.Color.running) |
|
782 |
else if (status.is_failed) Some(Rendering.Color.error) |
|
783 |
else if (status.is_warned) Some(Rendering.Color.warning) |
|
784 |
else if (status.is_unprocessed) Some(Rendering.Color.unprocessed) |
|
785 |
else None |
|
786 |
} |
|
787 |
} |
|
788 |
} |
|
67132 | 789 |
|
790 |
||
791 |
/* antiquoted text */ |
|
792 |
||
793 |
def antiquoted(range: Text.Range): Option[Text.Range] = |
|
794 |
snapshot.cumulate[Option[Text.Range]](range, None, Rendering.antiquoted_elements, _ => |
|
795 |
{ |
|
796 |
case (res, info) => if (res.isEmpty) Some(Some(info.range)) else None |
|
797 |
}).headOption.flatMap(_.info) |
|
69900 | 798 |
|
799 |
||
800 |
/* meta data */ |
|
801 |
||
75393 | 802 |
def meta_data(range: Text.Range): Properties.T = { |
69900 | 803 |
val results = |
804 |
snapshot.cumulate[Properties.T](range, Nil, Rendering.meta_data_elements, _ => |
|
805 |
{ |
|
806 |
case (res, Text.Info(_, elem)) => |
|
807 |
val plain_text = XML.content(elem) |
|
808 |
Some((elem.name -> plain_text) :: res) |
|
809 |
}) |
|
810 |
Library.distinct(results.flatMap(_.info.reverse)) |
|
811 |
} |
|
70135
ad6d4a14adb5
report document tags as seen in the text (not the active tag of Thy_Output.present_thy);
wenzelm
parents:
69970
diff
changeset
|
812 |
|
ad6d4a14adb5
report document tags as seen in the text (not the active tag of Thy_Output.present_thy);
wenzelm
parents:
69970
diff
changeset
|
813 |
|
ad6d4a14adb5
report document tags as seen in the text (not the active tag of Thy_Output.present_thy);
wenzelm
parents:
69970
diff
changeset
|
814 |
/* document tags */ |
ad6d4a14adb5
report document tags as seen in the text (not the active tag of Thy_Output.present_thy);
wenzelm
parents:
69970
diff
changeset
|
815 |
|
75393 | 816 |
def document_tags(range: Text.Range): List[String] = { |
70135
ad6d4a14adb5
report document tags as seen in the text (not the active tag of Thy_Output.present_thy);
wenzelm
parents:
69970
diff
changeset
|
817 |
val results = |
ad6d4a14adb5
report document tags as seen in the text (not the active tag of Thy_Output.present_thy);
wenzelm
parents:
69970
diff
changeset
|
818 |
snapshot.cumulate[List[String]](range, Nil, Rendering.document_tag_elements, _ => |
ad6d4a14adb5
report document tags as seen in the text (not the active tag of Thy_Output.present_thy);
wenzelm
parents:
69970
diff
changeset
|
819 |
{ |
ad6d4a14adb5
report document tags as seen in the text (not the active tag of Thy_Output.present_thy);
wenzelm
parents:
69970
diff
changeset
|
820 |
case (res, Text.Info(_, XML.Elem(Markup.Document_Tag(name), _))) => Some(name :: res) |
ad6d4a14adb5
report document tags as seen in the text (not the active tag of Thy_Output.present_thy);
wenzelm
parents:
69970
diff
changeset
|
821 |
case _ => None |
ad6d4a14adb5
report document tags as seen in the text (not the active tag of Thy_Output.present_thy);
wenzelm
parents:
69970
diff
changeset
|
822 |
}) |
ad6d4a14adb5
report document tags as seen in the text (not the active tag of Thy_Output.present_thy);
wenzelm
parents:
69970
diff
changeset
|
823 |
Library.distinct(results.flatMap(_.info.reverse)) |
ad6d4a14adb5
report document tags as seen in the text (not the active tag of Thy_Output.present_thy);
wenzelm
parents:
69970
diff
changeset
|
824 |
} |
64622
529bbb8977c7
more uniform rendering for Isabelle/jEdit and Isabelle/VSCode;
wenzelm
parents:
diff
changeset
|
825 |
} |