rust/crates/ra_syntax/src/ptr.rs

88 lines
2.4 KiB
Rust
Raw Normal View History

use std::{iter::successors, marker::PhantomData};
2019-01-23 08:37:10 -06:00
2019-07-18 11:23:05 -05:00
use crate::{AstNode, SyntaxKind, SyntaxNode, TextRange};
2019-01-23 08:37:10 -06:00
/// A pointer to a syntax node inside a file. It can be used to remember a
/// specific node across reparses of the same file.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct SyntaxNodePtr {
2019-04-21 09:47:55 -05:00
pub(crate) range: TextRange,
2019-01-23 08:37:10 -06:00
kind: SyntaxKind,
}
impl SyntaxNodePtr {
pub fn new(node: &SyntaxNode) -> SyntaxNodePtr {
2019-07-20 04:58:27 -05:00
SyntaxNodePtr { range: node.text_range(), kind: node.kind() }
2019-01-23 08:37:10 -06:00
}
2019-07-18 11:23:05 -05:00
pub fn to_node(self, root: &SyntaxNode) -> SyntaxNode {
2019-05-13 11:39:06 -05:00
assert!(root.parent().is_none());
2019-07-18 11:23:05 -05:00
successors(Some(root.clone()), |node| {
2019-07-20 04:58:27 -05:00
node.children().find(|it| self.range.is_subrange(&it.text_range()))
2019-01-23 08:37:10 -06:00
})
2019-07-20 04:58:27 -05:00
.find(|it| it.text_range() == self.range && it.kind() == self.kind)
2019-01-23 08:37:10 -06:00
.unwrap_or_else(|| panic!("can't resolve local ptr to SyntaxNode: {:?}", self))
}
pub fn range(self) -> TextRange {
self.range
}
pub fn kind(self) -> SyntaxKind {
self.kind
}
}
2019-01-23 09:26:02 -06:00
/// Like `SyntaxNodePtr`, but remembers the type of node
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct AstPtr<N: AstNode> {
2019-01-24 04:40:36 -06:00
raw: SyntaxNodePtr,
_ty: PhantomData<fn() -> N>,
2019-01-23 09:26:02 -06:00
}
impl<N: AstNode> Copy for AstPtr<N> {}
impl<N: AstNode> Clone for AstPtr<N> {
fn clone(&self) -> AstPtr<N> {
*self
}
}
impl<N: AstNode> AstPtr<N> {
pub fn new(node: &N) -> AstPtr<N> {
2019-02-08 05:49:43 -06:00
AstPtr { raw: SyntaxNodePtr::new(node.syntax()), _ty: PhantomData }
2019-01-23 09:26:02 -06:00
}
2019-07-18 11:23:05 -05:00
pub fn to_node(self, root: &SyntaxNode) -> N {
2019-05-13 11:39:06 -05:00
let syntax_node = self.raw.to_node(root);
2019-01-23 09:26:02 -06:00
N::cast(syntax_node).unwrap()
}
pub fn syntax_node_ptr(self) -> SyntaxNodePtr {
2019-01-24 04:40:36 -06:00
self.raw
2019-01-23 09:26:02 -06:00
}
2019-07-19 10:22:00 -05:00
pub fn cast<U: AstNode>(self) -> Option<AstPtr<U>> {
if !U::can_cast(self.raw.kind()) {
return None;
}
Some(AstPtr { raw: self.raw, _ty: PhantomData })
}
2019-01-23 09:26:02 -06:00
}
2019-03-23 08:28:47 -05:00
impl<N: AstNode> From<AstPtr<N>> for SyntaxNodePtr {
fn from(ptr: AstPtr<N>) -> SyntaxNodePtr {
ptr.raw
}
}
2019-01-23 08:37:10 -06:00
#[test]
fn test_local_syntax_ptr() {
2019-05-13 11:39:06 -05:00
use crate::{ast, AstNode, SourceFile};
2019-01-23 08:37:10 -06:00
2019-05-28 09:34:28 -05:00
let file = SourceFile::parse("struct Foo { f: u32, }").ok().unwrap();
2019-02-08 05:49:43 -06:00
let field = file.syntax().descendants().find_map(ast::NamedFieldDef::cast).unwrap();
2019-01-23 08:37:10 -06:00
let ptr = SyntaxNodePtr::new(field.syntax());
2019-05-13 11:39:06 -05:00
let field_syntax = ptr.to_node(file.syntax());
2019-07-18 11:23:05 -05:00
assert_eq!(field.syntax(), &field_syntax);
2019-01-23 08:37:10 -06:00
}