rust/crates/ra_hir/src/source_analyzer.rs

386 lines
14 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-04-10 11:15:55 +03:00
use std::sync::Arc;
use either::Either;
use hir_def::{
2019-11-27 17:46:02 +03:00
body::{
scope::{ExprScopes, ScopeId},
BodySourceMap,
},
expr::{ExprId, PatId},
resolver::{resolver_for_scope, Resolver, TypeNs, ValueNs},
AsMacroCall, DefWithBodyId,
};
use hir_expand::{hygiene::Hygiene, name::AsName, HirFileId, InFile};
2020-01-14 14:42:52 +01:00
use hir_ty::{InEnvironment, InferenceResult, TraitEnvironment};
2019-08-04 07:56:29 +07:00
use ra_syntax::{
2019-09-16 13:48:54 +03:00
ast::{self, AstNode},
AstPtr, SyntaxNode, SyntaxNodePtr, TextRange, TextUnit,
2019-08-04 07:56:29 +07:00
};
use crate::{
2020-02-26 13:24:46 +01:00
db::HirDatabase, Adt, Const, EnumVariant, Function, Local, MacroDef, Path, Static, Struct,
Trait, Type, TypeAlias, TypeParam,
};
2019-04-11 15:58:00 +03:00
/// `SourceAnalyzer` is a convenience wrapper which exposes HIR API in terms of
2020-01-15 16:53:01 +01:00
/// original source files. It should not be used inside the HIR itself.
2019-04-10 11:15:55 +03:00
#[derive(Debug)]
pub(crate) struct SourceAnalyzer {
2019-11-16 00:40:54 +03:00
file_id: HirFileId,
pub(crate) resolver: Resolver,
body_source_map: Option<Arc<BodySourceMap>>,
2019-12-08 12:44:14 +01:00
infer: Option<Arc<InferenceResult>>,
2019-11-27 17:46:02 +03:00
scopes: Option<Arc<ExprScopes>>,
2019-04-10 11:15:55 +03:00
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum PathResolution {
/// An item
Def(crate::ModuleDef),
/// A local binding (only value namespace)
2019-11-10 00:32:00 +03:00
Local(Local),
2019-04-10 11:15:55 +03:00
/// A generic parameter
TypeParam(TypeParam),
2019-04-10 11:15:55 +03:00
SelfType(crate::ImplBlock),
2019-06-08 14:48:56 +03:00
Macro(MacroDef),
AssocItem(crate::AssocItem),
2019-04-10 11:15:55 +03:00
}
2019-04-13 11:32:58 +03:00
#[derive(Debug)]
pub struct ReferenceDescriptor {
pub range: TextRange,
pub name: String,
}
2019-04-11 15:51:02 +03:00
impl SourceAnalyzer {
2020-01-14 15:27:05 +01:00
pub(crate) fn new_for_body(
db: &impl HirDatabase,
def: DefWithBodyId,
node: InFile<&SyntaxNode>,
offset: Option<TextUnit>,
) -> SourceAnalyzer {
let (_body, source_map) = db.body_with_source_map(def);
let scopes = db.expr_scopes(def);
let scope = match offset {
None => scope_for(&scopes, &source_map, node),
Some(offset) => scope_for_offset(&scopes, &source_map, node.with_value(offset)),
};
let resolver = resolver_for_scope(db, def, scope);
SourceAnalyzer {
resolver,
body_source_map: Some(source_map),
infer: Some(db.infer(def)),
scopes: Some(scopes),
file_id: node.file_id,
}
}
pub(crate) fn new_for_resolver(
resolver: Resolver,
node: InFile<&SyntaxNode>,
) -> SourceAnalyzer {
SourceAnalyzer {
resolver,
body_source_map: None,
infer: None,
scopes: None,
file_id: node.file_id,
2019-04-10 11:15:55 +03:00
}
}
fn expr_id(&self, expr: &ast::Expr) -> Option<ExprId> {
2019-11-28 12:50:26 +03:00
let src = InFile { file_id: self.file_id, value: expr };
self.body_source_map.as_ref()?.node_expr(src)
}
fn pat_id(&self, pat: &ast::Pat) -> Option<PatId> {
2019-11-28 12:50:26 +03:00
let src = InFile { file_id: self.file_id, value: pat };
self.body_source_map.as_ref()?.node_pat(src)
}
2019-12-23 21:47:11 +08:00
fn expand_expr(
&self,
db: &impl HirDatabase,
expr: InFile<&ast::Expr>,
) -> Option<InFile<ast::Expr>> {
let macro_call = ast::MacroCall::cast(expr.value.syntax().clone())?;
let macro_file =
self.body_source_map.as_ref()?.node_macro_file(expr.with_value(&macro_call))?;
let expanded = db.parse_or_expand(macro_file)?;
let kind = expanded.kind();
let expr = InFile::new(macro_file, ast::Expr::cast(expanded)?);
if ast::MacroCall::can_cast(kind) {
self.expand_expr(db, expr.as_ref())
} else {
Some(expr)
}
}
2020-01-24 14:32:47 +01:00
fn trait_env(&self, db: &impl HirDatabase) -> Arc<TraitEnvironment> {
2020-01-24 15:22:00 +01:00
TraitEnvironment::lower(db, &self.resolver)
2020-01-24 14:32:47 +01:00
}
pub(crate) fn type_of(&self, db: &impl HirDatabase, expr: &ast::Expr) -> Option<Type> {
2019-12-23 21:47:11 +08:00
let expr_id = if let Some(expr) = self.expand_expr(db, InFile::new(self.file_id, expr)) {
2019-12-23 13:18:28 +08:00
self.body_source_map.as_ref()?.node_expr(expr.as_ref())?
} else {
self.expr_id(expr)?
};
let ty = self.infer.as_ref()?[expr_id].clone();
2020-01-24 14:32:47 +01:00
let environment = self.trait_env(db);
Some(Type { krate: self.resolver.krate()?, ty: InEnvironment { value: ty, environment } })
2019-04-10 11:15:55 +03:00
}
pub(crate) fn type_of_pat(&self, db: &impl HirDatabase, pat: &ast::Pat) -> Option<Type> {
let pat_id = self.pat_id(pat)?;
let ty = self.infer.as_ref()?[pat_id].clone();
2020-01-24 14:32:47 +01:00
let environment = self.trait_env(db);
Some(Type { krate: self.resolver.krate()?, ty: InEnvironment { value: ty, environment } })
}
pub(crate) fn resolve_method_call(&self, call: &ast::MethodCallExpr) -> Option<Function> {
let expr_id = self.expr_id(&call.clone().into())?;
2019-11-27 15:56:20 +03:00
self.infer.as_ref()?.method_resolution(expr_id).map(Function::from)
2019-04-10 11:15:55 +03:00
}
pub(crate) fn resolve_field(&self, field: &ast::FieldExpr) -> Option<crate::StructField> {
let expr_id = self.expr_id(&field.clone().into())?;
2019-11-27 15:56:20 +03:00
self.infer.as_ref()?.field_resolution(expr_id).map(|it| it.into())
2019-04-10 11:15:55 +03:00
}
pub(crate) fn resolve_record_field(
&self,
field: &ast::RecordField,
) -> Option<crate::StructField> {
2019-12-20 14:47:01 +01:00
let expr_id = match field.expr() {
Some(it) => self.expr_id(&it)?,
None => {
let src = InFile { file_id: self.file_id, value: field };
self.body_source_map.as_ref()?.field_init_shorthand_expr(src)?
}
};
2019-11-27 15:56:20 +03:00
self.infer.as_ref()?.record_field_resolution(expr_id).map(|it| it.into())
2019-11-24 20:06:55 +03:00
}
pub(crate) fn resolve_record_literal(
&self,
record_lit: &ast::RecordLit,
) -> Option<crate::VariantDef> {
let expr_id = self.expr_id(&record_lit.clone().into())?;
2019-11-27 16:25:01 +03:00
self.infer.as_ref()?.variant_resolution_for_expr(expr_id).map(|it| it.into())
2019-07-21 14:11:45 +03:00
}
pub(crate) fn resolve_record_pattern(
&self,
record_pat: &ast::RecordPat,
) -> Option<crate::VariantDef> {
let pat_id = self.pat_id(&record_pat.clone().into())?;
2019-11-27 16:25:01 +03:00
self.infer.as_ref()?.variant_resolution_for_pat(pat_id).map(|it| it.into())
2019-07-12 19:56:18 +03:00
}
pub(crate) fn resolve_macro_call(
2019-06-01 19:34:19 +08:00
&self,
db: &impl HirDatabase,
2019-11-28 12:50:26 +03:00
macro_call: InFile<&ast::MacroCall>,
2019-06-08 14:48:56 +03:00
) -> Option<MacroDef> {
let hygiene = Hygiene::new(db, macro_call.file_id);
let path = macro_call.value.path().and_then(|ast| Path::from_src(ast, &hygiene))?;
self.resolver.resolve_path_as_macro(db, path.mod_path()).map(|it| it.into())
2019-04-24 21:16:50 +01:00
}
pub(crate) fn resolve_path(
2019-04-13 11:00:15 +03:00
&self,
db: &impl HirDatabase,
path: &ast::Path,
) -> Option<PathResolution> {
2019-04-10 11:15:55 +03:00
if let Some(path_expr) = path.syntax().parent().and_then(ast::PathExpr::cast) {
let expr_id = self.expr_id(&path_expr.into())?;
2019-04-10 11:15:55 +03:00
if let Some(assoc) = self.infer.as_ref()?.assoc_resolutions_for_expr(expr_id) {
2019-11-27 16:02:33 +03:00
return Some(PathResolution::AssocItem(assoc.into()));
2019-04-10 11:15:55 +03:00
}
}
if let Some(path_pat) = path.syntax().parent().and_then(ast::PathPat::cast) {
let pat_id = self.pat_id(&path_pat.into())?;
2019-04-10 11:15:55 +03:00
if let Some(assoc) = self.infer.as_ref()?.assoc_resolutions_for_pat(pat_id) {
2019-11-27 16:02:33 +03:00
return Some(PathResolution::AssocItem(assoc.into()));
2019-04-10 11:15:55 +03:00
}
}
// This must be a normal source file rather than macro file.
2019-07-19 10:43:01 +03:00
let hir_path = crate::Path::from_ast(path.clone())?;
resolve_hir_path(db, &self.resolver, &hir_path)
2019-04-10 11:15:55 +03:00
}
2019-04-13 00:56:57 +03:00
2020-02-26 13:24:46 +01:00
fn resolve_local_name(
&self,
name_ref: &ast::NameRef,
) -> Option<Either<AstPtr<ast::Pat>, AstPtr<ast::SelfParam>>> {
let name = name_ref.as_name();
let source_map = self.body_source_map.as_ref()?;
let scopes = self.scopes.as_ref()?;
2019-11-28 12:50:26 +03:00
let scope = scope_for(scopes, source_map, InFile::new(self.file_id, name_ref.syntax()))?;
2019-11-15 14:47:26 +03:00
let entry = scopes.resolve_name_in_scope(scope, &name)?;
2020-02-26 13:24:46 +01:00
Some(source_map.pat_syntax(entry.pat())?.value)
2019-04-13 09:31:03 +03:00
}
2019-11-15 14:15:04 +03:00
// FIXME: we only use this in `inline_local_variable` assist, ideally, we
// should switch to general reference search infra there.
pub(crate) fn find_all_refs(&self, pat: &ast::BindPat) -> Vec<ReferenceDescriptor> {
let fn_def = pat.syntax().ancestors().find_map(ast::FnDef::cast).unwrap();
let ptr = Either::Left(AstPtr::new(&ast::Pat::from(pat.clone())));
fn_def
.syntax()
.descendants()
.filter_map(ast::NameRef::cast)
2019-07-19 10:43:01 +03:00
.filter(|name_ref| match self.resolve_local_name(&name_ref) {
None => false,
2020-02-26 13:24:46 +01:00
Some(d_ptr) => d_ptr == ptr,
})
.map(|name_ref| ReferenceDescriptor {
2019-04-13 11:32:58 +03:00
name: name_ref.text().to_string(),
2019-07-20 12:58:27 +03:00
range: name_ref.syntax().text_range(),
})
.collect()
2019-04-13 09:31:03 +03:00
}
pub(crate) fn expand(
2019-11-20 12:21:31 +08:00
&self,
db: &impl HirDatabase,
2019-11-28 12:50:26 +03:00
macro_call: InFile<&ast::MacroCall>,
) -> Option<HirFileId> {
let macro_call_id =
macro_call.as_call_id(db, |path| self.resolver.resolve_path_as_macro(db, &path))?;
Some(macro_call_id.as_file())
2019-11-16 16:49:26 +03:00
}
}
fn scope_for(
scopes: &ExprScopes,
source_map: &BodySourceMap,
2019-11-28 12:50:26 +03:00
node: InFile<&SyntaxNode>,
) -> Option<ScopeId> {
2019-11-20 09:40:36 +03:00
node.value
2019-11-16 00:05:10 +03:00
.ancestors()
2019-09-02 21:23:19 +03:00
.filter_map(ast::Expr::cast)
2019-11-28 12:50:26 +03:00
.filter_map(|it| source_map.node_expr(InFile::new(node.file_id, &it)))
.find_map(|it| scopes.scope_for(it))
}
fn scope_for_offset(
scopes: &ExprScopes,
source_map: &BodySourceMap,
2019-11-28 12:50:26 +03:00
offset: InFile<TextUnit>,
) -> Option<ScopeId> {
scopes
2019-04-13 11:29:47 +03:00
.scope_by_expr()
.iter()
2019-09-02 21:23:19 +03:00
.filter_map(|(id, scope)| {
let source = source_map.expr_syntax(*id)?;
// FIXME: correctly handle macro expansion
2019-11-16 00:05:10 +03:00
if source.file_id != offset.file_id {
return None;
}
let syntax_node_ptr =
2019-11-20 09:40:36 +03:00
source.value.either(|it| it.syntax_node_ptr(), |it| it.syntax_node_ptr());
Some((syntax_node_ptr, scope))
2019-09-02 21:23:19 +03:00
})
// find containing scope
.min_by_key(|(ptr, _scope)| {
2019-11-16 00:05:10 +03:00
(
2019-11-20 09:40:36 +03:00
!(ptr.range().start() <= offset.value && offset.value <= ptr.range().end()),
2019-11-16 00:05:10 +03:00
ptr.range().len(),
)
})
.map(|(ptr, scope)| {
2019-11-20 09:40:36 +03:00
adjust(scopes, source_map, ptr, offset.file_id, offset.value).unwrap_or(*scope)
})
}
pub(crate) fn resolve_hir_path(
db: &impl HirDatabase,
resolver: &Resolver,
path: &crate::Path,
) -> Option<PathResolution> {
let types = resolver.resolve_path_in_type_ns_fully(db, path.mod_path()).map(|ty| match ty {
TypeNs::SelfType(it) => PathResolution::SelfType(it.into()),
TypeNs::GenericParam(id) => PathResolution::TypeParam(TypeParam { id }),
TypeNs::AdtSelfType(it) | TypeNs::AdtId(it) => PathResolution::Def(Adt::from(it).into()),
TypeNs::EnumVariantId(it) => PathResolution::Def(EnumVariant::from(it).into()),
TypeNs::TypeAliasId(it) => PathResolution::Def(TypeAlias::from(it).into()),
TypeNs::BuiltinType(it) => PathResolution::Def(it.into()),
TypeNs::TraitId(it) => PathResolution::Def(Trait::from(it).into()),
});
let body_owner = resolver.body_owner();
let values = resolver.resolve_path_in_value_ns_fully(db, path.mod_path()).and_then(|val| {
let res = match val {
ValueNs::LocalBinding(pat_id) => {
let var = Local { parent: body_owner?.into(), pat_id };
PathResolution::Local(var)
}
ValueNs::FunctionId(it) => PathResolution::Def(Function::from(it).into()),
ValueNs::ConstId(it) => PathResolution::Def(Const::from(it).into()),
ValueNs::StaticId(it) => PathResolution::Def(Static::from(it).into()),
ValueNs::StructId(it) => PathResolution::Def(Struct::from(it).into()),
ValueNs::EnumVariantId(it) => PathResolution::Def(EnumVariant::from(it).into()),
};
Some(res)
});
let items = resolver
.resolve_module_path_in_items(db, path.mod_path())
.take_types()
.map(|it| PathResolution::Def(it.into()));
types.or(values).or(items).or_else(|| {
resolver
.resolve_path_as_macro(db, path.mod_path())
.map(|def| PathResolution::Macro(def.into()))
})
}
// XXX: during completion, cursor might be outside of any particular
// expression. Try to figure out the correct scope...
fn adjust(
scopes: &ExprScopes,
source_map: &BodySourceMap,
ptr: SyntaxNodePtr,
file_id: HirFileId,
offset: TextUnit,
) -> Option<ScopeId> {
let r = ptr.range();
let child_scopes = scopes
2019-04-13 11:29:47 +03:00
.scope_by_expr()
.iter()
2019-09-02 21:23:19 +03:00
.filter_map(|(id, scope)| {
let source = source_map.expr_syntax(*id)?;
// FIXME: correctly handle macro expansion
if source.file_id != file_id {
return None;
}
let syntax_node_ptr =
2019-11-20 09:40:36 +03:00
source.value.either(|it| it.syntax_node_ptr(), |it| it.syntax_node_ptr());
Some((syntax_node_ptr, scope))
2019-09-02 21:23:19 +03:00
})
.map(|(ptr, scope)| (ptr.range(), scope))
.filter(|(range, _)| range.start() <= offset && range.is_subrange(&r) && *range != r);
child_scopes
.max_by(|(r1, _), (r2, _)| {
if r2.is_subrange(&r1) {
std::cmp::Ordering::Greater
} else if r1.is_subrange(&r2) {
std::cmp::Ordering::Less
} else {
r1.start().cmp(&r2.start())
}
})
.map(|(_ptr, scope)| *scope)
2019-04-10 11:15:55 +03:00
}