rust-analyzer/crates/ra_mbe/src/syntax_bridge.rs

169 lines
5.7 KiB
Rust
Raw Normal View History

2019-02-23 11:18:32 +00:00
use ra_parser::TokenSource;
2019-02-11 18:12:06 +00:00
use ra_syntax::{
2019-02-23 12:29:06 +00:00
AstNode, SyntaxNode, TextRange, SyntaxKind, SmolStr,
2019-02-11 18:12:06 +00:00
ast, SyntaxKind::*, TextUnit
};
2019-01-31 18:29:04 +00:00
2019-02-11 18:31:54 +00:00
/// Maps `tt::TokenId` to the relative range of the original token.
2019-02-11 18:12:06 +00:00
#[derive(Default)]
pub struct TokenMap {
/// Maps `tt::TokenId` to the *relative* source range.
toknes: Vec<TextRange>,
2019-01-31 18:29:04 +00:00
}
2019-02-11 18:31:54 +00:00
/// Convert the syntax tree (what user has written) to a `TokenTree` (what macro
/// will consume).
2019-02-11 18:12:06 +00: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))
}
2019-02-23 11:06:10 +00:00
/// Parses the token tree (result of macro expansion) as a sequence of items
pub fn token_tree_to_ast_item_list(tt: &tt::Subtree) -> ast::SourceFile {
unimplemented!()
}
2019-02-11 18:12:06 +00:00
impl TokenMap {
2019-02-11 18:31:54 +00:00
pub fn relative_range_of(&self, tt: tt::TokenId) -> Option<TextRange> {
let idx = tt.0 as usize;
self.toknes.get(idx).map(|&it| it)
}
2019-02-11 18:12:06 +00:00
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 18:29:04 +00: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 11:49:43 +00:00
tt::Leaf::from(tt::Punct { char, spacing: tt::Spacing::Joint }).into(),
2019-01-31 18:29:04 +00:00
);
}
prev = Some(char)
}
if let Some(char) = prev {
2019-02-08 11:49:43 +00:00
token_trees
.push(tt::Leaf::from(tt::Punct { char, spacing: tt::Spacing::Alone }).into());
2019-01-31 18:29:04 +00:00
}
} else {
let child: tt::TokenTree = if child.kind() == TOKEN_TREE {
2019-02-11 18:12:06 +00:00
convert_tt(token_map, global_offset, child)?.into()
2019-01-31 18:29:04 +00:00
} else if child.kind().is_keyword() || child.kind() == IDENT {
2019-02-11 18:12:06 +00:00
let relative_range = child.range() - global_offset;
let id = token_map.alloc(relative_range);
2019-01-31 18:29:04 +00:00
let text = child.leaf_text().unwrap().clone();
2019-02-11 18:12:06 +00:00
tt::Leaf::from(tt::Ident { text, id }).into()
2019-01-31 18:29:04 +00:00
} else if child.kind().is_literal() {
2019-02-08 11:49:43 +00:00
tt::Leaf::from(tt::Literal { text: child.leaf_text().unwrap().clone() }).into()
2019-01-31 18:29:04 +00:00
} else {
return None;
};
token_trees.push(child)
}
}
2019-02-08 11:49:43 +00:00
let res = tt::Subtree { delimiter, token_trees };
2019-01-31 18:29:04 +00:00
Some(res)
}
2019-02-23 11:18:32 +00:00
2019-02-23 12:29:06 +00:00
struct TtTokenSource {
tokens: Vec<Tok>,
}
struct Tok {
kind: SyntaxKind,
is_joint_to_next: bool,
2019-02-23 12:43:45 +00:00
text: SmolStr,
2019-02-23 12:29:06 +00:00
}
2019-02-23 11:18:32 +00:00
impl TtTokenSource {
fn new(tt: &tt::Subtree) -> TtTokenSource {
2019-02-23 12:29:06 +00:00
let mut res = TtTokenSource { tokens: Vec::new() };
res.convert_subtree(tt);
res
}
fn convert_subtree(&mut self, sub: &tt::Subtree) {
self.push_delim(sub.delimiter, false);
sub.token_trees.iter().for_each(|tt| self.convert_tt(tt));
self.push_delim(sub.delimiter, true)
}
fn convert_tt(&mut self, tt: &tt::TokenTree) {
match tt {
tt::TokenTree::Leaf(leaf) => self.convert_leaf(leaf),
tt::TokenTree::Subtree(sub) => self.convert_subtree(sub),
}
}
fn convert_leaf(&mut self, leaf: &tt::Leaf) {
let tok = match leaf {
tt::Leaf::Literal(l) => Tok {
kind: SyntaxKind::INT_NUMBER, // FIXME
is_joint_to_next: false,
2019-02-23 12:43:45 +00:00
text: l.text.clone(),
2019-02-23 12:29:06 +00:00
},
tt::Leaf::Punct(p) => Tok {
kind: SyntaxKind::from_char(p.char).unwrap(),
is_joint_to_next: p.spacing == tt::Spacing::Joint,
2019-02-23 12:43:45 +00:00
text: {
let mut buf = [0u8; 4];
let s: &str = p.char.encode_utf8(&mut buf);
SmolStr::new(s)
},
2019-02-23 12:29:06 +00:00
},
tt::Leaf::Ident(ident) => {
2019-02-23 12:43:45 +00:00
Tok { kind: IDENT, is_joint_to_next: false, text: ident.text.clone() }
2019-02-23 12:29:06 +00:00
}
};
self.tokens.push(tok)
}
fn push_delim(&mut self, d: tt::Delimiter, closing: bool) {
2019-02-23 12:43:45 +00:00
let (kinds, texts) = match d {
tt::Delimiter::Parenthesis => ([L_PAREN, R_PAREN], "()"),
tt::Delimiter::Brace => ([L_CURLY, R_CURLY], "{}"),
tt::Delimiter::Bracket => ([L_BRACK, R_BRACK], "[]"),
2019-02-23 12:29:06 +00:00
tt::Delimiter::None => return,
};
2019-02-23 12:43:45 +00:00
let idx = closing as usize;
let kind = kinds[idx];
let text = &texts[idx..texts.len() - (1 - idx)];
let tok = Tok { kind, is_joint_to_next: false, text: SmolStr::new(text) };
2019-02-23 12:29:06 +00:00
self.tokens.push(tok)
2019-02-23 11:18:32 +00:00
}
}
impl TokenSource for TtTokenSource {
fn token_kind(&self, pos: usize) -> SyntaxKind {
2019-02-23 12:29:06 +00:00
self.tokens[pos].kind
2019-02-23 11:18:32 +00:00
}
fn is_token_joint_to_next(&self, pos: usize) -> bool {
2019-02-23 12:29:06 +00:00
self.tokens[pos].is_joint_to_next
2019-02-23 11:18:32 +00:00
}
fn is_keyword(&self, pos: usize, kw: &str) -> bool {
2019-02-23 12:43:45 +00:00
self.tokens[pos].text == *kw
2019-02-23 11:18:32 +00:00
}
}