2019-07-04 15:05:17 -05:00
|
|
|
use hir::{source_binder, Either, ModuleSource};
|
|
|
|
use ra_db::SourceDatabase;
|
|
|
|
use ra_syntax::{algo::find_node_at_offset, ast, AstNode, SourceFile, SyntaxNode};
|
2019-02-08 05:06:26 -06:00
|
|
|
use relative_path::{RelativePath, RelativePathBuf};
|
2019-01-16 07:39:01 -06:00
|
|
|
|
|
|
|
use crate::{
|
2019-07-04 15:05:17 -05:00
|
|
|
db::RootDatabase, FileId, FilePosition, FileRange, FileSystemEdit, NavigationTarget,
|
|
|
|
SourceChange, SourceFileEdit, TextRange,
|
2019-01-16 07:39:01 -06:00
|
|
|
};
|
2019-02-08 05:06:26 -06:00
|
|
|
|
2019-02-17 05:38:32 -06:00
|
|
|
#[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>;
|
2019-02-17 05:38:32 -06:00
|
|
|
|
|
|
|
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,
|
|
|
|
) -> Option<ReferenceSearchResult> {
|
2019-05-28 10:46:11 -05:00
|
|
|
let file = db.parse(position.file_id).tree;
|
2019-04-13 01:31:03 -05:00
|
|
|
let (binding, analyzer) = find_binding(db, &file, position)?;
|
2019-02-17 05:38:32 -06:00
|
|
|
let declaration = NavigationTarget::from_bind_pat(position.file_id, binding);
|
2019-02-08 05:06:26 -06:00
|
|
|
|
2019-04-13 01:31:03 -05:00
|
|
|
let references = analyzer
|
2019-04-13 02:49:01 -05:00
|
|
|
.find_all_refs(binding)
|
2019-02-08 05:06:26 -06:00
|
|
|
.into_iter()
|
2019-02-17 05:38:32 -06:00
|
|
|
.map(move |ref_desc| FileRange { file_id: position.file_id, range: ref_desc.range })
|
2019-02-08 05:06:26 -06:00
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
2019-02-17 05:38:32 -06:00
|
|
|
return Some(ReferenceSearchResult { declaration, references });
|
2019-02-08 05:06:26 -06:00
|
|
|
|
|
|
|
fn find_binding<'a>(
|
|
|
|
db: &RootDatabase,
|
|
|
|
source_file: &'a SourceFile,
|
|
|
|
position: FilePosition,
|
2019-04-13 01:31:03 -05:00
|
|
|
) -> Option<(&'a ast::BindPat, hir::SourceAnalyzer)> {
|
2019-02-08 05:06:26 -06:00
|
|
|
let syntax = source_file.syntax();
|
|
|
|
if let Some(binding) = find_node_at_offset::<ast::BindPat>(syntax, position.offset) {
|
2019-04-13 01:31:03 -05:00
|
|
|
let analyzer = hir::SourceAnalyzer::new(db, position.file_id, binding.syntax(), None);
|
|
|
|
return Some((binding, analyzer));
|
2019-02-08 05:06:26 -06:00
|
|
|
};
|
|
|
|
let name_ref = find_node_at_offset::<ast::NameRef>(syntax, position.offset)?;
|
2019-04-13 01:31:03 -05:00
|
|
|
let analyzer = hir::SourceAnalyzer::new(db, position.file_id, name_ref.syntax(), None);
|
|
|
|
let resolved = analyzer.resolve_local_name(name_ref)?;
|
2019-04-10 02:46:43 -05:00
|
|
|
if let Either::A(ptr) = resolved.ptr() {
|
2019-05-13 11:39:06 -05:00
|
|
|
if let ast::PatKind::BindPat(binding) = ptr.to_node(source_file.syntax()).kind() {
|
2019-04-13 01:31:03 -05:00
|
|
|
return Some((binding, analyzer));
|
2019-04-10 02:46:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
2019-02-08 05:06:26 -06:00
|
|
|
}
|
|
|
|
}
|
2019-01-16 07:39:01 -06:00
|
|
|
|
|
|
|
pub(crate) fn rename(
|
|
|
|
db: &RootDatabase,
|
|
|
|
position: FilePosition,
|
|
|
|
new_name: &str,
|
|
|
|
) -> Option<SourceChange> {
|
2019-05-28 10:46:11 -05:00
|
|
|
let source_file = db.parse(position.file_id).tree;
|
2019-01-16 07:39:01 -06:00
|
|
|
let syntax = source_file.syntax();
|
|
|
|
|
|
|
|
if let Some((ast_name, ast_module)) = find_name_and_module_at_offset(syntax, position) {
|
|
|
|
rename_mod(db, ast_name, ast_module, position, new_name)
|
|
|
|
} else {
|
|
|
|
rename_reference(db, position, new_name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn find_name_and_module_at_offset(
|
|
|
|
syntax: &SyntaxNode,
|
|
|
|
position: FilePosition,
|
|
|
|
) -> Option<(&ast::Name, &ast::Module)> {
|
|
|
|
let ast_name = find_node_at_offset::<ast::Name>(syntax, position.offset);
|
2019-01-17 05:57:24 -06:00
|
|
|
let ast_name_parent = ast::Module::cast(ast_name?.syntax().parent()?);
|
2019-01-16 07:39:01 -06:00
|
|
|
|
|
|
|
if let (Some(ast_module), Some(name)) = (ast_name_parent, ast_name) {
|
|
|
|
return Some((name, ast_module));
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2019-02-17 05:38:32 -06:00
|
|
|
fn source_edit_from_fileid_range(
|
|
|
|
file_id: FileId,
|
|
|
|
range: TextRange,
|
|
|
|
new_name: &str,
|
|
|
|
) -> SourceFileEdit {
|
|
|
|
SourceFileEdit {
|
|
|
|
file_id,
|
|
|
|
edit: {
|
|
|
|
let mut builder = ra_text_edit::TextEditBuilder::default();
|
|
|
|
builder.replace(range, new_name.into());
|
|
|
|
builder.finish()
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-16 07:39:01 -06:00
|
|
|
fn rename_mod(
|
|
|
|
db: &RootDatabase,
|
|
|
|
ast_name: &ast::Name,
|
|
|
|
ast_module: &ast::Module,
|
|
|
|
position: FilePosition,
|
|
|
|
new_name: &str,
|
|
|
|
) -> Option<SourceChange> {
|
|
|
|
let mut source_file_edits = Vec::new();
|
|
|
|
let mut file_system_edits = Vec::new();
|
2019-02-08 05:06:26 -06:00
|
|
|
if let Some(module) = source_binder::module_from_declaration(db, position.file_id, &ast_module)
|
|
|
|
{
|
2019-06-11 09:47:24 -05:00
|
|
|
let src = module.definition_source(db);
|
|
|
|
let file_id = src.file_id.as_original_file();
|
|
|
|
match src.ast {
|
2019-01-16 07:39:01 -06:00
|
|
|
ModuleSource::SourceFile(..) => {
|
|
|
|
let mod_path: RelativePathBuf = db.file_relative_path(file_id);
|
|
|
|
// mod is defined in path/to/dir/mod.rs
|
|
|
|
let dst_path = if mod_path.file_stem() == Some("mod") {
|
|
|
|
mod_path
|
|
|
|
.parent()
|
|
|
|
.and_then(|p| p.parent())
|
|
|
|
.or_else(|| Some(RelativePath::new("")))
|
|
|
|
.map(|p| p.join(new_name).join("mod.rs"))
|
|
|
|
} else {
|
|
|
|
Some(mod_path.with_file_name(new_name).with_extension("rs"))
|
|
|
|
};
|
|
|
|
if let Some(path) = dst_path {
|
|
|
|
let move_file = FileSystemEdit::MoveFile {
|
|
|
|
src: file_id,
|
|
|
|
dst_source_root: db.file_source_root(position.file_id),
|
|
|
|
dst_path: path,
|
|
|
|
};
|
|
|
|
file_system_edits.push(move_file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ModuleSource::Module(..) => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let edit = SourceFileEdit {
|
|
|
|
file_id: position.file_id,
|
|
|
|
edit: {
|
|
|
|
let mut builder = ra_text_edit::TextEditBuilder::default();
|
|
|
|
builder.replace(ast_name.syntax().range(), new_name.into());
|
|
|
|
builder.finish()
|
|
|
|
},
|
|
|
|
};
|
|
|
|
source_file_edits.push(edit);
|
|
|
|
|
2019-03-25 02:03:10 -05:00
|
|
|
Some(SourceChange::from_edits("rename", source_file_edits, file_system_edits))
|
2019-01-16 07:39:01 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn rename_reference(
|
|
|
|
db: &RootDatabase,
|
|
|
|
position: FilePosition,
|
|
|
|
new_name: &str,
|
|
|
|
) -> Option<SourceChange> {
|
2019-02-17 05:38:32 -06:00
|
|
|
let refs = find_all_refs(db, position)?;
|
|
|
|
|
|
|
|
let edit = refs
|
|
|
|
.into_iter()
|
|
|
|
.map(|range| source_edit_from_fileid_range(range.file_id, range.range, new_name))
|
2019-01-16 07:39:01 -06:00
|
|
|
.collect::<Vec<_>>();
|
2019-02-17 05:38:32 -06:00
|
|
|
|
2019-01-16 07:39:01 -06:00
|
|
|
if edit.is_empty() {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2019-03-25 02:13:58 -05:00
|
|
|
Some(SourceChange::source_file_edits("rename", edit))
|
2019-01-16 07:39:01 -06:00
|
|
|
}
|
2019-01-18 02:29:09 -06:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2019-07-04 15:05:17 -05:00
|
|
|
use crate::{
|
|
|
|
mock_analysis::analysis_and_position, mock_analysis::single_file_with_position, FileId,
|
|
|
|
ReferenceSearchResult,
|
|
|
|
};
|
2019-01-18 02:29:09 -06:00
|
|
|
use insta::assert_debug_snapshot_matches;
|
|
|
|
use test_utils::assert_eq_text;
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_all_refs(text: &str) -> ReferenceSearchResult {
|
|
|
|
let (analysis, position) = single_file_with_position(text);
|
|
|
|
analysis.find_all_refs(position).unwrap().unwrap()
|
|
|
|
}
|
|
|
|
|
2019-01-18 02:29:09 -06:00
|
|
|
#[test]
|
|
|
|
fn test_rename_for_local() {
|
|
|
|
test_rename(
|
|
|
|
r#"
|
|
|
|
fn main() {
|
|
|
|
let mut i = 1;
|
|
|
|
let j = 1;
|
|
|
|
i = i<|> + j;
|
|
|
|
|
|
|
|
{
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
i = 5;
|
|
|
|
}"#,
|
|
|
|
"k",
|
|
|
|
r#"
|
|
|
|
fn main() {
|
|
|
|
let mut k = 1;
|
|
|
|
let j = 1;
|
|
|
|
k = k + j;
|
|
|
|
|
|
|
|
{
|
|
|
|
k = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
k = 5;
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rename_for_param_inside() {
|
|
|
|
test_rename(
|
|
|
|
r#"
|
|
|
|
fn foo(i : u32) -> u32 {
|
|
|
|
i<|>
|
|
|
|
}"#,
|
|
|
|
"j",
|
|
|
|
r#"
|
|
|
|
fn foo(j : u32) -> u32 {
|
|
|
|
j
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rename_refs_for_fn_param() {
|
|
|
|
test_rename(
|
|
|
|
r#"
|
|
|
|
fn foo(i<|> : u32) -> u32 {
|
|
|
|
i
|
|
|
|
}"#,
|
|
|
|
"new_name",
|
|
|
|
r#"
|
|
|
|
fn foo(new_name : u32) -> u32 {
|
|
|
|
new_name
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rename_for_mut_param() {
|
|
|
|
test_rename(
|
|
|
|
r#"
|
|
|
|
fn foo(mut i<|> : u32) -> u32 {
|
|
|
|
i
|
|
|
|
}"#,
|
|
|
|
"new_name",
|
|
|
|
r#"
|
|
|
|
fn foo(mut new_name : u32) -> u32 {
|
|
|
|
new_name
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rename_mod() {
|
|
|
|
let (analysis, position) = analysis_and_position(
|
|
|
|
"
|
2019-01-23 14:14:13 -06:00
|
|
|
//- /lib.rs
|
|
|
|
mod bar;
|
|
|
|
|
|
|
|
//- /bar.rs
|
|
|
|
mod foo<|>;
|
|
|
|
|
|
|
|
//- /bar/foo.rs
|
|
|
|
// emtpy
|
|
|
|
",
|
2019-01-18 02:29:09 -06:00
|
|
|
);
|
|
|
|
let new_name = "foo2";
|
|
|
|
let source_change = analysis.rename(position, new_name).unwrap();
|
|
|
|
assert_debug_snapshot_matches!("rename_mod", &source_change);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rename_mod_in_dir() {
|
|
|
|
let (analysis, position) = analysis_and_position(
|
|
|
|
"
|
2019-01-23 14:14:13 -06:00
|
|
|
//- /lib.rs
|
|
|
|
mod fo<|>o;
|
|
|
|
//- /foo/mod.rs
|
|
|
|
// emtpy
|
|
|
|
",
|
2019-01-18 02:29:09 -06:00
|
|
|
);
|
|
|
|
let new_name = "foo2";
|
|
|
|
let source_change = analysis.rename(position, new_name).unwrap();
|
|
|
|
assert_debug_snapshot_matches!("rename_mod_in_dir", &source_change);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_rename(text: &str, new_name: &str, expected: &str) {
|
|
|
|
let (analysis, position) = single_file_with_position(text);
|
|
|
|
let source_change = analysis.rename(position, new_name).unwrap();
|
2019-02-11 10:18:27 -06:00
|
|
|
let mut text_edit_builder = ra_text_edit::TextEditBuilder::default();
|
2019-01-18 02:29:09 -06:00
|
|
|
let mut file_id: Option<FileId> = None;
|
|
|
|
if let Some(change) = source_change {
|
|
|
|
for edit in change.source_file_edits {
|
|
|
|
file_id = Some(edit.file_id);
|
|
|
|
for atom in edit.edit.as_atoms() {
|
2019-02-11 10:18:27 -06:00
|
|
|
text_edit_builder.replace(atom.delete, atom.insert.clone());
|
2019-01-18 02:29:09 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-11 10:18:27 -06:00
|
|
|
let result = text_edit_builder.finish().apply(&*analysis.file_text(file_id.unwrap()));
|
2019-01-18 02:29:09 -06:00
|
|
|
assert_eq_text!(expected, &*result);
|
|
|
|
}
|
|
|
|
}
|