rust/crates/ra_fmt/src/lib.rs

73 lines
1.9 KiB
Rust
Raw Normal View History

//! This crate provides some utilities for indenting rust code.
//!
2019-02-03 12:26:35 -06:00
use itertools::Itertools;
2019-01-10 09:32:02 -06:00
use ra_syntax::{
2019-01-11 05:57:19 -06:00
AstNode,
2019-03-30 05:25:53 -05:00
SyntaxNode, SyntaxKind::*, SyntaxToken, SyntaxKind,
ast,
2019-01-13 09:21:23 -06:00
algo::generate,
2019-01-10 09:32:02 -06:00
};
2019-02-03 12:26:35 -06:00
pub fn reindent(text: &str, indent: &str) -> String {
let indent = format!("\n{}", indent);
text.lines().intersperse(&indent).collect()
}
2019-01-13 12:54:28 -06:00
/// If the node is on the beginning of the line, calculate indent.
2019-02-03 12:26:35 -06:00
pub fn leading_indent(node: &SyntaxNode) -> Option<&str> {
2019-03-30 05:25:53 -05:00
for token in prev_tokens(node.first_token()?) {
if let Some(ws) = ast::Whitespace::cast(token) {
2019-01-25 02:23:15 -06:00
let ws_text = ws.text();
if let Some(pos) = ws_text.rfind('\n') {
return Some(&ws_text[pos + 1..]);
}
}
2019-03-30 05:25:53 -05:00
if token.text().contains('\n') {
2019-01-25 02:23:15 -06:00
break;
}
}
None
}
2019-03-30 05:25:53 -05:00
fn prev_tokens(token: SyntaxToken) -> impl Iterator<Item = SyntaxToken> {
generate(token.prev_token(), |&token| token.prev_token())
2019-01-13 09:21:23 -06:00
}
2019-02-03 12:26:35 -06:00
pub fn extract_trivial_expression(block: &ast::Block) -> Option<&ast::Expr> {
2019-01-10 09:32:02 -06:00
let expr = block.expr()?;
if expr.syntax().text().contains('\n') {
return None;
}
let non_trivial_children = block.syntax().children().filter(|it| match it.kind() {
WHITESPACE | L_CURLY | R_CURLY => false,
_ => it != &expr.syntax(),
});
if non_trivial_children.count() > 0 {
return None;
}
Some(expr)
}
2019-03-30 05:25:53 -05:00
pub fn compute_ws(left: SyntaxKind, right: SyntaxKind) -> &'static str {
match left {
2019-01-10 09:32:02 -06:00
L_PAREN | L_BRACK => return "",
L_CURLY => {
2019-03-30 05:25:53 -05:00
if let USE_TREE = right {
2019-01-10 09:32:02 -06:00
return "";
}
}
_ => (),
}
2019-03-30 05:25:53 -05:00
match right {
2019-01-10 09:32:02 -06:00
R_PAREN | R_BRACK => return "",
R_CURLY => {
2019-03-30 05:25:53 -05:00
if let USE_TREE = left {
2019-01-10 09:32:02 -06:00
return "";
}
}
DOT => return "",
_ => (),
}
" "
}