2020-02-07 08:57:38 -06:00
|
|
|
//! Assorted functions shared by several assists.
|
|
|
|
|
2021-02-16 14:48:15 -06:00
|
|
|
pub(crate) mod suggest_name;
|
|
|
|
|
2020-10-24 02:47:23 -05:00
|
|
|
use std::ops;
|
2020-04-29 04:57:06 -05:00
|
|
|
|
2021-02-13 15:59:51 -06:00
|
|
|
use ast::TypeBoundsOwner;
|
2021-02-22 09:23:42 -06:00
|
|
|
use hir::{Adt, HasSource, Semantics};
|
|
|
|
use ide_db::{
|
|
|
|
helpers::{FamousDefs, SnippetCap},
|
|
|
|
RootDatabase,
|
|
|
|
};
|
2020-08-13 04:41:20 -05:00
|
|
|
use itertools::Itertools;
|
2021-02-09 05:30:13 -06:00
|
|
|
use stdx::format_to;
|
2020-08-12 11:26:51 -05:00
|
|
|
use syntax::{
|
2020-11-05 16:34:50 -06:00
|
|
|
ast::edit::AstNodeEdit,
|
2020-11-17 07:22:04 -06:00
|
|
|
ast::AttrsOwner,
|
2020-11-05 16:34:50 -06:00
|
|
|
ast::NameOwner,
|
2021-02-09 05:30:13 -06:00
|
|
|
ast::{self, edit, make, ArgListOwner, GenericParamsOwner},
|
|
|
|
AstNode, Direction, SmolStr,
|
2020-06-28 17:18:50 -05:00
|
|
|
SyntaxKind::*,
|
2020-08-25 03:57:51 -05:00
|
|
|
SyntaxNode, TextSize, T,
|
2020-02-07 08:57:38 -06:00
|
|
|
};
|
2020-02-09 12:24:34 -06:00
|
|
|
|
2021-02-05 07:36:07 -06:00
|
|
|
use crate::{
|
2021-02-15 15:25:33 -06:00
|
|
|
assist_context::{AssistBuilder, AssistContext},
|
2021-02-05 07:36:07 -06:00
|
|
|
ast_transform::{self, AstTransform, QualifyPaths, SubstituteTypeParams},
|
|
|
|
};
|
2020-05-19 16:12:01 -05:00
|
|
|
|
2020-08-13 04:41:20 -05:00
|
|
|
pub(crate) fn unwrap_trivial_block(block: ast::BlockExpr) -> ast::Expr {
|
|
|
|
extract_trivial_expression(&block)
|
|
|
|
.filter(|expr| !expr.syntax().text().contains_char('\n'))
|
|
|
|
.unwrap_or_else(|| block.into())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn extract_trivial_expression(block: &ast::BlockExpr) -> Option<ast::Expr> {
|
|
|
|
let has_anything_else = |thing: &SyntaxNode| -> bool {
|
|
|
|
let mut non_trivial_children =
|
|
|
|
block.syntax().children_with_tokens().filter(|it| match it.kind() {
|
|
|
|
WHITESPACE | T!['{'] | T!['}'] => false,
|
|
|
|
_ => it.as_node() != Some(thing),
|
|
|
|
});
|
|
|
|
non_trivial_children.next().is_some()
|
|
|
|
};
|
|
|
|
|
2021-01-05 06:45:46 -06:00
|
|
|
if let Some(expr) = block.tail_expr() {
|
2020-08-13 04:41:20 -05:00
|
|
|
if has_anything_else(expr.syntax()) {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
return Some(expr);
|
|
|
|
}
|
|
|
|
// Unwrap `{ continue; }`
|
|
|
|
let (stmt,) = block.statements().next_tuple()?;
|
|
|
|
if let ast::Stmt::ExprStmt(expr_stmt) = stmt {
|
|
|
|
if has_anything_else(expr_stmt.syntax()) {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
let expr = expr_stmt.expr()?;
|
|
|
|
match expr.syntax().kind() {
|
|
|
|
CONTINUE_EXPR | BREAK_EXPR | RETURN_EXPR => return Some(expr),
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2020-11-17 07:22:04 -06:00
|
|
|
/// This is a method with a heuristics to support test methods annotated with custom test annotations, such as
|
|
|
|
/// `#[test_case(...)]`, `#[tokio::test]` and similar.
|
|
|
|
/// Also a regular `#[test]` annotation is supported.
|
|
|
|
///
|
|
|
|
/// It may produce false positives, for example, `#[wasm_bindgen_test]` requires a different command to run the test,
|
|
|
|
/// but it's better than not to have the runnables for the tests at all.
|
|
|
|
pub fn test_related_attribute(fn_def: &ast::Fn) -> Option<ast::Attr> {
|
|
|
|
fn_def.attrs().find_map(|attr| {
|
|
|
|
let path = attr.path()?;
|
|
|
|
if path.syntax().text().to_string().contains("test") {
|
|
|
|
Some(attr)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-11-05 16:34:50 -06:00
|
|
|
#[derive(Copy, Clone, PartialEq)]
|
|
|
|
pub enum DefaultMethods {
|
|
|
|
Only,
|
|
|
|
No,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn filter_assoc_items(
|
|
|
|
db: &RootDatabase,
|
|
|
|
items: &[hir::AssocItem],
|
|
|
|
default_methods: DefaultMethods,
|
|
|
|
) -> Vec<ast::AssocItem> {
|
|
|
|
fn has_def_name(item: &ast::AssocItem) -> bool {
|
|
|
|
match item {
|
|
|
|
ast::AssocItem::Fn(def) => def.name(),
|
|
|
|
ast::AssocItem::TypeAlias(def) => def.name(),
|
|
|
|
ast::AssocItem::Const(def) => def.name(),
|
|
|
|
ast::AssocItem::MacroCall(_) => None,
|
|
|
|
}
|
|
|
|
.is_some()
|
2021-01-02 13:48:39 -06:00
|
|
|
}
|
2020-11-05 16:34:50 -06:00
|
|
|
|
|
|
|
items
|
|
|
|
.iter()
|
2020-12-31 23:49:44 -06:00
|
|
|
// Note: This throws away items with no source.
|
|
|
|
.filter_map(|i| {
|
|
|
|
let item = match i {
|
|
|
|
hir::AssocItem::Function(i) => ast::AssocItem::Fn(i.source(db)?.value),
|
|
|
|
hir::AssocItem::TypeAlias(i) => ast::AssocItem::TypeAlias(i.source(db)?.value),
|
|
|
|
hir::AssocItem::Const(i) => ast::AssocItem::Const(i.source(db)?.value),
|
|
|
|
};
|
|
|
|
Some(item)
|
2020-11-05 16:34:50 -06:00
|
|
|
})
|
|
|
|
.filter(has_def_name)
|
|
|
|
.filter(|it| match it {
|
|
|
|
ast::AssocItem::Fn(def) => matches!(
|
|
|
|
(default_methods, def.body()),
|
|
|
|
(DefaultMethods::Only, Some(_)) | (DefaultMethods::No, None)
|
|
|
|
),
|
|
|
|
_ => default_methods == DefaultMethods::No,
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn add_trait_assoc_items_to_impl(
|
|
|
|
sema: &hir::Semantics<ide_db::RootDatabase>,
|
|
|
|
items: Vec<ast::AssocItem>,
|
|
|
|
trait_: hir::Trait,
|
2021-05-14 10:47:08 -05:00
|
|
|
impl_: ast::Impl,
|
2020-11-05 16:34:50 -06:00
|
|
|
target_scope: hir::SemanticsScope,
|
|
|
|
) -> (ast::Impl, ast::AssocItem) {
|
|
|
|
let source_scope = sema.scope_for_def(trait_);
|
|
|
|
let ast_transform = QualifyPaths::new(&target_scope, &source_scope)
|
2021-05-14 10:47:08 -05:00
|
|
|
.or(SubstituteTypeParams::for_trait_impl(&source_scope, trait_, impl_.clone()));
|
2020-11-05 16:34:50 -06:00
|
|
|
|
|
|
|
let items = items
|
|
|
|
.into_iter()
|
2021-04-23 11:36:43 -05:00
|
|
|
.map(|it| it.clone_for_update())
|
|
|
|
.inspect(|it| ast_transform::apply(&*ast_transform, it))
|
2020-11-05 16:34:50 -06:00
|
|
|
.map(|it| match it {
|
|
|
|
ast::AssocItem::Fn(def) => ast::AssocItem::Fn(add_body(def)),
|
|
|
|
ast::AssocItem::TypeAlias(def) => ast::AssocItem::TypeAlias(def.remove_bounds()),
|
|
|
|
_ => it,
|
|
|
|
})
|
2021-05-14 10:47:08 -05:00
|
|
|
.map(|it| edit::remove_attrs_and_docs(&it).clone_subtree().clone_for_update());
|
|
|
|
|
|
|
|
let res = impl_.clone_for_update();
|
|
|
|
let assoc_item_list = res.get_or_create_assoc_item_list();
|
|
|
|
let mut first_item = None;
|
|
|
|
for item in items {
|
|
|
|
if first_item.is_none() {
|
|
|
|
first_item = Some(item.clone())
|
|
|
|
}
|
|
|
|
assoc_item_list.add_item(item)
|
|
|
|
}
|
|
|
|
return (res, first_item.unwrap());
|
2020-11-05 16:34:50 -06:00
|
|
|
|
|
|
|
fn add_body(fn_def: ast::Fn) -> ast::Fn {
|
|
|
|
match fn_def.body() {
|
|
|
|
Some(_) => fn_def,
|
|
|
|
None => {
|
2021-05-09 11:51:06 -05:00
|
|
|
let body = make::block_expr(None, Some(make::ext::expr_todo()))
|
|
|
|
.indent(edit::IndentLevel(1));
|
2020-11-05 16:34:50 -06:00
|
|
|
fn_def.with_body(body)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-19 18:53:21 -05:00
|
|
|
#[derive(Clone, Copy, Debug)]
|
|
|
|
pub(crate) enum Cursor<'a> {
|
|
|
|
Replace(&'a SyntaxNode),
|
|
|
|
Before(&'a SyntaxNode),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Cursor<'a> {
|
|
|
|
fn node(self) -> &'a SyntaxNode {
|
|
|
|
match self {
|
|
|
|
Cursor::Replace(node) | Cursor::Before(node) => node,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn render_snippet(_cap: SnippetCap, node: &SyntaxNode, cursor: Cursor) -> String {
|
|
|
|
assert!(cursor.node().ancestors().any(|it| it == *node));
|
|
|
|
let range = cursor.node().text_range() - node.text_range().start();
|
2020-05-19 15:25:07 -05:00
|
|
|
let range: ops::Range<usize> = range.into();
|
|
|
|
|
2020-05-19 18:53:21 -05:00
|
|
|
let mut placeholder = cursor.node().to_string();
|
2020-05-19 15:25:07 -05:00
|
|
|
escape(&mut placeholder);
|
2020-05-19 18:53:21 -05:00
|
|
|
let tab_stop = match cursor {
|
|
|
|
Cursor::Replace(placeholder) => format!("${{0:{}}}", placeholder),
|
|
|
|
Cursor::Before(placeholder) => format!("$0{}", placeholder),
|
|
|
|
};
|
2020-05-19 15:25:07 -05:00
|
|
|
|
|
|
|
let mut buf = node.to_string();
|
|
|
|
buf.replace_range(range, &tab_stop);
|
|
|
|
return buf;
|
|
|
|
|
|
|
|
fn escape(buf: &mut String) {
|
|
|
|
stdx::replace(buf, '{', r"\{");
|
|
|
|
stdx::replace(buf, '}', r"\}");
|
|
|
|
stdx::replace(buf, '$', r"\$");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-28 17:18:50 -05:00
|
|
|
pub(crate) fn vis_offset(node: &SyntaxNode) -> TextSize {
|
|
|
|
node.children_with_tokens()
|
|
|
|
.find(|it| !matches!(it.kind(), WHITESPACE | COMMENT | ATTR))
|
|
|
|
.map(|it| it.text_range().start())
|
|
|
|
.unwrap_or_else(|| node.text_range().start())
|
|
|
|
}
|
|
|
|
|
2021-02-22 09:23:42 -06:00
|
|
|
pub(crate) fn invert_boolean_expression(
|
|
|
|
sema: &Semantics<RootDatabase>,
|
|
|
|
expr: ast::Expr,
|
|
|
|
) -> ast::Expr {
|
|
|
|
if let Some(expr) = invert_special_case(sema, &expr) {
|
2020-02-07 08:57:38 -06:00
|
|
|
return expr;
|
|
|
|
}
|
|
|
|
make::expr_prefix(T![!], expr)
|
|
|
|
}
|
|
|
|
|
2021-02-22 09:23:42 -06:00
|
|
|
fn invert_special_case(sema: &Semantics<RootDatabase>, expr: &ast::Expr) -> Option<ast::Expr> {
|
2020-02-07 08:57:38 -06:00
|
|
|
match expr {
|
|
|
|
ast::Expr::BinExpr(bin) => match bin.op_kind()? {
|
|
|
|
ast::BinOp::NegatedEqualityTest => bin.replace_op(T![==]).map(|it| it.into()),
|
|
|
|
ast::BinOp::EqualityTest => bin.replace_op(T![!=]).map(|it| it.into()),
|
2021-02-22 09:23:42 -06:00
|
|
|
// Swap `<` with `>=`, `<=` with `>`, ... if operands `impl Ord`
|
|
|
|
ast::BinOp::LesserTest if bin_impls_ord(sema, bin) => {
|
|
|
|
bin.replace_op(T![>=]).map(|it| it.into())
|
|
|
|
}
|
|
|
|
ast::BinOp::LesserEqualTest if bin_impls_ord(sema, bin) => {
|
|
|
|
bin.replace_op(T![>]).map(|it| it.into())
|
|
|
|
}
|
|
|
|
ast::BinOp::GreaterTest if bin_impls_ord(sema, bin) => {
|
|
|
|
bin.replace_op(T![<=]).map(|it| it.into())
|
|
|
|
}
|
|
|
|
ast::BinOp::GreaterEqualTest if bin_impls_ord(sema, bin) => {
|
|
|
|
bin.replace_op(T![<]).map(|it| it.into())
|
|
|
|
}
|
2021-02-19 07:48:07 -06:00
|
|
|
// Parenthesize other expressions before prefixing `!`
|
|
|
|
_ => Some(make::expr_prefix(T![!], make::expr_paren(expr.clone()))),
|
2020-02-07 08:57:38 -06:00
|
|
|
},
|
2020-08-23 15:30:07 -05:00
|
|
|
ast::Expr::MethodCallExpr(mce) => {
|
2020-08-25 03:57:51 -05:00
|
|
|
let receiver = mce.receiver()?;
|
|
|
|
let method = mce.name_ref()?;
|
|
|
|
let arg_list = mce.arg_list()?;
|
|
|
|
|
2021-03-26 12:30:59 -05:00
|
|
|
let method = match method.text().as_str() {
|
2020-08-25 03:57:51 -05:00
|
|
|
"is_some" => "is_none",
|
|
|
|
"is_none" => "is_some",
|
|
|
|
"is_ok" => "is_err",
|
|
|
|
"is_err" => "is_ok",
|
|
|
|
_ => return None,
|
|
|
|
};
|
|
|
|
Some(make::expr_method_call(receiver, method, arg_list))
|
2020-08-23 15:30:07 -05:00
|
|
|
}
|
2020-12-21 10:37:38 -06:00
|
|
|
ast::Expr::PrefixExpr(pe) if pe.op_kind()? == ast::PrefixOp::Not => {
|
|
|
|
if let ast::Expr::ParenExpr(parexpr) = pe.expr()? {
|
|
|
|
parexpr.expr()
|
|
|
|
} else {
|
|
|
|
pe.expr()
|
|
|
|
}
|
|
|
|
}
|
2020-02-07 08:57:38 -06:00
|
|
|
// FIXME:
|
|
|
|
// ast::Expr::Literal(true | false )
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2020-04-29 03:38:18 -05:00
|
|
|
|
2021-02-22 09:23:42 -06:00
|
|
|
fn bin_impls_ord(sema: &Semantics<RootDatabase>, bin: &ast::BinExpr) -> bool {
|
2021-02-24 04:42:32 -06:00
|
|
|
match (
|
|
|
|
bin.lhs().and_then(|lhs| sema.type_of_expr(&lhs)),
|
|
|
|
bin.rhs().and_then(|rhs| sema.type_of_expr(&rhs)),
|
|
|
|
) {
|
|
|
|
(Some(lhs_ty), Some(rhs_ty)) if lhs_ty == rhs_ty => {
|
|
|
|
let krate = sema.scope(bin.syntax()).module().map(|it| it.krate());
|
|
|
|
let ord_trait = FamousDefs(sema, krate).core_cmp_Ord();
|
|
|
|
ord_trait.map_or(false, |ord_trait| {
|
|
|
|
lhs_ty.autoderef(sema.db).any(|ty| ty.impls_trait(sema.db, ord_trait, &[]))
|
|
|
|
})
|
2021-02-22 09:23:42 -06:00
|
|
|
}
|
2021-02-24 04:42:32 -06:00
|
|
|
_ => false,
|
2021-02-22 09:23:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-19 11:44:33 -05:00
|
|
|
pub(crate) fn next_prev() -> impl Iterator<Item = Direction> {
|
|
|
|
[Direction::Next, Direction::Prev].iter().copied()
|
|
|
|
}
|
2021-01-22 16:31:19 -06:00
|
|
|
|
|
|
|
pub(crate) fn does_pat_match_variant(pat: &ast::Pat, var: &ast::Pat) -> bool {
|
|
|
|
let first_node_text = |pat: &ast::Pat| pat.syntax().first_child().map(|node| node.text());
|
|
|
|
|
|
|
|
let pat_head = match pat {
|
|
|
|
ast::Pat::IdentPat(bind_pat) => {
|
|
|
|
if let Some(p) = bind_pat.pat() {
|
|
|
|
first_node_text(&p)
|
|
|
|
} else {
|
|
|
|
return pat.syntax().text() == var.syntax().text();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pat => first_node_text(pat),
|
|
|
|
};
|
|
|
|
|
|
|
|
let var_head = first_node_text(var);
|
|
|
|
|
|
|
|
pat_head == var_head
|
|
|
|
}
|
2021-02-05 07:36:07 -06:00
|
|
|
|
|
|
|
// Uses a syntax-driven approach to find any impl blocks for the struct that
|
|
|
|
// exist within the module/file
|
|
|
|
//
|
2021-02-05 09:32:34 -06:00
|
|
|
// Returns `None` if we've found an existing fn
|
2021-02-05 07:36:07 -06:00
|
|
|
//
|
|
|
|
// FIXME: change the new fn checking to a more semantic approach when that's more
|
|
|
|
// viable (e.g. we process proc macros, etc)
|
2021-02-12 04:48:43 -06:00
|
|
|
// FIXME: this partially overlaps with `find_impl_block_*`
|
2021-02-05 07:36:07 -06:00
|
|
|
pub(crate) fn find_struct_impl(
|
|
|
|
ctx: &AssistContext,
|
2021-02-07 05:15:02 -06:00
|
|
|
strukt: &ast::Adt,
|
2021-02-05 07:36:07 -06:00
|
|
|
name: &str,
|
|
|
|
) -> Option<Option<ast::Impl>> {
|
|
|
|
let db = ctx.db();
|
|
|
|
let module = strukt.syntax().ancestors().find(|node| {
|
|
|
|
ast::Module::can_cast(node.kind()) || ast::SourceFile::can_cast(node.kind())
|
|
|
|
})?;
|
|
|
|
|
|
|
|
let struct_def = match strukt {
|
2021-02-07 05:15:02 -06:00
|
|
|
ast::Adt::Enum(e) => Adt::Enum(ctx.sema.to_def(e)?),
|
|
|
|
ast::Adt::Struct(s) => Adt::Struct(ctx.sema.to_def(s)?),
|
|
|
|
ast::Adt::Union(u) => Adt::Union(ctx.sema.to_def(u)?),
|
2021-02-05 07:36:07 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
let block = module.descendants().filter_map(ast::Impl::cast).find_map(|impl_blk| {
|
|
|
|
let blk = ctx.sema.to_def(&impl_blk)?;
|
|
|
|
|
|
|
|
// FIXME: handle e.g. `struct S<T>; impl<U> S<U> {}`
|
|
|
|
// (we currently use the wrong type parameter)
|
|
|
|
// also we wouldn't want to use e.g. `impl S<u32>`
|
|
|
|
|
2021-03-29 10:46:33 -05:00
|
|
|
let same_ty = match blk.self_ty(db).as_adt() {
|
2021-02-05 07:36:07 -06:00
|
|
|
Some(def) => def == struct_def,
|
|
|
|
None => false,
|
|
|
|
};
|
2021-03-29 10:46:33 -05:00
|
|
|
let not_trait_impl = blk.trait_(db).is_none();
|
2021-02-05 07:36:07 -06:00
|
|
|
|
|
|
|
if !(same_ty && not_trait_impl) {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(impl_blk)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if let Some(ref impl_blk) = block {
|
|
|
|
if has_fn(impl_blk, name) {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(block)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn has_fn(imp: &ast::Impl, rhs_name: &str) -> bool {
|
|
|
|
if let Some(il) = imp.assoc_item_list() {
|
|
|
|
for item in il.assoc_items() {
|
|
|
|
if let ast::AssocItem::Fn(f) = item {
|
|
|
|
if let Some(name) = f.name() {
|
|
|
|
if name.text().eq_ignore_ascii_case(rhs_name) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
false
|
|
|
|
}
|
2021-02-05 09:32:34 -06:00
|
|
|
|
|
|
|
/// Find the start of the `impl` block for the given `ast::Impl`.
|
|
|
|
//
|
|
|
|
// FIXME: this partially overlaps with `find_struct_impl`
|
2021-02-12 04:48:43 -06:00
|
|
|
pub(crate) fn find_impl_block_start(impl_def: ast::Impl, buf: &mut String) -> Option<TextSize> {
|
2021-02-05 09:32:34 -06:00
|
|
|
buf.push('\n');
|
2021-02-12 04:48:43 -06:00
|
|
|
let start = impl_def.assoc_item_list().and_then(|it| it.l_curly_token())?.text_range().end();
|
|
|
|
Some(start)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Find the end of the `impl` block for the given `ast::Impl`.
|
|
|
|
//
|
|
|
|
// FIXME: this partially overlaps with `find_struct_impl`
|
|
|
|
pub(crate) fn find_impl_block_end(impl_def: ast::Impl, buf: &mut String) -> Option<TextSize> {
|
|
|
|
buf.push('\n');
|
|
|
|
let end = impl_def
|
|
|
|
.assoc_item_list()
|
|
|
|
.and_then(|it| it.r_curly_token())?
|
|
|
|
.prev_sibling_or_token()?
|
2021-02-05 09:32:34 -06:00
|
|
|
.text_range()
|
|
|
|
.end();
|
2021-02-12 04:48:43 -06:00
|
|
|
Some(end)
|
2021-02-05 09:32:34 -06:00
|
|
|
}
|
2021-02-09 05:30:13 -06:00
|
|
|
|
|
|
|
// Generates the surrounding `impl Type { <code> }` including type and lifetime
|
|
|
|
// parameters
|
|
|
|
pub(crate) fn generate_impl_text(adt: &ast::Adt, code: &str) -> String {
|
2021-02-13 14:26:58 -06:00
|
|
|
generate_impl_text_inner(adt, None, code)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generates the surrounding `impl <trait> for Type { <code> }` including type
|
|
|
|
// and lifetime parameters
|
|
|
|
pub(crate) fn generate_trait_impl_text(adt: &ast::Adt, trait_text: &str, code: &str) -> String {
|
|
|
|
generate_impl_text_inner(adt, Some(trait_text), code)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn generate_impl_text_inner(adt: &ast::Adt, trait_text: Option<&str>, code: &str) -> String {
|
2021-02-13 15:59:51 -06:00
|
|
|
let generic_params = adt.generic_param_list();
|
2021-02-09 05:30:13 -06:00
|
|
|
let mut buf = String::with_capacity(code.len());
|
2021-02-13 14:38:52 -06:00
|
|
|
buf.push_str("\n\n");
|
2021-02-13 14:51:48 -06:00
|
|
|
adt.attrs()
|
|
|
|
.filter(|attr| attr.as_simple_call().map(|(name, _arg)| name == "cfg").unwrap_or(false))
|
2021-02-13 14:38:52 -06:00
|
|
|
.for_each(|attr| buf.push_str(format!("{}\n", attr.to_string()).as_str()));
|
|
|
|
buf.push_str("impl");
|
2021-02-13 15:59:51 -06:00
|
|
|
if let Some(generic_params) = &generic_params {
|
|
|
|
let lifetimes = generic_params.lifetime_params().map(|lt| format!("{}", lt.syntax()));
|
|
|
|
let type_params = generic_params.type_params().map(|type_param| {
|
|
|
|
let mut buf = String::new();
|
|
|
|
if let Some(it) = type_param.name() {
|
|
|
|
format_to!(buf, "{}", it.syntax());
|
|
|
|
}
|
|
|
|
if let Some(it) = type_param.colon_token() {
|
|
|
|
format_to!(buf, "{} ", it);
|
|
|
|
}
|
|
|
|
if let Some(it) = type_param.type_bound_list() {
|
|
|
|
format_to!(buf, "{}", it.syntax());
|
|
|
|
}
|
|
|
|
buf
|
|
|
|
});
|
2021-03-27 04:37:39 -05:00
|
|
|
let const_params = generic_params.const_params().map(|t| t.syntax().to_string());
|
|
|
|
let generics = lifetimes.chain(type_params).chain(const_params).format(", ");
|
2021-02-13 15:59:51 -06:00
|
|
|
format_to!(buf, "<{}>", generics);
|
2021-02-09 05:30:13 -06:00
|
|
|
}
|
|
|
|
buf.push(' ');
|
2021-02-13 14:26:58 -06:00
|
|
|
if let Some(trait_text) = trait_text {
|
|
|
|
buf.push_str(trait_text);
|
|
|
|
buf.push_str(" for ");
|
|
|
|
}
|
2021-03-26 12:30:59 -05:00
|
|
|
buf.push_str(&adt.name().unwrap().text());
|
2021-02-13 15:59:51 -06:00
|
|
|
if let Some(generic_params) = generic_params {
|
|
|
|
let lifetime_params = generic_params
|
2021-02-09 05:30:13 -06:00
|
|
|
.lifetime_params()
|
|
|
|
.filter_map(|it| it.lifetime())
|
|
|
|
.map(|it| SmolStr::from(it.text()));
|
2021-02-13 15:59:51 -06:00
|
|
|
let type_params = generic_params
|
|
|
|
.type_params()
|
|
|
|
.filter_map(|it| it.name())
|
|
|
|
.map(|it| SmolStr::from(it.text()));
|
2021-03-27 04:37:39 -05:00
|
|
|
let const_params = generic_params
|
|
|
|
.const_params()
|
|
|
|
.filter_map(|it| it.name())
|
|
|
|
.map(|it| SmolStr::from(it.text()));
|
|
|
|
format_to!(buf, "<{}>", lifetime_params.chain(type_params).chain(const_params).format(", "))
|
2021-02-09 05:30:13 -06:00
|
|
|
}
|
|
|
|
|
2021-02-20 08:05:01 -06:00
|
|
|
match adt.where_clause() {
|
|
|
|
Some(where_clause) => {
|
|
|
|
format_to!(buf, "\n{}\n{{\n{}\n}}", where_clause, code);
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
format_to!(buf, " {{\n{}\n}}", code);
|
|
|
|
}
|
|
|
|
}
|
2021-02-09 05:30:13 -06:00
|
|
|
|
|
|
|
buf
|
|
|
|
}
|
2021-02-15 15:25:33 -06:00
|
|
|
|
|
|
|
pub(crate) fn add_method_to_adt(
|
|
|
|
builder: &mut AssistBuilder,
|
|
|
|
adt: &ast::Adt,
|
|
|
|
impl_def: Option<ast::Impl>,
|
|
|
|
method: &str,
|
|
|
|
) {
|
|
|
|
let mut buf = String::with_capacity(method.len() + 2);
|
|
|
|
if impl_def.is_some() {
|
|
|
|
buf.push('\n');
|
|
|
|
}
|
|
|
|
buf.push_str(method);
|
|
|
|
|
|
|
|
let start_offset = impl_def
|
|
|
|
.and_then(|impl_def| find_impl_block_end(impl_def, &mut buf))
|
|
|
|
.unwrap_or_else(|| {
|
|
|
|
buf = generate_impl_text(&adt, &buf);
|
|
|
|
adt.syntax().text_range().end()
|
|
|
|
});
|
|
|
|
|
|
|
|
builder.insert(start_offset, buf);
|
|
|
|
}
|