2020-02-07 08:57:38 -06:00
|
|
|
//! Assorted functions shared by several assists.
|
2020-02-28 14:53:20 -06:00
|
|
|
pub(crate) mod insert_use;
|
2020-10-12 11:11:36 -05:00
|
|
|
pub(crate) mod import_assets;
|
2020-02-07 08:57:38 -06:00
|
|
|
|
2020-05-19 15:25:07 -05:00
|
|
|
use std::{iter, ops};
|
2020-04-29 04:57:06 -05:00
|
|
|
|
2020-10-07 06:14:12 -05:00
|
|
|
use hir::{Adt, Crate, Enum, Module, ScopeDef, Semantics, Trait, Type};
|
2020-08-13 09:39:16 -05:00
|
|
|
use ide_db::RootDatabase;
|
2020-08-13 04:41:20 -05:00
|
|
|
use itertools::Itertools;
|
2020-08-12 11:26:51 -05:00
|
|
|
use rustc_hash::FxHashSet;
|
|
|
|
use syntax::{
|
2020-08-25 03:57:51 -05:00
|
|
|
ast::{self, make, ArgListOwner, NameOwner},
|
2020-08-19 11:44:33 -05:00
|
|
|
AstNode, Direction,
|
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
|
|
|
|
2020-05-19 16:12:01 -05:00
|
|
|
use crate::assist_config::SnippetCap;
|
|
|
|
|
2020-09-12 04:55:01 -05:00
|
|
|
pub use insert_use::MergeBehaviour;
|
|
|
|
pub(crate) use insert_use::{insert_use, ImportScope};
|
2020-02-28 14:53:20 -06:00
|
|
|
|
2020-10-06 09:19:18 -05:00
|
|
|
pub fn mod_path_to_ast(path: &hir::ModPath) -> ast::Path {
|
|
|
|
let mut segments = Vec::new();
|
|
|
|
let mut is_abs = false;
|
|
|
|
match path.kind {
|
|
|
|
hir::PathKind::Plain => {}
|
|
|
|
hir::PathKind::Super(0) => segments.push(make::path_segment_self()),
|
|
|
|
hir::PathKind::Super(n) => segments.extend((0..n).map(|_| make::path_segment_super())),
|
|
|
|
hir::PathKind::DollarCrate(_) | hir::PathKind::Crate => {
|
|
|
|
segments.push(make::path_segment_crate())
|
|
|
|
}
|
|
|
|
hir::PathKind::Abs => is_abs = true,
|
|
|
|
}
|
|
|
|
|
|
|
|
segments.extend(
|
|
|
|
path.segments
|
|
|
|
.iter()
|
|
|
|
.map(|segment| make::path_segment(make::name_ref(&segment.to_string()))),
|
|
|
|
);
|
|
|
|
make::path_from_segments(segments, is_abs)
|
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(expr) = block.expr() {
|
|
|
|
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-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-05-05 10:56:10 -05:00
|
|
|
pub fn get_missing_assoc_items(
|
2020-02-18 11:35:10 -06:00
|
|
|
sema: &Semantics<RootDatabase>,
|
2020-07-30 11:28:28 -05:00
|
|
|
impl_def: &ast::Impl,
|
2020-02-09 12:24:34 -06:00
|
|
|
) -> Vec<hir::AssocItem> {
|
2020-02-10 21:09:04 -06:00
|
|
|
// 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();
|
2020-02-09 12:24:34 -06:00
|
|
|
let mut impl_type = FxHashSet::default();
|
|
|
|
|
2020-07-30 04:42:51 -05:00
|
|
|
if let Some(item_list) = impl_def.assoc_item_list() {
|
2020-05-05 10:56:10 -05:00
|
|
|
for item in item_list.assoc_items() {
|
2020-02-09 12:24:34 -06:00
|
|
|
match item {
|
2020-07-30 07:51:08 -05:00
|
|
|
ast::AssocItem::Fn(f) => {
|
2020-02-09 12:24:34 -06:00
|
|
|
if let Some(n) = f.name() {
|
2020-02-10 21:09:04 -06:00
|
|
|
impl_fns_consts.insert(n.syntax().to_string());
|
2020-02-09 12:24:34 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-30 08:25:46 -05:00
|
|
|
ast::AssocItem::TypeAlias(t) => {
|
2020-02-09 12:24:34 -06:00
|
|
|
if let Some(n) = t.name() {
|
|
|
|
impl_type.insert(n.syntax().to_string());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-30 11:02:20 -05:00
|
|
|
ast::AssocItem::Const(c) => {
|
2020-02-09 12:24:34 -06:00
|
|
|
if let Some(n) = c.name() {
|
2020-02-10 21:09:04 -06:00
|
|
|
impl_fns_consts.insert(n.syntax().to_string());
|
2020-02-09 12:24:34 -06:00
|
|
|
}
|
|
|
|
}
|
2020-07-30 04:42:51 -05:00
|
|
|
ast::AssocItem::MacroCall(_) => (),
|
2020-02-09 12:24:34 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-29 14:24:40 -06:00
|
|
|
resolve_target_trait(sema, impl_def).map_or(vec![], |target_trait| {
|
2020-02-09 12:24:34 -06:00
|
|
|
target_trait
|
2020-02-18 11:35:10 -06:00
|
|
|
.items(sema.db)
|
2020-02-09 12:24:34 -06:00
|
|
|
.iter()
|
|
|
|
.filter(|i| match i {
|
2020-02-18 11:35:10 -06:00
|
|
|
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 09:40:08 -06:00
|
|
|
hir::AssocItem::Const(c) => c
|
2020-02-18 11:35:10 -06:00
|
|
|
.name(sema.db)
|
2020-02-11 09:40:08 -06:00
|
|
|
.map(|n| !impl_fns_consts.contains(&n.to_string()))
|
|
|
|
.unwrap_or_default(),
|
2020-02-09 12:24:34 -06:00
|
|
|
})
|
2020-02-11 10:04:30 -06:00
|
|
|
.cloned()
|
2020-02-09 12:24:34 -06:00
|
|
|
.collect()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-02-11 06:57:26 -06:00
|
|
|
pub(crate) fn resolve_target_trait(
|
2020-02-18 11:35:10 -06:00
|
|
|
sema: &Semantics<RootDatabase>,
|
2020-07-30 11:28:28 -05:00
|
|
|
impl_def: &ast::Impl,
|
2020-02-09 12:24:34 -06:00
|
|
|
) -> Option<hir::Trait> {
|
2020-07-31 13:23:52 -05:00
|
|
|
let ast_path =
|
|
|
|
impl_def.trait_().map(|it| it.syntax().clone()).and_then(ast::PathType::cast)?.path()?;
|
2020-02-09 12:24:34 -06:00
|
|
|
|
2020-02-18 11:35:10 -06:00
|
|
|
match sema.resolve_path(&ast_path) {
|
2020-02-09 12:24:34 -06:00
|
|
|
Some(hir::PathResolution::Def(hir::ModuleDef::Trait(def))) => Some(def),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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())
|
|
|
|
}
|
|
|
|
|
2020-02-07 08:57:38 -06: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,
|
|
|
|
},
|
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()?;
|
|
|
|
|
|
|
|
let method = match method.text().as_str() {
|
|
|
|
"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-02-07 08:57:38 -06:00
|
|
|
ast::Expr::PrefixExpr(pe) if pe.op_kind()? == ast::PrefixOp::Not => pe.expr(),
|
|
|
|
// FIXME:
|
|
|
|
// ast::Expr::Literal(true | false )
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2020-04-29 03:38:18 -05:00
|
|
|
|
2020-04-29 04:57:06 -05:00
|
|
|
#[derive(Clone, Copy)]
|
2020-05-10 05:45:35 -05:00
|
|
|
pub enum TryEnum {
|
2020-04-29 04:57:06 -05:00
|
|
|
Result,
|
|
|
|
Option,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryEnum {
|
|
|
|
const ALL: [TryEnum; 2] = [TryEnum::Option, TryEnum::Result];
|
|
|
|
|
2020-05-10 05:45:35 -05:00
|
|
|
pub fn from_ty(sema: &Semantics<RootDatabase>, ty: &Type) -> Option<TryEnum> {
|
2020-04-29 04:57:06 -05:00
|
|
|
let enum_ = match ty.as_adt() {
|
|
|
|
Some(Adt::Enum(it)) => it,
|
|
|
|
_ => return None,
|
|
|
|
};
|
|
|
|
TryEnum::ALL.iter().find_map(|&var| {
|
|
|
|
if &enum_.name(sema.db).to_string() == var.type_name() {
|
|
|
|
return Some(var);
|
|
|
|
}
|
|
|
|
None
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn happy_case(self) -> &'static str {
|
|
|
|
match self {
|
|
|
|
TryEnum::Result => "Ok",
|
|
|
|
TryEnum::Option => "Some",
|
2020-04-29 03:38:18 -05:00
|
|
|
}
|
2020-04-29 04:57:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn sad_pattern(self) -> ast::Pat {
|
|
|
|
match self {
|
|
|
|
TryEnum::Result => make::tuple_struct_pat(
|
|
|
|
make::path_unqualified(make::path_segment(make::name_ref("Err"))),
|
2020-08-05 12:29:24 -05:00
|
|
|
iter::once(make::wildcard_pat().into()),
|
2020-04-29 04:57:06 -05:00
|
|
|
)
|
|
|
|
.into(),
|
2020-08-05 12:29:24 -05:00
|
|
|
TryEnum::Option => make::ident_pat(make::name("None")).into(),
|
2020-04-29 04:57:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn type_name(self) -> &'static str {
|
|
|
|
match self {
|
|
|
|
TryEnum::Result => "Result",
|
|
|
|
TryEnum::Option => "Option",
|
|
|
|
}
|
|
|
|
}
|
2020-04-29 03:38:18 -05:00
|
|
|
}
|
2020-04-29 07:49:54 -05:00
|
|
|
|
|
|
|
/// Helps with finding well-know things inside the standard library. This is
|
|
|
|
/// somewhat similar to the known paths infra inside hir, but it different; We
|
|
|
|
/// want to make sure that IDE specific paths don't become interesting inside
|
|
|
|
/// the compiler itself as well.
|
2020-10-20 10:38:21 -05:00
|
|
|
pub struct FamousDefs<'a, 'b>(pub &'a Semantics<'b, RootDatabase>, pub Option<Crate>);
|
2020-04-29 07:49:54 -05:00
|
|
|
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
impl FamousDefs<'_, '_> {
|
2020-10-06 14:05:57 -05:00
|
|
|
pub const FIXTURE: &'static str = r#"//- /libcore.rs crate:core
|
2020-05-20 03:51:48 -05:00
|
|
|
pub mod convert {
|
2020-04-29 07:49:54 -05:00
|
|
|
pub trait From<T> {
|
2020-10-07 04:30:42 -05:00
|
|
|
fn from(t: T) -> Self;
|
2020-04-29 07:49:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-06 14:05:57 -05:00
|
|
|
pub mod iter {
|
2020-10-07 03:14:42 -05:00
|
|
|
pub use self::traits::{collect::IntoIterator, iterator::Iterator};
|
|
|
|
mod traits {
|
2020-10-07 04:30:42 -05:00
|
|
|
pub(crate) mod iterator {
|
2020-10-07 03:14:42 -05:00
|
|
|
use crate::option::Option;
|
|
|
|
pub trait Iterator {
|
|
|
|
type Item;
|
|
|
|
fn next(&mut self) -> Option<Self::Item>;
|
2020-10-07 04:30:42 -05:00
|
|
|
fn by_ref(&mut self) -> &mut Self {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
fn take(self, n: usize) -> crate::iter::Take<Self> {
|
|
|
|
crate::iter::Take { inner: self }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<I: Iterator> Iterator for &mut I {
|
|
|
|
type Item = I::Item;
|
|
|
|
fn next(&mut self) -> Option<I::Item> {
|
|
|
|
(**self).next()
|
|
|
|
}
|
2020-10-07 03:14:42 -05:00
|
|
|
}
|
|
|
|
}
|
2020-10-07 05:13:32 -05:00
|
|
|
pub(crate) mod collect {
|
2020-10-07 03:14:42 -05:00
|
|
|
pub trait IntoIterator {
|
|
|
|
type Item;
|
|
|
|
}
|
2020-10-06 14:05:57 -05:00
|
|
|
}
|
2020-10-07 03:14:42 -05:00
|
|
|
}
|
2020-10-06 14:05:57 -05:00
|
|
|
|
|
|
|
pub use self::sources::*;
|
2020-10-07 04:30:42 -05:00
|
|
|
pub(crate) mod sources {
|
2020-10-06 14:05:57 -05:00
|
|
|
use super::Iterator;
|
2020-10-07 04:30:42 -05:00
|
|
|
use crate::option::Option::{self, *};
|
2020-10-06 14:05:57 -05:00
|
|
|
pub struct Repeat<A> {
|
|
|
|
element: A,
|
|
|
|
}
|
|
|
|
|
2020-10-07 04:30:42 -05:00
|
|
|
pub fn repeat<T>(elt: T) -> Repeat<T> {
|
2020-10-06 14:05:57 -05:00
|
|
|
Repeat { element: elt }
|
|
|
|
}
|
|
|
|
|
2020-10-07 04:30:42 -05:00
|
|
|
impl<A> Iterator for Repeat<A> {
|
2020-10-06 14:05:57 -05:00
|
|
|
type Item = A;
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<A> {
|
2020-10-07 04:30:42 -05:00
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub use self::adapters::*;
|
|
|
|
pub(crate) mod adapters {
|
|
|
|
use super::Iterator;
|
|
|
|
use crate::option::Option::{self, *};
|
|
|
|
pub struct Take<I> { pub(crate) inner: I }
|
|
|
|
impl<I> Iterator for Take<I> where I: Iterator {
|
|
|
|
type Item = <I as Iterator>::Item;
|
|
|
|
fn next(&mut self) -> Option<<I as Iterator>::Item> {
|
|
|
|
None
|
2020-10-06 14:05:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-20 03:51:48 -05:00
|
|
|
pub mod option {
|
|
|
|
pub enum Option<T> { None, Some(T)}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub mod prelude {
|
2020-10-07 03:14:42 -05:00
|
|
|
pub use crate::{convert::From, iter::{IntoIterator, Iterator}, option::Option::{self, *}};
|
2020-05-20 03:51:48 -05:00
|
|
|
}
|
2020-04-29 07:49:54 -05:00
|
|
|
#[prelude_import]
|
|
|
|
pub use prelude::*;
|
|
|
|
"#;
|
|
|
|
|
2020-10-20 10:38:21 -05:00
|
|
|
pub fn core(&self) -> Option<Crate> {
|
|
|
|
self.find_crate("core")
|
|
|
|
}
|
|
|
|
|
2020-04-29 07:49:54 -05:00
|
|
|
pub(crate) fn core_convert_From(&self) -> Option<Trait> {
|
|
|
|
self.find_trait("core:convert:From")
|
|
|
|
}
|
|
|
|
|
2020-05-20 03:51:48 -05:00
|
|
|
pub(crate) fn core_option_Option(&self) -> Option<Enum> {
|
|
|
|
self.find_enum("core:option:Option")
|
|
|
|
}
|
|
|
|
|
2020-10-06 14:05:57 -05:00
|
|
|
pub fn core_iter_Iterator(&self) -> Option<Trait> {
|
|
|
|
self.find_trait("core:iter:traits:iterator:Iterator")
|
|
|
|
}
|
|
|
|
|
2020-10-07 06:14:12 -05:00
|
|
|
pub fn core_iter(&self) -> Option<Module> {
|
|
|
|
self.find_module("core:iter")
|
|
|
|
}
|
|
|
|
|
2020-04-29 07:49:54 -05:00
|
|
|
fn find_trait(&self, path: &str) -> Option<Trait> {
|
2020-05-20 03:51:48 -05:00
|
|
|
match self.find_def(path)? {
|
|
|
|
hir::ScopeDef::ModuleDef(hir::ModuleDef::Trait(it)) => Some(it),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn find_enum(&self, path: &str) -> Option<Enum> {
|
|
|
|
match self.find_def(path)? {
|
|
|
|
hir::ScopeDef::ModuleDef(hir::ModuleDef::Adt(hir::Adt::Enum(it))) => Some(it),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-07 06:14:12 -05:00
|
|
|
fn find_module(&self, path: &str) -> Option<Module> {
|
|
|
|
match self.find_def(path)? {
|
|
|
|
hir::ScopeDef::ModuleDef(hir::ModuleDef::Module(it)) => Some(it),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-20 10:38:21 -05:00
|
|
|
fn find_crate(&self, name: &str) -> Option<Crate> {
|
|
|
|
let krate = self.1?;
|
|
|
|
let db = self.0.db;
|
|
|
|
let res =
|
|
|
|
krate.dependencies(db).into_iter().find(|dep| dep.name.to_string() == name)?.krate;
|
|
|
|
Some(res)
|
|
|
|
}
|
|
|
|
|
2020-05-20 03:51:48 -05:00
|
|
|
fn find_def(&self, path: &str) -> Option<ScopeDef> {
|
2020-04-29 07:49:54 -05:00
|
|
|
let db = self.0.db;
|
|
|
|
let mut path = path.split(':');
|
|
|
|
let trait_ = path.next_back()?;
|
|
|
|
let std_crate = path.next()?;
|
2020-10-20 10:38:21 -05:00
|
|
|
let std_crate = self.find_crate(std_crate)?;
|
2020-08-09 17:52:19 -05:00
|
|
|
let mut module = std_crate.root_module(db);
|
2020-04-29 07:49:54 -05:00
|
|
|
for segment in path {
|
|
|
|
module = module.children(db).find_map(|child| {
|
|
|
|
let name = child.name(db)?;
|
2020-10-06 14:05:57 -05:00
|
|
|
if name.to_string() == segment {
|
2020-04-29 07:49:54 -05:00
|
|
|
Some(child)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})?;
|
|
|
|
}
|
|
|
|
let def =
|
2020-10-06 14:05:57 -05:00
|
|
|
module.scope(db, None).into_iter().find(|(name, _def)| name.to_string() == trait_)?.1;
|
2020-05-20 03:51:48 -05:00
|
|
|
Some(def)
|
2020-04-29 07:49:54 -05:00
|
|
|
}
|
|
|
|
}
|
2020-08-19 11:44:33 -05:00
|
|
|
|
|
|
|
pub(crate) fn next_prev() -> impl Iterator<Item = Direction> {
|
|
|
|
[Direction::Next, Direction::Prev].iter().copied()
|
|
|
|
}
|