rust/crates/ra_ide_api/src/goto_definition.rs

217 lines
6.0 KiB
Rust
Raw Normal View History

2019-01-08 13:33:36 -06:00
use ra_db::{FileId, Cancelable, SyntaxDatabase};
use ra_syntax::{
2019-01-11 05:00:54 -06:00
AstNode, ast,
2019-01-08 13:33:36 -06:00
algo::find_node_at_offset,
};
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-11 05:14:09 -06:00
) -> Cancelable<Option<RangeInfo<Vec<NavigationTarget>>>> {
2019-01-08 13:33:36 -06:00
let file = db.source_file(position.file_id);
let syntax = file.syntax();
if let Some(name_ref) = find_node_at_offset::<ast::NameRef>(syntax, position.offset) {
let navs = reference_definition(db, position.file_id, name_ref)?.to_vec();
return Ok(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-11 05:14:09 -06:00
let navs = ctry!(name_definition(db, position.file_id, name)?);
return Ok(Some(RangeInfo::new(name.syntax().range(), navs)));
2019-01-08 13:33:36 -06:00
}
Ok(None)
}
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,
) -> Cancelable<ReferenceResult> {
use self::ReferenceResult::*;
if let Some(function) =
2019-01-15 09:13:11 -06:00
hir::source_binder::function_from_child_node(db, file_id, name_ref.syntax())
2019-01-08 13:33:36 -06:00
{
let scope = function.scopes(db)?;
2019-01-08 13:33:36 -06:00
// First try to resolve the symbol locally
if let Some(entry) = scope.resolve_local_name(name_ref) {
2019-01-11 05:00:54 -06:00
let nav = NavigationTarget::from_scope_entry(file_id, &entry);
return Ok(Exact(nav));
2019-01-08 13:33:36 -06:00
};
// Next check if it is a method
if let Some(method_call) = name_ref
.syntax()
.parent()
.and_then(ast::MethodCallExpr::cast)
{
let infer_result = function.infer(db)?;
let syntax_mapping = function.body_syntax_mapping(db)?;
let expr = ast::Expr::cast(method_call.syntax()).unwrap();
if let Some(def_id) = syntax_mapping
.node_expr(expr)
.and_then(|it| infer_result.method_resolution(it))
{
if let Some(target) = NavigationTarget::from_def(db, def_id.resolve(db)?)? {
return Ok(Exact(target));
}
};
}
2019-01-08 13:33:36 -06:00
}
// Then try module name resolution
2019-01-15 09:13:11 -06:00
if let Some(module) = hir::source_binder::module_from_child_node(db, file_id, name_ref.syntax())
{
if let Some(path) = name_ref
.syntax()
.ancestors()
.find_map(ast::Path::cast)
.and_then(hir::Path::from_ast)
{
let resolved = module.resolve_path(db, &path)?;
if let Some(def_id) = resolved.take_types().or(resolved.take_values()) {
if let Some(target) = NavigationTarget::from_def(db, def_id.resolve(db)?)? {
return Ok(Exact(target));
}
}
}
}
2019-01-08 13:33:36 -06:00
// If that fails try the index based approach.
let navs = db
.index_resolve(name_ref)?
.into_iter()
.map(NavigationTarget::from_symbol)
.collect();
Ok(Approximate(navs))
2019-01-08 13:33:36 -06:00
}
2019-01-08 16:38:51 -06:00
fn name_definition(
2019-01-08 13:33:36 -06:00
db: &RootDatabase,
file_id: FileId,
name: &ast::Name,
) -> Cancelable<Option<Vec<NavigationTarget>>> {
if let Some(module) = name.syntax().parent().and_then(ast::Module::cast) {
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
{
2019-01-11 05:00:54 -06:00
let nav = NavigationTarget::from_module(db, child_module)?;
2019-01-08 13:33:36 -06:00
return Ok(Some(vec![nav]));
}
}
}
Ok(None)
}
#[cfg(test)]
mod tests {
use crate::mock_analysis::analysis_and_position;
2019-01-11 09:17:20 -06:00
fn check_goto(fixuture: &str, expected: &str) {
let (analysis, pos) = analysis_and_position(fixuture);
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() {
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)",
);
check_goto(
"
//- /lib.rs
mod <|>foo;
//- /foo/mod.rs
// empty
",
"foo SOURCE_FILE FileId(2) [0; 10)",
);
}
2019-01-08 13:33:36 -06:00
}