rust/crates/ra_ide_api/src/references.rs

393 lines
10 KiB
Rust
Raw Normal View History

2019-10-22 15:46:53 -05:00
//! This module implements a reference search.
//! First, the element at the cursor position must be either an `ast::Name`
//! or `ast::NameRef`. If it's a `ast::NameRef`, at the classification step we
//! try to resolve the direct tree parent of this element, otherwise we
//! already have a definition and just need to get its HIR together with
//! some information that is needed for futher steps of searching.
//! After that, we collect files that might contain references and look
//! for text occurrences of the identifier. If there's an `ast::NameRef`
//! at the index that the match starts at and its tree parent is
//! resolved to the search element definition, we get a reference.
2019-10-12 10:47:17 -05:00
mod classify;
2019-10-12 12:30:53 -05:00
mod name_definition;
2019-10-12 10:47:17 -05:00
mod rename;
mod search_scope;
2019-11-16 04:33:25 -06:00
use hir::Source;
2019-10-14 06:59:02 -05:00
use once_cell::unsync::Lazy;
use ra_db::{SourceDatabase, SourceDatabaseExt};
2019-10-24 02:37:20 -05:00
use ra_prof::profile;
2019-10-12 10:47:17 -05:00
use ra_syntax::{algo::find_node_at_offset, ast, AstNode, SourceFile, SyntaxNode, TextUnit};
2019-11-11 02:15:19 -06:00
use crate::{
db::RootDatabase, display::ToNav, FilePosition, FileRange, NavigationTarget, RangeInfo,
};
2019-10-12 10:47:17 -05:00
pub(crate) use self::{
classify::{classify_name, classify_name_ref},
2019-10-12 12:30:53 -05:00
name_definition::{NameDefinition, NameKind},
2019-10-12 10:47:17 -05:00
rename::rename,
2019-01-16 07:39:01 -06:00
};
2019-02-08 05:06:26 -06:00
pub use self::search_scope::SearchScope;
#[derive(Debug, Clone)]
pub struct ReferenceSearchResult {
declaration: NavigationTarget,
references: Vec<FileRange>,
}
impl ReferenceSearchResult {
pub fn declaration(&self) -> &NavigationTarget {
&self.declaration
}
pub fn references(&self) -> &[FileRange] {
&self.references
}
/// Total number of references
/// At least 1 since all valid references should
/// Have a declaration
pub fn len(&self) -> usize {
self.references.len() + 1
}
}
// allow turning ReferenceSearchResult into an iterator
// over FileRanges
impl IntoIterator for ReferenceSearchResult {
type Item = FileRange;
2019-02-17 09:25:19 -06:00
type IntoIter = std::vec::IntoIter<FileRange>;
fn into_iter(mut self) -> Self::IntoIter {
let mut v = Vec::with_capacity(self.len());
v.push(FileRange { file_id: self.declaration.file_id(), range: self.declaration.range() });
v.append(&mut self.references);
v.into_iter()
}
}
pub(crate) fn find_all_refs(
db: &RootDatabase,
position: FilePosition,
search_scope: Option<SearchScope>,
2019-09-05 13:36:40 -05:00
) -> Option<RangeInfo<ReferenceSearchResult>> {
let parse = db.parse(position.file_id);
2019-09-14 06:38:10 -05:00
let syntax = parse.tree().syntax().clone();
2019-10-10 10:51:51 -05:00
let RangeInfo { range, info: (name, def) } = find_name(db, &syntax, position)?;
2019-09-14 06:38:10 -05:00
2019-10-14 06:59:02 -05:00
let declaration = match def.kind {
2019-11-11 02:15:19 -06:00
NameKind::Macro(mac) => mac.to_nav(db),
NameKind::Field(field) => field.to_nav(db),
NameKind::AssocItem(assoc) => assoc.to_nav(db),
2019-10-12 10:47:17 -05:00
NameKind::Def(def) => NavigationTarget::from_def(db, def)?,
NameKind::SelfType(ref ty) => match ty.as_adt() {
2019-11-11 02:15:19 -06:00
Some((adt, _)) => adt.to_nav(db),
2019-09-14 06:38:10 -05:00
None => return None,
},
2019-11-09 15:32:00 -06:00
NameKind::Local(local) => local.to_nav(db),
2019-10-12 10:47:17 -05:00
NameKind::GenericParam(_) => return None,
2019-09-14 06:38:10 -05:00
};
2019-02-08 05:06:26 -06:00
let search_scope = {
let base = def.search_scope(db);
match search_scope {
None => base,
Some(scope) => base.intersection(&scope),
}
};
let references = process_definition(db, def, name, search_scope);
2019-09-14 06:38:10 -05:00
2019-10-12 10:47:17 -05:00
Some(RangeInfo::new(range, ReferenceSearchResult { declaration, references }))
2019-01-16 07:39:01 -06:00
}
2019-10-12 10:47:17 -05:00
fn find_name<'a>(
db: &RootDatabase,
2019-01-16 07:39:01 -06:00
syntax: &SyntaxNode,
position: FilePosition,
2019-10-12 12:30:53 -05:00
) -> Option<RangeInfo<(String, NameDefinition)>> {
2019-10-12 10:47:17 -05:00
if let Some(name) = find_node_at_offset::<ast::Name>(&syntax, position.offset) {
let def = classify_name(db, Source::new(position.file_id.into(), &name))?;
2019-10-12 10:47:17 -05:00
let range = name.syntax().text_range();
return Some(RangeInfo::new(range, (name.text().to_string(), def)));
}
2019-10-12 10:47:17 -05:00
let name_ref = find_node_at_offset::<ast::NameRef>(&syntax, position.offset)?;
2019-11-16 04:33:25 -06:00
let def = classify_name_ref(db, Source::new(position.file_id.into(), &name_ref))?;
2019-10-12 10:47:17 -05:00
let range = name_ref.syntax().text_range();
Some(RangeInfo::new(range, (name_ref.text().to_string(), def)))
}
fn process_definition(
db: &RootDatabase,
def: NameDefinition,
name: String,
scope: SearchScope,
) -> Vec<FileRange> {
2019-10-24 02:37:20 -05:00
let _p = profile("process_definition");
2019-10-12 10:47:17 -05:00
let pat = name.as_str();
let mut refs = vec![];
2019-10-22 15:46:53 -05:00
for (file_id, search_range) in scope {
2019-10-12 10:47:17 -05:00
let text = db.file_text(file_id);
2019-10-14 06:59:02 -05:00
let parse = Lazy::new(|| SourceFile::parse(&text));
2019-10-12 10:47:17 -05:00
for (idx, _) in text.match_indices(pat) {
let offset = TextUnit::from_usize(idx);
2019-10-14 06:59:02 -05:00
if let Some(name_ref) =
find_node_at_offset::<ast::NameRef>(parse.tree().syntax(), offset)
{
2019-10-12 10:47:17 -05:00
let range = name_ref.syntax().text_range();
2019-10-22 15:46:53 -05:00
if let Some(search_range) = search_range {
if !range.is_subrange(&search_range) {
continue;
}
}
2019-11-16 04:33:25 -06:00
if let Some(d) = classify_name_ref(db, Source::new(file_id.into(), &name_ref)) {
2019-10-22 15:46:53 -05:00
if d == def {
2019-10-12 10:47:17 -05:00
refs.push(FileRange { file_id, range });
}
}
}
}
2019-01-16 07:39:01 -06:00
}
2019-10-22 15:46:53 -05:00
refs
2019-01-16 07:39:01 -06:00
}
2019-01-18 02:29:09 -06:00
#[cfg(test)]
mod tests {
use crate::{
mock_analysis::{analysis_and_position, single_file_with_position, MockAnalysis},
ReferenceSearchResult, SearchScope,
};
2019-01-18 02:29:09 -06:00
2019-03-25 15:03:32 -05:00
#[test]
fn test_find_all_refs_for_local() {
let code = r#"
fn main() {
let mut i = 1;
let j = 1;
i = i<|> + j;
{
i = 0;
}
i = 5;
}"#;
let refs = get_all_refs(code);
assert_eq!(refs.len(), 5);
}
#[test]
fn test_find_all_refs_for_param_inside() {
let code = r#"
fn foo(i : u32) -> u32 {
i<|>
}"#;
let refs = get_all_refs(code);
assert_eq!(refs.len(), 2);
}
#[test]
fn test_find_all_refs_for_fn_param() {
let code = r#"
fn foo(i<|> : u32) -> u32 {
i
}"#;
let refs = get_all_refs(code);
assert_eq!(refs.len(), 2);
}
2019-09-14 06:38:10 -05:00
#[test]
fn test_find_all_refs_field_name() {
let code = r#"
//- /lib.rs
struct Foo {
2019-10-10 10:51:51 -05:00
pub spam<|>: u32,
}
fn main(s: Foo) {
let f = s.spam;
2019-09-14 06:38:10 -05:00
}
"#;
let refs = get_all_refs(code);
2019-10-10 10:51:51 -05:00
assert_eq!(refs.len(), 2);
2019-09-14 06:38:10 -05:00
}
#[test]
fn test_find_all_refs_impl_item_name() {
let code = r#"
//- /lib.rs
struct Foo;
impl Foo {
fn f<|>(&self) { }
}
"#;
let refs = get_all_refs(code);
assert_eq!(refs.len(), 1);
}
#[test]
fn test_find_all_refs_enum_var_name() {
let code = r#"
//- /lib.rs
enum Foo {
A,
B<|>,
C,
}
"#;
let refs = get_all_refs(code);
assert_eq!(refs.len(), 1);
}
2019-10-10 18:11:23 -05:00
#[test]
2019-10-15 14:50:28 -05:00
fn test_find_all_refs_two_modules() {
2019-10-10 18:11:23 -05:00
let code = r#"
//- /lib.rs
pub mod foo;
pub mod bar;
fn f() {
let i = foo::Foo { n: 5 };
}
//- /foo.rs
use crate::bar;
pub struct Foo {
pub n: u32,
}
fn f() {
let i = bar::Bar { n: 5 };
}
//- /bar.rs
use crate::foo;
pub struct Bar {
pub n: u32,
}
fn f() {
let i = foo::Foo<|> { n: 5 };
}
"#;
let (analysis, pos) = analysis_and_position(code);
let refs = analysis.find_all_refs(pos, None).unwrap().unwrap();
2019-10-10 18:11:23 -05:00
assert_eq!(refs.len(), 3);
}
2019-10-15 14:50:28 -05:00
// `mod foo;` is not in the results because `foo` is an `ast::Name`.
// So, there are two references: the first one is a definition of the `foo` module,
2019-10-15 14:50:28 -05:00
// which is the whole `foo.rs`, and the second one is in `use foo::Foo`.
#[test]
fn test_find_all_refs_decl_module() {
let code = r#"
//- /lib.rs
mod foo<|>;
use foo::Foo;
fn f() {
let i = Foo { n: 5 };
}
//- /foo.rs
pub struct Foo {
pub n: u32,
}
"#;
let (analysis, pos) = analysis_and_position(code);
let refs = analysis.find_all_refs(pos, None).unwrap().unwrap();
2019-10-15 14:50:28 -05:00
assert_eq!(refs.len(), 2);
}
#[test]
fn test_find_all_refs_super_mod_vis() {
let code = r#"
//- /lib.rs
mod foo;
//- /foo.rs
mod some;
use some::Foo;
fn f() {
let i = Foo { n: 5 };
}
//- /foo/some.rs
pub(super) struct Foo<|> {
pub n: u32,
}
"#;
let (analysis, pos) = analysis_and_position(code);
let refs = analysis.find_all_refs(pos, None).unwrap().unwrap();
assert_eq!(refs.len(), 3);
}
#[test]
fn test_find_all_refs_with_scope() {
let code = r#"
//- /lib.rs
mod foo;
mod bar;
pub fn quux<|>() {}
//- /foo.rs
fn f() { super::quux(); }
//- /bar.rs
fn f() { super::quux(); }
"#;
let (mock, pos) = MockAnalysis::with_files_and_position(code);
let bar = mock.id_of("/bar.rs");
let analysis = mock.analysis();
let refs = analysis.find_all_refs(pos, None).unwrap().unwrap();
assert_eq!(refs.len(), 3);
let refs =
analysis.find_all_refs(pos, Some(SearchScope::single_file(bar))).unwrap().unwrap();
assert_eq!(refs.len(), 2);
}
2019-11-15 16:13:52 -06:00
#[test]
fn test_find_all_refs_macro_def() {
let code = r#"
#[macro_export]
macro_rules! m1<|> { () => (()) }
fn foo() {
m1();
m1();
}"#;
let refs = get_all_refs(code);
assert_eq!(refs.len(), 3);
}
2019-03-25 15:03:32 -05:00
fn get_all_refs(text: &str) -> ReferenceSearchResult {
let (analysis, position) = single_file_with_position(text);
analysis.find_all_refs(position, None).unwrap().unwrap()
2019-03-25 15:03:32 -05:00
}
2019-01-18 02:29:09 -06:00
}