rust/crates/ra_hir/src/source_binder.rs

219 lines
7.5 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 09:13:11 -06:00
use ra_db::{FileId, FilePosition};
use ra_syntax::{
2019-03-14 05:14:54 -05:00
SyntaxNode,
2018-12-27 12:21:10 -06:00
ast::{self, AstNode, NameOwner},
2019-01-27 13:50:57 -06:00
algo::{find_node_at_offset, find_leaf_at_offset},
};
use crate::{
2019-03-26 09:25:14 -05:00
HirDatabase, Function, Struct, Enum,
2019-01-19 14:23:26 -06:00
AsName, Module, HirFileId, Crate, Trait, Resolver,
2019-03-26 06:40:34 -05:00
ids::LocationCtx,
2019-03-26 09:25:14 -05:00
expr, AstId
};
/// Locates the module by `FileId`. Picks topmost module in the file.
2019-01-15 09:13:11 -06:00
pub fn module_from_file_id(db: &impl HirDatabase, file_id: FileId) -> Option<Module> {
2019-01-26 14:25:18 -06:00
module_from_source(db, file_id.into(), None)
}
2018-12-27 12:21:10 -06:00
/// Locates the child module by `mod child;` declaration.
pub fn module_from_declaration(
db: &impl HirDatabase,
file_id: FileId,
2019-01-08 02:28:42 -06:00
decl: &ast::Module,
2019-01-15 09:13:11 -06:00
) -> Option<Module> {
let parent_module = module_from_file_id(db, file_id);
2018-12-27 12:21:10 -06:00
let child_name = decl.name();
match (parent_module, child_name) {
2019-01-16 07:39:01 -06:00
(Some(parent_module), Some(child_name)) => parent_module.child(db, &child_name.as_name()),
_ => None,
2018-12-27 12:21:10 -06:00
}
}
/// Locates the module by position in the source code.
2019-01-15 09:13:11 -06:00
pub fn module_from_position(db: &impl HirDatabase, position: FilePosition) -> Option<Module> {
2019-01-26 02:51:36 -06:00
let file = db.parse(position.file_id);
2019-01-06 10:58:10 -06: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 02:28:42 -06:00
module: &ast::Module,
2019-01-15 09:13:11 -06:00
) -> Option<Module> {
2019-01-06 10:58:10 -06:00
assert!(!module.has_semi());
let file_id = file_id.into();
let file_items = db.file_items(file_id);
2019-03-26 09:25:14 -05:00
let item_id = file_items.ast_id(module).with_file_id(file_id);
2019-01-26 14:25:18 -06: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 02:28:42 -06:00
child: &SyntaxNode,
2019-01-15 09:13:11 -06:00
) -> Option<Module> {
2019-02-08 05:49:43 -06:00
if let Some(m) = child.ancestors().filter_map(ast::Module::cast).find(|it| !it.has_semi()) {
2019-01-06 10:58:10 -06:00
module_from_inline(db, file_id.into(), m)
} else {
2019-01-06 10:58:10 -06:00
module_from_file_id(db, file_id.into())
}
}
2019-01-26 14:25:18 -06:00
fn module_from_source(
db: &impl HirDatabase,
file_id: HirFileId,
2019-03-26 09:25:14 -05:00
decl_id: Option<AstId<ast::Module>>,
2019-01-26 14:25:18 -06:00
) -> Option<Module> {
let source_root_id = db.file_source_root(file_id.as_original_file());
2019-02-08 05:49:43 -06:00
db.source_root_crates(source_root_id).iter().map(|&crate_id| Crate { crate_id }).find_map(
|krate| {
2019-03-13 08:38:02 -05:00
let def_map = db.crate_def_map(krate);
let module_id = def_map.find_module_by_source(file_id, decl_id)?;
Some(Module { krate, module_id })
2019-02-08 05:49:43 -06:00
},
)
}
2019-01-15 09:13:11 -06:00
pub fn function_from_position(db: &impl HirDatabase, position: FilePosition) -> Option<Function> {
2019-01-26 02:51:36 -06:00
let file = db.parse(position.file_id);
2019-01-15 09:13:11 -06: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 02:28:42 -06:00
fn_def: &ast::FnDef,
2019-01-15 09:13:11 -06:00
) -> Option<Function> {
let module = module_from_child_node(db, file_id, fn_def.syntax())?;
2019-01-24 06:28:50 -06:00
let res = function_from_module(db, module, fn_def);
2019-01-15 09:13:11 -06:00
Some(res)
2018-12-22 02:01:03 -06:00
}
pub fn function_from_module(
db: &impl HirDatabase,
2019-01-24 06:28:50 -06:00
module: Module,
2019-01-08 02:28:42 -06:00
fn_def: &ast::FnDef,
2018-12-22 02:01:03 -06:00
) -> Function {
let (file_id, _) = module.definition_source(db);
let file_id = file_id.into();
2019-01-24 15:26:54 -06:00
let ctx = LocationCtx::new(db, module, file_id);
2019-02-08 05:49:43 -06:00
Function { id: ctx.to_def(fn_def) }
}
pub fn function_from_child_node(
db: &impl HirDatabase,
file_id: FileId,
2019-01-08 02:28:42 -06:00
node: &SyntaxNode,
2019-01-15 09:13:11 -06:00
) -> Option<Function> {
let fn_def = node.ancestors().find_map(ast::FnDef::cast)?;
function_from_source(db, file_id, fn_def)
}
2019-01-03 12:28:35 -06: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);
2019-02-08 05:49:43 -06:00
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);
2019-02-08 05:49:43 -06:00
Enum { id: ctx.to_def(enum_def) }
}
2019-01-31 17:34:52 -06:00
pub fn trait_from_module(
db: &impl HirDatabase,
module: Module,
trait_def: &ast::TraitDef,
) -> Trait {
let (file_id, _) = module.definition_source(db);
let file_id = file_id.into();
let ctx = LocationCtx::new(db, module, file_id);
2019-02-08 05:49:43 -06:00
Trait { id: ctx.to_def(trait_def) }
2019-01-31 17:34:52 -06:00
}
2019-01-27 10:23:49 -06:00
pub fn resolver_for_position(db: &impl HirDatabase, position: FilePosition) -> Resolver {
2019-02-01 16:06:57 -06:00
let file_id = position.file_id;
let file = db.parse(file_id);
2019-01-27 13:50:57 -06:00
find_leaf_at_offset(file.syntax(), position.offset)
.find_map(|node| {
node.ancestors().find_map(|node| {
if ast::Expr::cast(node).is_some() || ast::Block::cast(node).is_some() {
2019-02-01 16:06:57 -06:00
if let Some(func) = function_from_child_node(db, file_id, node) {
2019-01-27 13:50:57 -06:00
let scopes = func.scopes(db);
let scope = scopes.scope_for_offset(position.offset);
Some(expr::resolver_for_scope(func.body(db), db, scope))
} else {
2019-03-23 02:53:48 -05:00
// FIXME const/static/array length
2019-01-27 13:50:57 -06:00
None
}
} else {
try_get_resolver_for_node(db, file_id, node)
2019-01-27 13:50:57 -06:00
}
})
})
.unwrap_or_default()
2019-01-19 14:23:26 -06:00
}
2019-01-29 13:49:31 -06:00
2019-01-27 10:23:49 -06:00
pub fn resolver_for_node(db: &impl HirDatabase, file_id: FileId, node: &SyntaxNode) -> Resolver {
2019-01-29 13:49:31 -06:00
node.ancestors()
.find_map(|node| {
if ast::Expr::cast(node).is_some() || ast::Block::cast(node).is_some() {
if let Some(func) = function_from_child_node(db, file_id, node) {
let scopes = func.scopes(db);
let scope = scopes.scope_for(&node);
Some(expr::resolver_for_scope(func.body(db), db, scope))
} else {
2019-03-23 02:53:48 -05:00
// FIXME const/static/array length
2019-01-29 13:49:31 -06:00
None
}
} else {
try_get_resolver_for_node(db, file_id, node)
2019-01-29 13:49:31 -06:00
}
})
.unwrap_or_default()
}
fn try_get_resolver_for_node(
db: &impl HirDatabase,
file_id: FileId,
node: &SyntaxNode,
) -> Option<Resolver> {
if let Some(module) = ast::Module::cast(node) {
Some(module_from_declaration(db, file_id, module)?.resolver(db))
} else if let Some(_) = ast::SourceFile::cast(node) {
Some(module_from_source(db, file_id.into(), None)?.resolver(db))
} else if let Some(s) = ast::StructDef::cast(node) {
let module = module_from_child_node(db, file_id, s.syntax())?;
Some(struct_from_module(db, module, s).resolver(db))
} else if let Some(e) = ast::EnumDef::cast(node) {
let module = module_from_child_node(db, file_id, e.syntax())?;
Some(enum_from_module(db, module, e).resolver(db))
} else if let Some(f) = ast::FnDef::cast(node) {
function_from_source(db, file_id, f).map(|f| f.resolver(db))
} else {
2019-03-23 02:53:48 -05:00
// FIXME add missing cases
None
}
}