2019-10-29 03:15:51 -05:00
|
|
|
//! `AstIdMap` allows to create stable IDs for "large" syntax nodes like items
|
|
|
|
//! and macro calls.
|
|
|
|
//!
|
|
|
|
//! Specifically, it enumerates all items in a file and uses position of a an
|
|
|
|
//! item as an ID. That way, id's don't change unless the set of items itself
|
|
|
|
//! changes.
|
|
|
|
|
|
|
|
use std::{
|
|
|
|
hash::{Hash, Hasher},
|
|
|
|
marker::PhantomData,
|
|
|
|
};
|
|
|
|
|
2020-03-19 10:00:11 -05:00
|
|
|
use ra_arena::{Arena, Idx};
|
2019-10-29 07:25:46 -05:00
|
|
|
use ra_syntax::{ast, AstNode, AstPtr, SyntaxNode, SyntaxNodePtr};
|
2019-10-29 03:15:51 -05:00
|
|
|
|
|
|
|
/// `AstId` points to an AST node in a specific file.
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct FileAstId<N: AstNode> {
|
|
|
|
raw: ErasedFileAstId,
|
|
|
|
_ty: PhantomData<fn() -> N>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<N: AstNode> Clone for FileAstId<N> {
|
|
|
|
fn clone(&self) -> FileAstId<N> {
|
|
|
|
*self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl<N: AstNode> Copy for FileAstId<N> {}
|
|
|
|
|
|
|
|
impl<N: AstNode> PartialEq for FileAstId<N> {
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
self.raw == other.raw
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl<N: AstNode> Eq for FileAstId<N> {}
|
|
|
|
impl<N: AstNode> Hash for FileAstId<N> {
|
|
|
|
fn hash<H: Hasher>(&self, hasher: &mut H) {
|
|
|
|
self.raw.hash(hasher);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-05 08:10:33 -06:00
|
|
|
impl<N: AstNode> FileAstId<N> {
|
|
|
|
// Can't make this a From implementation because of coherence
|
|
|
|
pub fn upcast<M: AstNode>(self) -> FileAstId<M>
|
|
|
|
where
|
|
|
|
M: From<N>,
|
|
|
|
{
|
|
|
|
FileAstId { raw: self.raw, _ty: PhantomData }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-19 10:00:11 -05:00
|
|
|
type ErasedFileAstId = Idx<SyntaxNodePtr>;
|
2019-10-29 03:15:51 -05:00
|
|
|
|
|
|
|
/// Maps items' `SyntaxNode`s to `ErasedFileAstId`s and back.
|
|
|
|
#[derive(Debug, PartialEq, Eq, Default)]
|
|
|
|
pub struct AstIdMap {
|
2020-03-19 10:00:11 -05:00
|
|
|
arena: Arena<SyntaxNodePtr>,
|
2019-10-29 03:15:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl AstIdMap {
|
2019-10-29 08:08:06 -05:00
|
|
|
pub(crate) fn from_source(node: &SyntaxNode) -> AstIdMap {
|
2019-10-29 03:15:51 -05:00
|
|
|
assert!(node.parent().is_none());
|
|
|
|
let mut res = AstIdMap { arena: Arena::default() };
|
2019-12-05 08:10:33 -06:00
|
|
|
// By walking the tree in breadth-first order we make sure that parents
|
2019-10-29 03:15:51 -05:00
|
|
|
// get lower ids then children. That is, adding a new child does not
|
|
|
|
// change parent's id. This means that, say, adding a new function to a
|
|
|
|
// trait does not change ids of top-level items, which helps caching.
|
|
|
|
bfs(node, |it| {
|
|
|
|
if let Some(module_item) = ast::ModuleItem::cast(it.clone()) {
|
|
|
|
res.alloc(module_item.syntax());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
res
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn ast_id<N: AstNode>(&self, item: &N) -> FileAstId<N> {
|
2019-10-29 07:20:08 -05:00
|
|
|
let raw = self.erased_ast_id(item.syntax());
|
|
|
|
FileAstId { raw, _ty: PhantomData }
|
|
|
|
}
|
|
|
|
fn erased_ast_id(&self, item: &SyntaxNode) -> ErasedFileAstId {
|
|
|
|
let ptr = SyntaxNodePtr::new(item);
|
|
|
|
match self.arena.iter().find(|(_id, i)| **i == ptr) {
|
2019-10-29 03:15:51 -05:00
|
|
|
Some((it, _)) => it,
|
|
|
|
None => panic!(
|
|
|
|
"Can't find {:?} in AstIdMap:\n{:?}",
|
2019-10-29 07:20:08 -05:00
|
|
|
item,
|
2019-10-29 03:15:51 -05:00
|
|
|
self.arena.iter().map(|(_id, i)| i).collect::<Vec<_>>(),
|
|
|
|
),
|
2019-10-29 07:20:08 -05:00
|
|
|
}
|
2019-10-29 03:15:51 -05:00
|
|
|
}
|
|
|
|
|
2019-10-29 08:08:06 -05:00
|
|
|
pub(crate) fn get<N: AstNode>(&self, id: FileAstId<N>) -> AstPtr<N> {
|
2019-10-29 07:25:46 -05:00
|
|
|
self.arena[id.raw].cast::<N>().unwrap()
|
2019-10-29 03:15:51 -05:00
|
|
|
}
|
|
|
|
|
2019-10-29 07:25:46 -05:00
|
|
|
fn alloc(&mut self, item: &SyntaxNode) -> ErasedFileAstId {
|
|
|
|
self.arena.alloc(SyntaxNodePtr::new(item))
|
2019-10-29 03:15:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Walks the subtree in bfs order, calling `f` for each node.
|
|
|
|
fn bfs(node: &SyntaxNode, mut f: impl FnMut(SyntaxNode)) {
|
|
|
|
let mut curr_layer = vec![node.clone()];
|
|
|
|
let mut next_layer = vec![];
|
|
|
|
while !curr_layer.is_empty() {
|
|
|
|
curr_layer.drain(..).for_each(|node| {
|
|
|
|
next_layer.extend(node.children());
|
|
|
|
f(node);
|
|
|
|
});
|
|
|
|
std::mem::swap(&mut curr_layer, &mut next_layer);
|
|
|
|
}
|
|
|
|
}
|