rust/crates/ra_hir_def/src/lib.rs

595 lines
16 KiB
Rust
Raw Normal View History

2019-10-30 05:10:38 -05:00
//! `hir_def` crate contains everything between macro expansion and type
//! inference.
//!
//! It defines various items (structs, enums, traits) which comprises Rust code,
//! as well as an algorithm for resolving paths to such entities.
//!
//! Note that `hir_def` is a work in progress, so not all of the above is
//! actually true.
pub mod db;
2019-10-30 08:12:55 -05:00
pub mod attr;
pub mod path;
pub mod type_ref;
2019-10-31 02:51:54 -05:00
pub mod builtin_type;
2019-10-31 08:40:36 -05:00
pub mod adt;
2019-10-31 10:45:10 -05:00
pub mod diagnostics;
2019-11-12 06:09:25 -06:00
pub mod expr;
pub mod body;
2019-11-20 03:25:02 -06:00
pub mod generics;
2019-11-21 06:39:09 -06:00
pub mod resolver;
2019-11-22 08:32:10 -06:00
pub mod data;
2019-11-23 03:58:01 -06:00
pub mod lang_item;
2019-11-23 05:43:38 -06:00
pub mod docs;
2019-11-23 07:53:16 -06:00
pub mod per_ns;
2019-10-30 08:12:55 -05:00
mod trace;
2019-11-23 07:53:16 -06:00
mod nameres;
#[cfg(test)]
mod test_db;
2019-11-03 14:44:23 -06:00
#[cfg(test)]
mod marks;
2019-10-30 05:10:38 -05:00
use std::hash::{Hash, Hasher};
2019-11-23 02:14:10 -06:00
use hir_expand::{ast_id_map::FileAstId, db::AstDatabase, AstId, HirFileId, MacroDefId, Source};
use ra_arena::{impl_arena_id, map::ArenaMap, RawId};
2019-10-30 08:12:55 -05:00
use ra_db::{salsa, CrateId, FileId};
2019-10-30 05:10:38 -05:00
use ra_syntax::{ast, AstNode, SyntaxNode};
2019-10-31 03:23:30 -05:00
use crate::{builtin_type::BuiltinType, db::InternDatabase};
2019-10-30 05:10:38 -05:00
2019-10-30 08:12:55 -05:00
pub enum ModuleSource {
SourceFile(ast::SourceFile),
Module(ast::Module),
}
impl ModuleSource {
pub fn new(
2019-11-23 05:44:43 -06:00
db: &impl db::DefDatabase,
2019-10-30 08:12:55 -05:00
file_id: Option<FileId>,
decl_id: Option<AstId<ast::Module>>,
) -> ModuleSource {
match (file_id, decl_id) {
(Some(file_id), _) => {
let source_file = db.parse(file_id).tree();
ModuleSource::SourceFile(source_file)
}
(None, Some(item_id)) => {
let module = item_id.to_node(db);
assert!(module.item_list().is_some(), "expected inline module");
ModuleSource::Module(module)
}
(None, None) => panic!(),
}
}
// FIXME: this methods do not belong here
2019-11-23 05:44:43 -06:00
pub fn from_position(db: &impl db::DefDatabase, position: ra_db::FilePosition) -> ModuleSource {
2019-10-30 08:12:55 -05:00
let parse = db.parse(position.file_id);
match &ra_syntax::algo::find_node_at_offset::<ast::Module>(
parse.tree().syntax(),
position.offset,
) {
Some(m) if !m.has_semi() => ModuleSource::Module(m.clone()),
_ => {
let source_file = parse.tree();
ModuleSource::SourceFile(source_file)
}
}
}
2019-11-23 05:44:43 -06:00
pub fn from_child_node(db: &impl db::DefDatabase, child: Source<&SyntaxNode>) -> ModuleSource {
if let Some(m) =
2019-11-20 00:40:36 -06:00
child.value.ancestors().filter_map(ast::Module::cast).find(|it| !it.has_semi())
{
2019-10-30 08:12:55 -05:00
ModuleSource::Module(m)
} else {
let file_id = child.file_id.original_file(db);
2019-10-30 08:12:55 -05:00
let source_file = db.parse(file_id).tree();
ModuleSource::SourceFile(source_file)
}
}
2019-11-23 05:44:43 -06:00
pub fn from_file_id(db: &impl db::DefDatabase, file_id: FileId) -> ModuleSource {
2019-10-30 08:12:55 -05:00
let source_file = db.parse(file_id).tree();
ModuleSource::SourceFile(source_file)
}
}
2019-10-30 04:27:54 -05:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-11-23 07:49:05 -06:00
pub struct LocalImportId(RawId);
impl_arena_id!(LocalImportId);
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-10-30 04:27:54 -05:00
pub struct ModuleId {
pub krate: CrateId,
2019-11-23 07:49:53 -06:00
pub module_id: LocalModuleId,
2019-10-30 04:27:54 -05:00
}
/// An ID of a module, **local** to a specific crate
// FIXME: rename to `LocalModuleId`.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
2019-11-23 07:49:53 -06:00
pub struct LocalModuleId(RawId);
impl_arena_id!(LocalModuleId);
2019-10-30 05:10:38 -05:00
macro_rules! impl_intern_key {
($name:ident) => {
impl salsa::InternKey for $name {
fn from_intern_id(v: salsa::InternId) -> Self {
$name(v)
}
fn as_intern_id(&self) -> salsa::InternId {
self.0
}
}
};
}
#[derive(Debug)]
pub struct ItemLoc<N: AstNode> {
pub(crate) module: ModuleId,
ast_id: AstId<N>,
}
impl<N: AstNode> PartialEq for ItemLoc<N> {
fn eq(&self, other: &Self) -> bool {
self.module == other.module && self.ast_id == other.ast_id
}
}
impl<N: AstNode> Eq for ItemLoc<N> {}
impl<N: AstNode> Hash for ItemLoc<N> {
fn hash<H: Hasher>(&self, hasher: &mut H) {
self.module.hash(hasher);
self.ast_id.hash(hasher);
}
}
impl<N: AstNode> Clone for ItemLoc<N> {
fn clone(&self) -> ItemLoc<N> {
ItemLoc { module: self.module, ast_id: self.ast_id }
}
}
#[derive(Clone, Copy)]
pub struct LocationCtx<DB> {
db: DB,
module: ModuleId,
file_id: HirFileId,
}
impl<'a, DB> LocationCtx<&'a DB> {
pub fn new(db: &'a DB, module: ModuleId, file_id: HirFileId) -> LocationCtx<&'a DB> {
LocationCtx { db, module, file_id }
}
}
impl<'a, DB: AstDatabase + InternDatabase> LocationCtx<&'a DB> {
pub fn to_def<N, DEF>(self, ast: &N) -> DEF
where
N: AstNode,
DEF: AstItemDef<N>,
{
DEF::from_ast(self, ast)
}
}
pub trait AstItemDef<N: AstNode>: salsa::InternKey + Clone {
fn intern(db: &impl InternDatabase, loc: ItemLoc<N>) -> Self;
fn lookup_intern(self, db: &impl InternDatabase) -> ItemLoc<N>;
fn from_ast(ctx: LocationCtx<&(impl AstDatabase + InternDatabase)>, ast: &N) -> Self {
let items = ctx.db.ast_id_map(ctx.file_id);
let item_id = items.ast_id(ast);
Self::from_ast_id(ctx, item_id)
}
fn from_ast_id(ctx: LocationCtx<&impl InternDatabase>, ast_id: FileAstId<N>) -> Self {
let loc = ItemLoc { module: ctx.module, ast_id: AstId::new(ctx.file_id, ast_id) };
Self::intern(ctx.db, loc)
}
fn source(self, db: &(impl AstDatabase + InternDatabase)) -> Source<N> {
let loc = self.lookup_intern(db);
2019-11-20 00:40:36 -06:00
let value = loc.ast_id.to_node(db);
Source { file_id: loc.ast_id.file_id(), value }
2019-10-30 05:10:38 -05:00
}
fn module(self, db: &impl InternDatabase) -> ModuleId {
let loc = self.lookup_intern(db);
loc.module
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct FunctionId(salsa::InternId);
impl_intern_key!(FunctionId);
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct FunctionLoc {
2019-11-20 08:49:57 -06:00
pub container: ContainerId,
pub ast_id: AstId<ast::FnDef>,
}
impl Intern for FunctionLoc {
type ID = FunctionId;
2019-11-23 05:44:43 -06:00
fn intern(self, db: &impl db::DefDatabase) -> FunctionId {
db.intern_function(self)
2019-10-30 05:10:38 -05:00
}
}
impl Lookup for FunctionId {
type Data = FunctionLoc;
2019-11-23 05:44:43 -06:00
fn lookup(&self, db: &impl db::DefDatabase) -> FunctionLoc {
db.lookup_intern_function(*self)
2019-10-30 05:10:38 -05:00
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-11-09 06:34:00 -06:00
pub struct StructOrUnionId(salsa::InternId);
impl_intern_key!(StructOrUnionId);
impl AstItemDef<ast::StructDef> for StructOrUnionId {
2019-10-30 05:10:38 -05:00
fn intern(db: &impl InternDatabase, loc: ItemLoc<ast::StructDef>) -> Self {
2019-11-09 06:34:00 -06:00
db.intern_struct_or_union(loc)
2019-10-30 05:10:38 -05:00
}
fn lookup_intern(self, db: &impl InternDatabase) -> ItemLoc<ast::StructDef> {
2019-11-09 06:34:00 -06:00
db.lookup_intern_struct_or_union(self)
2019-10-30 05:10:38 -05:00
}
}
2019-10-30 08:12:55 -05:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-11-09 06:34:00 -06:00
pub struct StructId(pub StructOrUnionId);
impl From<StructId> for StructOrUnionId {
fn from(id: StructId) -> StructOrUnionId {
id.0
2019-10-30 08:12:55 -05:00
}
2019-11-09 06:34:00 -06:00
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct UnionId(pub StructOrUnionId);
impl From<UnionId> for StructOrUnionId {
fn from(id: UnionId) -> StructOrUnionId {
id.0
2019-10-30 08:12:55 -05:00
}
}
2019-10-30 05:10:38 -05:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct EnumId(salsa::InternId);
impl_intern_key!(EnumId);
impl AstItemDef<ast::EnumDef> for EnumId {
fn intern(db: &impl InternDatabase, loc: ItemLoc<ast::EnumDef>) -> Self {
db.intern_enum(loc)
}
fn lookup_intern(self, db: &impl InternDatabase) -> ItemLoc<ast::EnumDef> {
db.lookup_intern_enum(self)
}
}
2019-10-30 08:12:55 -05:00
// FIXME: rename to `VariantId`, only enums can ave variants
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct EnumVariantId {
2019-10-31 10:45:10 -05:00
pub parent: EnumId,
pub local_id: LocalEnumVariantId,
2019-10-30 08:12:55 -05:00
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-10-31 03:23:30 -05:00
pub struct LocalEnumVariantId(RawId);
2019-10-30 08:12:55 -05:00
impl_arena_id!(LocalEnumVariantId);
2019-10-31 08:40:36 -05:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum VariantId {
EnumVariantId(EnumVariantId),
StructId(StructId),
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct StructFieldId {
2019-11-23 02:14:10 -06:00
pub parent: VariantId,
pub local_id: LocalStructFieldId,
2019-10-31 08:40:36 -05:00
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct LocalStructFieldId(RawId);
impl_arena_id!(LocalStructFieldId);
2019-10-30 05:10:38 -05:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct ConstId(salsa::InternId);
impl_intern_key!(ConstId);
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct ConstLoc {
pub container: ContainerId,
pub ast_id: AstId<ast::ConstDef>,
}
impl Intern for ConstLoc {
type ID = ConstId;
2019-11-23 05:44:43 -06:00
fn intern(self, db: &impl db::DefDatabase) -> ConstId {
db.intern_const(self)
2019-10-30 05:10:38 -05:00
}
}
impl Lookup for ConstId {
type Data = ConstLoc;
2019-11-23 05:44:43 -06:00
fn lookup(&self, db: &impl db::DefDatabase) -> ConstLoc {
db.lookup_intern_const(*self)
2019-10-30 05:10:38 -05:00
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct StaticId(salsa::InternId);
impl_intern_key!(StaticId);
impl AstItemDef<ast::StaticDef> for StaticId {
fn intern(db: &impl InternDatabase, loc: ItemLoc<ast::StaticDef>) -> Self {
db.intern_static(loc)
}
fn lookup_intern(self, db: &impl InternDatabase) -> ItemLoc<ast::StaticDef> {
db.lookup_intern_static(self)
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct TraitId(salsa::InternId);
impl_intern_key!(TraitId);
impl AstItemDef<ast::TraitDef> for TraitId {
fn intern(db: &impl InternDatabase, loc: ItemLoc<ast::TraitDef>) -> Self {
db.intern_trait(loc)
}
fn lookup_intern(self, db: &impl InternDatabase) -> ItemLoc<ast::TraitDef> {
db.lookup_intern_trait(self)
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct TypeAliasId(salsa::InternId);
impl_intern_key!(TypeAliasId);
2019-11-20 08:39:58 -06:00
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct TypeAliasLoc {
2019-11-20 08:49:57 -06:00
pub container: ContainerId,
2019-11-20 08:39:58 -06:00
pub ast_id: AstId<ast::TypeAliasDef>,
}
impl Intern for TypeAliasLoc {
type ID = TypeAliasId;
2019-11-23 05:44:43 -06:00
fn intern(self, db: &impl db::DefDatabase) -> TypeAliasId {
2019-11-20 08:39:58 -06:00
db.intern_type_alias(self)
2019-10-30 05:10:38 -05:00
}
2019-11-20 08:39:58 -06:00
}
impl Lookup for TypeAliasId {
type Data = TypeAliasLoc;
2019-11-23 05:44:43 -06:00
fn lookup(&self, db: &impl db::DefDatabase) -> TypeAliasLoc {
2019-11-20 08:39:58 -06:00
db.lookup_intern_type_alias(*self)
2019-10-30 05:10:38 -05:00
}
}
2019-10-31 03:23:30 -05:00
2019-11-15 10:14:50 -06:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct ImplId(salsa::InternId);
impl_intern_key!(ImplId);
impl AstItemDef<ast::ImplBlock> for ImplId {
fn intern(db: &impl InternDatabase, loc: ItemLoc<ast::ImplBlock>) -> Self {
db.intern_impl(loc)
}
fn lookup_intern(self, db: &impl InternDatabase) -> ItemLoc<ast::ImplBlock> {
db.lookup_intern_impl(self)
}
}
2019-10-31 03:23:30 -05:00
macro_rules! impl_froms {
($e:ident: $($v:ident $(($($sv:ident),*))?),*) => {
$(
impl From<$v> for $e {
fn from(it: $v) -> $e {
$e::$v(it)
}
}
$($(
impl From<$sv> for $e {
fn from(it: $sv) -> $e {
$e::$v($v::$sv(it))
}
}
)*)?
)*
}
}
2019-11-20 08:49:57 -06:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum ContainerId {
ModuleId(ModuleId),
ImplId(ImplId),
TraitId(TraitId),
}
2019-10-31 03:23:30 -05:00
/// A Data Type
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub enum AdtId {
StructId(StructId),
UnionId(UnionId),
EnumId(EnumId),
}
impl_froms!(AdtId: StructId, UnionId, EnumId);
/// The defs which can be visible in the module.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum ModuleDefId {
ModuleId(ModuleId),
FunctionId(FunctionId),
AdtId(AdtId),
// Can't be directly declared, but can be imported.
EnumVariantId(EnumVariantId),
ConstId(ConstId),
StaticId(StaticId),
TraitId(TraitId),
TypeAliasId(TypeAliasId),
BuiltinType(BuiltinType),
}
impl_froms!(
ModuleDefId: ModuleId,
FunctionId,
AdtId(StructId, EnumId, UnionId),
EnumVariantId,
ConstId,
StaticId,
TraitId,
TypeAliasId,
BuiltinType
);
2019-11-14 08:37:22 -06:00
/// The defs which have a body.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum DefWithBodyId {
FunctionId(FunctionId),
StaticId(StaticId),
ConstId(ConstId),
}
impl_froms!(DefWithBodyId: FunctionId, ConstId, StaticId);
2019-11-15 12:28:00 -06:00
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum AssocItemId {
FunctionId(FunctionId),
ConstId(ConstId),
TypeAliasId(TypeAliasId),
}
// FIXME: not every function, ... is actually an assoc item. maybe we should make
// sure that you can only turn actual assoc items into AssocItemIds. This would
// require not implementing From, and instead having some checked way of
// casting them, and somehow making the constructors private, which would be annoying.
impl_froms!(AssocItemId: FunctionId, ConstId, TypeAliasId);
2019-11-20 03:25:02 -06:00
#[derive(Clone, Copy, PartialEq, Eq, Debug, Hash)]
pub enum GenericDefId {
FunctionId(FunctionId),
AdtId(AdtId),
TraitId(TraitId),
TypeAliasId(TypeAliasId),
ImplId(ImplId),
// enum variants cannot have generics themselves, but their parent enums
// can, and this makes some code easier to write
EnumVariantId(EnumVariantId),
// consts can have type parameters from their parents (i.e. associated consts of traits)
ConstId(ConstId),
}
impl_froms!(
GenericDefId: FunctionId,
AdtId(StructId, EnumId, UnionId),
TraitId,
TypeAliasId,
ImplId,
EnumVariantId,
ConstId
);
2019-11-23 02:14:10 -06:00
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub enum AttrDefId {
ModuleId(ModuleId),
StructFieldId(StructFieldId),
AdtId(AdtId),
FunctionId(FunctionId),
EnumVariantId(EnumVariantId),
StaticId(StaticId),
ConstId(ConstId),
TraitId(TraitId),
TypeAliasId(TypeAliasId),
MacroDefId(MacroDefId),
ImplId(ImplId),
2019-11-23 02:14:10 -06:00
}
impl_froms!(
AttrDefId: ModuleId,
StructFieldId,
AdtId(StructId, EnumId, UnionId),
EnumVariantId,
StaticId,
ConstId,
FunctionId,
TraitId,
TypeAliasId,
MacroDefId,
ImplId
2019-11-23 02:14:10 -06:00
);
trait Intern {
type ID;
2019-11-23 05:44:43 -06:00
fn intern(self, db: &impl db::DefDatabase) -> Self::ID;
}
pub trait Lookup {
type Data;
2019-11-23 05:44:43 -06:00
fn lookup(&self, db: &impl db::DefDatabase) -> Self::Data;
}
pub trait HasModule {
2019-11-23 05:44:43 -06:00
fn module(&self, db: &impl db::DefDatabase) -> ModuleId;
}
impl HasModule for FunctionLoc {
2019-11-23 05:44:43 -06:00
fn module(&self, db: &impl db::DefDatabase) -> ModuleId {
match self.container {
2019-11-20 08:49:57 -06:00
ContainerId::ModuleId(it) => it,
ContainerId::ImplId(it) => it.module(db),
ContainerId::TraitId(it) => it.module(db),
}
}
}
2019-11-20 08:39:58 -06:00
impl HasModule for TypeAliasLoc {
2019-11-23 05:44:43 -06:00
fn module(&self, db: &impl db::DefDatabase) -> ModuleId {
2019-11-20 08:39:58 -06:00
match self.container {
2019-11-20 08:49:57 -06:00
ContainerId::ModuleId(it) => it,
ContainerId::ImplId(it) => it.module(db),
ContainerId::TraitId(it) => it.module(db),
2019-11-20 08:39:58 -06:00
}
}
}
impl HasModule for ConstLoc {
2019-11-23 05:44:43 -06:00
fn module(&self, db: &impl db::DefDatabase) -> ModuleId {
match self.container {
ContainerId::ModuleId(it) => it,
ContainerId::ImplId(it) => it.module(db),
ContainerId::TraitId(it) => it.module(db),
}
}
}
pub trait HasSource {
type Value;
2019-11-23 05:44:43 -06:00
fn source(&self, db: &impl db::DefDatabase) -> Source<Self::Value>;
}
impl HasSource for FunctionLoc {
type Value = ast::FnDef;
2019-11-23 05:44:43 -06:00
fn source(&self, db: &impl db::DefDatabase) -> Source<ast::FnDef> {
let node = self.ast_id.to_node(db);
Source::new(self.ast_id.file_id(), node)
}
}
2019-11-20 08:39:58 -06:00
impl HasSource for TypeAliasLoc {
type Value = ast::TypeAliasDef;
2019-11-23 05:44:43 -06:00
fn source(&self, db: &impl db::DefDatabase) -> Source<ast::TypeAliasDef> {
2019-11-20 08:39:58 -06:00
let node = self.ast_id.to_node(db);
Source::new(self.ast_id.file_id(), node)
}
}
impl HasSource for ConstLoc {
type Value = ast::ConstDef;
2019-11-23 05:44:43 -06:00
fn source(&self, db: &impl db::DefDatabase) -> Source<ast::ConstDef> {
let node = self.ast_id.to_node(db);
Source::new(self.ast_id.file_id(), node)
}
}
pub trait HasChildSource {
type ChildId;
type Value;
fn child_source(
&self,
2019-11-23 05:44:43 -06:00
db: &impl db::DefDatabase,
) -> Source<ArenaMap<Self::ChildId, Self::Value>>;
}