2019-01-12 14:27:35 -06:00
|
|
|
//! This module contains the implementation details of the HIR for ADTs, i.e.
|
|
|
|
//! structs and enums (and unions).
|
|
|
|
|
2018-12-24 14:00:14 -06:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
2019-01-24 16:53:07 -06:00
|
|
|
use ra_syntax::ast::{self, NameOwner, StructFlavor};
|
2018-12-24 12:07:48 -06:00
|
|
|
|
|
|
|
use crate::{
|
2019-01-24 16:53:07 -06:00
|
|
|
Name, AsName, Struct, Enum, EnumVariant, Crate,
|
2019-01-24 14:32:41 -06:00
|
|
|
HirDatabase,
|
2018-12-25 14:40:33 -06:00
|
|
|
type_ref::TypeRef,
|
2019-01-24 15:26:54 -06:00
|
|
|
ids::LocationCtx,
|
2018-12-24 12:07:48 -06:00
|
|
|
};
|
|
|
|
|
2019-01-24 16:53:07 -06:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub enum AdtDef {
|
|
|
|
Struct(Struct),
|
|
|
|
Enum(Enum),
|
|
|
|
}
|
|
|
|
impl_froms!(AdtDef: Struct, Enum);
|
|
|
|
|
|
|
|
impl AdtDef {
|
|
|
|
pub(crate) fn krate(self, db: &impl HirDatabase) -> Option<Crate> {
|
|
|
|
match self {
|
|
|
|
AdtDef::Struct(s) => s.module(db),
|
|
|
|
AdtDef::Enum(e) => e.module(db),
|
|
|
|
}
|
|
|
|
.krate(db)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-24 12:07:48 -06:00
|
|
|
impl Struct {
|
2019-01-15 11:43:37 -06:00
|
|
|
pub(crate) fn variant_data(&self, db: &impl HirDatabase) -> Arc<VariantData> {
|
2019-01-24 08:54:18 -06:00
|
|
|
db.struct_data((*self).into()).variant_data.clone()
|
2019-01-09 09:46:02 -06:00
|
|
|
}
|
2018-12-24 12:07:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct StructData {
|
2019-01-08 06:19:37 -06:00
|
|
|
pub(crate) name: Option<Name>,
|
|
|
|
pub(crate) variant_data: Arc<VariantData>,
|
2018-12-24 12:07:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl StructData {
|
2019-01-08 06:38:29 -06:00
|
|
|
fn new(struct_def: &ast::StructDef) -> StructData {
|
2018-12-28 12:34:58 -06:00
|
|
|
let name = struct_def.name().map(|n| n.as_name());
|
2018-12-25 14:40:33 -06:00
|
|
|
let variant_data = VariantData::new(struct_def.flavor());
|
2018-12-24 14:00:14 -06:00
|
|
|
let variant_data = Arc::new(variant_data);
|
2018-12-25 14:40:33 -06:00
|
|
|
StructData { name, variant_data }
|
2018-12-24 12:07:48 -06:00
|
|
|
}
|
2019-01-08 06:38:29 -06:00
|
|
|
|
2019-01-24 08:54:18 -06:00
|
|
|
pub(crate) fn struct_data_query(db: &impl HirDatabase, struct_: Struct) -> Arc<StructData> {
|
|
|
|
let (_, struct_def) = struct_.source(db);
|
|
|
|
Arc::new(StructData::new(&*struct_def))
|
2019-01-08 06:38:29 -06:00
|
|
|
}
|
2018-12-24 12:07:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct EnumData {
|
2019-01-08 06:22:57 -06:00
|
|
|
pub(crate) name: Option<Name>,
|
2019-01-09 19:07:42 -06:00
|
|
|
pub(crate) variants: Vec<(Name, EnumVariant)>,
|
2018-12-24 12:07:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl EnumData {
|
2019-01-09 19:07:42 -06:00
|
|
|
fn new(enum_def: &ast::EnumDef, variants: Vec<(Name, EnumVariant)>) -> Self {
|
2018-12-28 12:34:58 -06:00
|
|
|
let name = enum_def.name().map(|n| n.as_name());
|
2018-12-25 14:40:33 -06:00
|
|
|
EnumData { name, variants }
|
2018-12-24 12:07:48 -06:00
|
|
|
}
|
2019-01-08 06:38:29 -06:00
|
|
|
|
2019-01-24 09:56:38 -06:00
|
|
|
pub(crate) fn enum_data_query(db: &impl HirDatabase, e: Enum) -> Arc<EnumData> {
|
|
|
|
let (file_id, enum_def) = e.source(db);
|
|
|
|
let module = e.module(db);
|
2019-01-24 15:26:54 -06:00
|
|
|
let ctx = LocationCtx::new(db, module, file_id);
|
2019-01-09 19:07:42 -06:00
|
|
|
let variants = if let Some(vl) = enum_def.variant_list() {
|
2019-01-08 09:01:19 -06:00
|
|
|
vl.variants()
|
2019-01-09 19:07:42 -06:00
|
|
|
.filter_map(|variant_def| {
|
2019-01-24 15:26:54 -06:00
|
|
|
let name = variant_def.name()?.as_name();
|
|
|
|
let var = EnumVariant {
|
|
|
|
id: ctx.to_def(variant_def),
|
|
|
|
};
|
|
|
|
Some((name, var))
|
2019-01-08 09:01:19 -06:00
|
|
|
})
|
|
|
|
.collect()
|
2019-01-09 19:07:42 -06:00
|
|
|
} else {
|
|
|
|
Vec::new()
|
|
|
|
};
|
2019-01-24 09:56:38 -06:00
|
|
|
Arc::new(EnumData::new(&*enum_def, variants))
|
2019-01-08 09:01:19 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct EnumVariantData {
|
|
|
|
pub(crate) name: Option<Name>,
|
|
|
|
pub(crate) variant_data: Arc<VariantData>,
|
|
|
|
pub(crate) parent_enum: Enum,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl EnumVariantData {
|
|
|
|
fn new(variant_def: &ast::EnumVariant, parent_enum: Enum) -> EnumVariantData {
|
|
|
|
let name = variant_def.name().map(|n| n.as_name());
|
|
|
|
let variant_data = VariantData::new(variant_def.flavor());
|
|
|
|
let variant_data = Arc::new(variant_data);
|
|
|
|
EnumVariantData {
|
|
|
|
name,
|
|
|
|
variant_data,
|
|
|
|
parent_enum,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn enum_variant_data_query(
|
|
|
|
db: &impl HirDatabase,
|
2019-01-24 14:32:41 -06:00
|
|
|
var: EnumVariant,
|
2019-01-15 09:43:25 -06:00
|
|
|
) -> Arc<EnumVariantData> {
|
2019-01-24 14:32:41 -06:00
|
|
|
let (file_id, variant_def) = var.source(db);
|
2019-01-24 09:56:38 -06:00
|
|
|
let enum_def = variant_def.parent_enum();
|
2019-01-24 15:26:54 -06:00
|
|
|
let ctx = LocationCtx::new(db, var.module(db), file_id);
|
|
|
|
let e = Enum {
|
|
|
|
id: ctx.to_def(enum_def),
|
|
|
|
};
|
2019-01-24 14:32:41 -06:00
|
|
|
Arc::new(EnumVariantData::new(&*variant_def, e))
|
2019-01-08 06:38:29 -06:00
|
|
|
}
|
2018-12-24 12:07:48 -06:00
|
|
|
}
|
|
|
|
|
2019-01-09 09:46:02 -06:00
|
|
|
/// A single field of an enum variant or struct
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct StructField {
|
|
|
|
pub(crate) name: Name,
|
|
|
|
pub(crate) type_ref: TypeRef,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Fields of an enum variant or struct
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub enum VariantData {
|
|
|
|
Struct(Vec<StructField>),
|
|
|
|
Tuple(Vec<StructField>),
|
|
|
|
Unit,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl VariantData {
|
|
|
|
pub fn fields(&self) -> &[StructField] {
|
|
|
|
match self {
|
|
|
|
VariantData::Struct(fields) | VariantData::Tuple(fields) => fields,
|
|
|
|
_ => &[],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_struct(&self) -> bool {
|
|
|
|
match self {
|
|
|
|
VariantData::Struct(..) => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_tuple(&self) -> bool {
|
|
|
|
match self {
|
|
|
|
VariantData::Tuple(..) => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_unit(&self) -> bool {
|
|
|
|
match self {
|
|
|
|
VariantData::Unit => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-24 12:07:48 -06:00
|
|
|
impl VariantData {
|
2019-01-08 06:40:02 -06:00
|
|
|
fn new(flavor: StructFlavor) -> Self {
|
2018-12-25 14:40:33 -06:00
|
|
|
match flavor {
|
2018-12-25 06:31:30 -06:00
|
|
|
StructFlavor::Tuple(fl) => {
|
|
|
|
let fields = fl
|
|
|
|
.fields()
|
|
|
|
.enumerate()
|
2018-12-25 14:40:33 -06:00
|
|
|
.map(|(i, fd)| StructField {
|
2018-12-28 12:34:58 -06:00
|
|
|
name: Name::tuple_field_name(i),
|
2018-12-25 14:40:33 -06:00
|
|
|
type_ref: TypeRef::from_ast_opt(fd.type_ref()),
|
2018-12-25 06:31:30 -06:00
|
|
|
})
|
2018-12-25 14:40:33 -06:00
|
|
|
.collect();
|
2018-12-25 06:31:30 -06:00
|
|
|
VariantData::Tuple(fields)
|
|
|
|
}
|
|
|
|
StructFlavor::Named(fl) => {
|
|
|
|
let fields = fl
|
|
|
|
.fields()
|
2018-12-25 14:40:33 -06:00
|
|
|
.map(|fd| StructField {
|
2018-12-28 12:34:58 -06:00
|
|
|
name: fd.name().map(|n| n.as_name()).unwrap_or_else(Name::missing),
|
2018-12-25 14:40:33 -06:00
|
|
|
type_ref: TypeRef::from_ast_opt(fd.type_ref()),
|
2018-12-25 06:31:30 -06:00
|
|
|
})
|
2018-12-25 14:40:33 -06:00
|
|
|
.collect();
|
2018-12-25 06:31:30 -06:00
|
|
|
VariantData::Struct(fields)
|
|
|
|
}
|
|
|
|
StructFlavor::Unit => VariantData::Unit,
|
2018-12-25 14:40:33 -06:00
|
|
|
}
|
2018-12-25 06:31:30 -06:00
|
|
|
}
|
2018-12-25 06:54:38 -06:00
|
|
|
|
2018-12-28 12:34:58 -06:00
|
|
|
pub(crate) fn get_field_type_ref(&self, field_name: &Name) -> Option<&TypeRef> {
|
2018-12-25 08:15:40 -06:00
|
|
|
self.fields()
|
|
|
|
.iter()
|
2019-01-09 09:46:02 -06:00
|
|
|
.find(|f| f.name == *field_name)
|
|
|
|
.map(|f| &f.type_ref)
|
2018-12-25 06:54:38 -06:00
|
|
|
}
|
2018-12-24 12:07:48 -06:00
|
|
|
}
|