rust/crates/ra_hir/src/source_binder.rs

191 lines
6 KiB
Rust
Raw Normal View History

/// Lookup hir elements using positions in the source code. This is a lossy
/// transformation: in general, a single source might correspond to several
/// modules, functions, etc, due to macros, cfgs and `#[path=]` attributes on
/// modules.
///
/// So, this modules should not be used during hir construction, it exists
/// purely for "IDE needs".
2019-01-15 16:13:11 +01:00
use ra_db::{FileId, FilePosition};
use ra_syntax::{
2019-01-08 09:28:42 +01:00
SmolStr, TextRange, SyntaxNode,
2018-12-27 19:21:10 +01:00
ast::{self, AstNode, NameOwner},
2019-01-08 18:44:31 +01:00
algo::find_node_at_offset,
};
use crate::{
HirDatabase, Function, ModuleDef, Struct, Enum,
2019-01-30 20:23:14 +01:00
AsName, Module, HirFileId, Crate,
2019-01-26 21:25:18 +01:00
ids::{LocationCtx, SourceFileItemId},
};
/// Locates the module by `FileId`. Picks topmost module in the file.
2019-01-15 16:13:11 +01:00
pub fn module_from_file_id(db: &impl HirDatabase, file_id: FileId) -> Option<Module> {
2019-01-26 21:25:18 +01:00
module_from_source(db, file_id.into(), None)
}
2018-12-27 19:21:10 +01:00
/// Locates the child module by `mod child;` declaration.
pub fn module_from_declaration(
db: &impl HirDatabase,
file_id: FileId,
2019-01-08 09:28:42 +01:00
decl: &ast::Module,
2019-01-15 16:13:11 +01:00
) -> Option<Module> {
let parent_module = module_from_file_id(db, file_id);
2018-12-27 19:21:10 +01:00
let child_name = decl.name();
match (parent_module, child_name) {
2019-01-16 14:39:01 +01:00
(Some(parent_module), Some(child_name)) => parent_module.child(db, &child_name.as_name()),
_ => None,
2018-12-27 19:21:10 +01:00
}
}
/// Locates the module by position in the source code.
2019-01-15 16:13:11 +01:00
pub fn module_from_position(db: &impl HirDatabase, position: FilePosition) -> Option<Module> {
2019-01-26 09:51:36 +01:00
let file = db.parse(position.file_id);
2019-01-06 17:58:10 +01:00
match find_node_at_offset::<ast::Module>(file.syntax(), position.offset) {
Some(m) if !m.has_semi() => module_from_inline(db, position.file_id.into(), m),
_ => module_from_file_id(db, position.file_id.into()),
}
}
fn module_from_inline(
db: &impl HirDatabase,
file_id: FileId,
2019-01-08 09:28:42 +01:00
module: &ast::Module,
2019-01-15 16:13:11 +01:00
) -> Option<Module> {
2019-01-06 17:58:10 +01:00
assert!(!module.has_semi());
let file_id = file_id.into();
let file_items = db.file_items(file_id);
let item_id = file_items.id_of(file_id, module.syntax());
2019-01-26 21:25:18 +01:00
module_from_source(db, file_id, Some(item_id))
}
/// Locates the module by child syntax element within the module
pub fn module_from_child_node(
db: &impl HirDatabase,
file_id: FileId,
2019-01-08 09:28:42 +01:00
child: &SyntaxNode,
2019-01-15 16:13:11 +01:00
) -> Option<Module> {
2019-01-06 17:58:10 +01:00
if let Some(m) = child
.ancestors()
.filter_map(ast::Module::cast)
.find(|it| !it.has_semi())
{
2019-01-06 17:58:10 +01:00
module_from_inline(db, file_id.into(), m)
} else {
2019-01-06 17:58:10 +01:00
module_from_file_id(db, file_id.into())
}
}
2019-01-26 21:25:18 +01:00
fn module_from_source(
db: &impl HirDatabase,
file_id: HirFileId,
decl_id: Option<SourceFileItemId>,
) -> Option<Module> {
let source_root_id = db.file_source_root(file_id.as_original_file());
db.source_root_crates(source_root_id)
.iter()
2019-01-30 20:23:14 +01:00
.map(|&crate_id| Crate { crate_id })
.find_map(|krate| {
let module_tree = db.module_tree(krate);
2019-01-26 21:25:18 +01:00
let module_id = module_tree.find_module_by_source(file_id, decl_id)?;
Some(Module { krate, module_id })
})
}
2019-01-15 16:13:11 +01:00
pub fn function_from_position(db: &impl HirDatabase, position: FilePosition) -> Option<Function> {
2019-01-26 09:51:36 +01:00
let file = db.parse(position.file_id);
2019-01-15 16:13:11 +01:00
let fn_def = find_node_at_offset::<ast::FnDef>(file.syntax(), position.offset)?;
function_from_source(db, position.file_id, fn_def)
}
pub fn function_from_source(
db: &impl HirDatabase,
file_id: FileId,
2019-01-08 09:28:42 +01:00
fn_def: &ast::FnDef,
2019-01-15 16:13:11 +01:00
) -> Option<Function> {
let module = module_from_child_node(db, file_id, fn_def.syntax())?;
2019-01-24 13:28:50 +01:00
let res = function_from_module(db, module, fn_def);
2019-01-15 16:13:11 +01:00
Some(res)
2018-12-22 09:01:03 +01:00
}
pub fn function_from_module(
db: &impl HirDatabase,
2019-01-24 13:28:50 +01:00
module: Module,
2019-01-08 09:28:42 +01:00
fn_def: &ast::FnDef,
2018-12-22 09:01:03 +01:00
) -> Function {
let (file_id, _) = module.definition_source(db);
let file_id = file_id.into();
2019-01-24 22:26:54 +01:00
let ctx = LocationCtx::new(db, module, file_id);
Function {
id: ctx.to_def(fn_def),
}
}
pub fn function_from_child_node(
db: &impl HirDatabase,
file_id: FileId,
2019-01-08 09:28:42 +01:00
node: &SyntaxNode,
2019-01-15 16:13:11 +01:00
) -> Option<Function> {
let fn_def = node.ancestors().find_map(ast::FnDef::cast)?;
function_from_source(db, file_id, fn_def)
}
2019-01-03 19:28:35 +01:00
pub fn struct_from_module(
db: &impl HirDatabase,
module: Module,
struct_def: &ast::StructDef,
) -> Struct {
let (file_id, _) = module.definition_source(db);
let file_id = file_id.into();
let ctx = LocationCtx::new(db, module, file_id);
Struct {
id: ctx.to_def(struct_def),
}
}
pub fn enum_from_module(db: &impl HirDatabase, module: Module, enum_def: &ast::EnumDef) -> Enum {
let (file_id, _) = module.definition_source(db);
let file_id = file_id.into();
let ctx = LocationCtx::new(db, module, file_id);
Enum {
id: ctx.to_def(enum_def),
}
}
2019-01-15 16:13:11 +01:00
pub fn macro_symbols(db: &impl HirDatabase, file_id: FileId) -> Vec<(SmolStr, TextRange)> {
let module = match module_from_file_id(db, file_id) {
2019-01-03 19:28:35 +01:00
Some(it) => it,
2019-01-15 16:13:11 +01:00
None => return Vec::new(),
2019-01-03 19:28:35 +01:00
};
let items = db.lower_module_module(module);
2019-01-03 19:28:35 +01:00
let mut res = Vec::new();
for macro_call_id in items
2019-01-23 17:49:11 +01:00
.declarations
2019-01-03 19:28:35 +01:00
.iter()
.filter_map(|(_, it)| it.clone().take_types())
.filter_map(|it| match it {
2019-01-24 23:31:32 +01:00
ModuleDef::Trait(it) => Some(it),
_ => None,
})
2019-01-24 23:31:32 +01:00
.filter_map(|it| it.source(db).0.as_macro_call_id())
2019-01-03 19:28:35 +01:00
{
if let Some(exp) = db.expand_macro_invocation(macro_call_id) {
let loc = macro_call_id.loc(db);
let syntax = db.file_item(loc.source_item_id);
2019-01-08 09:28:42 +01:00
let macro_call = ast::MacroCall::cast(&syntax).unwrap();
2019-01-03 19:28:35 +01:00
let off = macro_call.token_tree().unwrap().syntax().range().start();
let file = exp.file();
for trait_def in file.syntax().descendants().filter_map(ast::TraitDef::cast) {
if let Some(name) = trait_def.name() {
let dst_range = name.syntax().range();
if let Some(src_range) = exp.map_range_back(dst_range) {
2019-01-08 10:23:10 +01:00
res.push((name.text().clone(), src_range + off))
2019-01-03 19:28:35 +01:00
}
}
}
}
}
2019-01-15 16:13:11 +01:00
res
2019-01-03 19:28:35 +01:00
}