forked from slint-ui/slint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.rs
551 lines (485 loc) · 17 KB
/
common.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
// Copyright © SixtyFPS GmbH <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
//! Data structures common between LSP and previewer
use i_slint_compiler::diagnostics::SourceFile;
use i_slint_compiler::object_tree::ElementRc;
use i_slint_compiler::parser::{syntax_nodes, SyntaxKind, SyntaxNode};
use lsp_types::{TextEdit, Url, WorkspaceEdit};
use std::{collections::HashMap, path::PathBuf};
pub mod rename_component;
#[cfg(test)]
pub mod test;
#[cfg(any(test, feature = "preview-engine"))]
pub mod text_edit;
pub type Error = Box<dyn std::error::Error>;
pub type Result<T> = std::result::Result<T, Error>;
pub type UrlVersion = Option<i32>;
#[cfg(target_arch = "wasm32")]
use crate::wasm_prelude::*;
pub fn extract_element(node: SyntaxNode) -> Option<syntax_nodes::Element> {
match node.kind() {
SyntaxKind::Element => Some(node.into()),
SyntaxKind::SubElement => extract_element(node.child_node(SyntaxKind::Element)?),
SyntaxKind::ConditionalElement | SyntaxKind::RepeatedElement => {
extract_element(node.child_node(SyntaxKind::SubElement)?)
}
_ => None,
}
}
fn find_element_with_decoration(element: &syntax_nodes::Element) -> SyntaxNode {
let this_node: SyntaxNode = element.clone().into();
element
.parent()
.and_then(|p| match p.kind() {
SyntaxKind::SubElement => p.parent().map(|gp| {
if gp.kind() == SyntaxKind::ConditionalElement
|| gp.kind() == SyntaxKind::RepeatedElement
{
gp
} else {
p
}
}),
_ => Some(this_node.clone()),
})
.unwrap_or(this_node)
}
fn find_parent_component(node: &SyntaxNode) -> Option<SyntaxNode> {
let mut current = Some(node.clone());
while let Some(p) = current {
if matches!(p.kind(), SyntaxKind::Component) {
return Some(p);
}
current = p.parent();
}
None
}
#[derive(Clone)]
pub struct ElementRcNode {
pub element: ElementRc,
pub debug_index: usize,
}
impl std::cmp::PartialEq for ElementRcNode {
fn eq(&self, other: &Self) -> bool {
self.path_and_offset() == other.path_and_offset()
}
}
impl std::fmt::Debug for ElementRcNode {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let (path, offset) = self.path_and_offset();
write!(f, "ElementNode {{ {path:?}:{offset} }}")
}
}
impl ElementRcNode {
pub fn new(element: ElementRc, debug_index: usize) -> Option<Self> {
let _ = element.borrow().debug.get(debug_index)?;
Some(Self { element, debug_index })
}
/// Some nodes get merged into the same ElementRc with no real connections between them...
pub fn next_element_rc_node(&self) -> Option<Self> {
Self::new(self.element.clone(), self.debug_index + 1)
}
pub fn find_in(element: ElementRc, path: &std::path::Path, offset: u32) -> Option<Self> {
let debug_index = element.borrow().debug.iter().position(|(n, _)| {
u32::from(n.text_range().start()) == offset && n.source_file.path() == path
})?;
Some(Self { element, debug_index })
}
pub fn find_in_or_below(
element: ElementRc,
path: &std::path::Path,
offset: u32,
) -> Option<Self> {
let debug_index = element.borrow().debug.iter().position(|(n, _)| {
u32::from(n.text_range().start()) == offset && n.source_file.path() == path
});
if let Some(debug_index) = debug_index {
Some(Self { element, debug_index })
} else {
for c in &element.borrow().children {
let result = Self::find_in_or_below(c.clone(), path, offset);
if result.is_some() {
return result;
}
}
None
}
}
/// Run with all the debug information on the node
pub fn with_element_debug<R>(
&self,
func: impl Fn(
&i_slint_compiler::parser::syntax_nodes::Element,
&Option<i_slint_compiler::layout::Layout>,
) -> R,
) -> R {
let elem = self.element.borrow();
let (n, l) = &elem.debug.get(self.debug_index).unwrap();
func(n, l)
}
/// Run with the `Element` node
pub fn with_element_node<R>(
&self,
func: impl Fn(&i_slint_compiler::parser::syntax_nodes::Element) -> R,
) -> R {
let elem = self.element.borrow();
func(&elem.debug.get(self.debug_index).unwrap().0)
}
/// Run with the SyntaxNode incl. any id, condition, etc.
pub fn with_decorated_node<R>(&self, func: impl Fn(SyntaxNode) -> R) -> R {
let elem = self.element.borrow();
func(find_element_with_decoration(&elem.debug.get(self.debug_index).unwrap().0))
}
pub fn path_and_offset(&self) -> (PathBuf, u32) {
self.with_element_node(|n| {
(n.source_file.path().to_owned(), u32::from(n.text_range().start()))
})
}
pub fn as_element(&self) -> &ElementRc {
&self.element
}
pub fn parent(&self) -> Option<ElementRcNode> {
let parent = self.with_element_node(|node| {
let mut ancestor = node.parent()?;
loop {
if ancestor.kind() == SyntaxKind::Element {
return Some(ancestor);
}
ancestor = ancestor.parent()?;
}
})?;
let (parent_path, parent_offset) =
(parent.source_file.path().to_owned(), u32::from(parent.text_range().start()));
let root_element = {
let component = self.element.borrow().enclosing_component.upgrade().unwrap();
let current_root = component.root_element.clone();
if std::rc::Rc::ptr_eq(¤t_root, &self.element)
&& !component.is_root_component.get()
{
component
.parent_element
.upgrade()?
.borrow()
.enclosing_component
.upgrade()
.unwrap()
.root_element
.clone()
} else {
current_root
}
};
Self::find_in_or_below(root_element, &parent_path, parent_offset)
}
pub fn children(&self) -> Vec<ElementRcNode> {
self.with_element_node(|node| {
let mut children = Vec::new();
for c in node.children() {
if let Some(element) = extract_element(c.clone()) {
let e_path = element.source_file.path().to_path_buf();
let e_offset = u32::from(element.text_range().start());
let Some(child_node) = ElementRcNode::find_in_or_below(
self.as_element().clone(),
&e_path,
e_offset,
) else {
continue;
};
children.push(child_node);
}
}
children
})
}
pub fn component_type(&self) -> String {
self.with_element_node(|node| {
node.QualifiedName().map(|qn| qn.text().to_string()).unwrap_or_default()
})
}
pub fn is_same_component_as(&self, other: &Self) -> bool {
let Some(s) = self.with_element_node(|n| find_parent_component(n)) else {
return false;
};
let Some(o) = other.with_element_node(|n| find_parent_component(n)) else {
return false;
};
std::rc::Rc::ptr_eq(&s.source_file, &o.source_file) && s.text_range() == o.text_range()
}
}
pub fn create_workspace_edit(uri: Url, version: UrlVersion, edits: Vec<TextEdit>) -> WorkspaceEdit {
let edits = edits
.into_iter()
.map(lsp_types::OneOf::Left::<TextEdit, lsp_types::AnnotatedTextEdit>)
.collect();
let edit = lsp_types::TextDocumentEdit {
text_document: lsp_types::OptionalVersionedTextDocumentIdentifier { uri, version },
edits,
};
let changes = lsp_types::DocumentChanges::Edits(vec![edit]);
WorkspaceEdit { document_changes: Some(changes), ..Default::default() }
}
pub fn create_workspace_edit_from_source_file(
source_file: &SourceFile,
edits: Vec<TextEdit>,
) -> Option<WorkspaceEdit> {
Some(create_workspace_edit(
Url::from_file_path(source_file.path()).ok()?,
source_file.version(),
edits,
))
}
pub fn create_workspace_edit_from_source_files(
mut inputs: Vec<(SourceFile, TextEdit)>,
) -> Option<WorkspaceEdit> {
let mut files: HashMap<
(Url, UrlVersion),
Vec<lsp_types::OneOf<TextEdit, lsp_types::AnnotatedTextEdit>>,
> = HashMap::new();
inputs.drain(..).for_each(|(sf, edit)| {
let url = Url::from_file_path(sf.path()).ok();
if let Some(url) = url {
let edit = lsp_types::OneOf::Left(edit);
files
.entry((url, sf.version()))
.and_modify(|v| v.push(edit.clone()))
.or_insert_with(|| vec![edit]);
} else {
}
});
let changes = lsp_types::DocumentChanges::Edits(
files
.drain()
.map(|((uri, version), edits)| lsp_types::TextDocumentEdit {
text_document: lsp_types::OptionalVersionedTextDocumentIdentifier { uri, version },
edits,
})
.collect::<Vec<_>>(),
);
Some(WorkspaceEdit { document_changes: Some(changes), ..Default::default() })
}
/// A versioned file
#[derive(Clone, serde::Deserialize, serde::Serialize, PartialEq, Eq)]
pub struct VersionedUrl {
/// The file url
url: Url,
// The file version
version: UrlVersion,
}
impl VersionedUrl {
pub fn new(url: Url, version: UrlVersion) -> Self {
VersionedUrl { url, version }
}
pub fn url(&self) -> &Url {
&self.url
}
pub fn version(&self) -> &UrlVersion {
&self.version
}
}
impl std::fmt::Debug for VersionedUrl {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let version = self.version.map(|v| format!("v{v}")).unwrap_or_else(|| "none".to_string());
write!(f, "{}@{}", self.url, version)
}
}
/// A versioned file
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, PartialEq, Eq)]
pub struct Position {
/// The file url
pub url: Url,
/// The offset in the file pointed to by the `url`
pub offset: u32,
}
/// A versioned file
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, PartialEq, Eq)]
pub struct VersionedPosition {
/// The file url
url: VersionedUrl,
/// The offset in the file pointed to by the `url`
offset: u32,
}
#[allow(unused)]
impl VersionedPosition {
pub fn new(url: VersionedUrl, offset: u32) -> Self {
VersionedPosition { url, offset }
}
pub fn url(&self) -> &Url {
self.url.url()
}
pub fn version(&self) -> &UrlVersion {
self.url.version()
}
pub fn offset(&self) -> u32 {
self.offset
}
}
#[derive(Default, Clone, PartialEq, Debug, serde::Deserialize, serde::Serialize)]
pub struct PreviewConfig {
pub hide_ui: Option<bool>,
pub style: String,
pub include_paths: Vec<PathBuf>,
pub library_paths: HashMap<String, PathBuf>,
}
/// The Component to preview
#[allow(unused)]
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
pub struct PreviewComponent {
/// The file name to preview
pub url: Url,
/// The name of the component within that file.
/// If None, then the last component is going to be shown.
pub component: Option<String>,
/// The style name for the preview
pub style: String,
}
#[allow(unused)]
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
pub enum LspToPreviewMessage {
SetContents { url: VersionedUrl, contents: String },
SetConfiguration { config: PreviewConfig },
ShowPreview(PreviewComponent),
HighlightFromEditor { url: Option<Url>, offset: u32 },
KnownComponents { url: Option<VersionedUrl>, components: Vec<ComponentInformation> },
}
#[allow(unused)]
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
pub struct Diagnostic {
pub message: String,
pub file: Option<String>,
pub line: usize,
pub column: usize,
pub level: String,
}
#[allow(unused)]
#[derive(Clone, Eq, Debug, PartialEq, serde::Deserialize, serde::Serialize)]
pub struct PropertyChange {
pub name: String,
pub value: String,
}
impl PropertyChange {
#[allow(unused)]
pub fn new(name: &str, value: String) -> Self {
PropertyChange { name: name.to_string(), value }
}
}
#[allow(unused)]
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
pub enum PreviewToLspMessage {
/// Show a status message in the editor
Status { message: String, health: crate::lsp_ext::Health },
/// Report diagnostics to editor.
Diagnostics { uri: Url, diagnostics: Vec<lsp_types::Diagnostic> },
/// Show a document in the editor.
ShowDocument { file: Url, selection: lsp_types::Range },
/// Switch between native and WASM preview (if supported)
PreviewTypeChanged { is_external: bool },
/// Request all documents and configuration to be sent from the LSP to the
/// Preview.
RequestState { unused: bool },
/// Update properties on an element at `position`
/// The LSP side needs to look at properties: It sees way more of them!
UpdateElement {
label: Option<String>,
position: VersionedPosition,
properties: Vec<PropertyChange>,
},
/// Pass a `WorkspaceEdit` on to the editor
SendWorkspaceEdit { label: Option<String>, edit: lsp_types::WorkspaceEdit },
}
/// Information on the Element types available
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, PartialEq, Eq)]
pub struct ComponentInformation {
/// The name of the type
pub name: String,
/// A broad category to group types by
pub category: String,
/// This type is a global component
pub is_global: bool,
/// This type is built into Slint
pub is_builtin: bool,
/// This type is a standard widget
pub is_std_widget: bool,
/// This type was exported
pub is_exported: bool,
/// This is a layout
pub is_layout: bool,
/// This element fills its parent
pub fills_parent: bool,
/// The URL to the file containing this type
pub defined_at: Option<Position>,
/// Default property values
pub default_properties: Vec<PropertyChange>,
}
impl ComponentInformation {
pub fn import_file_name(&self, current_uri: &Option<lsp_types::Url>) -> Option<String> {
if self.is_std_widget {
Some("std-widgets.slint".to_string())
} else {
let url = self.defined_at.as_ref().map(|p| &p.url)?;
if let Some(current_uri) = current_uri {
lsp_types::Url::make_relative(current_uri, url)
} else {
url.to_file_path().ok().map(|p| p.to_string_lossy().to_string())
}
}
}
}
#[cfg(any(feature = "preview-external", feature = "preview-engine"))]
pub mod lsp_to_editor {
use lsp_types::notification::Notification;
pub fn send_status_notification(
sender: &crate::ServerNotifier,
message: &str,
health: crate::lsp_ext::Health,
) {
sender
.send_notification(
crate::lsp_ext::ServerStatusNotification::METHOD.into(),
crate::lsp_ext::ServerStatusParams {
health,
quiescent: false,
message: Some(message.into()),
},
)
.unwrap_or_else(|e| eprintln!("Error sending notification: {:?}", e));
}
pub fn notify_lsp_diagnostics(
sender: &crate::ServerNotifier,
uri: lsp_types::Url,
diagnostics: Vec<lsp_types::Diagnostic>,
) -> Option<()> {
sender
.send_notification(
"textDocument/publishDiagnostics".into(),
lsp_types::PublishDiagnosticsParams { uri, diagnostics, version: None },
)
.ok()
}
fn show_document_request_from_element_callback(
uri: lsp_types::Url,
range: lsp_types::Range,
) -> Option<lsp_types::ShowDocumentParams> {
if range.start.character == 0 || range.end.character == 0 {
return None;
}
Some(lsp_types::ShowDocumentParams {
uri,
external: Some(false),
take_focus: Some(true),
selection: Some(range),
})
}
pub async fn send_show_document_to_editor(
sender: crate::ServerNotifier,
file: lsp_types::Url,
range: lsp_types::Range,
) {
let Some(params) = show_document_request_from_element_callback(file, range) else {
return;
};
let Ok(fut) = sender.send_request::<lsp_types::request::ShowDocument>(params) else {
return;
};
let _ = fut.await;
}
}