rust/crates/ide/src/goto_implementation.rs

230 lines
4.7 KiB
Rust
Raw Normal View History

use hir::{Crate, Impl, Semantics};
2020-08-13 09:39:16 -05:00
use ide_db::RootDatabase;
2020-08-12 11:26:51 -05:00
use syntax::{algo::find_node_at_offset, ast, AstNode};
use crate::{display::TryToNav, FilePosition, NavigationTarget, RangeInfo};
2020-05-31 02:45:41 -05:00
// Feature: Go to Implementation
2020-05-30 18:54:54 -05:00
//
// Navigates to the impl block of structs, enums or traits. Also implemented as a code lens.
//
// |===
// | Editor | Shortcut
//
// | VS Code | kbd:[Ctrl+F12]
// |===
pub(crate) fn goto_implementation(
db: &RootDatabase,
position: FilePosition,
) -> Option<RangeInfo<Vec<NavigationTarget>>> {
let sema = Semantics::new(db);
let source_file = sema.parse(position.file_id);
let syntax = source_file.syntax().clone();
let krate = sema.to_module_def(position.file_id)?.krate();
2020-07-29 12:22:15 -05:00
if let Some(nominal_def) = find_node_at_offset::<ast::AdtDef>(&syntax, position.offset) {
2019-01-31 17:34:52 -06:00
return Some(RangeInfo::new(
2019-07-20 04:58:27 -05:00
nominal_def.syntax().text_range(),
impls_for_def(&sema, &nominal_def, krate)?,
2019-01-31 17:34:52 -06:00
));
2020-07-30 11:17:28 -05:00
} else if let Some(trait_def) = find_node_at_offset::<ast::Trait>(&syntax, position.offset) {
2019-01-31 17:34:52 -06:00
return Some(RangeInfo::new(
2019-07-20 04:58:27 -05:00
trait_def.syntax().text_range(),
impls_for_trait(&sema, &trait_def, krate)?,
2019-01-31 17:34:52 -06:00
));
}
None
}
fn impls_for_def(
sema: &Semantics<RootDatabase>,
2020-07-29 12:22:15 -05:00
node: &ast::AdtDef,
2020-01-16 10:33:07 -06:00
krate: Crate,
2019-01-31 17:34:52 -06:00
) -> Option<Vec<NavigationTarget>> {
2019-08-19 06:13:58 -05:00
let ty = match node {
2020-07-30 10:50:40 -05:00
ast::AdtDef::Struct(def) => sema.to_def(def)?.ty(sema.db),
2020-07-30 10:52:53 -05:00
ast::AdtDef::Enum(def) => sema.to_def(def)?.ty(sema.db),
2020-07-30 10:36:46 -05:00
ast::AdtDef::Union(def) => sema.to_def(def)?.ty(sema.db),
};
let impls = Impl::all_in_crate(sema.db, krate);
2019-01-31 17:34:52 -06:00
Some(
impls
2019-11-26 06:27:33 -06:00
.into_iter()
2020-02-29 14:24:40 -06:00
.filter(|impl_def| ty.is_equal_for_find_impls(&impl_def.target_ty(sema.db)))
.filter_map(|imp| imp.try_to_nav(sema.db))
2019-01-31 17:34:52 -06:00
.collect(),
)
}
fn impls_for_trait(
sema: &Semantics<RootDatabase>,
2020-07-30 11:17:28 -05:00
node: &ast::Trait,
2020-01-16 10:33:07 -06:00
krate: Crate,
2019-01-31 17:34:52 -06:00
) -> Option<Vec<NavigationTarget>> {
let tr = sema.to_def(node)?;
let impls = Impl::for_trait(sema.db, krate, tr);
2019-01-31 17:34:52 -06:00
Some(impls.into_iter().filter_map(|imp| imp.try_to_nav(sema.db)).collect())
}
#[cfg(test)]
mod tests {
2020-10-24 03:39:57 -05:00
use ide_db::base_db::FileRange;
2020-10-02 10:34:31 -05:00
use crate::fixture;
2020-06-30 06:20:16 -05:00
fn check(ra_fixture: &str) {
2020-10-02 10:34:31 -05:00
let (analysis, position, annotations) = fixture::annotations(ra_fixture);
2020-06-30 06:20:16 -05:00
let navs = analysis.goto_implementation(position).unwrap().unwrap().info;
let key = |frange: &FileRange| (frange.file_id, frange.range.start());
let mut expected = annotations
.into_iter()
.map(|(range, data)| {
assert!(data.is_empty());
range
})
.collect::<Vec<_>>();
expected.sort_by_key(key);
let mut actual = navs
.into_iter()
2020-07-17 05:42:48 -05:00
.map(|nav| FileRange { file_id: nav.file_id, range: nav.focus_or_full_range() })
2020-06-30 06:20:16 -05:00
.collect::<Vec<_>>();
actual.sort_by_key(key);
assert_eq!(expected, actual);
}
#[test]
fn goto_implementation_works() {
2020-06-30 06:20:16 -05:00
check(
r#"
struct Foo<|>;
impl Foo {}
//^^^
"#,
);
}
#[test]
fn goto_implementation_works_multiple_blocks() {
2020-06-30 06:20:16 -05:00
check(
r#"
struct Foo<|>;
impl Foo {}
//^^^
impl Foo {}
//^^^
"#,
);
}
#[test]
fn goto_implementation_works_multiple_mods() {
2020-06-30 06:20:16 -05:00
check(
r#"
struct Foo<|>;
mod a {
impl super::Foo {}
//^^^^^^^^^^
}
mod b {
impl super::Foo {}
//^^^^^^^^^^
}
"#,
);
}
#[test]
fn goto_implementation_works_multiple_files() {
2020-06-30 06:20:16 -05:00
check(
r#"
//- /lib.rs
struct Foo<|>;
mod a;
mod b;
//- /a.rs
impl crate::Foo {}
//^^^^^^^^^^
//- /b.rs
impl crate::Foo {}
//^^^^^^^^^^
"#,
);
}
2019-01-31 17:34:52 -06:00
#[test]
fn goto_implementation_for_trait() {
2020-06-30 06:20:16 -05:00
check(
r#"
trait T<|> {}
struct Foo;
impl T for Foo {}
//^^^
"#,
2019-01-31 17:34:52 -06:00
);
}
#[test]
fn goto_implementation_for_trait_multiple_files() {
2020-06-30 06:20:16 -05:00
check(
r#"
//- /lib.rs
trait T<|> {};
struct Foo;
mod a;
mod b;
//- /a.rs
impl crate::T for crate::Foo {}
//^^^^^^^^^^
//- /b.rs
impl crate::T for crate::Foo {}
//^^^^^^^^^^
"#,
2019-01-31 17:34:52 -06:00
);
}
#[test]
fn goto_implementation_all_impls() {
2020-06-30 06:20:16 -05:00
check(
r#"
//- /lib.rs
trait T {}
struct Foo<|>;
impl Foo {}
//^^^
impl T for Foo {}
//^^^
impl T for &Foo {}
//^^^^
"#,
);
}
2020-01-12 05:24:34 -06:00
#[test]
fn goto_implementation_to_builtin_derive() {
2020-06-30 06:20:16 -05:00
check(
r#"
#[derive(Copy)]
//^^^^^^^^^^^^^^^
struct Foo<|>;
mod marker {
trait Copy {}
}
#[rustc_builtin_macro]
macro Copy {}
2020-06-30 06:20:16 -05:00
"#,
2020-01-12 05:24:34 -06:00
);
}
}