rust/crates/ra_hir/src/code_model.rs

1300 lines
39 KiB
Rust
Raw Normal View History

//! FIXME: write short doc here
2019-01-08 15:19:37 +03:00
use std::sync::Arc;
use either::Either;
2019-10-30 17:19:30 +03:00
use hir_def::{
adt::StructKind,
2019-10-31 16:40:36 +03:00
adt::VariantData,
2019-10-31 10:51:54 +03:00
builtin_type::BuiltinType,
2019-11-23 14:43:38 +03:00
docs::Documentation,
2019-11-27 17:46:02 +03:00
expr::{BindingAnnotation, Pat, PatId},
2019-11-23 16:53:16 +03:00
per_ns::PerNs,
2019-11-26 16:59:24 +03:00
resolver::HasResolver,
type_ref::{Mutability, TypeRef},
2020-02-12 15:31:44 +01:00
AdtId, AssocContainerId, ConstId, DefWithBodyId, EnumId, FunctionId, GenericDefId, HasModule,
ImplId, LocalEnumVariantId, LocalModuleId, LocalStructFieldId, Lookup, ModuleId, StaticId,
StructId, TraitId, TypeAliasId, TypeParamId, UnionId,
2019-10-30 17:19:30 +03:00
};
2019-11-02 23:42:38 +03:00
use hir_expand::{
diagnostics::DiagnosticSink,
2019-12-13 22:01:06 +01:00
name::{name, AsName},
2019-12-03 15:24:02 -05:00
MacroDefId,
2019-11-02 23:42:38 +03:00
};
2019-12-08 12:44:14 +01:00
use hir_ty::{
2020-01-14 14:42:52 +01:00
autoderef, display::HirFormatter, expr::ExprValidator, method_resolution, ApplicationTy,
2020-02-07 15:13:15 +01:00
Canonical, InEnvironment, Substs, TraitEnvironment, Ty, TyDefId, TypeCtor,
2019-12-08 12:44:14 +01:00
};
2019-12-08 12:01:45 +01:00
use ra_db::{CrateId, Edition, FileId};
use ra_prof::profile;
2020-02-12 15:31:44 +01:00
use ra_syntax::{
2020-03-03 18:22:52 +01:00
ast::{self, AttrsOwner, NameOwner},
2020-02-12 15:31:44 +01:00
AstNode,
};
use rustc_hash::FxHashSet;
2019-01-05 00:02:05 +03:00
2019-01-08 15:27:00 +03:00
use crate::{
2019-11-22 18:46:39 +03:00
db::{DefDatabase, HirDatabase},
has_source::HasSource,
CallableDef, HirDisplay, InFile, Name,
2019-01-08 15:27:00 +03:00
};
2019-01-05 00:02:05 +03:00
/// hir::Crate describes a single crate. It's the main interface with which
/// a crate's dependencies interact. Mostly, it should be just a proxy for the
2019-01-05 00:02:05 +03:00
/// root module.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-05 00:02:05 +03:00
pub struct Crate {
2019-12-08 12:01:45 +01:00
pub(crate) id: CrateId,
2019-01-05 00:02:05 +03:00
}
#[derive(Debug)]
pub struct CrateDependency {
pub krate: Crate,
pub name: Name,
}
impl Crate {
2019-05-23 20:25:55 +03:00
pub fn dependencies(self, db: &impl DefDatabase) -> Vec<CrateDependency> {
2019-05-23 20:30:09 +03:00
db.crate_graph()
2019-12-08 12:01:45 +01:00
.dependencies(self.id)
2019-05-23 20:30:09 +03:00
.map(|dep| {
2019-12-08 12:01:45 +01:00
let krate = Crate { id: dep.crate_id() };
2019-05-23 20:30:09 +03:00
let name = dep.as_name();
CrateDependency { krate, name }
})
.collect()
2019-01-05 00:02:05 +03:00
}
2019-02-11 23:11:12 +01:00
2019-12-08 12:01:45 +01:00
// FIXME: add `transitive_reverse_dependencies`.
pub fn reverse_dependencies(self, db: &impl DefDatabase) -> Vec<Crate> {
let crate_graph = db.crate_graph();
crate_graph
.iter()
.filter(|&krate| crate_graph.dependencies(krate).any(|it| it.crate_id == self.id))
.map(|id| Crate { id })
.collect()
}
2019-05-23 20:25:55 +03:00
pub fn root_module(self, db: &impl DefDatabase) -> Option<Module> {
2019-12-08 12:01:45 +01:00
let module_id = db.crate_def_map(self.id).root;
2019-10-30 12:27:54 +03:00
Some(Module::new(self, module_id))
2019-01-05 00:02:05 +03:00
}
2019-12-08 12:01:45 +01:00
pub fn root_file(self, db: &impl DefDatabase) -> FileId {
db.crate_graph().crate_root(self.id)
}
2019-05-23 20:25:55 +03:00
pub fn edition(self, db: &impl DefDatabase) -> Edition {
2019-02-11 23:11:12 +01:00
let crate_graph = db.crate_graph();
2019-12-08 12:01:45 +01:00
crate_graph.edition(self.id)
2019-02-11 23:11:12 +01:00
}
pub fn all(db: &impl DefDatabase) -> Vec<Crate> {
2019-12-08 12:01:45 +01:00
db.crate_graph().iter().map(|id| Crate { id }).collect()
}
2019-01-05 00:02:05 +03:00
}
2019-01-05 01:37:40 +03:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-05 01:37:40 +03:00
pub struct Module {
2019-10-30 12:27:54 +03:00
pub(crate) id: ModuleId,
}
/// The defs which can be visible in the module.
2019-03-14 17:25:51 +09:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum ModuleDef {
Module(Module),
2019-01-24 15:28:50 +03:00
Function(Function),
2019-09-13 00:34:52 +03:00
Adt(Adt),
2019-01-25 01:32:47 +03:00
// Can't be directly declared, but can be imported.
2019-01-24 23:32:41 +03:00
EnumVariant(EnumVariant),
2019-01-25 00:50:08 +03:00
Const(Const),
Static(Static),
2019-01-25 01:31:32 +03:00
Trait(Trait),
2019-02-24 21:36:49 +01:00
TypeAlias(TypeAlias),
2019-05-30 14:05:35 +03:00
BuiltinType(BuiltinType),
2019-02-24 21:36:49 +01:00
}
impl_froms!(
ModuleDef: Module,
Function,
2019-09-13 00:34:52 +03:00
Adt(Struct, Enum, Union),
2019-02-24 21:36:49 +01:00
EnumVariant,
Const,
Static,
Trait,
2019-05-30 14:05:35 +03:00
TypeAlias,
BuiltinType
2019-02-24 21:36:49 +01:00
);
2019-01-24 17:54:18 +03:00
impl ModuleDef {
pub fn module(self, db: &impl HirDatabase) -> Option<Module> {
match self {
ModuleDef::Module(it) => it.parent(db),
ModuleDef::Function(it) => Some(it.module(db)),
ModuleDef::Adt(it) => Some(it.module(db)),
ModuleDef::EnumVariant(it) => Some(it.module(db)),
ModuleDef::Const(it) => Some(it.module(db)),
ModuleDef::Static(it) => Some(it.module(db)),
ModuleDef::Trait(it) => Some(it.module(db)),
ModuleDef::TypeAlias(it) => Some(it.module(db)),
ModuleDef::BuiltinType(_) => None,
}
}
}
2020-02-12 15:31:44 +01:00
pub use hir_def::{
2020-02-12 17:18:29 +02:00
attr::Attrs, item_scope::ItemInNs, visibility::Visibility, AssocItemId, AssocItemLoc,
2020-02-12 15:31:44 +01:00
};
2019-05-23 21:01:08 +03:00
2019-01-05 01:37:40 +03:00
impl Module {
2019-11-23 16:49:53 +03:00
pub(crate) fn new(krate: Crate, crate_module_id: LocalModuleId) -> Module {
2019-12-08 12:01:45 +01:00
Module { id: ModuleId { krate: krate.id, local_id: crate_module_id } }
2019-10-30 12:27:54 +03:00
}
2019-01-06 16:10:25 +03:00
/// Name of this module.
2019-06-01 21:17:57 +03:00
pub fn name(self, db: &impl DefDatabase) -> Option<Name> {
2019-10-31 18:45:10 +03:00
let def_map = db.crate_def_map(self.id.krate);
2019-11-27 21:31:51 +03:00
let parent = def_map[self.id.local_id].parent?;
2019-05-23 21:01:08 +03:00
def_map[parent].children.iter().find_map(|(name, module_id)| {
2019-11-27 21:31:51 +03:00
if *module_id == self.id.local_id {
2019-05-23 21:01:08 +03:00
Some(name.clone())
} else {
None
}
})
2019-01-06 15:58:45 +03:00
}
2019-01-05 01:37:40 +03:00
/// Returns the crate this module is part of.
2019-10-30 12:27:54 +03:00
pub fn krate(self) -> Crate {
2019-12-08 12:01:45 +01:00
Crate { id: self.id.krate }
2019-01-05 01:37:40 +03:00
}
2019-01-06 16:10:25 +03:00
/// Topmost parent of this module. Every module has a `crate_root`, but some
/// might be missing `krate`. This can happen if a module's file is not included
2019-02-11 17:18:27 +01:00
/// in the module tree of any target in `Cargo.toml`.
2019-05-23 21:01:08 +03:00
pub fn crate_root(self, db: &impl DefDatabase) -> Module {
2019-10-31 18:45:10 +03:00
let def_map = db.crate_def_map(self.id.krate);
2019-11-24 18:05:12 +03:00
self.with_module_id(def_map.root)
2019-01-05 01:37:40 +03:00
}
/// Iterates over all child modules.
2019-05-23 21:01:08 +03:00
pub fn children(self, db: &impl DefDatabase) -> impl Iterator<Item = Module> {
2019-10-31 18:45:10 +03:00
let def_map = db.crate_def_map(self.id.krate);
2019-11-27 21:31:51 +03:00
let children = def_map[self.id.local_id]
2019-05-23 21:01:08 +03:00
.children
.iter()
.map(|(_, module_id)| self.with_module_id(*module_id))
.collect::<Vec<_>>();
children.into_iter()
}
2019-01-06 14:05:03 +03:00
/// Finds a parent module.
2019-05-23 21:01:08 +03:00
pub fn parent(self, db: &impl DefDatabase) -> Option<Module> {
2019-10-31 18:45:10 +03:00
let def_map = db.crate_def_map(self.id.krate);
2019-11-27 21:31:51 +03:00
let parent_id = def_map[self.id.local_id].parent?;
2019-05-23 21:01:08 +03:00
Some(self.with_module_id(parent_id))
2019-01-06 14:05:03 +03:00
}
2019-05-23 21:01:08 +03:00
pub fn path_to_root(self, db: &impl HirDatabase) -> Vec<Module> {
2019-07-04 22:59:28 -04:00
let mut res = vec![self];
let mut curr = self;
while let Some(next) = curr.parent(db) {
2019-07-04 22:59:28 -04:00
res.push(next);
2019-01-06 15:58:45 +03:00
curr = next
}
res
2019-01-06 15:58:45 +03:00
}
2019-01-06 15:16:21 +03:00
/// Returns a `ModuleScope`: a set of items, visible in this module.
pub fn scope(self, db: &impl HirDatabase, visible_from: Option<Module>) -> Vec<(Name, ScopeDef)> {
2019-11-27 21:31:51 +03:00
db.crate_def_map(self.id.krate)[self.id.local_id]
2019-10-31 18:45:10 +03:00
.scope
.entries()
.filter_map(|(name, def)| if let Some(m) = visible_from {
let filtered = def.filter_visibility(|vis| vis.is_visible_from(db, m.id));
if filtered.is_none() && !def.is_none() {
None
} else {
Some((name, filtered))
}
} else {
Some((name, def))
})
2019-12-22 15:37:07 +01:00
.map(|(name, def)| (name.clone(), def.into()))
2019-10-31 18:45:10 +03:00
.collect()
2019-01-06 15:16:21 +03:00
}
2019-05-23 21:01:08 +03:00
pub fn diagnostics(self, db: &impl HirDatabase, sink: &mut DiagnosticSink) {
let _p = profile("Module::diagnostics");
let crate_def_map = db.crate_def_map(self.id.krate);
crate_def_map.add_diagnostics(db, self.id.local_id, sink);
2019-03-24 10:21:36 +03:00
for decl in self.declarations(db) {
match decl {
crate::ModuleDef::Function(f) => f.diagnostics(db, sink),
crate::ModuleDef::Module(m) => {
// Only add diagnostics from inline modules
if crate_def_map[m.id.local_id].origin.is_inline() {
m.diagnostics(db, sink)
}
}
2019-03-24 10:21:36 +03:00
_ => (),
}
}
2020-02-29 21:24:40 +01:00
for impl_def in self.impl_defs(db) {
for item in impl_def.items(db) {
if let AssocItem::Function(f) = item {
2019-06-03 10:01:10 -04:00
f.diagnostics(db, sink);
2019-03-24 10:21:36 +03:00
}
}
}
2019-01-06 15:58:45 +03:00
}
2019-01-19 21:23:26 +01:00
pub fn declarations(self, db: &impl DefDatabase) -> Vec<ModuleDef> {
2019-10-31 18:45:10 +03:00
let def_map = db.crate_def_map(self.id.krate);
2019-11-27 21:31:51 +03:00
def_map[self.id.local_id].scope.declarations().map(ModuleDef::from).collect()
}
2020-02-29 21:24:40 +01:00
pub fn impl_defs(self, db: &impl DefDatabase) -> Vec<ImplDef> {
2019-11-15 21:28:00 +03:00
let def_map = db.crate_def_map(self.id.krate);
2020-02-29 21:24:40 +01:00
def_map[self.id.local_id].scope.impls().map(ImplDef::from).collect()
}
2019-05-23 21:01:08 +03:00
2019-12-08 12:20:59 +01:00
pub(crate) fn with_module_id(self, module_id: LocalModuleId) -> Module {
2019-10-30 12:27:54 +03:00
Module::new(self.krate(), module_id)
2019-05-23 21:01:08 +03:00
}
2020-01-10 18:40:45 +01:00
/// Finds a path that can be used to refer to the given item from within
/// this module, if possible.
pub fn find_use_path(
self,
db: &impl DefDatabase,
item: ModuleDef,
) -> Option<hir_def::path::ModPath> {
// FIXME expose namespace choice
2020-02-01 22:13:02 +02:00
hir_def::find_path::find_path(db, determine_item_namespace(item), self.into())
}
}
fn determine_item_namespace(module_def: ModuleDef) -> ItemInNs {
match module_def {
ModuleDef::Static(_) | ModuleDef::Const(_) | ModuleDef::Function(_) => {
ItemInNs::Values(module_def.into())
}
_ => ItemInNs::Types(module_def.into()),
}
2019-01-05 01:37:40 +03:00
}
2019-01-08 15:19:37 +03:00
2019-01-25 14:21:14 +03:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-08 15:27:00 +03:00
pub struct StructField {
2019-01-25 20:32:34 +03:00
pub(crate) parent: VariantDef,
2019-10-31 16:40:36 +03:00
pub(crate) id: LocalStructFieldId,
2019-01-08 15:27:00 +03:00
}
2019-09-16 13:48:54 +03:00
#[derive(Debug, PartialEq, Eq)]
2019-01-25 20:32:34 +03:00
pub enum FieldSource {
2019-08-23 15:55:21 +03:00
Named(ast::RecordFieldDef),
Pos(ast::TupleFieldDef),
2019-01-25 20:32:34 +03:00
}
2019-01-08 15:27:00 +03:00
impl StructField {
2019-01-25 14:21:14 +03:00
pub fn name(&self, db: &impl HirDatabase) -> Name {
2019-11-24 22:44:24 +03:00
self.parent.variant_data(db).fields()[self.id].name.clone()
2019-01-08 15:27:00 +03:00
}
2019-12-08 12:16:57 +01:00
pub fn ty(&self, db: &impl HirDatabase) -> Type {
let var_id = self.parent.into();
2020-02-04 21:33:03 +01:00
let generic_def_id: GenericDefId = match self.parent {
VariantDef::Struct(it) => it.id.into(),
VariantDef::Union(it) => it.id.into(),
VariantDef::EnumVariant(it) => it.parent.id.into(),
};
let substs = Substs::type_params(db, generic_def_id);
let ty = db.field_types(var_id)[self.id].clone().subst(&substs);
Type::new(db, self.parent.module(db).id.krate, var_id, ty)
2019-01-25 14:21:14 +03:00
}
pub fn parent_def(&self, _db: &impl HirDatabase) -> VariantDef {
self.parent
2019-01-08 15:32:27 +03:00
}
}
impl HasVisibility for StructField {
fn visibility(&self, db: &impl HirDatabase) -> Visibility {
let variant_data = self.parent.variant_data(db);
let visibility = &variant_data.fields()[self.id].visibility;
let parent_id: hir_def::VariantId = self.parent.into();
visibility.resolve(db, &parent_id.resolver(db))
}
}
2019-01-24 17:54:18 +03:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-08 15:19:37 +03:00
pub struct Struct {
2019-01-24 17:54:18 +03:00
pub(crate) id: StructId,
2019-01-08 15:19:37 +03:00
}
impl Struct {
pub fn module(self, db: &impl DefDatabase) -> Module {
2019-12-20 12:20:49 +01:00
Module { id: self.id.lookup(db).container.module(db) }
2019-01-08 15:19:37 +03:00
}
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
2019-10-30 12:27:54 +03:00
Some(self.module(db).krate())
}
2019-11-27 23:22:20 +03:00
pub fn name(self, db: &impl DefDatabase) -> Name {
db.struct_data(self.id).name.clone()
2019-01-08 15:22:57 +03:00
}
2019-01-08 15:23:56 +03:00
2019-05-23 21:01:08 +03:00
pub fn fields(self, db: &impl HirDatabase) -> Vec<StructField> {
db.struct_data(self.id)
2019-01-09 18:46:02 +03:00
.variant_data
.fields()
2019-11-24 22:44:24 +03:00
.iter()
2019-05-23 21:01:08 +03:00
.map(|(id, _)| StructField { parent: self.into(), id })
2019-01-15 18:43:25 +03:00
.collect()
2019-01-08 15:23:56 +03:00
}
2019-11-27 17:46:02 +03:00
pub fn ty(self, db: &impl HirDatabase) -> Type {
2019-12-20 12:20:49 +01:00
Type::from_def(db, self.id.lookup(db).container.module(db).krate, self.id)
}
2019-11-20 21:08:39 +03:00
fn variant_data(self, db: &impl DefDatabase) -> Arc<VariantData> {
db.struct_data(self.id).variant_data.clone()
2019-11-20 21:08:39 +03:00
}
2019-01-08 15:22:57 +03:00
}
2019-05-23 20:18:47 +03:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct Union {
2019-10-31 18:45:10 +03:00
pub(crate) id: UnionId,
2019-05-23 20:18:47 +03:00
}
impl Union {
2019-11-27 23:22:20 +03:00
pub fn name(self, db: &impl DefDatabase) -> Name {
2019-11-25 17:30:50 +03:00
db.union_data(self.id).name.clone()
2019-05-23 20:18:47 +03:00
}
2019-11-20 21:55:33 +03:00
pub fn module(self, db: &impl DefDatabase) -> Module {
2019-12-20 12:20:49 +01:00
Module { id: self.id.lookup(db).container.module(db) }
2019-05-23 20:18:47 +03:00
}
2019-11-27 17:46:02 +03:00
pub fn ty(self, db: &impl HirDatabase) -> Type {
2019-12-20 12:20:49 +01:00
Type::from_def(db, self.id.lookup(db).container.module(db).krate, self.id)
}
2019-11-26 14:29:12 +03:00
pub fn fields(self, db: &impl HirDatabase) -> Vec<StructField> {
db.union_data(self.id)
.variant_data
.fields()
.iter()
.map(|(id, _)| StructField { parent: self.into(), id })
.collect()
}
fn variant_data(self, db: &impl DefDatabase) -> Arc<VariantData> {
db.union_data(self.id).variant_data.clone()
}
2019-05-23 20:18:47 +03:00
}
2019-01-24 18:56:38 +03:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-08 15:22:57 +03:00
pub struct Enum {
2019-01-24 18:56:38 +03:00
pub(crate) id: EnumId,
2019-01-08 15:22:57 +03:00
}
impl Enum {
pub fn module(self, db: &impl DefDatabase) -> Module {
2019-12-20 12:20:49 +01:00
Module { id: self.id.lookup(db).container.module(db) }
2019-01-08 15:22:57 +03:00
}
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
2019-10-30 12:27:54 +03:00
Some(self.module(db).krate())
}
2019-11-27 23:22:20 +03:00
pub fn name(self, db: &impl DefDatabase) -> Name {
2019-10-31 16:40:36 +03:00
db.enum_data(self.id).name.clone()
2019-01-08 15:22:57 +03:00
}
2019-05-23 21:01:08 +03:00
pub fn variants(self, db: &impl DefDatabase) -> Vec<EnumVariant> {
2019-10-31 16:40:36 +03:00
db.enum_data(self.id)
.variants
.iter()
.map(|(id, _)| EnumVariant { parent: self, id })
.collect()
2019-01-25 12:41:23 +03:00
}
2019-11-27 17:46:02 +03:00
pub fn ty(self, db: &impl HirDatabase) -> Type {
2019-12-20 12:20:49 +01:00
Type::from_def(db, self.id.lookup(db).container.module(db).krate, self.id)
}
2019-01-08 15:19:37 +03:00
}
2019-01-08 20:11:13 +03:00
2019-01-24 23:32:41 +03:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct EnumVariant {
2019-01-25 11:35:38 +03:00
pub(crate) parent: Enum,
2019-10-31 11:23:30 +03:00
pub(crate) id: LocalEnumVariantId,
}
impl EnumVariant {
pub fn module(self, db: &impl HirDatabase) -> Module {
2019-01-25 11:35:38 +03:00
self.parent.module(db)
}
pub fn parent_enum(self, _db: &impl DefDatabase) -> Enum {
2019-01-25 11:35:38 +03:00
self.parent
}
2019-11-27 23:22:20 +03:00
pub fn name(self, db: &impl DefDatabase) -> Name {
2019-10-31 16:40:36 +03:00
db.enum_data(self.parent.id).variants[self.id].name.clone()
}
pub fn fields(self, db: &impl HirDatabase) -> Vec<StructField> {
self.variant_data(db)
.fields()
2019-11-24 22:44:24 +03:00
.iter()
.map(|(id, _)| StructField { parent: self.into(), id })
.collect()
}
2019-01-25 14:21:14 +03:00
pub fn kind(self, db: &impl HirDatabase) -> StructKind {
self.variant_data(db).kind()
}
2019-10-31 16:40:36 +03:00
pub(crate) fn variant_data(self, db: &impl DefDatabase) -> Arc<VariantData> {
db.enum_data(self.parent.id).variants[self.id].variant_data.clone()
}
}
2019-09-13 00:34:52 +03:00
/// A Data Type
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
2019-09-13 00:34:52 +03:00
pub enum Adt {
Struct(Struct),
Union(Union),
Enum(Enum),
}
2019-09-13 00:34:52 +03:00
impl_froms!(Adt: Struct, Union, Enum);
2019-09-13 00:34:52 +03:00
impl Adt {
pub fn has_non_default_type_params(self, db: &impl HirDatabase) -> bool {
let subst = db.generic_defaults(self.into());
subst.iter().any(|ty| ty == &Ty::Unknown)
}
2019-11-26 22:56:07 +03:00
pub fn ty(self, db: &impl HirDatabase) -> Type {
let id = AdtId::from(self);
Type::from_def(db, id.module(db).krate, id)
}
2019-11-20 22:00:57 +03:00
pub fn module(self, db: &impl DefDatabase) -> Module {
match self {
Adt::Struct(s) => s.module(db),
Adt::Union(s) => s.module(db),
Adt::Enum(e) => e.module(db),
}
}
pub fn krate(self, db: &impl HirDatabase) -> Option<Crate> {
2019-11-20 22:00:57 +03:00
Some(self.module(db).krate())
}
}
2019-11-20 21:08:39 +03:00
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub enum VariantDef {
Struct(Struct),
2019-11-26 14:29:12 +03:00
Union(Union),
2019-11-20 21:08:39 +03:00
EnumVariant(EnumVariant),
}
2019-11-26 14:29:12 +03:00
impl_froms!(VariantDef: Struct, Union, EnumVariant);
2019-11-20 21:08:39 +03:00
impl VariantDef {
pub fn fields(self, db: &impl HirDatabase) -> Vec<StructField> {
match self {
VariantDef::Struct(it) => it.fields(db),
2019-11-26 14:29:12 +03:00
VariantDef::Union(it) => it.fields(db),
2019-11-20 21:08:39 +03:00
VariantDef::EnumVariant(it) => it.fields(db),
}
}
pub fn module(self, db: &impl HirDatabase) -> Module {
match self {
VariantDef::Struct(it) => it.module(db),
2019-11-26 14:29:12 +03:00
VariantDef::Union(it) => it.module(db),
2019-11-20 21:08:39 +03:00
VariantDef::EnumVariant(it) => it.module(db),
}
}
pub(crate) fn variant_data(self, db: &impl DefDatabase) -> Arc<VariantData> {
match self {
VariantDef::Struct(it) => it.variant_data(db),
2019-11-26 14:29:12 +03:00
VariantDef::Union(it) => it.variant_data(db),
2019-11-20 21:08:39 +03:00
VariantDef::EnumVariant(it) => it.variant_data(db),
}
}
}
2019-03-30 10:50:00 +00:00
/// The defs which have a body.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum DefWithBody {
Function(Function),
2019-03-30 10:50:00 +00:00
Static(Static),
2019-04-11 00:00:56 +03:00
Const(Const),
2019-03-30 10:50:00 +00:00
}
impl_froms!(DefWithBody: Function, Const, Static);
2019-03-30 10:50:00 +00:00
impl DefWithBody {
2019-10-09 14:59:47 +03:00
pub fn module(self, db: &impl HirDatabase) -> Module {
match self {
DefWithBody::Const(c) => c.module(db),
DefWithBody::Function(f) => f.module(db),
DefWithBody::Static(s) => s.module(db),
}
}
2019-03-30 10:50:00 +00:00
}
2019-01-24 15:28:50 +03:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-08 20:11:13 +03:00
pub struct Function {
2019-01-24 15:28:50 +03:00
pub(crate) id: FunctionId,
2019-01-08 20:11:13 +03:00
}
impl Function {
2019-05-23 21:08:10 +03:00
pub fn module(self, db: &impl DefDatabase) -> Module {
self.id.lookup(db).module(db).into()
2019-01-08 20:11:13 +03:00
}
2019-09-07 21:03:03 +02:00
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
2019-10-30 12:27:54 +03:00
Some(self.module(db).krate())
2019-09-07 21:03:03 +02:00
}
2019-05-23 21:08:10 +03:00
pub fn name(self, db: &impl HirDatabase) -> Name {
2019-11-22 17:10:51 +03:00
db.function_data(self.id).name.clone()
}
pub fn has_self_param(self, db: &impl HirDatabase) -> bool {
db.function_data(self.id).has_self_param
}
pub fn params(self, db: &impl HirDatabase) -> Vec<TypeRef> {
db.function_data(self.id).params.clone()
}
2019-05-23 21:08:10 +03:00
pub fn diagnostics(self, db: &impl HirDatabase, sink: &mut DiagnosticSink) {
let _p = profile("Function::diagnostics");
2019-12-08 12:26:53 +01:00
let infer = db.infer(self.id.into());
2019-11-27 15:56:20 +03:00
infer.add_diagnostics(db, self.id, sink);
2019-11-27 17:46:02 +03:00
let mut validator = ExprValidator::new(self.id, infer, sink);
2019-04-11 00:00:56 +03:00
validator.validate_body(db);
2019-03-21 22:13:11 +03:00
}
}
2019-01-22 08:55:05 -05:00
impl HasVisibility for Function {
fn visibility(&self, db: &impl HirDatabase) -> Visibility {
let function_data = db.function_data(self.id);
let visibility = &function_data.visibility;
visibility.resolve(db, &self.id.resolver(db))
}
}
2019-01-25 00:50:08 +03:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-11 20:28:10 +03:00
pub struct Const {
2019-01-25 00:50:08 +03:00
pub(crate) id: ConstId,
2019-01-11 20:28:10 +03:00
}
2019-01-11 21:02:12 +03:00
impl Const {
2019-05-23 21:08:10 +03:00
pub fn module(self, db: &impl DefDatabase) -> Module {
Module { id: self.id.lookup(db).module(db) }
2019-02-16 22:06:23 +01:00
}
2019-09-07 21:03:03 +02:00
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
2019-10-30 12:27:54 +03:00
Some(self.module(db).krate())
2019-09-07 21:03:03 +02:00
}
2019-09-23 14:31:30 -04:00
pub fn name(self, db: &impl HirDatabase) -> Option<Name> {
2019-11-22 18:51:53 +03:00
db.const_data(self.id).name.clone()
}
2019-01-11 21:02:12 +03:00
}
2019-01-25 00:50:08 +03:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-11 20:28:10 +03:00
pub struct Static {
2019-01-25 00:50:08 +03:00
pub(crate) id: StaticId,
2019-01-11 20:28:10 +03:00
}
2019-01-11 21:02:12 +03:00
impl Static {
2019-05-23 21:08:10 +03:00
pub fn module(self, db: &impl DefDatabase) -> Module {
2019-11-24 15:13:56 +03:00
Module { id: self.id.lookup(db).module(db) }
2019-02-16 22:06:23 +01:00
}
2019-02-25 10:21:01 +02:00
2019-09-07 21:03:03 +02:00
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
2019-10-30 12:27:54 +03:00
Some(self.module(db).krate())
2019-09-07 21:03:03 +02:00
}
2020-03-03 18:22:52 +01:00
pub fn name(self, db: &impl HirDatabase) -> Option<Name> {
db.static_data(self.id).name.clone()
}
2019-01-11 21:02:12 +03:00
}
2019-01-25 01:31:32 +03:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-01-11 20:28:10 +03:00
pub struct Trait {
2019-01-25 01:31:32 +03:00
pub(crate) id: TraitId,
2019-01-11 20:28:10 +03:00
}
2019-01-11 21:02:12 +03:00
impl Trait {
2019-05-23 21:08:10 +03:00
pub fn module(self, db: &impl DefDatabase) -> Module {
2019-12-20 12:29:25 +01:00
Module { id: self.id.lookup(db).container.module(db) }
2019-02-16 22:06:23 +01:00
}
2019-11-27 23:22:20 +03:00
pub fn name(self, db: &impl DefDatabase) -> Name {
2019-11-22 18:53:39 +03:00
db.trait_data(self.id).name.clone()
2019-03-24 17:36:15 +01:00
}
pub fn items(self, db: &impl DefDatabase) -> Vec<AssocItem> {
2019-11-26 17:12:16 +03:00
db.trait_data(self.id).items.iter().map(|(_name, it)| (*it).into()).collect()
2019-03-24 17:36:15 +01:00
}
pub fn is_auto(self, db: &impl DefDatabase) -> bool {
2019-11-22 18:53:39 +03:00
db.trait_data(self.id).auto
}
2019-01-11 21:02:12 +03:00
}
2019-01-25 01:31:32 +03:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2019-02-24 21:36:49 +01:00
pub struct TypeAlias {
2019-03-26 19:15:39 +03:00
pub(crate) id: TypeAliasId,
2019-01-11 20:28:10 +03:00
}
2019-01-11 21:02:12 +03:00
2019-02-24 21:36:49 +01:00
impl TypeAlias {
pub fn has_non_default_type_params(self, db: &impl HirDatabase) -> bool {
let subst = db.generic_defaults(self.id.into());
subst.iter().any(|ty| ty == &Ty::Unknown)
}
2019-05-23 21:08:10 +03:00
pub fn module(self, db: &impl DefDatabase) -> Module {
2019-11-20 17:39:58 +03:00
Module { id: self.id.lookup(db).module(db) }
2019-02-16 22:06:23 +01:00
}
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
2019-10-30 12:27:54 +03:00
Some(self.module(db).krate())
}
pub fn type_ref(self, db: &impl DefDatabase) -> Option<TypeRef> {
2019-11-22 12:57:40 +03:00
db.type_alias_data(self.id).type_ref.clone()
}
2019-11-26 22:56:07 +03:00
pub fn ty(self, db: &impl HirDatabase) -> Type {
Type::from_def(db, self.id.lookup(db).module(db).krate, self.id)
2019-07-03 03:08:39 +09:00
}
pub fn name(self, db: &impl DefDatabase) -> Name {
2019-11-22 12:57:40 +03:00
db.type_alias_data(self.id).name.clone()
2019-02-24 17:25:41 +01:00
}
2019-01-11 21:02:12 +03:00
}
2019-05-26 20:10:56 +08:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct MacroDef {
pub(crate) id: MacroDefId,
}
impl MacroDef {
/// FIXME: right now, this just returns the root module of the crate that
/// defines this macro. The reasons for this is that macros are expanded
/// early, in `ra_hir_expand`, where modules simply do not exist yet.
pub fn module(self, db: &impl HirDatabase) -> Option<Module> {
let krate = self.id.krate?;
let module_id = db.crate_def_map(krate).root;
Some(Module::new(Crate { id: krate }, module_id))
}
2020-03-03 18:22:52 +01:00
/// XXX: this parses the file
pub fn name(self, db: &impl HirDatabase) -> Option<Name> {
self.source(db).value.name().map(|it| it.as_name())
}
}
2020-02-12 15:31:44 +01:00
/// Invariant: `inner.as_assoc_item(db).is_some()`
/// We do not actively enforce this invariant.
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum AssocItem {
Function(Function),
Const(Const),
TypeAlias(TypeAlias),
}
2020-02-12 15:31:44 +01:00
pub enum AssocItemContainer {
Trait(Trait),
2020-02-29 21:24:40 +01:00
ImplDef(ImplDef),
2020-02-12 15:31:44 +01:00
}
pub trait AsAssocItem {
fn as_assoc_item(self, db: &impl DefDatabase) -> Option<AssocItem>;
}
impl AsAssocItem for Function {
fn as_assoc_item(self, db: &impl DefDatabase) -> Option<AssocItem> {
as_assoc_item(db, AssocItem::Function, self.id)
}
}
impl AsAssocItem for Const {
fn as_assoc_item(self, db: &impl DefDatabase) -> Option<AssocItem> {
as_assoc_item(db, AssocItem::Const, self.id)
}
}
impl AsAssocItem for TypeAlias {
fn as_assoc_item(self, db: &impl DefDatabase) -> Option<AssocItem> {
as_assoc_item(db, AssocItem::TypeAlias, self.id)
}
}
fn as_assoc_item<ID, DEF, CTOR, AST>(db: &impl DefDatabase, ctor: CTOR, id: ID) -> Option<AssocItem>
where
ID: Lookup<Data = AssocItemLoc<AST>>,
DEF: From<ID>,
CTOR: FnOnce(DEF) -> AssocItem,
AST: AstNode,
{
match id.lookup(db).container {
AssocContainerId::TraitId(_) | AssocContainerId::ImplId(_) => Some(ctor(DEF::from(id))),
AssocContainerId::ContainerId(_) => None,
}
}
2019-10-09 14:59:47 +03:00
impl AssocItem {
pub fn module(self, db: &impl DefDatabase) -> Module {
match self {
AssocItem::Function(f) => f.module(db),
AssocItem::Const(c) => c.module(db),
AssocItem::TypeAlias(t) => t.module(db),
}
}
2020-02-12 17:18:29 +02:00
pub fn container(self, db: &impl DefDatabase) -> AssocItemContainer {
let container = match self {
AssocItem::Function(it) => it.id.lookup(db).container,
AssocItem::Const(it) => it.id.lookup(db).container,
AssocItem::TypeAlias(it) => it.id.lookup(db).container,
};
match container {
AssocContainerId::TraitId(id) => AssocItemContainer::Trait(id.into()),
2020-02-29 21:24:40 +01:00
AssocContainerId::ImplId(id) => AssocItemContainer::ImplDef(id.into()),
2020-02-12 17:18:29 +02:00
AssocContainerId::ContainerId(_) => panic!("invalid AssocItem"),
2020-02-12 15:31:44 +01:00
}
}
2019-10-09 14:59:47 +03:00
}
2019-11-10 00:32:00 +03:00
2019-11-21 16:23:02 +03:00
#[derive(Clone, Copy, PartialEq, Eq, Debug, Hash)]
pub enum GenericDef {
Function(Function),
Adt(Adt),
Trait(Trait),
TypeAlias(TypeAlias),
2020-02-29 21:24:40 +01:00
ImplDef(ImplDef),
2019-11-21 16:23:02 +03:00
// enum variants cannot have generics themselves, but their parent enums
// can, and this makes some code easier to write
EnumVariant(EnumVariant),
// consts can have type parameters from their parents (i.e. associated consts of traits)
Const(Const),
}
impl_froms!(
GenericDef: Function,
Adt(Struct, Enum, Union),
Trait,
TypeAlias,
2020-02-29 21:24:40 +01:00
ImplDef,
2019-11-21 16:23:02 +03:00
EnumVariant,
Const
);
impl GenericDef {
pub fn params(self, db: &impl HirDatabase) -> Vec<TypeParam> {
let generics: Arc<hir_def::generics::GenericParams> = db.generic_params(self.into());
generics
.types
.iter()
.map(|(local_id, _)| TypeParam { id: TypeParamId { parent: self.into(), local_id } })
.collect()
}
}
2019-11-10 00:32:00 +03:00
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub struct Local {
2020-02-29 18:34:34 +01:00
pub(crate) parent: DefWithBodyId,
2019-11-10 00:32:00 +03:00
pub(crate) pat_id: PatId,
}
impl Local {
2020-03-03 18:22:52 +01:00
// FIXME: why is this an option? It shouldn't be?
2019-11-10 00:32:00 +03:00
pub fn name(self, db: &impl HirDatabase) -> Option<Name> {
2019-11-24 20:53:42 +03:00
let body = db.body(self.parent.into());
2019-11-10 00:32:00 +03:00
match &body[self.pat_id] {
Pat::Bind { name, .. } => Some(name.clone()),
_ => None,
}
}
pub fn is_self(self, db: &impl HirDatabase) -> bool {
2019-12-13 22:01:06 +01:00
self.name(db) == Some(name![self])
2019-11-10 00:32:00 +03:00
}
pub fn is_mut(self, db: &impl HirDatabase) -> bool {
2019-11-24 20:53:42 +03:00
let body = db.body(self.parent.into());
2019-11-10 00:32:00 +03:00
match &body[self.pat_id] {
Pat::Bind { mode, .. } => match mode {
BindingAnnotation::Mutable | BindingAnnotation::RefMut => true,
_ => false,
},
_ => false,
}
}
pub fn parent(self, _db: &impl HirDatabase) -> DefWithBody {
2020-02-29 18:34:34 +01:00
self.parent.into()
2019-11-10 00:32:00 +03:00
}
pub fn module(self, db: &impl HirDatabase) -> Module {
2020-02-29 18:34:34 +01:00
self.parent(db).module(db)
2019-11-10 00:32:00 +03:00
}
pub fn ty(self, db: &impl HirDatabase) -> Type {
let def = DefWithBodyId::from(self.parent);
2019-11-27 16:02:33 +03:00
let infer = db.infer(def);
let ty = infer[self.pat_id].clone();
let resolver = def.resolver(db);
let krate = def.module(db).krate;
2020-01-24 15:22:00 +01:00
let environment = TraitEnvironment::lower(db, &resolver);
Type { krate, ty: InEnvironment { value: ty, environment } }
2019-11-10 00:32:00 +03:00
}
2019-11-28 12:50:26 +03:00
pub fn source(self, db: &impl HirDatabase) -> InFile<Either<ast::BindPat, ast::SelfParam>> {
2019-11-24 20:53:42 +03:00
let (_body, source_map) = db.body_with_source_map(self.parent.into());
2019-11-10 00:32:00 +03:00
let src = source_map.pat_syntax(self.pat_id).unwrap(); // Hmm...
let root = src.file_syntax(db);
src.map(|ast| {
ast.map_left(|it| it.cast().unwrap().to_node(&root)).map_right(|it| it.to_node(&root))
})
2019-11-10 00:32:00 +03:00
}
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub struct TypeParam {
pub(crate) id: TypeParamId,
}
2019-11-15 21:28:00 +03:00
impl TypeParam {
2019-12-07 18:48:35 +01:00
pub fn name(self, db: &impl HirDatabase) -> Name {
let params = db.generic_params(self.id.parent);
2020-01-24 19:35:09 +01:00
params.types[self.id.local_id].name.clone().unwrap_or_else(Name::missing)
2019-12-07 18:48:35 +01:00
}
2019-12-07 19:52:09 +01:00
pub fn module(self, db: &impl HirDatabase) -> Module {
self.id.parent.module(db).into()
}
2019-12-07 18:48:35 +01:00
}
2020-02-29 21:24:40 +01:00
// FIXME: rename from `ImplDef` to `Impl`
2019-11-15 21:28:00 +03:00
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2020-02-29 21:24:40 +01:00
pub struct ImplDef {
2019-11-15 21:28:00 +03:00
pub(crate) id: ImplId,
}
2019-11-21 14:21:26 +03:00
2020-02-29 21:24:40 +01:00
impl ImplDef {
pub fn all_in_crate(db: &impl HirDatabase, krate: Crate) -> Vec<ImplDef> {
2019-12-08 12:01:45 +01:00
let impls = db.impls_in_crate(krate.id);
2019-11-26 15:27:33 +03:00
impls.all_impls().map(Self::from).collect()
}
2020-02-29 21:24:40 +01:00
pub fn for_trait(db: &impl HirDatabase, krate: Crate, trait_: Trait) -> Vec<ImplDef> {
2019-12-08 12:01:45 +01:00
let impls = db.impls_in_crate(krate.id);
2020-02-29 21:24:40 +01:00
impls.lookup_impl_defs_for_trait(trait_.id).map(Self::from).collect()
2019-11-26 15:27:33 +03:00
}
2019-11-24 21:03:24 +03:00
pub fn target_trait(&self, db: &impl DefDatabase) -> Option<TypeRef> {
db.impl_data(self.id).target_trait.clone()
}
pub fn target_type(&self, db: &impl DefDatabase) -> TypeRef {
db.impl_data(self.id).target_type.clone()
}
2019-11-27 17:46:02 +03:00
pub fn target_ty(&self, db: &impl HirDatabase) -> Type {
let impl_data = db.impl_data(self.id);
let resolver = self.id.resolver(db);
2020-02-04 21:33:03 +01:00
let ctx = hir_ty::TyLoweringContext::new(db, &resolver);
2020-01-24 15:22:00 +01:00
let environment = TraitEnvironment::lower(db, &resolver);
2020-01-24 14:32:47 +01:00
let ty = Ty::from_hir(&ctx, &impl_data.target_type);
2019-12-12 14:09:13 +01:00
Type {
2019-12-20 13:47:44 +01:00
krate: self.id.lookup(db).container.module(db).krate,
2019-12-12 14:09:13 +01:00
ty: InEnvironment { value: ty, environment },
}
2019-11-24 21:03:24 +03:00
}
pub fn items(&self, db: &impl DefDatabase) -> Vec<AssocItem> {
db.impl_data(self.id).items.iter().map(|it| (*it).into()).collect()
}
pub fn is_negative(&self, db: &impl DefDatabase) -> bool {
db.impl_data(self.id).is_negative
}
pub fn module(&self, db: &impl DefDatabase) -> Module {
2019-12-20 13:47:44 +01:00
self.id.lookup(db).container.module(db).into()
2019-11-24 21:03:24 +03:00
}
pub fn krate(&self, db: &impl DefDatabase) -> Crate {
2019-12-08 12:01:45 +01:00
Crate { id: self.module(db).id.krate }
2019-11-24 21:03:24 +03:00
}
pub fn is_builtin_derive(&self, db: &impl DefDatabase) -> Option<InFile<ast::Attr>> {
let src = self.source(db);
let item = src.file_id.is_builtin_derive(db)?;
let hygenic = hir_expand::hygiene::Hygiene::new(db, item.file_id);
let attr = item
.value
.attrs()
.filter_map(|it| {
let path = hir_def::path::ModPath::from_src(it.path()?, &hygenic)?;
if path.as_ident()?.to_string() == "derive" {
Some(it)
} else {
None
}
})
.last()?;
Some(item.with_value(attr))
}
2019-11-24 21:03:24 +03:00
}
2019-11-26 21:18:26 +03:00
#[derive(Clone, PartialEq, Eq, Debug)]
pub struct Type {
pub(crate) krate: CrateId,
pub(crate) ty: InEnvironment<Ty>,
}
impl Type {
2019-12-08 12:16:57 +01:00
fn new(db: &impl HirDatabase, krate: CrateId, lexical_env: impl HasResolver, ty: Ty) -> Type {
let resolver = lexical_env.resolver(db);
2020-01-24 15:22:00 +01:00
let environment = TraitEnvironment::lower(db, &resolver);
2019-12-08 12:16:57 +01:00
Type { krate, ty: InEnvironment { value: ty, environment } }
}
2019-11-26 22:56:07 +03:00
fn from_def(
db: &impl HirDatabase,
krate: CrateId,
2020-02-04 21:33:03 +01:00
def: impl HasResolver + Into<TyDefId> + Into<GenericDefId>,
2019-11-26 22:56:07 +03:00
) -> Type {
2020-02-04 21:33:03 +01:00
let substs = Substs::type_params(db, def);
let ty = db.ty(def.into()).subst(&substs);
2019-12-08 12:16:57 +01:00
Type::new(db, krate, def, ty)
2019-11-26 22:56:07 +03:00
}
pub fn is_bool(&self) -> bool {
match &self.ty.value {
Ty::Apply(a_ty) => match a_ty.ctor {
TypeCtor::Bool => true,
_ => false,
},
_ => false,
}
}
pub fn is_mutable_reference(&self) -> bool {
match &self.ty.value {
Ty::Apply(a_ty) => match a_ty.ctor {
TypeCtor::Ref(Mutability::Mut) => true,
_ => false,
},
_ => false,
}
}
pub fn is_unknown(&self) -> bool {
match &self.ty.value {
Ty::Unknown => true,
_ => false,
}
}
/// Checks that particular type `ty` implements `std::future::Future`.
/// This function is used in `.await` syntax completion.
pub fn impls_future(&self, db: &impl HirDatabase) -> bool {
let krate = self.krate;
let std_future_trait =
db.lang_item(krate, "future_trait".into()).and_then(|it| it.as_trait());
let std_future_trait = match std_future_trait {
Some(it) => it,
None => return false,
};
let canonical_ty = Canonical { value: self.ty.value.clone(), num_vars: 0 };
2020-01-14 14:42:52 +01:00
method_resolution::implements_trait(
&canonical_ty,
db,
self.ty.environment.clone(),
krate,
std_future_trait,
)
}
// FIXME: this method is broken, as it doesn't take closures into account.
pub fn as_callable(&self) -> Option<CallableDef> {
Some(self.ty.value.as_callable()?.0)
}
pub fn contains_unknown(&self) -> bool {
return go(&self.ty.value);
fn go(ty: &Ty) -> bool {
match ty {
Ty::Unknown => true,
Ty::Apply(a_ty) => a_ty.parameters.iter().any(go),
_ => false,
}
}
}
pub fn fields(&self, db: &impl HirDatabase) -> Vec<(StructField, Type)> {
if let Ty::Apply(a_ty) = &self.ty.value {
2020-02-18 15:32:19 +02:00
if let TypeCtor::Adt(AdtId::StructId(s)) = a_ty.ctor {
let var_def = s.into();
return db
.field_types(var_def)
.iter()
.map(|(local_id, ty)| {
let def = StructField { parent: var_def.into(), id: local_id };
let ty = ty.clone().subst(&a_ty.parameters);
(def, self.derived(ty))
})
.collect();
}
};
2019-11-26 14:29:12 +03:00
Vec::new()
}
pub fn tuple_fields(&self, _db: &impl HirDatabase) -> Vec<Type> {
let mut res = Vec::new();
if let Ty::Apply(a_ty) = &self.ty.value {
2020-02-18 15:32:19 +02:00
if let TypeCtor::Tuple { .. } = a_ty.ctor {
for ty in a_ty.parameters.iter() {
let ty = ty.clone();
res.push(self.derived(ty));
}
}
};
res
}
pub fn variant_fields(
&self,
db: &impl HirDatabase,
def: VariantDef,
) -> Vec<(StructField, Type)> {
// FIXME: check that ty and def match
match &self.ty.value {
2019-12-08 12:16:57 +01:00
Ty::Apply(a_ty) => {
let field_types = db.field_types(def.into());
def.fields(db)
.into_iter()
.map(|it| {
let ty = field_types[it.id].clone().subst(&a_ty.parameters);
(it, self.derived(ty))
})
.collect()
}
_ => Vec::new(),
}
}
pub fn autoderef<'a>(&'a self, db: &'a impl HirDatabase) -> impl Iterator<Item = Type> + 'a {
// There should be no inference vars in types passed here
// FIXME check that?
2019-12-08 12:44:14 +01:00
let canonical = Canonical { value: self.ty.value.clone(), num_vars: 0 };
let environment = self.ty.environment.clone();
let ty = InEnvironment { value: canonical, environment };
2019-12-08 12:44:14 +01:00
autoderef(db, Some(self.krate), ty)
.map(|canonical| canonical.value)
.map(move |ty| self.derived(ty))
}
2019-11-26 22:56:07 +03:00
// This would be nicer if it just returned an iterator, but that runs into
2020-02-29 21:24:40 +01:00
// lifetime problems, because we need to borrow temp `CrateImplDefs`.
2019-11-26 22:56:07 +03:00
pub fn iterate_impl_items<T>(
self,
db: &impl HirDatabase,
krate: Crate,
mut callback: impl FnMut(AssocItem) -> Option<T>,
) -> Option<T> {
2019-12-08 12:01:45 +01:00
for krate in self.ty.value.def_crates(db, krate.id)? {
2019-11-26 22:56:07 +03:00
let impls = db.impls_in_crate(krate);
2020-02-29 21:24:40 +01:00
for impl_def in impls.lookup_impl_defs(&self.ty.value) {
for &item in db.impl_data(impl_def).items.iter() {
2019-11-26 22:56:07 +03:00
if let Some(result) = callback(item.into()) {
return Some(result);
}
}
}
}
None
}
2020-01-14 14:42:52 +01:00
pub fn iterate_method_candidates<T>(
&self,
db: &impl HirDatabase,
krate: Crate,
traits_in_scope: &FxHashSet<TraitId>,
name: Option<&Name>,
mut callback: impl FnMut(&Ty, Function) -> Option<T>,
) -> Option<T> {
// There should be no inference vars in types passed here
// FIXME check that?
// FIXME replace Unknown by bound vars here
let canonical = Canonical { value: self.ty.value.clone(), num_vars: 0 };
let env = self.ty.environment.clone();
let krate = krate.id;
method_resolution::iterate_method_candidates(
&canonical,
db,
env,
krate,
traits_in_scope,
name,
method_resolution::LookupMode::MethodCall,
|ty, it| match it {
AssocItemId::FunctionId(f) => callback(ty, f.into()),
_ => None,
},
)
}
pub fn iterate_path_candidates<T>(
&self,
db: &impl HirDatabase,
krate: Crate,
traits_in_scope: &FxHashSet<TraitId>,
name: Option<&Name>,
mut callback: impl FnMut(&Ty, AssocItem) -> Option<T>,
) -> Option<T> {
// There should be no inference vars in types passed here
// FIXME check that?
// FIXME replace Unknown by bound vars here
let canonical = Canonical { value: self.ty.value.clone(), num_vars: 0 };
let env = self.ty.environment.clone();
let krate = krate.id;
method_resolution::iterate_method_candidates(
&canonical,
db,
env,
krate,
traits_in_scope,
name,
method_resolution::LookupMode::Path,
|ty, it| callback(ty, it.into()),
)
}
pub fn as_adt(&self) -> Option<Adt> {
let (adt, _subst) = self.ty.value.as_adt()?;
2019-11-26 21:25:17 +03:00
Some(adt.into())
}
2019-11-27 17:46:02 +03:00
// FIXME: provide required accessors such that it becomes implementable from outside.
pub fn is_equal_for_find_impls(&self, other: &Type) -> bool {
match (&self.ty.value, &other.ty.value) {
2019-12-08 12:44:14 +01:00
(Ty::Apply(a_original_ty), Ty::Apply(ApplicationTy { ctor, parameters })) => match ctor
{
TypeCtor::Ref(..) => match parameters.as_single() {
Ty::Apply(a_ty) => a_original_ty.ctor == a_ty.ctor,
_ => false,
},
_ => a_original_ty.ctor == *ctor,
},
2019-11-27 17:46:02 +03:00
_ => false,
}
}
fn derived(&self, ty: Ty) -> Type {
Type {
krate: self.krate,
ty: InEnvironment { value: ty, environment: self.ty.environment.clone() },
}
}
}
impl HirDisplay for Type {
fn hir_fmt(&self, f: &mut HirFormatter<impl HirDatabase>) -> std::fmt::Result {
self.ty.value.hir_fmt(f)
}
}
2019-11-21 14:21:26 +03:00
/// For IDE only
pub enum ScopeDef {
ModuleDef(ModuleDef),
MacroDef(MacroDef),
GenericParam(TypeParam),
2020-02-29 21:24:40 +01:00
ImplSelfType(ImplDef),
2019-11-21 14:21:26 +03:00
AdtSelfType(Adt),
Local(Local),
Unknown,
}
impl From<PerNs> for ScopeDef {
fn from(def: PerNs) -> Self {
def.take_types()
.or_else(|| def.take_values())
.map(|module_def_id| ScopeDef::ModuleDef(module_def_id.into()))
.or_else(|| {
2019-11-24 17:00:10 +03:00
def.take_macros().map(|macro_def_id| ScopeDef::MacroDef(macro_def_id.into()))
2019-11-21 14:21:26 +03:00
})
.unwrap_or(ScopeDef::Unknown)
}
}
2019-11-23 11:14:10 +03:00
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub enum AttrDef {
Module(Module),
StructField(StructField),
Adt(Adt),
Function(Function),
EnumVariant(EnumVariant),
Static(Static),
Const(Const),
Trait(Trait),
TypeAlias(TypeAlias),
MacroDef(MacroDef),
}
impl_froms!(
AttrDef: Module,
StructField,
Adt(Struct, Enum, Union),
EnumVariant,
Static,
Const,
Function,
Trait,
TypeAlias,
MacroDef
);
pub trait HasAttrs {
fn attrs(self, db: &impl DefDatabase) -> Attrs;
}
impl<T: Into<AttrDef>> HasAttrs for T {
fn attrs(self, db: &impl DefDatabase) -> Attrs {
2019-11-23 14:43:38 +03:00
let def: AttrDef = self.into();
db.attrs(def.into())
}
}
pub trait Docs {
fn docs(&self, db: &impl HirDatabase) -> Option<Documentation>;
}
impl<T: Into<AttrDef> + Copy> Docs for T {
fn docs(&self, db: &impl HirDatabase) -> Option<Documentation> {
let def: AttrDef = (*self).into();
db.documentation(def.into())
2019-11-23 11:14:10 +03:00
}
}
pub trait HasVisibility {
fn visibility(&self, db: &impl HirDatabase) -> Visibility;
2019-12-27 11:24:31 +01:00
fn is_visible_from(&self, db: &impl HirDatabase, module: Module) -> bool {
let vis = self.visibility(db);
2019-12-27 11:24:31 +01:00
vis.is_visible_from(db, module.id)
}
}