author | wenzelm |
Fri, 30 Jun 2017 14:26:45 +0200 | |
changeset 66235 | d4fa51e7c4ff |
parent 66234 | 836898197296 |
child 66674 | 30d5195299e2 |
permissions | -rw-r--r-- |
64623 | 1 |
/* Title: Tools/VSCode/src/vscode_resources.scala |
64605 | 2 |
Author: Makarius |
3 |
||
64729 | 4 |
Resources for VSCode Language Server: file-system access and global state. |
64605 | 5 |
*/ |
6 |
||
7 |
package isabelle.vscode |
|
8 |
||
9 |
||
10 |
import isabelle._ |
|
11 |
||
12 |
import java.io.{File => JFile} |
|
13 |
||
64824 | 14 |
import scala.util.parsing.input.Reader |
64727
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
15 |
|
64605 | 16 |
|
64623 | 17 |
object VSCode_Resources |
64605 | 18 |
{ |
64703 | 19 |
/* internal state */ |
20 |
||
21 |
sealed case class State( |
|
64777
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
22 |
models: Map[JFile, Document_Model] = Map.empty, |
65926
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
23 |
caret: Option[(JFile, Line.Position)] = None, |
66101
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
24 |
overlays: Document.Overlays = Document.Overlays.empty, |
64777
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
25 |
pending_input: Set[JFile] = Set.empty, |
65926
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
26 |
pending_output: Set[JFile] = Set.empty) |
64800 | 27 |
{ |
65113 | 28 |
def update_models(changed: Traversable[(JFile, Document_Model)]): State = |
65111
3224a6f7bd6b
more robust treatment of pending input/output: these are often correlated;
wenzelm
parents:
65107
diff
changeset
|
29 |
copy( |
65113 | 30 |
models = models ++ changed, |
31 |
pending_input = (pending_input /: changed) { case (set, (file, _)) => set + file }, |
|
32 |
pending_output = (pending_output /: changed) { case (set, (file, _)) => set + file }) |
|
65111
3224a6f7bd6b
more robust treatment of pending input/output: these are often correlated;
wenzelm
parents:
65107
diff
changeset
|
33 |
|
65926
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
34 |
def update_caret(new_caret: Option[(JFile, Line.Position)]): State = |
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
35 |
if (caret == new_caret) this |
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
36 |
else |
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
37 |
copy( |
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
38 |
caret = new_caret, |
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
39 |
pending_input = pending_input ++ caret.map(_._1) ++ new_caret.map(_._1)) |
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
40 |
|
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
41 |
def get_caret(file: JFile): Option[Line.Position] = |
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
42 |
caret match { |
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
43 |
case Some((caret_file, caret_pos)) if caret_file == file => Some(caret_pos) |
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
44 |
case _ => None |
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
45 |
} |
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
46 |
|
64800 | 47 |
lazy val document_blobs: Document.Blobs = |
48 |
Document.Blobs( |
|
49 |
(for { |
|
50 |
(_, model) <- models.iterator |
|
51 |
blob <- model.get_blob |
|
52 |
} yield (model.node_name -> blob)).toMap) |
|
66101
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
53 |
|
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
54 |
def change_overlay(insert: Boolean, file: JFile, |
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
55 |
command: Command, fn: String, args: List[String]): State = |
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
56 |
copy( |
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
57 |
overlays = |
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
58 |
if (insert) overlays.insert(command, fn, args) |
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
59 |
else overlays.remove(command, fn, args), |
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
60 |
pending_input = pending_input + file) |
64800 | 61 |
} |
66086 | 62 |
|
63 |
||
64 |
/* caret */ |
|
65 |
||
66 |
sealed case class Caret(file: JFile, model: Document_Model, offset: Text.Offset) |
|
67 |
{ |
|
68 |
def node_name: Document.Node.Name = model.node_name |
|
69 |
} |
|
64605 | 70 |
} |
71 |
||
64623 | 72 |
class VSCode_Resources( |
65361 | 73 |
val options: Options, |
74 |
session_base: Sessions.Base, |
|
75 |
log: Logger = No_Logger) |
|
65441 | 76 |
extends Resources(session_base, log = log) |
64605 | 77 |
{ |
64703 | 78 |
private val state = Synchronized(VSCode_Resources.State()) |
79 |
||
80 |
||
65137 | 81 |
/* options */ |
82 |
||
83 |
def pide_extensions: Boolean = options.bool("vscode_pide_extensions") |
|
84 |
def unicode_symbols: Boolean = options.bool("vscode_unicode_symbols") |
|
85 |
def tooltip_margin: Int = options.int("vscode_tooltip_margin") |
|
86 |
def message_margin: Int = options.int("vscode_message_margin") |
|
87 |
||
88 |
||
64703 | 89 |
/* document node name */ |
90 |
||
64777
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
91 |
def node_file(name: Document.Node.Name): JFile = new JFile(name.node) |
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
92 |
|
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
93 |
def node_name(file: JFile): Document.Node.Name = |
66195 | 94 |
session_base.known.get_file(file, bootstrap = true) getOrElse { |
65501
b42743f5b595
prefer formal name from session context, for proper qualified theory name;
wenzelm
parents:
65476
diff
changeset
|
95 |
val node = file.getPath |
65532 | 96 |
theory_name(Sessions.DRAFT, Thy_Header.theory_name(node)) match { |
65501
b42743f5b595
prefer formal name from session context, for proper qualified theory name;
wenzelm
parents:
65476
diff
changeset
|
97 |
case (true, theory) => Document.Node.Name.loaded_theory(theory) |
b42743f5b595
prefer formal name from session context, for proper qualified theory name;
wenzelm
parents:
65476
diff
changeset
|
98 |
case (false, theory) => |
b42743f5b595
prefer formal name from session context, for proper qualified theory name;
wenzelm
parents:
65476
diff
changeset
|
99 |
val master_dir = if (theory == "") "" else file.getParent |
b42743f5b595
prefer formal name from session context, for proper qualified theory name;
wenzelm
parents:
65476
diff
changeset
|
100 |
Document.Node.Name(node, master_dir, theory) |
b42743f5b595
prefer formal name from session context, for proper qualified theory name;
wenzelm
parents:
65476
diff
changeset
|
101 |
} |
65472 | 102 |
} |
64703 | 103 |
|
64759 | 104 |
override def append(dir: String, source_path: Path): String = |
64716 | 105 |
{ |
64759 | 106 |
val path = source_path.expand |
64777
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
107 |
if (dir == "" || path.is_absolute) File.platform_path(path) |
64759 | 108 |
else if (path.is_current) dir |
64777
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
109 |
else if (path.is_basic && !dir.endsWith("/") && !dir.endsWith(JFile.separator)) |
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
110 |
dir + JFile.separator + File.platform_path(path) |
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
111 |
else if (path.is_basic) dir + File.platform_path(path) |
66235
d4fa51e7c4ff
retain symlinks in file names from VSCode: relevant for proper file locations in decorations etc.;
wenzelm
parents:
66234
diff
changeset
|
112 |
else File.absolute_name(new JFile(dir + JFile.separator + File.platform_path(path))) |
64716 | 113 |
} |
114 |
||
66152 | 115 |
def get_models: Map[JFile, Document_Model] = state.value.models |
116 |
def get_model(file: JFile): Option[Document_Model] = get_models.get(file) |
|
64834 | 117 |
def get_model(name: Document.Node.Name): Option[Document_Model] = get_model(node_file(name)) |
118 |
||
119 |
||
120 |
/* file content */ |
|
121 |
||
122 |
def read_file_content(file: JFile): Option[String] = |
|
123 |
try { Some(Line.normalize(File.read(file))) } |
|
124 |
catch { case ERROR(_) => None } |
|
125 |
||
126 |
def get_file_content(file: JFile): Option[String] = |
|
127 |
get_model(file) match { |
|
128 |
case Some(model) => Some(model.content.text) |
|
129 |
case None => read_file_content(file) |
|
130 |
} |
|
131 |
||
64727
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
132 |
override def with_thy_reader[A](name: Document.Node.Name, f: Reader[Char] => A): A = |
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
133 |
{ |
64777
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
134 |
val file = node_file(name) |
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
135 |
get_model(file) match { |
64830 | 136 |
case Some(model) => f(Scan.char_reader(model.content.text)) |
64777
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
137 |
case None if file.isFile => |
64727
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
138 |
val reader = Scan.byte_reader(file) |
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
139 |
try { f(reader) } finally { reader.close } |
64777
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
140 |
case None => |
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
141 |
error("No such file: " + quote(file.toString)) |
64727
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
142 |
} |
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
143 |
} |
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
144 |
|
64703 | 145 |
|
146 |
/* document models */ |
|
147 |
||
64800 | 148 |
def visible_node(name: Document.Node.Name): Boolean = |
149 |
get_model(name) match { |
|
150 |
case Some(model) => model.node_visible |
|
151 |
case None => false |
|
152 |
} |
|
153 |
||
66100 | 154 |
def change_model( |
155 |
session: Session, |
|
156 |
editor: Server.Editor, |
|
157 |
file: JFile, |
|
158 |
text: String, |
|
159 |
range: Option[Line.Range] = None) |
|
64703 | 160 |
{ |
161 |
state.change(st => |
|
64709 | 162 |
{ |
66100 | 163 |
val model = st.models.getOrElse(file, Document_Model.init(session, editor, node_name(file))) |
65160 | 164 |
val model1 = (model.change_text(text, range) getOrElse model).external(false) |
65114
200b787ceb51
potentially redundant pending_output, for the sake of uniformity and reactivity;
wenzelm
parents:
65113
diff
changeset
|
165 |
st.update_models(Some(file -> model1)) |
64709 | 166 |
}) |
64703 | 167 |
} |
168 |
||
65111
3224a6f7bd6b
more robust treatment of pending input/output: these are often correlated;
wenzelm
parents:
65107
diff
changeset
|
169 |
def close_model(file: JFile): Boolean = |
64710 | 170 |
state.change_result(st => |
64777
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
171 |
st.models.get(file) match { |
65111
3224a6f7bd6b
more robust treatment of pending input/output: these are often correlated;
wenzelm
parents:
65107
diff
changeset
|
172 |
case None => (false, st) |
65113 | 173 |
case Some(model) => (true, st.update_models(Some(file -> model.external(true)))) |
64710 | 174 |
}) |
175 |
||
65116 | 176 |
def sync_models(changed_files: Set[JFile]): Unit = |
177 |
state.change(st => |
|
64710 | 178 |
{ |
64719 | 179 |
val changed_models = |
64710 | 180 |
(for { |
64777
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
181 |
(file, model) <- st.models.iterator |
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
182 |
if changed_files(file) && model.external_file |
64812 | 183 |
text <- read_file_content(file) |
65160 | 184 |
model1 <- model.change_text(text) |
65116 | 185 |
} yield (file, model1)).toList |
186 |
st.update_models(changed_models) |
|
64710 | 187 |
}) |
188 |
||
64703 | 189 |
|
66101
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
190 |
/* overlays */ |
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
191 |
|
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
192 |
def node_overlays(name: Document.Node.Name): Document.Node.Overlays = |
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
193 |
state.value.overlays(name) |
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
194 |
|
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
195 |
def insert_overlay(command: Command, fn: String, args: List[String]): Unit = |
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
196 |
state.change(_.change_overlay(true, node_file(command.node_name), command, fn, args)) |
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
197 |
|
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
198 |
def remove_overlay(command: Command, fn: String, args: List[String]): Unit = |
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
199 |
state.change(_.change_overlay(false, node_file(command.node_name), command, fn, args)) |
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
200 |
|
0f0f294e314f
maintain overlays within main state of document models;
wenzelm
parents:
66100
diff
changeset
|
201 |
|
64727
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
202 |
/* resolve dependencies */ |
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
203 |
|
66100 | 204 |
def resolve_dependencies( |
205 |
session: Session, |
|
206 |
editor: Server.Editor, |
|
207 |
file_watcher: File_Watcher): (Boolean, Boolean) = |
|
64727
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
208 |
{ |
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
209 |
state.change_result(st => |
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
210 |
{ |
64800 | 211 |
/* theory files */ |
212 |
||
64731
84192ecae582
just one synchronized access to global state: works recursively on JVM;
wenzelm
parents:
64729
diff
changeset
|
213 |
val thys = |
84192ecae582
just one synchronized access to global state: works recursively on JVM;
wenzelm
parents:
64729
diff
changeset
|
214 |
(for ((_, model) <- st.models.iterator if model.is_theory) |
84192ecae582
just one synchronized access to global state: works recursively on JVM;
wenzelm
parents:
64729
diff
changeset
|
215 |
yield (model.node_name, Position.none)).toList |
84192ecae582
just one synchronized access to global state: works recursively on JVM;
wenzelm
parents:
64729
diff
changeset
|
216 |
|
65359 | 217 |
val thy_files = thy_info.dependencies(thys).deps.map(_.name) |
64800 | 218 |
|
219 |
||
220 |
/* auxiliary files */ |
|
221 |
||
222 |
val stable_tip_version = |
|
64815 | 223 |
if (st.models.forall(entry => entry._2.is_stable)) |
64800 | 224 |
session.current_state().stable_tip_version |
225 |
else None |
|
226 |
||
227 |
val aux_files = |
|
228 |
stable_tip_version match { |
|
229 |
case Some(version) => undefined_blobs(version.nodes) |
|
230 |
case None => Nil |
|
231 |
} |
|
232 |
||
233 |
||
234 |
/* loaded models */ |
|
235 |
||
64727
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
236 |
val loaded_models = |
64731
84192ecae582
just one synchronized access to global state: works recursively on JVM;
wenzelm
parents:
64729
diff
changeset
|
237 |
(for { |
64800 | 238 |
node_name <- thy_files.iterator ++ aux_files.iterator |
239 |
file = node_file(node_name) |
|
64777
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
240 |
if !st.models.isDefinedAt(file) |
64857 | 241 |
text <- { file_watcher.register_parent(file); read_file_content(file) } |
64727
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
242 |
} |
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
243 |
yield { |
66100 | 244 |
val model = Document_Model.init(session, editor, node_name) |
65160 | 245 |
val model1 = (model.change_text(text) getOrElse model).external(true) |
64777
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
246 |
(file, model1) |
65117 | 247 |
}).toList |
64731
84192ecae582
just one synchronized access to global state: works recursively on JVM;
wenzelm
parents:
64729
diff
changeset
|
248 |
|
64800 | 249 |
val invoke_input = loaded_models.nonEmpty |
250 |
val invoke_load = stable_tip_version.isEmpty |
|
251 |
||
65113 | 252 |
((invoke_input, invoke_load), st.update_models(loaded_models)) |
64727
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
253 |
}) |
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
254 |
} |
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
255 |
|
13e37567a0d6
automatically resolve dependencies from document models and file-system;
wenzelm
parents:
64726
diff
changeset
|
256 |
|
64703 | 257 |
/* pending input */ |
258 |
||
259 |
def flush_input(session: Session) |
|
260 |
{ |
|
261 |
state.change(st => |
|
262 |
{ |
|
64719 | 263 |
val changed_models = |
64703 | 264 |
(for { |
64777
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
265 |
file <- st.pending_input.iterator |
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
266 |
model <- st.models.get(file) |
65926
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
267 |
(edits, model1) <- model.flush_edits(st.document_blobs, st.get_caret(file)) |
64777
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
268 |
} yield (edits, (file, model1))).toList |
64707 | 269 |
|
64800 | 270 |
session.update(st.document_blobs, changed_models.flatMap(_._1)) |
64703 | 271 |
st.copy( |
65112 | 272 |
models = st.models ++ changed_models.iterator.map(_._2), |
64703 | 273 |
pending_input = Set.empty) |
274 |
}) |
|
275 |
} |
|
276 |
||
277 |
||
278 |
/* pending output */ |
|
279 |
||
65118 | 280 |
def update_output(changed_nodes: Traversable[JFile]): Unit = |
64703 | 281 |
state.change(st => st.copy(pending_output = st.pending_output ++ changed_nodes)) |
282 |
||
66138 | 283 |
def update_output_visible(): Unit = |
284 |
state.change(st => st.copy(pending_output = st.pending_output ++ |
|
285 |
(for ((file, model) <- st.models.iterator if model.node_visible) yield file))) |
|
286 |
||
65232
ca571c8c0788
avoid race condition between current_state().stable_tip_version and model.rendering();
wenzelm
parents:
65198
diff
changeset
|
287 |
def flush_output(channel: Channel): Boolean = |
64703 | 288 |
{ |
65232
ca571c8c0788
avoid race condition between current_state().stable_tip_version and model.rendering();
wenzelm
parents:
65198
diff
changeset
|
289 |
state.change_result(st => |
64703 | 290 |
{ |
65232
ca571c8c0788
avoid race condition between current_state().stable_tip_version and model.rendering();
wenzelm
parents:
65198
diff
changeset
|
291 |
val (postponed, flushed) = |
ca571c8c0788
avoid race condition between current_state().stable_tip_version and model.rendering();
wenzelm
parents:
65198
diff
changeset
|
292 |
(for { |
ca571c8c0788
avoid race condition between current_state().stable_tip_version and model.rendering();
wenzelm
parents:
65198
diff
changeset
|
293 |
file <- st.pending_output.iterator |
ca571c8c0788
avoid race condition between current_state().stable_tip_version and model.rendering();
wenzelm
parents:
65198
diff
changeset
|
294 |
model <- st.models.get(file) |
ca571c8c0788
avoid race condition between current_state().stable_tip_version and model.rendering();
wenzelm
parents:
65198
diff
changeset
|
295 |
} yield (file, model, model.rendering())).toList.partition(_._3.snapshot.is_outdated) |
ca571c8c0788
avoid race condition between current_state().stable_tip_version and model.rendering();
wenzelm
parents:
65198
diff
changeset
|
296 |
|
64703 | 297 |
val changed_iterator = |
298 |
for { |
|
65232
ca571c8c0788
avoid race condition between current_state().stable_tip_version and model.rendering();
wenzelm
parents:
65198
diff
changeset
|
299 |
(file, model, rendering) <- flushed.iterator |
65115 | 300 |
(changed_diags, changed_decos, model1) = model.publish(rendering) |
301 |
if changed_diags.isDefined || changed_decos.isDefined |
|
65095 | 302 |
} |
303 |
yield { |
|
65115 | 304 |
for (diags <- changed_diags) |
305 |
channel.write(Protocol.PublishDiagnostics(file, rendering.diagnostics_output(diags))) |
|
65137 | 306 |
if (pide_extensions) { |
307 |
for (decos <- changed_decos; deco <- decos) |
|
308 |
channel.write(rendering.decoration_output(deco).json(file)) |
|
309 |
} |
|
64777
ca09695eb43c
clarified Document.Node.Name (again): canonical platform file;
wenzelm
parents:
64775
diff
changeset
|
310 |
(file, model1) |
64703 | 311 |
} |
65232
ca571c8c0788
avoid race condition between current_state().stable_tip_version and model.rendering();
wenzelm
parents:
65198
diff
changeset
|
312 |
|
ca571c8c0788
avoid race condition between current_state().stable_tip_version and model.rendering();
wenzelm
parents:
65198
diff
changeset
|
313 |
(postponed.nonEmpty, |
ca571c8c0788
avoid race condition between current_state().stable_tip_version and model.rendering();
wenzelm
parents:
65198
diff
changeset
|
314 |
st.copy( |
ca571c8c0788
avoid race condition between current_state().stable_tip_version and model.rendering();
wenzelm
parents:
65198
diff
changeset
|
315 |
models = st.models ++ changed_iterator, |
ca571c8c0788
avoid race condition between current_state().stable_tip_version and model.rendering();
wenzelm
parents:
65198
diff
changeset
|
316 |
pending_output = postponed.map(_._1).toSet)) |
64703 | 317 |
} |
318 |
) |
|
319 |
} |
|
64870 | 320 |
|
321 |
||
322 |
/* output text */ |
|
323 |
||
324 |
def output_text(s: String): String = |
|
65137 | 325 |
if (unicode_symbols) Symbol.decode(s) else Symbol.encode(s) |
64870 | 326 |
|
65107 | 327 |
def output_xml(xml: XML.Tree): String = |
328 |
output_text(XML.content(xml)) |
|
329 |
||
64870 | 330 |
def output_pretty(body: XML.Body, margin: Int): String = |
331 |
output_text(Pretty.string_of(body, margin)) |
|
65107 | 332 |
def output_pretty_tooltip(body: XML.Body): String = output_pretty(body, tooltip_margin) |
333 |
def output_pretty_message(body: XML.Body): String = output_pretty(body, message_margin) |
|
65142 | 334 |
|
335 |
||
65189 | 336 |
/* caret handling */ |
337 |
||
65191
4c9c83311cad
dynamic output, depending on caret focus (see also Tools/jEdit/src/output_dockable.scala);
wenzelm
parents:
65189
diff
changeset
|
338 |
def update_caret(caret: Option[(JFile, Line.Position)]) |
65926
0f7821a07aa9
restricted perspective depending on the caret -- important for reactivity when editing big files;
wenzelm
parents:
65532
diff
changeset
|
339 |
{ state.change(_.update_caret(caret)) } |
65189 | 340 |
|
66086 | 341 |
def get_caret(): Option[VSCode_Resources.Caret] = |
65189 | 342 |
{ |
343 |
val st = state.value |
|
344 |
for { |
|
345 |
(file, pos) <- st.caret |
|
346 |
model <- st.models.get(file) |
|
65191
4c9c83311cad
dynamic output, depending on caret focus (see also Tools/jEdit/src/output_dockable.scala);
wenzelm
parents:
65189
diff
changeset
|
347 |
offset <- model.content.doc.offset(pos) |
65189 | 348 |
} |
66086 | 349 |
yield VSCode_Resources.Caret(file, model, offset) |
65189 | 350 |
} |
351 |
||
352 |
||
65142 | 353 |
/* spell checker */ |
354 |
||
355 |
val spell_checker = new Spell_Checker_Variable |
|
356 |
spell_checker.update(options) |
|
64605 | 357 |
} |