rust/crates/ra_ide_api/src/goto_definition.rs

469 lines
13 KiB
Rust
Raw Normal View History

2019-01-26 02:20:30 -06:00
use ra_db::{FileId, SourceDatabase};
2019-01-08 13:33:36 -06:00
use ra_syntax::{
2019-02-23 06:08:57 -06:00
AstNode, ast,
algo::{find_node_at_offset, visit::{visitor, Visitor}},
SyntaxNode,
2019-01-08 13:33:36 -06:00
};
2019-01-25 11:32:34 -06:00
use test_utils::tested_by;
2019-01-08 13:33:36 -06:00
2019-01-11 05:14:09 -06:00
use crate::{FilePosition, NavigationTarget, db::RootDatabase, RangeInfo};
2019-01-08 13:33:36 -06:00
2019-01-08 16:38:51 -06:00
pub(crate) fn goto_definition(
2019-01-08 13:33:36 -06:00
db: &RootDatabase,
position: FilePosition,
2019-01-15 12:02:42 -06:00
) -> Option<RangeInfo<Vec<NavigationTarget>>> {
2019-01-26 02:51:36 -06:00
let file = db.parse(position.file_id);
2019-01-08 13:33:36 -06:00
let syntax = file.syntax();
if let Some(name_ref) = find_node_at_offset::<ast::NameRef>(syntax, position.offset) {
2019-01-15 12:02:42 -06:00
let navs = reference_definition(db, position.file_id, name_ref).to_vec();
return Some(RangeInfo::new(name_ref.syntax().range(), navs.to_vec()));
2019-01-08 13:33:36 -06:00
}
if let Some(name) = find_node_at_offset::<ast::Name>(syntax, position.offset) {
2019-01-15 12:02:42 -06:00
let navs = name_definition(db, position.file_id, name)?;
return Some(RangeInfo::new(name.syntax().range(), navs));
2019-01-08 13:33:36 -06:00
}
2019-01-15 12:02:42 -06:00
None
2019-01-08 13:33:36 -06:00
}
#[derive(Debug)]
pub(crate) enum ReferenceResult {
Exact(NavigationTarget),
Approximate(Vec<NavigationTarget>),
}
impl ReferenceResult {
fn to_vec(self) -> Vec<NavigationTarget> {
use self::ReferenceResult::*;
match self {
Exact(target) => vec![target],
Approximate(vec) => vec,
}
}
}
2019-01-08 16:38:51 -06:00
pub(crate) fn reference_definition(
2019-01-08 13:33:36 -06:00
db: &RootDatabase,
file_id: FileId,
name_ref: &ast::NameRef,
2019-01-15 12:02:42 -06:00
) -> ReferenceResult {
use self::ReferenceResult::*;
let analyzer = hir::SourceAnalyzer::new(db, file_id, name_ref.syntax(), None);
2019-04-10 03:15:55 -05:00
// Special cases:
// Check if it is a method
if let Some(method_call) = name_ref.syntax().parent().and_then(ast::MethodCallExpr::cast) {
tested_by!(goto_definition_works_for_methods);
if let Some(func) = analyzer.resolve_method_call(method_call) {
return Exact(NavigationTarget::from_function(db, func));
}
}
// It could also be a field access
if let Some(field_expr) = name_ref.syntax().parent().and_then(ast::FieldExpr::cast) {
tested_by!(goto_definition_works_for_fields);
if let Some(field) = analyzer.resolve_field(field_expr) {
return Exact(NavigationTarget::from_field(db, field));
};
}
2019-04-10 03:15:55 -05:00
// It could also be a named field
if let Some(field_expr) = name_ref.syntax().parent().and_then(ast::NamedField::cast) {
tested_by!(goto_definition_works_for_named_fields);
2019-04-10 03:15:55 -05:00
let struct_lit = field_expr.syntax().ancestors().find_map(ast::StructLit::cast);
2019-04-10 03:15:55 -05:00
if let Some(ty) = struct_lit.and_then(|lit| analyzer.type_of(db, lit.into())) {
if let Some((hir::AdtDef::Struct(s), _)) = ty.as_adt() {
let hir_path = hir::Path::from_name_ref(name_ref);
let hir_name = hir_path.as_ident().unwrap();
2019-04-10 03:15:55 -05:00
if let Some(field) = s.field(db, hir_name) {
return Exact(NavigationTarget::from_field(db, field));
}
}
}
2019-01-08 13:33:36 -06:00
}
2019-03-06 10:39:11 -06:00
2019-04-10 03:15:55 -05:00
// General case, a path or a local:
if let Some(path) = name_ref.syntax().ancestors().find_map(ast::Path::cast) {
if let Some(resolved) = analyzer.resolve_path(db, path) {
match resolved {
hir::PathResolution::Def(def) => return Exact(NavigationTarget::from_def(db, def)),
hir::PathResolution::LocalBinding(pat) => {
2019-04-11 07:58:00 -05:00
let nav = NavigationTarget::from_pat(db, file_id, pat);
return Exact(nav);
2019-04-10 03:15:55 -05:00
}
hir::PathResolution::GenericParam(..) => {
// FIXME: go to the generic param def
}
hir::PathResolution::SelfType(impl_block) => {
let ty = impl_block.target_ty(db);
2019-03-06 10:39:11 -06:00
2019-04-10 03:15:55 -05:00
if let Some((def_id, _)) = ty.as_adt() {
return Exact(NavigationTarget::from_adt_def(db, def_id));
}
}
2019-04-10 03:15:55 -05:00
hir::PathResolution::AssocItem(assoc) => {
return Exact(NavigationTarget::from_impl_item(db, assoc));
2019-04-10 03:15:55 -05:00
}
}
}
}
2019-04-10 03:15:55 -05:00
// Fallback index based approach:
2019-02-08 05:09:57 -06:00
let navs = crate::symbol_index::index_resolve(db, name_ref)
2019-01-08 13:33:36 -06:00
.into_iter()
.map(NavigationTarget::from_symbol)
.collect();
2019-01-15 12:02:42 -06:00
Approximate(navs)
2019-01-08 13:33:36 -06:00
}
pub(crate) fn name_definition(
2019-01-08 13:33:36 -06:00
db: &RootDatabase,
file_id: FileId,
name: &ast::Name,
2019-01-15 12:02:42 -06:00
) -> Option<Vec<NavigationTarget>> {
let parent = name.syntax().parent()?;
if let Some(module) = ast::Module::cast(&parent) {
2019-01-08 13:33:36 -06:00
if module.has_semi() {
if let Some(child_module) =
2019-01-15 09:13:11 -06:00
hir::source_binder::module_from_declaration(db, file_id, module)
2019-01-08 13:33:36 -06:00
{
let nav = NavigationTarget::from_module(db, child_module);
2019-01-15 12:02:42 -06:00
return Some(vec![nav]);
2019-01-08 13:33:36 -06:00
}
}
}
if let Some(nav) = named_target(file_id, &parent) {
return Some(vec![nav]);
}
2019-01-15 12:02:42 -06:00
None
2019-01-08 13:33:36 -06:00
}
fn named_target(file_id: FileId, node: &SyntaxNode) -> Option<NavigationTarget> {
visitor()
2019-02-23 06:08:57 -06:00
.visit(|node: &ast::StructDef| NavigationTarget::from_named(file_id, node))
.visit(|node: &ast::EnumDef| NavigationTarget::from_named(file_id, node))
.visit(|node: &ast::EnumVariant| NavigationTarget::from_named(file_id, node))
.visit(|node: &ast::FnDef| NavigationTarget::from_named(file_id, node))
.visit(|node: &ast::TypeAliasDef| NavigationTarget::from_named(file_id, node))
2019-02-23 06:08:57 -06:00
.visit(|node: &ast::ConstDef| NavigationTarget::from_named(file_id, node))
.visit(|node: &ast::StaticDef| NavigationTarget::from_named(file_id, node))
.visit(|node: &ast::TraitDef| NavigationTarget::from_named(file_id, node))
.visit(|node: &ast::NamedFieldDef| NavigationTarget::from_named(file_id, node))
.visit(|node: &ast::Module| NavigationTarget::from_named(file_id, node))
.accept(node)
}
2019-01-08 13:33:36 -06:00
#[cfg(test)]
mod tests {
2019-01-25 11:32:34 -06:00
use test_utils::covers;
2019-01-08 13:33:36 -06:00
use crate::mock_analysis::analysis_and_position;
2019-02-11 10:18:27 -06:00
fn check_goto(fixture: &str, expected: &str) {
let (analysis, pos) = analysis_and_position(fixture);
2019-01-11 09:17:20 -06:00
let mut navs = analysis.goto_definition(pos).unwrap().unwrap().info;
assert_eq!(navs.len(), 1);
let nav = navs.pop().unwrap();
nav.assert_match(expected);
}
2019-01-08 13:33:36 -06:00
#[test]
2019-01-08 16:38:51 -06:00
fn goto_definition_works_in_items() {
2019-01-11 09:17:20 -06:00
check_goto(
2019-01-08 13:33:36 -06:00
"
//- /lib.rs
struct Foo;
enum E { X(Foo<|>) }
",
2019-01-11 09:17:20 -06:00
"Foo STRUCT_DEF FileId(1) [0; 11) [7; 10)",
);
}
#[test]
fn goto_definition_resolves_correct_name() {
2019-01-11 09:17:20 -06:00
check_goto(
"
//- /lib.rs
use a::Foo;
mod a;
mod b;
enum E { X(Foo<|>) }
//- /a.rs
struct Foo;
//- /b.rs
struct Foo;
",
2019-01-11 09:17:20 -06:00
"Foo STRUCT_DEF FileId(2) [0; 11) [7; 10)",
2019-01-08 13:33:36 -06:00
);
}
#[test]
2019-01-08 16:38:51 -06:00
fn goto_definition_works_for_module_declaration() {
2019-01-11 09:17:20 -06:00
check_goto(
2019-01-08 13:33:36 -06:00
"
//- /lib.rs
mod <|>foo;
//- /foo.rs
// empty
2019-01-11 09:17:20 -06:00
",
"foo SOURCE_FILE FileId(2) [0; 10)",
2019-01-08 13:33:36 -06:00
);
2019-01-11 09:17:20 -06:00
check_goto(
2019-01-08 13:33:36 -06:00
"
//- /lib.rs
mod <|>foo;
//- /foo/mod.rs
// empty
2019-01-11 09:17:20 -06:00
",
"foo SOURCE_FILE FileId(2) [0; 10)",
2019-01-08 13:33:36 -06:00
);
}
#[test]
fn goto_definition_works_for_methods() {
2019-01-25 11:32:34 -06:00
covers!(goto_definition_works_for_methods);
check_goto(
"
//- /lib.rs
struct Foo;
impl Foo {
fn frobnicate(&self) { }
}
fn bar(foo: &Foo) {
foo.frobnicate<|>();
}
",
"frobnicate FN_DEF FileId(1) [27; 52) [30; 40)",
);
2019-01-25 11:32:34 -06:00
}
2019-01-25 11:32:34 -06:00
#[test]
fn goto_definition_works_for_fields() {
covers!(goto_definition_works_for_fields);
check_goto(
"
//- /lib.rs
2019-01-25 11:32:34 -06:00
struct Foo {
spam: u32,
}
fn bar(foo: &Foo) {
foo.spam<|>;
}
",
2019-01-25 11:32:34 -06:00
"spam NAMED_FIELD_DEF FileId(1) [17; 26) [17; 21)",
);
}
#[test]
fn goto_definition_works_for_named_fields() {
covers!(goto_definition_works_for_named_fields);
check_goto(
"
//- /lib.rs
struct Foo {
spam: u32,
}
fn bar() -> Foo {
Foo {
spam<|>: 0,
}
}
",
"spam NAMED_FIELD_DEF FileId(1) [17; 26) [17; 21)",
);
}
#[test]
fn goto_definition_on_self() {
check_goto(
"
//- /lib.rs
struct Foo;
impl Foo {
pub fn new() -> Self {
Self<|> {}
}
}
",
"Foo STRUCT_DEF FileId(1) [0; 11) [7; 10)",
);
check_goto(
"
//- /lib.rs
struct Foo;
impl Foo {
pub fn new() -> Self<|> {
Self {}
}
}
",
"Foo STRUCT_DEF FileId(1) [0; 11) [7; 10)",
);
check_goto(
"
//- /lib.rs
enum Foo { A }
impl Foo {
pub fn new() -> Self<|> {
Foo::A
}
}
",
"Foo ENUM_DEF FileId(1) [0; 14) [5; 8)",
);
check_goto(
"
//- /lib.rs
enum Foo { A }
impl Foo {
pub fn thing(a: &Self<|>) {
}
}
",
"Foo ENUM_DEF FileId(1) [0; 14) [5; 8)",
);
}
#[test]
fn goto_definition_on_self_in_trait_impl() {
check_goto(
"
//- /lib.rs
struct Foo;
trait Make {
fn new() -> Self;
}
impl Make for Foo {
fn new() -> Self {
Self<|> {}
}
}
",
"Foo STRUCT_DEF FileId(1) [0; 11) [7; 10)",
);
check_goto(
"
//- /lib.rs
struct Foo;
trait Make {
fn new() -> Self;
}
impl Make for Foo {
fn new() -> Self<|> {
Self{}
}
}
",
"Foo STRUCT_DEF FileId(1) [0; 11) [7; 10)",
);
}
#[test]
fn goto_definition_works_when_used_on_definition_name_itself() {
check_goto(
"
//- /lib.rs
struct Foo<|> { value: u32 }
",
"Foo STRUCT_DEF FileId(1) [0; 25) [7; 10)",
);
check_goto(
r#"
//- /lib.rs
struct Foo {
field<|>: string,
}
"#,
"field NAMED_FIELD_DEF FileId(1) [17; 30) [17; 22)",
);
check_goto(
"
//- /lib.rs
fn foo_test<|>() {
}
",
"foo_test FN_DEF FileId(1) [0; 17) [3; 11)",
);
check_goto(
"
//- /lib.rs
enum Foo<|> {
Variant,
}
",
"Foo ENUM_DEF FileId(1) [0; 25) [5; 8)",
);
check_goto(
"
//- /lib.rs
enum Foo {
Variant1,
Variant2<|>,
Variant3,
}
",
"Variant2 ENUM_VARIANT FileId(1) [29; 37) [29; 37)",
);
check_goto(
r#"
//- /lib.rs
static inner<|>: &str = "";
"#,
"inner STATIC_DEF FileId(1) [0; 24) [7; 12)",
);
check_goto(
r#"
//- /lib.rs
const inner<|>: &str = "";
"#,
"inner CONST_DEF FileId(1) [0; 23) [6; 11)",
);
check_goto(
r#"
//- /lib.rs
type Thing<|> = Option<()>;
"#,
"Thing TYPE_ALIAS_DEF FileId(1) [0; 24) [5; 10)",
);
check_goto(
r#"
//- /lib.rs
trait Foo<|> {
}
"#,
"Foo TRAIT_DEF FileId(1) [0; 13) [6; 9)",
);
check_goto(
r#"
//- /lib.rs
mod bar<|> {
}
"#,
"bar MODULE FileId(1) [0; 11) [4; 7)",
);
}
2019-01-08 13:33:36 -06:00
}