rust-analyzer/crates/ra_assists/src/utils.rs

115 lines
3.6 KiB
Rust
Raw Normal View History

2020-02-07 14:57:38 +00:00
//! Assorted functions shared by several assists.
2020-02-28 20:53:20 +00:00
pub(crate) mod insert_use;
2020-02-07 14:57:38 +00:00
2020-04-29 08:38:18 +00:00
use hir::{Adt, Semantics, Type};
use ra_ide_db::RootDatabase;
2020-02-07 14:57:38 +00:00
use ra_syntax::{
ast::{self, make, NameOwner},
AstNode, T,
2020-02-07 14:57:38 +00:00
};
use rustc_hash::FxHashSet;
2020-02-28 20:53:20 +00:00
pub use insert_use::insert_use_statement;
pub fn get_missing_impl_items(
sema: &Semantics<RootDatabase>,
2020-02-29 20:24:40 +00:00
impl_def: &ast::ImplDef,
) -> Vec<hir::AssocItem> {
// Names must be unique between constants and functions. However, type aliases
// may share the same name as a function or constant.
let mut impl_fns_consts = FxHashSet::default();
let mut impl_type = FxHashSet::default();
2020-02-29 20:24:40 +00:00
if let Some(item_list) = impl_def.item_list() {
for item in item_list.impl_items() {
match item {
ast::ImplItem::FnDef(f) => {
if let Some(n) = f.name() {
impl_fns_consts.insert(n.syntax().to_string());
}
}
ast::ImplItem::TypeAliasDef(t) => {
if let Some(n) = t.name() {
impl_type.insert(n.syntax().to_string());
}
}
ast::ImplItem::ConstDef(c) => {
if let Some(n) = c.name() {
impl_fns_consts.insert(n.syntax().to_string());
}
}
}
}
}
2020-02-29 20:24:40 +00:00
resolve_target_trait(sema, impl_def).map_or(vec![], |target_trait| {
target_trait
.items(sema.db)
.iter()
.filter(|i| match i {
hir::AssocItem::Function(f) => {
!impl_fns_consts.contains(&f.name(sema.db).to_string())
}
hir::AssocItem::TypeAlias(t) => !impl_type.contains(&t.name(sema.db).to_string()),
2020-02-11 15:40:08 +00:00
hir::AssocItem::Const(c) => c
.name(sema.db)
2020-02-11 15:40:08 +00:00
.map(|n| !impl_fns_consts.contains(&n.to_string()))
.unwrap_or_default(),
})
.cloned()
.collect()
})
}
pub(crate) fn resolve_target_trait(
sema: &Semantics<RootDatabase>,
2020-02-29 20:24:40 +00:00
impl_def: &ast::ImplDef,
) -> Option<hir::Trait> {
2020-02-29 20:24:40 +00:00
let ast_path = impl_def
.target_trait()
.map(|it| it.syntax().clone())
.and_then(ast::PathType::cast)?
.path()?;
match sema.resolve_path(&ast_path) {
Some(hir::PathResolution::Def(hir::ModuleDef::Trait(def))) => Some(def),
_ => None,
}
}
2020-02-07 14:57:38 +00:00
pub(crate) fn invert_boolean_expression(expr: ast::Expr) -> ast::Expr {
if let Some(expr) = invert_special_case(&expr) {
return expr;
}
make::expr_prefix(T![!], expr)
}
fn invert_special_case(expr: &ast::Expr) -> Option<ast::Expr> {
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()),
_ => None,
},
ast::Expr::PrefixExpr(pe) if pe.op_kind()? == ast::PrefixOp::Not => pe.expr(),
// FIXME:
// ast::Expr::Literal(true | false )
_ => None,
}
}
2020-04-29 08:38:18 +00:00
pub(crate) fn happy_try_variant(sema: &Semantics<RootDatabase>, ty: &Type) -> Option<&'static str> {
let enum_ = match ty.as_adt() {
Some(Adt::Enum(it)) => it,
_ => return None,
};
[("Result", "Ok"), ("Option", "Some")].iter().find_map(|(known_type, happy_case)| {
if &enum_.name(sema.db).to_string() == known_type {
return Some(*happy_case);
}
None
})
}