108 lines
2.9 KiB
Rust
Raw Normal View History

//! FIXME: write short doc here
use std::{
hash::{Hash, Hasher},
iter::successors,
marker::PhantomData,
};
2019-01-23 17:37:10 +03:00
2019-07-18 19:23:05 +03:00
use crate::{AstNode, SyntaxKind, SyntaxNode, TextRange};
2019-01-23 17:37:10 +03: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.
2020-04-11 00:27:00 +02:00
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
2019-01-23 17:37:10 +03:00
pub struct SyntaxNodePtr {
// Don't expose this field further. At some point, we might want to replace
// range with node id.
2019-04-21 17:47:55 +03:00
pub(crate) range: TextRange,
2019-01-23 17:37:10 +03:00
kind: SyntaxKind,
}
impl SyntaxNodePtr {
pub fn new(node: &SyntaxNode) -> SyntaxNodePtr {
2019-07-20 12:58:27 +03:00
SyntaxNodePtr { range: node.text_range(), kind: node.kind() }
2019-01-23 17:37:10 +03:00
}
2020-04-11 00:27:00 +02:00
pub fn to_node(&self, root: &SyntaxNode) -> SyntaxNode {
assert!(root.parent().is_none());
successors(Some(root.clone()), |node| {
2020-04-24 23:40:41 +02:00
node.children().find(|it| it.text_range().contains_range(self.range))
2019-01-23 17:37:10 +03:00
})
2019-07-20 12:58:27 +03:00
.find(|it| it.text_range() == self.range && it.kind() == self.kind)
2019-01-23 17:37:10 +03:00
.unwrap_or_else(|| panic!("can't resolve local ptr to SyntaxNode: {:?}", self))
}
2019-08-12 20:39:11 +01:00
pub fn cast<N: AstNode>(self) -> Option<AstPtr<N>> {
if !N::can_cast(self.kind) {
2019-08-12 20:39:11 +01:00
return None;
}
Some(AstPtr { raw: self, _ty: PhantomData })
}
2019-01-23 17:37:10 +03:00
}
2019-01-23 18:26:02 +03:00
/// Like `SyntaxNodePtr`, but remembers the type of node
#[derive(Debug)]
2019-01-23 18:26:02 +03:00
pub struct AstPtr<N: AstNode> {
2019-01-24 13:40:36 +03:00
raw: SyntaxNodePtr,
_ty: PhantomData<fn() -> N>,
2019-01-23 18:26:02 +03:00
}
impl<N: AstNode> Clone for AstPtr<N> {
fn clone(&self) -> AstPtr<N> {
2020-04-11 00:27:00 +02:00
AstPtr { raw: self.raw.clone(), _ty: PhantomData }
2019-01-23 18:26:02 +03:00
}
}
impl<N: AstNode> Eq for AstPtr<N> {}
impl<N: AstNode> PartialEq for AstPtr<N> {
fn eq(&self, other: &AstPtr<N>) -> bool {
self.raw == other.raw
}
}
impl<N: AstNode> Hash for AstPtr<N> {
fn hash<H: Hasher>(&self, state: &mut H) {
self.raw.hash(state)
}
}
2019-01-23 18:26:02 +03:00
impl<N: AstNode> AstPtr<N> {
pub fn new(node: &N) -> AstPtr<N> {
2019-02-08 14:49:43 +03:00
AstPtr { raw: SyntaxNodePtr::new(node.syntax()), _ty: PhantomData }
2019-01-23 18:26:02 +03:00
}
2020-04-11 00:27:00 +02:00
pub fn to_node(&self, root: &SyntaxNode) -> N {
2019-05-13 19:39:06 +03:00
let syntax_node = self.raw.to_node(root);
2019-01-23 18:26:02 +03:00
N::cast(syntax_node).unwrap()
}
2020-04-11 00:27:00 +02:00
pub fn syntax_node_ptr(&self) -> SyntaxNodePtr {
self.raw.clone()
2019-01-23 18:26:02 +03:00
}
2019-07-19 18:22:00 +03: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 18:26:02 +03:00
}
2019-03-23 16:28:47 +03:00
impl<N: AstNode> From<AstPtr<N>> for SyntaxNodePtr {
fn from(ptr: AstPtr<N>) -> SyntaxNodePtr {
ptr.raw
}
}
2019-01-23 17:37:10 +03:00
#[test]
fn test_local_syntax_ptr() {
2019-05-13 19:39:06 +03:00
use crate::{ast, AstNode, SourceFile};
2019-01-23 17:37:10 +03:00
2019-05-28 17:34:28 +03:00
let file = SourceFile::parse("struct Foo { f: u32, }").ok().unwrap();
2020-07-30 16:49:13 +02:00
let field = file.syntax().descendants().find_map(ast::RecordField::cast).unwrap();
2019-01-23 17:37:10 +03:00
let ptr = SyntaxNodePtr::new(field.syntax());
2019-05-13 19:39:06 +03:00
let field_syntax = ptr.to_node(file.syntax());
2019-07-18 19:23:05 +03:00
assert_eq!(field.syntax(), &field_syntax);
2019-01-23 17:37:10 +03:00
}