2018-12-05 04:16:20 -06:00
|
|
|
/// Lookup hir elements using position 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".
|
|
|
|
use ra_db::{FileId, FilePosition, Cancelable};
|
|
|
|
use ra_syntax::{
|
2019-01-08 02:28:42 -06:00
|
|
|
SmolStr, TextRange, SyntaxNode,
|
2018-12-27 12:21:10 -06:00
|
|
|
ast::{self, AstNode, NameOwner},
|
2019-01-08 11:44:31 -06:00
|
|
|
algo::find_node_at_offset,
|
2018-12-05 04:16:20 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
use crate::{
|
2019-01-05 03:13:16 -06:00
|
|
|
HirDatabase, Function, SourceItemId,
|
2019-01-06 10:58:10 -06:00
|
|
|
DefKind, DefLoc, AsName, Module,
|
2018-12-05 04:16:20 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Locates the module by `FileId`. Picks topmost module in the file.
|
|
|
|
pub fn module_from_file_id(db: &impl HirDatabase, file_id: FileId) -> Cancelable<Option<Module>> {
|
2019-01-06 10:58:10 -06:00
|
|
|
let module_source = SourceItemId {
|
|
|
|
file_id: file_id.into(),
|
|
|
|
item_id: None,
|
|
|
|
};
|
2018-12-05 04:16:20 -06:00
|
|
|
module_from_source(db, module_source)
|
|
|
|
}
|
|
|
|
|
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,
|
2018-12-27 12:21:10 -06:00
|
|
|
) -> Cancelable<Option<Module>> {
|
|
|
|
let parent_module = module_from_file_id(db, file_id)?;
|
|
|
|
let child_name = decl.name();
|
|
|
|
match (parent_module, child_name) {
|
|
|
|
(Some(parent_module), Some(child_name)) => {
|
2019-01-05 03:13:16 -06:00
|
|
|
if let Some(child) = parent_module.child(db, &child_name.as_name())? {
|
2018-12-27 12:21:10 -06:00
|
|
|
return Ok(Some(child));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
Ok(None)
|
|
|
|
}
|
|
|
|
|
2018-12-05 04:16:20 -06:00
|
|
|
/// Locates the module by position in the source code.
|
|
|
|
pub fn module_from_position(
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
position: FilePosition,
|
|
|
|
) -> Cancelable<Option<Module>> {
|
|
|
|
let file = db.source_file(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-06 10:58:10 -06:00
|
|
|
) -> Cancelable<Option<Module>> {
|
|
|
|
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());
|
|
|
|
let source = SourceItemId {
|
|
|
|
file_id,
|
|
|
|
item_id: Some(item_id),
|
2018-12-05 04:16:20 -06:00
|
|
|
};
|
2019-01-06 10:58:10 -06:00
|
|
|
module_from_source(db, source)
|
2018-12-05 04:16:20 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// 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,
|
2018-12-05 04:16:20 -06:00
|
|
|
) -> Cancelable<Option<Module>> {
|
2019-01-06 10:58:10 -06:00
|
|
|
if let Some(m) = child
|
2018-12-05 04:16:20 -06:00
|
|
|
.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)
|
2018-12-05 04:16:20 -06:00
|
|
|
} else {
|
2019-01-06 10:58:10 -06:00
|
|
|
module_from_file_id(db, file_id.into())
|
|
|
|
}
|
2018-12-05 04:16:20 -06:00
|
|
|
}
|
|
|
|
|
2019-01-06 10:58:10 -06:00
|
|
|
fn module_from_source(db: &impl HirDatabase, source: SourceItemId) -> Cancelable<Option<Module>> {
|
|
|
|
let source_root_id = db.file_source_root(source.file_id.as_original_file());
|
2018-12-05 04:16:20 -06:00
|
|
|
let module_tree = db.module_tree(source_root_id)?;
|
2019-01-06 10:58:10 -06:00
|
|
|
let module_id = ctry!(module_tree.find_module_by_source(source));
|
|
|
|
Ok(Some(Module::from_module_id(db, source_root_id, module_id)?))
|
2018-12-05 04:16:20 -06:00
|
|
|
}
|
|
|
|
|
2019-01-05 06:42:47 -06:00
|
|
|
pub fn function_from_position(
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
position: FilePosition,
|
|
|
|
) -> Cancelable<Option<Function>> {
|
|
|
|
let file = db.source_file(position.file_id);
|
2019-01-05 17:33:58 -06:00
|
|
|
let fn_def = ctry!(find_node_at_offset::<ast::FnDef>(
|
|
|
|
file.syntax(),
|
|
|
|
position.offset
|
|
|
|
));
|
2019-01-05 06:42:47 -06:00
|
|
|
function_from_source(db, position.file_id, fn_def)
|
|
|
|
}
|
|
|
|
|
2018-12-05 04:16:20 -06:00
|
|
|
pub fn function_from_source(
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
file_id: FileId,
|
2019-01-08 02:28:42 -06:00
|
|
|
fn_def: &ast::FnDef,
|
2018-12-05 04:16:20 -06:00
|
|
|
) -> Cancelable<Option<Function>> {
|
|
|
|
let module = ctry!(module_from_child_node(db, file_id, fn_def.syntax())?);
|
2018-12-22 02:01:03 -06:00
|
|
|
let res = function_from_module(db, &module, fn_def);
|
|
|
|
Ok(Some(res))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn function_from_module(
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
module: &Module,
|
2019-01-08 02:28:42 -06:00
|
|
|
fn_def: &ast::FnDef,
|
2018-12-22 02:01:03 -06:00
|
|
|
) -> Function {
|
2019-01-05 03:13:16 -06:00
|
|
|
let loc = module.def_id.loc(db);
|
|
|
|
let file_id = loc.source_item_id.file_id;
|
2019-01-01 14:21:16 -06:00
|
|
|
let file_items = db.file_items(file_id);
|
|
|
|
let item_id = file_items.id_of(file_id, fn_def.syntax());
|
2018-12-18 16:48:46 -06:00
|
|
|
let source_item_id = SourceItemId {
|
2019-01-01 14:21:16 -06:00
|
|
|
file_id,
|
2018-12-18 16:48:46 -06:00
|
|
|
item_id: Some(item_id),
|
|
|
|
};
|
2018-12-05 04:16:20 -06:00
|
|
|
let def_loc = DefLoc {
|
|
|
|
kind: DefKind::Function,
|
2019-01-05 03:13:16 -06:00
|
|
|
source_root_id: loc.source_root_id,
|
|
|
|
module_id: loc.module_id,
|
2018-12-05 04:16:20 -06:00
|
|
|
source_item_id,
|
|
|
|
};
|
2018-12-22 02:01:03 -06:00
|
|
|
Function::new(def_loc.id(db))
|
2018-12-05 04:16:20 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn function_from_child_node(
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
file_id: FileId,
|
2019-01-08 02:28:42 -06:00
|
|
|
node: &SyntaxNode,
|
2018-12-05 04:16:20 -06:00
|
|
|
) -> Cancelable<Option<Function>> {
|
|
|
|
let fn_def = ctry!(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 macro_symbols(
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
file_id: FileId,
|
|
|
|
) -> Cancelable<Vec<(SmolStr, TextRange)>> {
|
|
|
|
let module = match module_from_file_id(db, file_id)? {
|
|
|
|
Some(it) => it,
|
|
|
|
None => return Ok(Vec::new()),
|
|
|
|
};
|
2019-01-05 03:13:16 -06:00
|
|
|
let loc = module.def_id.loc(db);
|
|
|
|
let items = db.input_module_items(loc.source_root_id, loc.module_id)?;
|
2019-01-03 12:28:35 -06:00
|
|
|
let mut res = Vec::new();
|
|
|
|
|
|
|
|
for macro_call_id in items
|
|
|
|
.items
|
|
|
|
.iter()
|
|
|
|
.filter_map(|it| it.id.file_id.as_macro_call_id())
|
|
|
|
{
|
|
|
|
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 02:28:42 -06:00
|
|
|
let macro_call = ast::MacroCall::cast(&syntax).unwrap();
|
2019-01-03 12:28:35 -06: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 03:23:10 -06:00
|
|
|
res.push((name.text().clone(), src_range + off))
|
2019-01-03 12:28:35 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|