aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2018-10-30 18:32:24 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2018-10-30 18:32:24 +0000
commit46cce4f8f1b71458029ebfd391c37e27cc6c5c9c (patch)
tree95344947f1957d03edcbcd6ef8a2786cc1b9142d
parentbc4de7128f474f75a9eff6591923657025099b74 (diff)
parent1643d94a65a66f32b9278829dd3af00883f3852b (diff)
Merge #169
169: Syntax ptr r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
-rw-r--r--Cargo.lock11
-rw-r--r--crates/ra_analysis/src/descriptors/mod.rs3
-rw-r--r--crates/ra_analysis/src/lib.rs1
-rw-r--r--crates/ra_analysis/src/syntax_ptr.rs67
-rw-r--r--crates/ra_editor/src/completion.rs3
-rw-r--r--crates/ra_syntax/Cargo.toml1
-rw-r--r--crates/ra_syntax/src/algo/mod.rs4
-rw-r--r--crates/ra_syntax/src/text_utils.rs4
8 files changed, 79 insertions, 15 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 16eaf3738..88c7ba356 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -661,7 +661,7 @@ dependencies = [
661 "serde_json 1.0.32 (registry+https://github.com/rust-lang/crates.io-index)", 661 "serde_json 1.0.32 (registry+https://github.com/rust-lang/crates.io-index)",
662 "smol_str 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", 662 "smol_str 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
663 "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 663 "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
664 "text_unit 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", 664 "text_unit 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
665 "url_serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 665 "url_serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
666 "walkdir 2.2.5 (registry+https://github.com/rust-lang/crates.io-index)", 666 "walkdir 2.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
667] 667]
@@ -675,6 +675,7 @@ dependencies = [
675 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", 675 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
676 "rowan 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 676 "rowan 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
677 "test_utils 0.1.0", 677 "test_utils 0.1.0",
678 "text_unit 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
678 "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 679 "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
679 "walkdir 2.2.5 (registry+https://github.com/rust-lang/crates.io-index)", 680 "walkdir 2.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
680] 681]
@@ -798,7 +799,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
798dependencies = [ 799dependencies = [
799 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", 800 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
800 "smol_str 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", 801 "smol_str 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
801 "text_unit 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", 802 "text_unit 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
802] 803]
803 804
804[[package]] 805[[package]]
@@ -1038,12 +1039,12 @@ version = "0.1.0"
1038dependencies = [ 1039dependencies = [
1039 "difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 1040 "difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
1040 "itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)", 1041 "itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)",
1041 "text_unit 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", 1042 "text_unit 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
1042] 1043]
1043 1044
1044[[package]] 1045[[package]]
1045name = "text_unit" 1046name = "text_unit"
1046version = "0.1.4" 1047version = "0.1.5"
1047source = "registry+https://github.com/rust-lang/crates.io-index" 1048source = "registry+https://github.com/rust-lang/crates.io-index"
1048dependencies = [ 1049dependencies = [
1049 "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", 1050 "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1372,7 +1373,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1372"checksum tera 0.11.18 (registry+https://github.com/rust-lang/crates.io-index)" = "6c87cae42cc4fc480278c7583792cc5da2d51a25be916b7921cbb45c43063b8d" 1373"checksum tera 0.11.18 (registry+https://github.com/rust-lang/crates.io-index)" = "6c87cae42cc4fc480278c7583792cc5da2d51a25be916b7921cbb45c43063b8d"
1373"checksum teraron 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d89ad4617d1dec55331067fadaa041e813479e1779616f3d3ce9308bf46184e" 1374"checksum teraron 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d89ad4617d1dec55331067fadaa041e813479e1779616f3d3ce9308bf46184e"
1374"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" 1375"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096"
1375"checksum text_unit 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "93fc86da66d0b9aa8d359b0ec31b4342c6bc52637eadef05b91b098551a9f8e9" 1376"checksum text_unit 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "8009d7bdbd896a7e09b595f8f9325a19047fc708653e60d0895202b82135048f"
1376"checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6" 1377"checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6"
1377"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" 1378"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
1378"checksum time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "d825be0eb33fda1a7e68012d51e9c7f451dc1a69391e7fdc197060bb8c56667b" 1379"checksum time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "d825be0eb33fda1a7e68012d51e9c7f451dc1a69391e7fdc197060bb8c56667b"
diff --git a/crates/ra_analysis/src/descriptors/mod.rs b/crates/ra_analysis/src/descriptors/mod.rs
index 873eb47e4..0220f7d5d 100644
--- a/crates/ra_analysis/src/descriptors/mod.rs
+++ b/crates/ra_analysis/src/descriptors/mod.rs
@@ -2,7 +2,6 @@ pub(crate) mod module;
2 2
3use ra_syntax::{ 3use ra_syntax::{
4 ast::{self, AstNode, NameOwner}, 4 ast::{self, AstNode, NameOwner},
5 text_utils::is_subrange,
6}; 5};
7 6
8#[derive(Debug, Clone)] 7#[derive(Debug, Clone)]
@@ -23,7 +22,7 @@ impl FnDescriptor {
23 let label: String = node 22 let label: String = node
24 .syntax() 23 .syntax()
25 .children() 24 .children()
26 .filter(|child| !is_subrange(body_range, child.range())) 25 .filter(|child| !child.range().is_subrange(&body_range))
27 .map(|node| node.text().to_string()) 26 .map(|node| node.text().to_string())
28 .collect(); 27 .collect();
29 label 28 label
diff --git a/crates/ra_analysis/src/lib.rs b/crates/ra_analysis/src/lib.rs
index a67cac21e..363c72c0b 100644
--- a/crates/ra_analysis/src/lib.rs
+++ b/crates/ra_analysis/src/lib.rs
@@ -12,6 +12,7 @@ mod descriptors;
12mod imp; 12mod imp;
13mod symbol_index; 13mod symbol_index;
14mod completion; 14mod completion;
15mod syntax_ptr;
15 16
16use std::{ 17use std::{
17 fmt, 18 fmt,
diff --git a/crates/ra_analysis/src/syntax_ptr.rs b/crates/ra_analysis/src/syntax_ptr.rs
new file mode 100644
index 000000000..863ad2672
--- /dev/null
+++ b/crates/ra_analysis/src/syntax_ptr.rs
@@ -0,0 +1,67 @@
1use ra_syntax::{
2 File, TextRange, SyntaxKind, SyntaxNode, SyntaxNodeRef,
3 ast::{self, AstNode},
4};
5
6use crate::FileId;
7use crate::db::SyntaxDatabase;
8
9/// SyntaxPtr is a cheap `Copy` id which identifies a particular syntax node,
10/// without retainig syntax tree in memory. You need to explicitelly `resovle`
11/// `SyntaxPtr` to get a `SyntaxNode`
12#[derive(Debug, Clone, Copy, PartialEq, Eq)]
13pub(crate) struct SyntaxPtr {
14 file_id: FileId,
15 local: LocalSyntaxPtr,
16}
17
18impl SyntaxPtr {
19 pub(crate) fn new(file_id: FileId, node: SyntaxNodeRef) -> SyntaxPtr {
20 let local = LocalSyntaxPtr::new(node);
21 SyntaxPtr { file_id, local }
22 }
23
24 pub(crate) fn resolve(self, db: &impl SyntaxDatabase) -> SyntaxNode {
25 let syntax = db.file_syntax(self.file_id);
26 self.local.resolve(&syntax)
27 }
28}
29
30
31/// A pionter to a syntax node inside a file.
32#[derive(Debug, Clone, Copy, PartialEq, Eq)]
33struct LocalSyntaxPtr {
34 range: TextRange,
35 kind: SyntaxKind,
36}
37
38impl LocalSyntaxPtr {
39 fn new(node: SyntaxNodeRef) -> LocalSyntaxPtr {
40 LocalSyntaxPtr {
41 range: node.range(),
42 kind: node.kind(),
43 }
44 }
45
46 fn resolve(self, file: &File) -> SyntaxNode {
47 let mut curr = file.syntax();
48 loop {
49 if curr.range() == self.range && curr.kind() == self.kind {
50 return curr.owned();
51 }
52 curr = curr.children()
53 .find(|it| self.range.is_subrange(&it.range()))
54 .unwrap_or_else(|| panic!("can't resovle local ptr to SyntaxNode: {:?}", self))
55 }
56 }
57}
58
59
60#[test]
61fn test_local_syntax_ptr() {
62 let file = File::parse("struct Foo { f: u32, }");
63 let field = file.syntax().descendants().find_map(ast::NamedFieldDef::cast).unwrap();
64 let ptr = LocalSyntaxPtr::new(field.syntax());
65 let field_syntax = ptr.resolve(&file);
66 assert_eq!(field.syntax(), field_syntax);
67}
diff --git a/crates/ra_editor/src/completion.rs b/crates/ra_editor/src/completion.rs
index 0a3675255..a0b168bc6 100644
--- a/crates/ra_editor/src/completion.rs
+++ b/crates/ra_editor/src/completion.rs
@@ -3,7 +3,6 @@ use rustc_hash::{FxHashMap, FxHashSet};
3use ra_syntax::{ 3use ra_syntax::{
4 algo::visit::{visitor, visitor_ctx, Visitor, VisitorCtx}, 4 algo::visit::{visitor, visitor_ctx, Visitor, VisitorCtx},
5 ast::{self, AstChildren, LoopBodyOwner, ModuleItemOwner}, 5 ast::{self, AstChildren, LoopBodyOwner, ModuleItemOwner},
6 text_utils::is_subrange,
7 AstNode, File, 6 AstNode, File,
8 SyntaxKind::*, 7 SyntaxKind::*,
9 SyntaxNodeRef, TextUnit, 8 SyntaxNodeRef, TextUnit,
@@ -191,7 +190,7 @@ fn is_in_loop_body(name_ref: ast::NameRef) -> bool {
191 .visit::<ast::LoopExpr, _>(LoopBodyOwner::loop_body) 190 .visit::<ast::LoopExpr, _>(LoopBodyOwner::loop_body)
192 .accept(node); 191 .accept(node);
193 if let Some(Some(body)) = loop_body { 192 if let Some(Some(body)) = loop_body {
194 if is_subrange(body.syntax().range(), name_ref.syntax().range()) { 193 if name_ref.syntax().range().is_subrange(&body.syntax().range()) {
195 return true; 194 return true;
196 } 195 }
197 } 196 }
diff --git a/crates/ra_syntax/Cargo.toml b/crates/ra_syntax/Cargo.toml
index 7efebab8b..043c9bacd 100644
--- a/crates/ra_syntax/Cargo.toml
+++ b/crates/ra_syntax/Cargo.toml
@@ -11,6 +11,7 @@ itertools = "0.7.8"
11drop_bomb = "0.1.4" 11drop_bomb = "0.1.4"
12parking_lot = "0.6.0" 12parking_lot = "0.6.0"
13rowan = "0.1.1" 13rowan = "0.1.1"
14text_unit = "0.1.5"
14 15
15[dev-dependencies] 16[dev-dependencies]
16test_utils = { path = "../test_utils" } 17test_utils = { path = "../test_utils" }
diff --git a/crates/ra_syntax/src/algo/mod.rs b/crates/ra_syntax/src/algo/mod.rs
index d82c42b3e..f92529d3e 100644
--- a/crates/ra_syntax/src/algo/mod.rs
+++ b/crates/ra_syntax/src/algo/mod.rs
@@ -2,7 +2,7 @@ pub mod visit;
2// pub mod walk; 2// pub mod walk;
3 3
4use crate::{ 4use crate::{
5 text_utils::{contains_offset_nonstrict, is_subrange}, 5 text_utils::{contains_offset_nonstrict},
6 SyntaxNodeRef, TextRange, TextUnit, 6 SyntaxNodeRef, TextRange, TextUnit,
7}; 7};
8 8
@@ -91,7 +91,7 @@ impl<'f> Iterator for LeafAtOffset<'f> {
91 91
92pub fn find_covering_node(root: SyntaxNodeRef, range: TextRange) -> SyntaxNodeRef { 92pub fn find_covering_node(root: SyntaxNodeRef, range: TextRange) -> SyntaxNodeRef {
93 assert!( 93 assert!(
94 is_subrange(root.range(), range), 94 range.is_subrange(&root.range()),
95 "node range: {:?}, target range: {:?}", 95 "node range: {:?}, target range: {:?}",
96 root.range(), 96 root.range(),
97 range, 97 range,
diff --git a/crates/ra_syntax/src/text_utils.rs b/crates/ra_syntax/src/text_utils.rs
index abda5ec39..a90f8a083 100644
--- a/crates/ra_syntax/src/text_utils.rs
+++ b/crates/ra_syntax/src/text_utils.rs
@@ -4,10 +4,6 @@ pub fn contains_offset_nonstrict(range: TextRange, offset: TextUnit) -> bool {
4 range.start() <= offset && offset <= range.end() 4 range.start() <= offset && offset <= range.end()
5} 5}
6 6
7pub fn is_subrange(range: TextRange, subrange: TextRange) -> bool {
8 range.start() <= subrange.start() && subrange.end() <= range.end()
9}
10
11pub fn intersect(r1: TextRange, r2: TextRange) -> Option<TextRange> { 7pub fn intersect(r1: TextRange, r2: TextRange) -> Option<TextRange> {
12 let start = r1.start().max(r2.start()); 8 let start = r1.start().max(r2.start());
13 let end = r1.end().min(r2.end()); 9 let end = r1.end().min(r2.end());