rust/crates/ra_ide_api_light/src/typing.rs

347 lines
8.9 KiB
Rust
Raw Normal View History

2018-09-16 11:54:24 +02:00
use ra_syntax::{
2019-01-10 15:50:49 +01:00
algo::{find_node_at_offset, find_leaf_at_offset, LeafAtOffset},
2018-08-25 12:42:40 +02:00
ast,
2019-01-10 15:50:49 +01:00
AstNode, Direction, SourceFile, SyntaxKind::*,
SyntaxNode, TextUnit,
2018-08-23 19:55:23 +02:00
};
2019-01-08 18:44:31 +01:00
use crate::{LocalEdit, TextEditBuilder};
2018-08-23 19:55:23 +02:00
2019-01-07 14:53:24 +01:00
pub fn on_enter(file: &SourceFile, offset: TextUnit) -> Option<LocalEdit> {
let comment = find_leaf_at_offset(file.syntax(), offset)
.left_biased()
2018-10-18 01:25:37 +02:00
.and_then(ast::Comment::cast)?;
2018-10-11 16:25:35 +02:00
if let ast::CommentFlavor::Multiline = comment.flavor() {
return None;
}
let prefix = comment.prefix();
if offset < comment.syntax().range().start() + TextUnit::of_str(prefix) + TextUnit::from(1) {
return None;
}
2018-10-11 16:25:35 +02:00
let indent = node_indent(file, comment.syntax())?;
let inserted = format!("\n{}{} ", indent, prefix);
let cursor_position = offset + TextUnit::of_str(&inserted);
2019-01-03 16:59:17 +01:00
let mut edit = TextEditBuilder::default();
edit.insert(offset, inserted);
Some(LocalEdit {
label: "on enter".to_string(),
edit: edit.finish(),
cursor_position: Some(cursor_position),
})
}
2019-01-07 14:53:24 +01:00
fn node_indent<'a>(file: &'a SourceFile, node: &SyntaxNode) -> Option<&'a str> {
let ws = match find_leaf_at_offset(file.syntax(), node.range().start()) {
LeafAtOffset::Between(l, r) => {
assert!(r == node);
l
}
LeafAtOffset::Single(n) => {
assert!(n == node);
return Some("");
}
LeafAtOffset::None => unreachable!(),
};
if ws.kind() != WHITESPACE {
return None;
}
let text = ws.leaf_text().unwrap();
let pos = text.as_str().rfind('\n').map(|it| it + 1).unwrap_or(0);
Some(&text[pos..])
}
2019-01-07 14:53:24 +01:00
pub fn on_eq_typed(file: &SourceFile, offset: TextUnit) -> Option<LocalEdit> {
let let_stmt: &ast::LetStmt = find_node_at_offset(file.syntax(), offset)?;
2018-08-28 10:12:42 +02:00
if let_stmt.has_semi() {
return None;
}
if let Some(expr) = let_stmt.initializer() {
let expr_range = expr.syntax().range();
2019-01-08 19:50:04 +01:00
if expr_range.contains(offset) && offset != expr_range.start() {
2018-08-28 10:12:42 +02:00
return None;
}
if file
.syntax()
.text()
.slice(offset..expr_range.start())
.contains('\n')
{
2018-08-28 20:45:59 +02:00
return None;
}
2018-08-28 10:17:08 +02:00
} else {
return None;
2018-08-28 10:12:42 +02:00
}
let offset = let_stmt.syntax().range().end();
2019-01-03 16:59:17 +01:00
let mut edit = TextEditBuilder::default();
2018-08-28 10:12:42 +02:00
edit.insert(offset, ";".to_string());
2018-08-29 17:03:14 +02:00
Some(LocalEdit {
label: "add semicolon".to_string(),
2018-08-28 10:12:42 +02:00
edit: edit.finish(),
cursor_position: None,
})
}
2019-01-07 14:53:24 +01:00
pub fn on_dot_typed(file: &SourceFile, offset: TextUnit) -> Option<LocalEdit> {
2019-01-06 00:58:03 +01:00
let before_dot_offset = offset - TextUnit::of_char('.');
2019-01-07 06:16:04 +01:00
let whitespace = find_leaf_at_offset(file.syntax(), before_dot_offset).left_biased()?;
2019-01-06 21:59:14 +01:00
// find whitespace just left of the dot
2019-01-07 06:16:04 +01:00
ast::Whitespace::cast(whitespace)?;
2019-01-06 21:59:14 +01:00
// make sure there is a method call
2019-01-07 06:16:04 +01:00
let method_call = whitespace
2019-01-06 21:59:14 +01:00
.siblings(Direction::Prev)
// first is whitespace
.skip(1)
.next()?;
2019-01-07 14:53:24 +01:00
ast::MethodCallExpr::cast(method_call)?;
2019-01-06 21:59:14 +01:00
// find how much the _method call is indented
2019-01-07 06:16:04 +01:00
let method_chain_indent = method_call
.parent()?
2019-01-06 21:59:14 +01:00
.siblings(Direction::Prev)
.skip(1)
.next()?
.leaf_text()
.map(|x| last_line_indent_in_whitespace(x))?;
2019-01-06 00:58:03 +01:00
2019-01-07 06:16:04 +01:00
let current_indent = TextUnit::of_str(last_line_indent_in_whitespace(whitespace.leaf_text()?));
2019-01-06 00:58:03 +01:00
// TODO: indent is always 4 spaces now. A better heuristic could look on the previous line(s)
2019-01-06 21:59:14 +01:00
let target_indent = TextUnit::of_str(method_chain_indent) + TextUnit::from_usize(4);
let diff = target_indent - current_indent;
let indent = "".repeat(diff.to_usize());
let cursor_position = offset + diff;
2019-01-06 00:58:03 +01:00
let mut edit = TextEditBuilder::default();
edit.insert(before_dot_offset, indent);
Some(LocalEdit {
label: "indent dot".to_string(),
edit: edit.finish(),
cursor_position: Some(cursor_position),
})
}
2019-01-06 21:59:14 +01:00
/// Finds the last line in the whitespace
fn last_line_indent_in_whitespace(ws: &str) -> &str {
ws.split('\n').last().unwrap_or("")
}
2018-08-28 13:47:12 +02:00
#[cfg(test)]
mod tests {
2019-01-10 15:50:49 +01:00
use crate::test_utils::{add_cursor, assert_eq_text, extract_offset};
2018-10-11 17:11:00 +02:00
2019-01-10 15:50:49 +01:00
use super::*;
2018-08-28 13:47:12 +02:00
#[test]
fn test_on_eq_typed() {
fn do_check(before: &str, after: &str) {
let (offset, before) = extract_offset(before);
2019-01-07 14:53:24 +01:00
let file = SourceFile::parse(&before);
2018-08-28 13:47:12 +02:00
let result = on_eq_typed(&file, offset).unwrap();
let actual = result.edit.apply(&before);
assert_eq_text!(after, &actual);
}
// do_check(r"
// fn foo() {
// let foo =<|>
// }
// ", r"
// fn foo() {
// let foo =;
// }
// ");
do_check(
r"
2018-08-28 13:47:12 +02:00
fn foo() {
let foo =<|> 1 + 1
}
",
r"
2018-08-28 13:47:12 +02:00
fn foo() {
let foo = 1 + 1;
}
",
);
2018-08-28 13:47:12 +02:00
// do_check(r"
// fn foo() {
// let foo =<|>
// let bar = 1;
// }
// ", r"
// fn foo() {
// let foo =;
// let bar = 1;
// }
// ");
}
2019-01-06 00:58:03 +01:00
#[test]
fn test_on_dot_typed() {
fn do_check(before: &str, after: &str) {
let (offset, before) = extract_offset(before);
2019-01-07 14:53:24 +01:00
let file = SourceFile::parse(&before);
2019-01-06 21:59:14 +01:00
if let Some(result) = on_eq_typed(&file, offset) {
let actual = result.edit.apply(&before);
assert_eq_text!(after, &actual);
};
2019-01-06 00:58:03 +01:00
}
2019-01-06 12:24:33 +01:00
// indent if continuing chain call
2019-01-06 00:58:03 +01:00
do_check(
r"
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.<|>
}
",
r"
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.
}
2019-01-06 12:24:33 +01:00
",
);
// do not indent if already indented
do_check(
r"
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.<|>
}
",
r"
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.
}
",
);
// indent if the previous line is already indented
do_check(
r"
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.first()
.<|>
}
",
r"
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.first()
.
}
",
);
// don't indent if indent matches previous line
do_check(
r"
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.first()
.<|>
}
",
r"
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.first()
.
}
2019-01-06 21:59:14 +01:00
",
);
// don't indent if there is no method call on previous line
do_check(
r"
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
.<|>
}
",
r"
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
.
}
",
);
// indent to match previous expr
do_check(
r"
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.<|>
}
",
r"
pub fn child(&self, db: &impl HirDatabase, name: &Name) -> Cancelable<Option<Module>> {
self.child_impl(db, name)
.
}
2019-01-06 00:58:03 +01:00
",
);
}
#[test]
fn test_on_enter() {
fn apply_on_enter(before: &str) -> Option<String> {
let (offset, before) = extract_offset(before);
2019-01-07 14:53:24 +01:00
let file = SourceFile::parse(&before);
let result = on_enter(&file, offset)?;
let actual = result.edit.apply(&before);
let actual = add_cursor(&actual, result.cursor_position.unwrap());
Some(actual)
}
fn do_check(before: &str, after: &str) {
let actual = apply_on_enter(before).unwrap();
assert_eq_text!(after, &actual);
}
fn do_check_noop(text: &str) {
assert!(apply_on_enter(text).is_none())
}
do_check(
r"
/// Some docs<|>
fn foo() {
}
",
r"
/// Some docs
/// <|>
fn foo() {
}
",
);
do_check(
r"
impl S {
/// Some<|> docs.
fn foo() {}
}
",
r"
impl S {
/// Some
/// <|> docs.
fn foo() {}
}
",
);
do_check_noop(r"<|>//! docz");
}
2018-08-28 13:47:12 +02:00
}