rust/crates/ra_mbe/src/syntax_bridge.rs

79 lines
2.7 KiB
Rust
Raw Normal View History

2019-02-11 12:12:06 -06:00
use ra_syntax::{
AstNode, SyntaxNode, TextRange,
ast, SyntaxKind::*, TextUnit
};
2019-01-31 12:29:04 -06:00
2019-02-11 12:12:06 -06:00
#[derive(Default)]
pub struct TokenMap {
/// Maps `tt::TokenId` to the *relative* source range.
toknes: Vec<TextRange>,
2019-01-31 12:29:04 -06:00
}
2019-02-11 12:12:06 -06:00
pub fn ast_to_token_tree(ast: &ast::TokenTree) -> Option<(tt::Subtree, TokenMap)> {
let mut token_map = TokenMap::default();
let node = ast.syntax();
let tt = convert_tt(&mut token_map, node.range().start(), node)?;
Some((tt, token_map))
}
impl TokenMap {
fn alloc(&mut self, relative_range: TextRange) -> tt::TokenId {
let id = self.toknes.len();
self.toknes.push(relative_range);
tt::TokenId(id as u32)
}
}
fn convert_tt(
token_map: &mut TokenMap,
global_offset: TextUnit,
tt: &SyntaxNode,
) -> Option<tt::Subtree> {
2019-01-31 12:29:04 -06:00
let first_child = tt.first_child()?;
let last_child = tt.last_child()?;
let delimiter = match (first_child.kind(), last_child.kind()) {
(L_PAREN, R_PAREN) => tt::Delimiter::Parenthesis,
(L_CURLY, R_CURLY) => tt::Delimiter::Brace,
(L_BRACK, R_BRACK) => tt::Delimiter::Bracket,
_ => return None,
};
let mut token_trees = Vec::new();
for child in tt.children().skip(1) {
if child == first_child || child == last_child || child.kind().is_trivia() {
continue;
}
if child.kind().is_punct() {
let mut prev = None;
for char in child.leaf_text().unwrap().chars() {
if let Some(char) = prev {
token_trees.push(
2019-02-08 05:49:43 -06:00
tt::Leaf::from(tt::Punct { char, spacing: tt::Spacing::Joint }).into(),
2019-01-31 12:29:04 -06:00
);
}
prev = Some(char)
}
if let Some(char) = prev {
2019-02-08 05:49:43 -06:00
token_trees
.push(tt::Leaf::from(tt::Punct { char, spacing: tt::Spacing::Alone }).into());
2019-01-31 12:29:04 -06:00
}
} else {
let child: tt::TokenTree = if child.kind() == TOKEN_TREE {
2019-02-11 12:12:06 -06:00
convert_tt(token_map, global_offset, child)?.into()
2019-01-31 12:29:04 -06:00
} else if child.kind().is_keyword() || child.kind() == IDENT {
2019-02-11 12:12:06 -06:00
let relative_range = child.range() - global_offset;
let id = token_map.alloc(relative_range);
2019-01-31 12:29:04 -06:00
let text = child.leaf_text().unwrap().clone();
2019-02-11 12:12:06 -06:00
tt::Leaf::from(tt::Ident { text, id }).into()
2019-01-31 12:29:04 -06:00
} else if child.kind().is_literal() {
2019-02-08 05:49:43 -06:00
tt::Leaf::from(tt::Literal { text: child.leaf_text().unwrap().clone() }).into()
2019-01-31 12:29:04 -06:00
} else {
return None;
};
token_trees.push(child)
}
}
2019-02-08 05:49:43 -06:00
let res = tt::Subtree { delimiter, token_trees };
2019-01-31 12:29:04 -06:00
Some(res)
}