-
Notifications
You must be signed in to change notification settings - Fork 600
/
common.rs
677 lines (586 loc) · 21 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
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
// Copyright © SixtyFPS GmbH <info@slint.dev>
// 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::object_tree::ElementRc;
use i_slint_compiler::parser::{syntax_nodes, SyntaxKind, SyntaxNode, TextSize};
use lsp_types::{TextEdit, Url, WorkspaceEdit};
use std::path::Path;
use std::{collections::HashMap, path::PathBuf};
pub mod component_catalog;
pub mod document_cache;
pub use document_cache::{DocumentCache, SourceFileVersion};
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>;
#[cfg(target_arch = "wasm32")]
use crate::wasm_prelude::*;
/// Use this in nodes you want the language server and preview to
/// ignore a node for code analysis purposes.
pub const NODE_IGNORE_COMMENT: &str = "@lsp:ignore-node";
/// Check whether a node is marked to be ignored in the LSP/live preview
/// using a comment containing `@lsp:ignore-node`
pub fn is_element_node_ignored(node: &syntax_nodes::Element) -> bool {
node.children_with_tokens().any(|nt| {
nt.as_token()
.map(|t| t.kind() == SyntaxKind::Comment && t.text().contains(NODE_IGNORE_COMMENT))
.unwrap_or(false)
})
}
pub fn uri_to_file(uri: &Url) -> Option<PathBuf> {
if uri.scheme() == "builtin" {
Some(PathBuf::from(uri.to_string()))
} else {
let path = uri.to_file_path().ok()?;
let cleaned_path = i_slint_compiler::pathutils::clean_path(&path);
Some(cleaned_path)
}
}
pub fn file_to_uri(path: &Path) -> Option<Url> {
if path.starts_with("builtin:/") {
Url::parse(path.to_str()?).ok()
} else {
Url::from_file_path(path).ok()
}
}
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 })
}
pub fn in_document_cache(&self, document_cache: &DocumentCache) -> Option<Self> {
self.with_element_node(|en| {
let element_start = en.text_range().start();
let path = en.source_file.path();
let doc = document_cache.get_document_by_path(path)?;
let component = doc.inner_components.iter().find(|c| {
let Some(c_node) = &c.node else {
return false;
};
c_node.text_range().contains(element_start)
})?;
ElementRcNode::find_in_or_below(
component.root_element.clone(),
path,
u32::from(element_start),
)
})
}
/// 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: &Path, offset: u32) -> Option<Self> {
let debug_index = element.borrow().debug.iter().position(|d| {
u32::from(d.node.text_range().start()) == offset && d.node.source_file.path() == path
})?;
Some(Self { element, debug_index })
}
pub fn find_in_or_below(element: ElementRc, path: &Path, offset: u32) -> Option<Self> {
let debug_index = element.borrow().debug.iter().position(|d| {
u32::from(d.node.text_range().start()) == offset && d.node.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 d = &elem.debug.get(self.debug_index).unwrap();
func(&d.node, &d.layout)
}
/// 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().node)
}
/// 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().node))
}
pub fn path_and_offset(&self) -> (PathBuf, TextSize) {
self.with_element_node(|n| (n.source_file.path().to_owned(), n.text_range().start()))
}
pub fn as_element(&self) -> &ElementRc {
&self.element
}
pub fn parent(&self) -> Option<ElementRcNode> {
let mut ancestor = self.with_element_node(|node| node.parent());
while let Some(parent) = ancestor {
if parent.kind() != SyntaxKind::Element {
ancestor = parent.parent();
continue;
}
let (parent_path, parent_offset) =
(parent.source_file.path().to_owned(), u32::from(parent.text_range().start()));
ancestor = parent.parent();
let component = self.element.borrow().enclosing_component.upgrade().unwrap();
let current_root = component.root_element.clone();
let root_element = if std::rc::Rc::ptr_eq(¤t_root, &self.element) {
component.parent_element.upgrade().map_or(current_root, |parent| {
parent.borrow().enclosing_component.upgrade().unwrap().root_element.clone()
})
} else {
current_root
};
let result = Self::find_in_or_below(root_element, &parent_path, parent_offset);
if result.is_some() {
return result;
}
}
None
}
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 contains_offset(&self, offset: TextSize) -> bool {
self.with_element_node(|node| {
node.parent().map_or(false, |n| n.text_range().contains(offset))
})
}
}
pub struct SingleTextEdit {
pub url: Url,
pub version: SourceFileVersion,
pub edit: TextEdit,
}
impl SingleTextEdit {
pub fn from_path(document_cache: &DocumentCache, path: &Path, edit: TextEdit) -> Option<Self> {
let url = Url::from_file_path(path).ok()?;
let version = document_cache.document_version_by_path(path);
Some(Self { url, version, edit })
}
}
pub fn create_text_document_edit(
uri: Url,
version: SourceFileVersion,
edits: Vec<TextEdit>,
) -> lsp_types::TextDocumentEdit {
let edits = edits
.into_iter()
.map(lsp_types::OneOf::Left::<TextEdit, lsp_types::AnnotatedTextEdit>)
.collect();
lsp_types::TextDocumentEdit {
text_document: lsp_types::OptionalVersionedTextDocumentIdentifier { uri, version },
edits,
}
}
pub fn create_workspace_edit_from_path(
document_cache: &DocumentCache,
path: &Path,
edits: Vec<TextEdit>,
) -> Option<WorkspaceEdit> {
let url = Url::from_file_path(path).ok()?;
let version = document_cache.document_version_by_path(path);
Some(create_workspace_edit(url, version, edits))
}
pub fn create_workspace_edit(
url: Url,
version: SourceFileVersion,
edits: Vec<TextEdit>,
) -> WorkspaceEdit {
create_workspace_edit_from_text_document_edits(vec![create_text_document_edit(
url, version, edits,
)])
}
pub fn create_workspace_edit_from_text_document_edits(
edits: Vec<lsp_types::TextDocumentEdit>,
) -> WorkspaceEdit {
let document_changes = Some(lsp_types::DocumentChanges::Edits(edits));
WorkspaceEdit { document_changes, ..Default::default() }
}
pub fn create_workspace_edit_from_single_text_edits(
mut inputs: Vec<SingleTextEdit>,
) -> WorkspaceEdit {
let mut files: HashMap<
(Url, SourceFileVersion),
Vec<lsp_types::OneOf<TextEdit, lsp_types::AnnotatedTextEdit>>,
> = HashMap::new();
inputs.drain(..).for_each(|se| {
let edit = lsp_types::OneOf::Left(se.edit);
files
.entry((se.url, se.version))
.and_modify(|v| v.push(edit.clone()))
.or_insert_with(|| vec![edit]);
});
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<_>>(),
);
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: SourceFileVersion,
}
impl VersionedUrl {
pub fn new(url: Url, version: SourceFileVersion) -> Self {
VersionedUrl { url, version }
}
pub fn url(&self) -> &Url {
&self.url
}
pub fn version(&self) -> &SourceFileVersion {
&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
url: Url,
/// The offset in the file pointed to by the `url`
offset: u32,
}
#[allow(unused)]
impl Position {
pub fn new(url: Url, offset: TextSize) -> Self {
Self { url, offset: offset.into() }
}
pub fn url(&self) -> &Url {
&self.url
}
pub fn offset(&self) -> TextSize {
self.offset.into()
}
}
/// 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: TextSize) -> Self {
Self { url, offset: offset.into() }
}
pub fn url(&self) -> &Url {
self.url.url()
}
pub fn version(&self) -> &SourceFileVersion {
self.url.version()
}
pub fn offset(&self) -> TextSize {
self.offset.into()
}
}
#[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, Eq, PartialEq, 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 {
InvalidateContents { url: lsp_types::Url },
SetContents { url: VersionedUrl, contents: String },
SetConfiguration { config: PreviewConfig },
ShowPreview(PreviewComponent),
HighlightFromEditor { url: Option<Url>, offset: u32 },
}
impl lsp_types::notification::Notification for LspToPreviewMessage {
type Params = Self;
const METHOD: &'static str = "slint/lsp_to_preview";
}
#[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, version: SourceFileVersion, diagnostics: Vec<lsp_types::Diagnostic> },
/// Show a document in the editor.
ShowDocument { file: Url, selection: lsp_types::Range, take_focus: bool },
/// 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 },
/// Pass a `WorkspaceEdit` on to the editor
SendWorkspaceEdit { label: Option<String>, edit: lsp_types::WorkspaceEdit },
/// Pass a `ShowMessage` notification on to the editor
SendShowMessage { message: lsp_types::ShowMessageParams },
}
/// 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,
/// 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(path) = url.path().strip_prefix("/@") {
Some(format!("@{path}"))
} else 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 {
pub fn send_status_notification(
sender: &crate::ServerNotifier,
message: &str,
health: crate::lsp_ext::Health,
) {
sender
.send_notification::<crate::lsp_ext::ServerStatusNotification>(
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,
version: super::SourceFileVersion,
diagnostics: Vec<lsp_types::Diagnostic>,
) -> Option<()> {
sender
.send_notification::<lsp_types::notification::PublishDiagnostics>(
lsp_types::PublishDiagnosticsParams { uri, diagnostics, version },
)
.ok()
}
fn show_document_request_from_element_callback(
uri: lsp_types::Url,
range: lsp_types::Range,
take_focus: bool,
) -> 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(take_focus),
selection: Some(range),
})
}
pub async fn send_show_document_to_editor(
sender: crate::ServerNotifier,
file: lsp_types::Url,
range: lsp_types::Range,
take_focus: bool,
) {
let Some(params) = show_document_request_from_element_callback(file, range, take_focus)
else {
return;
};
let Ok(fut) = sender.send_request::<lsp_types::request::ShowDocument>(params) else {
return;
};
let _ = fut.await;
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_uri_conversion_of_builtins() {
let builtin_path = PathBuf::from("builtin:/fluent/button.slint");
let url = file_to_uri(&builtin_path).unwrap();
assert_eq!(url.scheme(), "builtin");
let back_conversion = uri_to_file(&url).unwrap();
assert_eq!(back_conversion, builtin_path);
assert!(Url::from_file_path(&builtin_path).is_err());
}
#[test]
fn test_uri_conversion_of_slashed_builtins() {
let builtin_path1 = PathBuf::from("builtin:/fluent/button.slint");
let builtin_path3 = PathBuf::from("builtin:///fluent/button.slint");
let url1 = file_to_uri(&builtin_path1).unwrap();
let url3 = file_to_uri(&builtin_path3).unwrap();
assert_ne!(url1, url3);
let back_conversion1 = uri_to_file(&url1).unwrap();
let back_conversion3 = uri_to_file(&url3).unwrap();
assert_eq!(back_conversion1, back_conversion3);
assert_eq!(back_conversion1, builtin_path1);
}
}