//! defines `ValueObj` (used in the compiler, VM). //! //! コンパイラ、VM等で使われる(データも保持した)値オブジェクトを定義する use std::cmp::Ordering; use std::fmt; use std::hash::{Hash, Hasher}; use std::mem; use std::ops::Neg; use std::rc::Rc; use erg_common::config::Input; use erg_common::dict::Dict; use erg_common::error::{ErrorCore, ErrorKind, Location}; use erg_common::fresh::fresh_varname; use erg_common::python_util::PythonVersion; use erg_common::serialize::*; use erg_common::set::Set; use erg_common::shared::Shared; use erg_common::{dict, fmt_iter, impl_display_from_debug, log, switch_lang}; use erg_common::{RcArray, Str}; use erg_parser::ast::{ConstArgs, ConstExpr}; use crate::context::eval::type_from_token_kind; use self::value_set::inner_class; use super::codeobj::CodeObj; use super::constructors::{array_t, dict_t, mono, poly, refinement, set_t, tuple_t}; use super::typaram::TyParam; use super::{ConstSubr, Field, HasType, Predicate, Type}; pub struct EvalValueError(pub Box); impl From for EvalValueError { fn from(core: ErrorCore) -> Self { Self(Box::new(core)) } } impl From for ErrorCore { fn from(err: EvalValueError) -> Self { *err.0 } } impl EvalValueError { pub fn feature_error(_input: Input, loc: Location, name: &str, caused_by: String) -> Self { Self::from(ErrorCore::new( vec![], format!("{name} is not supported yet: {caused_by}"), 0, ErrorKind::FeatureError, loc, )) } } pub type EvalValueResult = Result; #[derive(Clone, Debug, PartialEq, Eq, Hash)] pub struct ClassTypeObj { pub t: Type, pub base: Option>, pub impls: Option>, } impl ClassTypeObj { pub fn new(t: Type, base: Option, impls: Option) -> Self { Self { t, base: base.map(Box::new), impls: impls.map(Box::new), } } } #[derive(Clone, Debug, PartialEq, Eq, Hash)] pub struct InheritedTypeObj { pub t: Type, pub sup: Box, pub impls: Option>, pub additional: Option>, } impl InheritedTypeObj { pub fn new(t: Type, sup: TypeObj, impls: Option, additional: Option) -> Self { Self { t, sup: Box::new(sup), impls: impls.map(Box::new), additional: additional.map(Box::new), } } } #[derive(Clone, Debug, PartialEq, Eq, Hash)] pub struct TraitTypeObj { pub t: Type, pub requires: Box, pub impls: Option>, } impl TraitTypeObj { pub fn new(t: Type, requires: TypeObj, impls: Option) -> Self { Self { t, requires: Box::new(requires), impls: impls.map(Box::new), } } } #[derive(Clone, Debug, PartialEq, Eq, Hash)] pub struct SubsumedTypeObj { pub t: Type, pub sup: Box, pub impls: Option>, pub additional: Option>, } impl SubsumedTypeObj { pub fn new(t: Type, sup: TypeObj, impls: Option, additional: Option) -> Self { Self { t, sup: Box::new(sup), impls: impls.map(Box::new), additional: additional.map(Box::new), } } } #[derive(Clone, Debug, PartialEq, Eq, Hash)] pub struct UnionTypeObj { pub t: Type, pub lhs: Box, pub rhs: Box, } impl UnionTypeObj { pub fn new(t: Type, lhs: TypeObj, rhs: TypeObj) -> Self { Self { t, lhs: Box::new(lhs), rhs: Box::new(rhs), } } } #[derive(Clone, Debug, PartialEq, Eq, Hash)] pub struct IntersectionTypeObj { pub t: Type, pub lhs: Box, pub rhs: Box, } impl IntersectionTypeObj { pub fn new(t: Type, lhs: TypeObj, rhs: TypeObj) -> Self { Self { t, lhs: Box::new(lhs), rhs: Box::new(rhs), } } } #[derive(Clone, Debug, PartialEq, Eq, Hash)] pub struct StructuralTypeObj { pub t: Type, pub base: Box, } impl StructuralTypeObj { pub fn new(t: Type, base: TypeObj) -> Self { Self { t, base: Box::new(base), } } } #[derive(Clone, Debug, PartialEq, Eq, Hash)] pub struct PatchObj { pub t: Type, pub base: Box, pub impls: Option>, } impl PatchObj { pub fn new(t: Type, base: TypeObj, impls: Option) -> Self { Self { t, base: Box::new(base), impls: impls.map(Box::new), } } } #[derive(Clone, Debug, PartialEq, Eq, Hash)] pub enum GenTypeObj { Class(ClassTypeObj), Subclass(InheritedTypeObj), Trait(TraitTypeObj), Subtrait(SubsumedTypeObj), Structural(StructuralTypeObj), Union(UnionTypeObj), Intersection(IntersectionTypeObj), Patch(PatchObj), } impl fmt::Display for GenTypeObj { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "<{}>", self.typ()) } } impl GenTypeObj { pub fn class(t: Type, require: Option, impls: Option) -> Self { GenTypeObj::Class(ClassTypeObj::new(t, require, impls)) } pub fn inherited( t: Type, sup: TypeObj, impls: Option, additional: Option, ) -> Self { GenTypeObj::Subclass(InheritedTypeObj::new(t, sup, impls, additional)) } pub fn trait_(t: Type, require: TypeObj, impls: Option) -> Self { GenTypeObj::Trait(TraitTypeObj::new(t, require, impls)) } pub fn patch(t: Type, base: TypeObj, impls: Option) -> Self { GenTypeObj::Patch(PatchObj::new(t, base, impls)) } pub fn subsumed( t: Type, sup: TypeObj, impls: Option, additional: Option, ) -> Self { GenTypeObj::Subtrait(SubsumedTypeObj::new(t, sup, impls, additional)) } pub fn union(t: Type, lhs: TypeObj, rhs: TypeObj) -> Self { GenTypeObj::Union(UnionTypeObj::new(t, lhs, rhs)) } pub fn intersection(t: Type, lhs: TypeObj, rhs: TypeObj) -> Self { GenTypeObj::Intersection(IntersectionTypeObj::new(t, lhs, rhs)) } pub fn structural(t: Type, type_: TypeObj) -> Self { GenTypeObj::Structural(StructuralTypeObj::new(t, type_)) } pub fn base_or_sup(&self) -> Option<&TypeObj> { match self { Self::Class(class) => class.base.as_ref().map(AsRef::as_ref), Self::Subclass(subclass) => Some(subclass.sup.as_ref()), Self::Trait(trait_) => Some(trait_.requires.as_ref()), Self::Subtrait(subtrait) => Some(subtrait.sup.as_ref()), Self::Structural(type_) => Some(type_.base.as_ref()), Self::Patch(patch) => Some(patch.base.as_ref()), _ => None, } } pub fn impls(&self) -> Option<&TypeObj> { match self { Self::Class(class) => class.impls.as_ref().map(|x| x.as_ref()), Self::Subclass(subclass) => subclass.impls.as_ref().map(|x| x.as_ref()), Self::Subtrait(subtrait) => subtrait.impls.as_ref().map(|x| x.as_ref()), Self::Patch(patch) => patch.impls.as_ref().map(|x| x.as_ref()), _ => None, } } pub fn impls_mut(&mut self) -> Option<&mut Option>> { match self { Self::Class(class) => Some(&mut class.impls), Self::Subclass(subclass) => Some(&mut subclass.impls), Self::Subtrait(subtrait) => Some(&mut subtrait.impls), Self::Patch(patch) => Some(&mut patch.impls), _ => None, } } pub fn additional(&self) -> Option<&TypeObj> { match self { Self::Subclass(subclass) => subclass.additional.as_ref().map(|x| x.as_ref()), Self::Subtrait(subtrait) => subtrait.additional.as_ref().map(|x| x.as_ref()), _ => None, } } pub fn meta_type(&self) -> Type { match self { Self::Class(_) | Self::Subclass(_) => Type::ClassType, Self::Trait(_) | Self::Subtrait(_) => Type::TraitType, Self::Patch(_) => Type::Patch, Self::Structural(_) => Type::Type, _ => Type::Type, } } pub fn typ(&self) -> &Type { match self { Self::Class(class) => &class.t, Self::Subclass(subclass) => &subclass.t, Self::Trait(trait_) => &trait_.t, Self::Subtrait(subtrait) => &subtrait.t, Self::Structural(struct_) => &struct_.t, Self::Union(union_) => &union_.t, Self::Intersection(intersection) => &intersection.t, Self::Patch(patch) => &patch.t, } } pub fn typ_mut(&mut self) -> &mut Type { match self { Self::Class(class) => &mut class.t, Self::Subclass(subclass) => &mut subclass.t, Self::Trait(trait_) => &mut trait_.t, Self::Subtrait(subtrait) => &mut subtrait.t, Self::Structural(struct_) => &mut struct_.t, Self::Union(union_) => &mut union_.t, Self::Intersection(intersection) => &mut intersection.t, Self::Patch(patch) => &mut patch.t, } } pub fn into_typ(self) -> Type { match self { Self::Class(class) => class.t, Self::Subclass(subclass) => subclass.t, Self::Trait(trait_) => trait_.t, Self::Subtrait(subtrait) => subtrait.t, Self::Structural(struct_) => struct_.t, Self::Union(union_) => union_.t, Self::Intersection(intersection) => intersection.t, Self::Patch(patch) => patch.t, } } } #[derive(Clone, Debug, Eq)] pub enum TypeObj { Builtin { t: Type, meta_t: Type }, Generated(GenTypeObj), } impl PartialEq for TypeObj { fn eq(&self, other: &Self) -> bool { self.typ() == other.typ() } } impl Hash for TypeObj { fn hash(&self, state: &mut H) { self.typ().hash(state); } } impl fmt::Display for TypeObj { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match self { TypeObj::Builtin { t, .. } => { if cfg!(feature = "debug") { write!(f, "") } else { write!(f, "{t}") } } TypeObj::Generated(t) => { if cfg!(feature = "debug") { write!(f, "") } else { write!(f, "{t}") } } } } } impl TypeObj { pub fn builtin_type(t: Type) -> Self { TypeObj::Builtin { t, meta_t: Type::Type, } } pub fn builtin_trait(t: Type) -> Self { TypeObj::Builtin { t, meta_t: Type::TraitType, } } pub fn typ(&self) -> &Type { match self { TypeObj::Builtin { t, .. } => t, TypeObj::Generated(t) => t.typ(), } } pub fn typ_mut(&mut self) -> &mut Type { match self { TypeObj::Builtin { t, .. } => t, TypeObj::Generated(t) => t.typ_mut(), } } pub fn into_typ(self) -> Type { match self { TypeObj::Builtin { t, .. } => t, TypeObj::Generated(t) => t.into_typ(), } } pub fn contains_intersec(&self, other: &Type) -> bool { match self { TypeObj::Builtin { t, .. } => t.contains_intersec(other), TypeObj::Generated(t) => t.typ().contains_intersec(other), } } } /// 値オブジェクト /// コンパイル時評価ができ、シリアライズも可能 #[derive(Clone, PartialEq, Default)] pub enum ValueObj { Int(i32), Nat(u64), Float(f64), Str(Str), Bool(bool), Array(Rc<[ValueObj]>), Set(Set), Dict(Dict), Tuple(Rc<[ValueObj]>), Record(Dict), DataClass { name: Str, fields: Dict, }, Code(Box), Subr(ConstSubr), Type(TypeObj), None, Ellipsis, NotImplemented, NegInf, Inf, Mut(Shared), #[default] Illegal, // to avoid conversions with TryFrom } impl fmt::Debug for ValueObj { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self { Self::Int(i) => { if cfg!(feature = "debug") { write!(f, "Int({i})") } else { write!(f, "{i}") } } Self::Nat(n) => { if cfg!(feature = "debug") { write!(f, "Nat({n})") } else { write!(f, "{n}") } } Self::Float(fl) => { // In Rust, .0 is shown omitted. if fl.fract() < 1e-10 { write!(f, "{fl:.1}")?; } else { write!(f, "{fl}")?; } if cfg!(feature = "debug") { write!(f, "f64")?; } Ok(()) } Self::Str(s) => write!(f, "\"{s}\""), Self::Bool(b) => { if *b { write!(f, "True") } else { write!(f, "False") } } Self::Array(arr) => write!(f, "[{}]", fmt_iter(arr.iter())), Self::Dict(dict) => { write!(f, "{{")?; for (i, (k, v)) in dict.iter().enumerate() { if i != 0 { write!(f, ", ")?; } write!(f, "{k}: {v}")?; } write!(f, "}}") } Self::Tuple(tup) => write!(f, "({})", fmt_iter(tup.iter())), Self::Set(st) => write!(f, "{{{}}}", fmt_iter(st.iter())), Self::Code(code) => write!(f, "{code}"), Self::Record(rec) => { write!(f, "{{")?; for (i, (k, v)) in rec.iter().enumerate() { if i != 0 { write!(f, "; ")?; } write!(f, "{k} = {v}")?; } write!(f, "}}") } Self::DataClass { name, fields } => { write!(f, "{name} {{")?; for (i, (k, v)) in fields.iter().enumerate() { if i != 0 { write!(f, "; ")?; } write!(f, "{k} = {v}")?; } write!(f, "}}") } Self::Subr(subr) => write!(f, "{subr}"), Self::Type(t) => write!(f, "{t}"), Self::None => write!(f, "None"), Self::Ellipsis => write!(f, "Ellipsis"), Self::NotImplemented => write!(f, "NotImplemented"), Self::NegInf => write!(f, "-Inf"), Self::Inf => write!(f, "Inf"), Self::Mut(v) => write!(f, "", v.borrow()), Self::Illegal => write!(f, ""), } } } impl_display_from_debug!(ValueObj); impl Eq for ValueObj {} impl Neg for ValueObj { type Output = Self; #[inline] fn neg(self) -> Self { match self { Self::Int(i) => Self::Int(-i), Self::Nat(n) => Self::Int(-(n as i32)), Self::Float(fl) => Self::Float(-fl), Self::Inf => Self::NegInf, Self::NegInf => Self::Inf, other => panic!("cannot negate {other}"), } } } // FIXME: impl Hash for ValueObj { fn hash(&self, state: &mut H) { match self { Self::Int(i) => i.hash(state), Self::Nat(n) => n.hash(state), // TODO: Self::Float(f) => f.to_bits().hash(state), Self::Str(s) => s.hash(state), Self::Bool(b) => b.hash(state), Self::Array(arr) => arr.hash(state), Self::Dict(dict) => dict.hash(state), Self::Tuple(tup) => tup.hash(state), Self::Set(st) => st.hash(state), Self::Code(code) => code.hash(state), Self::Record(rec) => rec.hash(state), Self::DataClass { name, fields } => { name.hash(state); fields.hash(state); } Self::Subr(subr) => subr.hash(state), Self::Type(t) => t.hash(state), Self::None => { "literal".hash(state); "None".hash(state) } Self::Ellipsis => { "literal".hash(state); "Ellipsis".hash(state) } Self::NotImplemented => { "literal".hash(state); "NotImplemented".hash(state) } Self::NegInf => { "literal".hash(state); "NegInf".hash(state) } Self::Inf => { "literal".hash(state); "Inf".hash(state) } Self::Mut(v) => v.borrow().hash(state), Self::Illegal => { "literal".hash(state); "illegal".hash(state) } } } } impl From for ValueObj { fn from(item: i32) -> Self { ValueObj::Int(item) } } impl From for ValueObj { fn from(item: u64) -> Self { ValueObj::Nat(item) } } impl From for ValueObj { fn from(item: usize) -> Self { ValueObj::Nat(item as u64) } } impl From for ValueObj { fn from(item: f64) -> Self { ValueObj::Float(item) } } impl From<&str> for ValueObj { fn from(item: &str) -> Self { ValueObj::Str(Str::rc(item)) } } impl From for ValueObj { fn from(item: Str) -> Self { ValueObj::Str(item) } } impl From for ValueObj { fn from(item: bool) -> Self { ValueObj::Bool(item) } } impl From for ValueObj { fn from(item: CodeObj) -> Self { ValueObj::Code(Box::new(item)) } } impl> From> for ValueObj { fn from(item: Vec) -> Self { ValueObj::Array(RcArray::from( &item.into_iter().map(Into::into).collect::>()[..], )) } } impl> From<[V; N]> for ValueObj { fn from(item: [V; N]) -> Self { ValueObj::Array(RcArray::from(&item.map(Into::into)[..])) } } impl TryFrom<&ValueObj> for f64 { type Error = (); fn try_from(val: &ValueObj) -> Result { match val { ValueObj::Int(i) => Ok(*i as f64), ValueObj::Nat(n) => Ok(*n as f64), ValueObj::Float(f) => Ok(*f), ValueObj::Inf => Ok(f64::INFINITY), ValueObj::NegInf => Ok(f64::NEG_INFINITY), ValueObj::Bool(b) => Ok(if *b { 1.0 } else { 0.0 }), ValueObj::Mut(v) => f64::try_from(&*v.borrow()).map_err(|_| ()), _ => Err(()), } } } impl TryFrom for Type { type Error = ValueObj; fn try_from(val: ValueObj) -> Result { match val { ValueObj::Type(t) => match t { TypeObj::Builtin { t, .. } => Ok(t), TypeObj::Generated(gen) => Ok(gen.into_typ()), }, ValueObj::Record(rec) => { let mut fields = dict! {}; for (name, val) in rec.into_iter() { fields.insert(name, Type::try_from(val)?); } Ok(Type::Record(fields)) } ValueObj::Tuple(ts) => { let mut new_ts = vec![]; for v in ts.iter() { new_ts.push(Type::try_from(v.clone())?); } Ok(tuple_t(new_ts)) } ValueObj::Subr(subr) => subr.as_type().ok_or(ValueObj::Subr(subr)), ValueObj::Mut(v) => Type::try_from(v.borrow().clone()), other => Err(other), } } } impl<'a> TryFrom<&'a ValueObj> for &'a Type { type Error = (); fn try_from(val: &'a ValueObj) -> Result { match val { ValueObj::Type(t) => match t { TypeObj::Builtin { t, .. } => Ok(t), TypeObj::Generated(gen) => Ok(gen.typ()), }, _ => Err(()), } } } impl HasType for ValueObj { fn ref_t(&self) -> &Type { panic!("cannot get reference of the const") } fn ref_mut_t(&mut self) -> &mut Type { panic!("cannot get mutable reference of the const") } /// その要素だけの集合型を返す、クラスが欲しい場合は.classで #[inline] fn t(&self) -> Type { let name = Str::from(fresh_varname()); let pred = Predicate::eq(name.clone(), TyParam::Value(self.clone())); refinement(name, self.class(), pred) } fn signature_t(&self) -> Option<&Type> { None } fn signature_mut_t(&mut self) -> Option<&mut Type> { None } } impl ValueObj { pub fn builtin_class(t: Type) -> Self { ValueObj::Type(TypeObj::Builtin { t, meta_t: Type::ClassType, }) } pub fn builtin_trait(t: Type) -> Self { ValueObj::Type(TypeObj::Builtin { t, meta_t: Type::TraitType, }) } pub fn builtin_type(t: Type) -> Self { ValueObj::Type(TypeObj::Builtin { t, meta_t: Type::Type, }) } pub fn gen_t(gen: GenTypeObj) -> Self { ValueObj::Type(TypeObj::Generated(gen)) } // TODO: add Complex pub fn is_num(&self) -> bool { match self { Self::Float(_) | Self::Int(_) | Self::Nat(_) | Self::Bool(_) => true, Self::Mut(n) => n.borrow().is_num(), _ => false, } } pub fn is_float(&self) -> bool { match self { Self::Float(_) | Self::Int(_) | Self::Nat(_) | Self::Bool(_) => true, Self::Mut(n) => n.borrow().is_float(), _ => false, } } pub fn is_int(&self) -> bool { match self { Self::Int(_) | Self::Nat(_) | Self::Bool(_) => true, Self::Mut(n) => n.borrow().is_nat(), _ => false, } } pub fn is_nat(&self) -> bool { match self { Self::Nat(_) | Self::Bool(_) => true, Self::Mut(n) => n.borrow().is_nat(), _ => false, } } pub fn is_bool(&self) -> bool { match self { Self::Bool(_) => true, Self::Mut(n) => n.borrow().is_bool(), _ => false, } } pub const fn is_str(&self) -> bool { matches!(self, Self::Str(_)) } pub const fn is_type(&self) -> bool { matches!(self, Self::Type(_)) } pub const fn is_mut(&self) -> bool { matches!(self, Self::Mut(_)) } pub fn from_str(t: Type, content: Str) -> Option { match t { Type::Int => content.replace('_', "").parse::().ok().map(Self::Int), Type::Nat => content .trim_start_matches('-') // -0 -> 0 .replace('_', "") .parse::() .ok() .map(Self::Nat), Type::Float => content .replace('_', "") .parse::() .ok() .map(Self::Float), // TODO: Type::Ratio => content .replace('_', "") .parse::() .ok() .map(Self::Float), Type::Str => { if &content[..] == "\"\"" { Some(Self::Str(Str::from(""))) } else { let replaced = content .trim_start_matches(['\"', '\'']) .trim_end_matches(['\"', '\'']); Some(Self::Str(Str::rc(replaced))) } } Type::Bool => Some(Self::Bool(&content[..] == "True")), Type::NoneType => Some(Self::None), Type::Ellipsis => Some(Self::Ellipsis), Type::NotImplementedType => Some(Self::NotImplemented), Type::Inf => Some(Self::Inf), Type::NegInf => Some(Self::NegInf), _ => todo!("{t} {content}"), } } pub fn into_bytes(self, python_ver: PythonVersion) -> Vec { match self { Self::Int(i) => [vec![DataTypePrefix::Int32 as u8], i.to_le_bytes().to_vec()].concat(), // TODO: Natとしてシリアライズ Self::Nat(n) => [ vec![DataTypePrefix::Int32 as u8], (n as i32).to_le_bytes().to_vec(), ] .concat(), Self::Float(f) => [ vec![DataTypePrefix::BinFloat as u8], f.to_le_bytes().to_vec(), ] .concat(), Self::Str(s) => str_into_bytes(s, false), Self::Bool(true) => vec![DataTypePrefix::True as u8], Self::Bool(false) => vec![DataTypePrefix::False as u8], // TODO: SmallTuple Self::Array(arr) => { let mut bytes = Vec::with_capacity(arr.len()); bytes.push(DataTypePrefix::Tuple as u8); bytes.append(&mut (arr.len() as u32).to_le_bytes().to_vec()); for obj in arr.iter().cloned() { bytes.append(&mut obj.into_bytes(python_ver)); } bytes } Self::Tuple(tup) => { let mut bytes = Vec::with_capacity(tup.len()); bytes.push(DataTypePrefix::Tuple as u8); bytes.append(&mut (tup.len() as u32).to_le_bytes().to_vec()); for obj in tup.iter().cloned() { bytes.append(&mut obj.into_bytes(python_ver)); } bytes } Self::None => { vec![DataTypePrefix::None as u8] } Self::Code(c) => c.into_bytes(python_ver), // Dict other => { panic!( "{}", switch_lang!( "japanese" => format!("このオブジェクトはシリアライズできません: {other}"), "simplified_chinese" => format!("此对象无法序列化: {other}"), "traditional_chinese" => format!("此對象無法序列化: {other}"), "english" => format!("this object cannot be serialized: {other}"), ) ) } } } pub fn from_const_expr(expr: ConstExpr) -> Self { let ConstExpr::Lit(lit) = expr else { todo!() }; let t = type_from_token_kind(lit.token.kind); ValueObj::from_str(t, lit.token.content).unwrap() } pub fn tuple_from_const_args(args: ConstArgs) -> Self { Self::Tuple(Rc::from(&Self::vec_from_const_args(args)[..])) } pub fn vec_from_const_args(args: ConstArgs) -> Vec { args.deconstruct() .0 .into_iter() .map(|elem| Self::from_const_expr(elem.expr)) .collect::>() } pub fn class(&self) -> Type { match self { Self::Int(_) => Type::Int, Self::Nat(_) => Type::Nat, Self::Float(_) => Type::Float, Self::Str(_) => Type::Str, Self::Bool(_) => Type::Bool, Self::Array(arr) => array_t( // REVIEW: Never? arr.iter() .next() .map(|elem| elem.class()) .unwrap_or(Type::Never), TyParam::value(arr.len()), ), Self::Dict(dict) => { let tp = dict .iter() .map(|(k, v)| (TyParam::value(k.clone()), TyParam::value(v.clone()))); dict_t(TyParam::Dict(tp.collect())) } Self::Tuple(tup) => tuple_t(tup.iter().map(|v| v.class()).collect()), Self::Set(st) => set_t(inner_class(st), TyParam::value(st.len())), Self::Code(_) => Type::Code, Self::Record(rec) => { Type::Record(rec.iter().map(|(k, v)| (k.clone(), v.class())).collect()) } Self::DataClass { name, .. } => Type::Mono(name.clone()), Self::Subr(subr) => subr.sig_t().clone(), Self::Type(t_obj) => match t_obj { TypeObj::Builtin { meta_t, .. } => meta_t.clone(), TypeObj::Generated(gen_t) => gen_t.meta_type(), }, Self::None => Type::NoneType, Self::Ellipsis => Type::Ellipsis, Self::NotImplemented => Type::NotImplementedType, Self::Inf => Type::Inf, Self::NegInf => Type::NegInf, Self::Mut(m) => match &*m.borrow() { Self::Int(_) => mono("Int!"), Self::Nat(_) => mono("Nat!"), Self::Float(_) => mono("Float!"), Self::Str(_) => mono("Str!"), Self::Bool(_) => mono("Bool!"), Self::Array(arr) => poly( "Array!", vec![ // REVIEW: Never? TyParam::t( arr.iter() .next() .map(|elem| elem.class()) .unwrap_or(Type::Never), ), TyParam::value(arr.len()).mutate(), ], ), Self::Dict(dict) => poly( "Dict!", vec![TyParam::Dict( dict.iter() .map(|(k, v)| (TyParam::value(k.clone()), TyParam::value(v.clone()))) .collect(), )], ), other => { log!(err "{other} object cannot be mutated"); other.class() } }, Self::Illegal => Type::Failure, } } pub fn try_cmp(&self, other: &Self) -> Option { if self == other { return Some(Ordering::Equal); } match (self, other) { (l, r) if l.is_num() && r.is_num() => { f64::try_from(l).ok()?.partial_cmp(&f64::try_from(r).ok()?) } (Self::Inf, n) | (n, Self::NegInf) if n.is_num() => Some(Ordering::Greater), (n, Self::Inf) | (Self::NegInf, n) if n.is_num() => Some(Ordering::Less), (Self::NegInf, Self::Inf) => Some(Ordering::Less), (Self::Inf, Self::NegInf) => Some(Ordering::Greater), // REVIEW: 等しいとみなしてよいのか? (Self::Inf, Self::Inf) | (Self::NegInf, Self::NegInf) => Some(Ordering::Equal), (Self::Mut(m), other) => m.borrow().try_cmp(other), (self_, Self::Mut(m)) => self_.try_cmp(&m.borrow()), /* (Self::PlusEpsilon(l), r) => l.try_cmp(r) .map(|o| if matches!(o, Ordering::Equal) { Ordering::Less } else { o }), (l, Self::PlusEpsilon(r)) => l.try_cmp(r) .map(|o| if matches!(o, Ordering::Equal) { Ordering::Greater } else { o }), */ (_s, _o) => { if let Some(ValueObj::Bool(b)) = _s.clone().try_eq(_o.clone()) { if b { Some(Ordering::Equal) } else { None } } else { None } } } } // REVIEW: allow_divergenceオプションを付けるべきか? pub fn try_add(self, other: Self) -> Option { match (self, other) { (Self::Int(l), Self::Int(r)) => Some(Self::Int(l + r)), (Self::Nat(l), Self::Nat(r)) => Some(Self::Nat(l + r)), (Self::Float(l), Self::Float(r)) => Some(Self::Float(l + r)), (Self::Int(l), Self::Nat(r)) => Some(Self::from(l + r as i32)), (Self::Nat(l), Self::Int(r)) => Some(Self::Int(l as i32 + r)), (Self::Float(l), Self::Nat(r)) => Some(Self::Float(l - r as f64)), (Self::Int(l), Self::Float(r)) => Some(Self::Float(l as f64 - r)), (Self::Nat(l), Self::Float(r)) => Some(Self::Float(l as f64 - r)), (Self::Float(l), Self::Int(r)) => Some(Self::Float(l - r as f64)), (Self::Str(l), Self::Str(r)) => Some(Self::Str(Str::from(format!("{l}{r}")))), (inf @ (Self::Inf | Self::NegInf), _) | (_, inf @ (Self::Inf | Self::NegInf)) => { Some(inf) } (Self::Mut(m), other) => { { let ref_m = &mut *m.borrow_mut(); *ref_m = mem::take(ref_m).try_add(other)?; } Some(Self::Mut(m)) } (self_, Self::Mut(m)) => self_.try_add(m.borrow().clone()), _ => None, } } pub fn try_sub(self, other: Self) -> Option { match (self, other) { (Self::Int(l), Self::Int(r)) => Some(Self::Int(l - r)), (Self::Nat(l), Self::Nat(r)) => Some(Self::Int(l as i32 - r as i32)), (Self::Float(l), Self::Float(r)) => Some(Self::Float(l - r)), (Self::Int(l), Self::Nat(r)) => Some(Self::from(l - r as i32)), (Self::Nat(l), Self::Int(r)) => Some(Self::from(l as i32 - r)), (Self::Float(l), Self::Nat(r)) => Some(Self::from(l - r as f64)), (Self::Nat(l), Self::Float(r)) => Some(Self::from(l as f64 - r)), (Self::Float(l), Self::Int(r)) => Some(Self::from(l - r as f64)), (Self::Int(l), Self::Float(r)) => Some(Self::from(l as f64 - r)), (inf @ (Self::Inf | Self::NegInf), other) | (other, inf @ (Self::Inf | Self::NegInf)) if other != Self::Inf && other != Self::NegInf => { Some(inf) } (Self::Mut(m), other) => { { let ref_m = &mut *m.borrow_mut(); *ref_m = mem::take(ref_m).try_sub(other)?; } Some(Self::Mut(m)) } (self_, Self::Mut(m)) => self_.try_sub(m.borrow().clone()), _ => None, } } pub fn try_mul(self, other: Self) -> Option { match (self, other) { (Self::Int(l), Self::Int(r)) => Some(Self::from(l * r)), (Self::Nat(l), Self::Nat(r)) => Some(Self::Nat(l * r)), (Self::Float(l), Self::Float(r)) => Some(Self::Float(l * r)), (Self::Int(l), Self::Nat(r)) => Some(Self::Int(l * r as i32)), (Self::Nat(l), Self::Int(r)) => Some(Self::Int(l as i32 * r)), (Self::Float(l), Self::Nat(r)) => Some(Self::from(l * r as f64)), (Self::Nat(l), Self::Float(r)) => Some(Self::from(l as f64 * r)), (Self::Float(l), Self::Int(r)) => Some(Self::from(l * r as f64)), (Self::Int(l), Self::Float(r)) => Some(Self::from(l as f64 * r)), (Self::Str(l), Self::Nat(r)) => Some(Self::Str(Str::from(l.repeat(r as usize)))), (inf @ (Self::Inf | Self::NegInf), _) | (_, inf @ (Self::Inf | Self::NegInf)) => { Some(inf) } (Self::Mut(m), other) => { { let ref_m = &mut *m.borrow_mut(); *ref_m = mem::take(ref_m).try_mul(other)?; } Some(Self::Mut(m)) } (self_, Self::Mut(m)) => self_.try_mul(m.borrow().clone()), _ => None, } } pub fn try_div(self, other: Self) -> Option { match (self, other) { (Self::Int(l), Self::Int(r)) => Some(Self::Float(l as f64 / r as f64)), (Self::Nat(l), Self::Nat(r)) => Some(Self::Float(l as f64 / r as f64)), (Self::Float(l), Self::Float(r)) => Some(Self::Float(l / r)), (Self::Int(l), Self::Nat(r)) => Some(Self::Float(l as f64 / r as f64)), (Self::Nat(l), Self::Int(r)) => Some(Self::Float(l as f64 / r as f64)), (Self::Float(l), Self::Nat(r)) => Some(Self::Float(l / r as f64)), (Self::Nat(l), Self::Float(r)) => Some(Self::from(l as f64 / r)), (Self::Float(l), Self::Int(r)) => Some(Self::from(l / r as f64)), (Self::Int(l), Self::Float(r)) => Some(Self::from(l as f64 / r)), (Self::Mut(m), other) => { { let ref_m = &mut *m.borrow_mut(); *ref_m = mem::take(ref_m).try_div(other)?; } Some(Self::Mut(m)) } (self_, Self::Mut(m)) => self_.try_div(m.borrow().clone()), // TODO: x/±Inf = 0 _ => None, } } pub fn try_floordiv(self, other: Self) -> Option { match (self, other) { (Self::Int(l), Self::Int(r)) => Some(Self::Int(l / r)), (Self::Nat(l), Self::Nat(r)) => Some(Self::Nat(l / r)), (Self::Float(l), Self::Float(r)) => Some(Self::Float((l / r).floor())), (Self::Int(l), Self::Nat(r)) => Some(Self::Int(l / r as i32)), (Self::Nat(l), Self::Int(r)) => Some(Self::Int(l as i32 / r)), (Self::Float(l), Self::Nat(r)) => Some(Self::Float((l / r as f64).floor())), (Self::Nat(l), Self::Float(r)) => Some(Self::Float((l as f64 / r).floor())), (Self::Float(l), Self::Int(r)) => Some(Self::Float((l / r as f64).floor())), (Self::Int(l), Self::Float(r)) => Some(Self::Float((l as f64 / r).floor())), (Self::Mut(m), other) => { { let ref_m = &mut *m.borrow_mut(); *ref_m = mem::take(ref_m).try_div(other)?; } Some(Self::Mut(m)) } (self_, Self::Mut(m)) => self_.try_floordiv(m.borrow().clone()), // TODO: x//±Inf = 0 _ => None, } } pub fn try_gt(self, other: Self) -> Option { match (self, other) { (Self::Int(l), Self::Int(r)) => Some(Self::from(l > r)), (Self::Nat(l), Self::Nat(r)) => Some(Self::from(l > r)), (Self::Float(l), Self::Float(r)) => Some(Self::from(l > r)), (Self::Int(l), Self::Nat(r)) => Some(Self::from(l > r as i32)), (Self::Nat(l), Self::Int(r)) => Some(Self::from(l as i32 > r)), (Self::Float(l), Self::Nat(r)) => Some(Self::from(l > r as f64)), (Self::Nat(l), Self::Float(r)) => Some(Self::from(l as f64 > r)), (Self::Float(l), Self::Int(r)) => Some(Self::from(l > r as f64)), (Self::Int(l), Self::Float(r)) => Some(Self::from(l as f64 > r)), (Self::Mut(m), other) => { { let ref_m = &mut *m.borrow_mut(); *ref_m = mem::take(ref_m).try_gt(other)?; } Some(Self::Mut(m)) } (self_, Self::Mut(m)) => self_.try_gt(m.borrow().clone()), _ => None, } } pub fn try_ge(self, other: Self) -> Option { match (self, other) { (Self::Int(l), Self::Int(r)) => Some(Self::from(l >= r)), (Self::Nat(l), Self::Nat(r)) => Some(Self::from(l >= r)), (Self::Float(l), Self::Float(r)) => Some(Self::from(l >= r)), (Self::Int(l), Self::Nat(r)) => Some(Self::from(l >= r as i32)), (Self::Nat(l), Self::Int(r)) => Some(Self::from(l as i32 >= r)), (Self::Float(l), Self::Nat(r)) => Some(Self::from(l >= r as f64)), (Self::Nat(l), Self::Float(r)) => Some(Self::from(l as f64 >= r)), (Self::Float(l), Self::Int(r)) => Some(Self::from(l >= r as f64)), (Self::Int(l), Self::Float(r)) => Some(Self::from(l as f64 >= r)), (Self::Mut(m), other) => { { let ref_m = &mut *m.borrow_mut(); *ref_m = mem::take(ref_m).try_ge(other)?; } Some(Self::Mut(m)) } (self_, Self::Mut(m)) => self_.try_ge(m.borrow().clone()), _ => None, } } pub fn try_lt(self, other: Self) -> Option { match (self, other) { (Self::Int(l), Self::Int(r)) => Some(Self::from(l < r)), (Self::Nat(l), Self::Nat(r)) => Some(Self::from(l < r)), (Self::Float(l), Self::Float(r)) => Some(Self::from(l < r)), (Self::Int(l), Self::Nat(r)) => Some(Self::from(l < r as i32)), (Self::Nat(l), Self::Int(r)) => Some(Self::from((l as i32) < r)), (Self::Float(l), Self::Nat(r)) => Some(Self::from(l < r as f64)), (Self::Nat(l), Self::Float(r)) => Some(Self::from((l as f64) < r)), (Self::Float(l), Self::Int(r)) => Some(Self::from(l < r as f64)), (Self::Int(l), Self::Float(r)) => Some(Self::from((l as f64) < r)), (Self::Mut(m), other) => { { let ref_m = &mut *m.borrow_mut(); *ref_m = mem::take(ref_m).try_lt(other)?; } Some(Self::Mut(m)) } (self_, Self::Mut(m)) => self_.try_lt(m.borrow().clone()), _ => None, } } pub fn try_le(self, other: Self) -> Option { match (self, other) { (Self::Int(l), Self::Int(r)) => Some(Self::from(l <= r)), (Self::Nat(l), Self::Nat(r)) => Some(Self::from(l <= r)), (Self::Float(l), Self::Float(r)) => Some(Self::from(l <= r)), (Self::Int(l), Self::Nat(r)) => Some(Self::from(l <= r as i32)), (Self::Nat(l), Self::Int(r)) => Some(Self::from((l as i32) <= r)), (Self::Float(l), Self::Nat(r)) => Some(Self::from(l <= r as f64)), (Self::Nat(l), Self::Float(r)) => Some(Self::from((l as f64) <= r)), (Self::Float(l), Self::Int(r)) => Some(Self::from(l <= r as f64)), (Self::Int(l), Self::Float(r)) => Some(Self::from((l as f64) <= r)), (Self::Mut(m), other) => { { let ref_m = &mut *m.borrow_mut(); *ref_m = mem::take(ref_m).try_le(other)?; } Some(Self::Mut(m)) } (self_, Self::Mut(m)) => self_.try_le(m.borrow().clone()), _ => None, } } pub fn try_eq(self, other: Self) -> Option { match (self, other) { (Self::Int(l), Self::Int(r)) => Some(Self::from(l == r)), (Self::Nat(l), Self::Nat(r)) => Some(Self::from(l == r)), (Self::Float(l), Self::Float(r)) => Some(Self::from(l == r)), (Self::Int(l), Self::Nat(r)) => Some(Self::from(l == r as i32)), (Self::Nat(l), Self::Int(r)) => Some(Self::from(l as i32 == r)), (Self::Float(l), Self::Nat(r)) => Some(Self::from(l == r as f64)), (Self::Nat(l), Self::Float(r)) => Some(Self::from(l as f64 == r)), (Self::Float(l), Self::Int(r)) => Some(Self::from(l == r as f64)), (Self::Int(l), Self::Float(r)) => Some(Self::from(l as f64 == r)), (Self::Str(l), Self::Str(r)) => Some(Self::from(l == r)), (Self::Bool(l), Self::Bool(r)) => Some(Self::from(l == r)), (Self::Type(l), Self::Type(r)) => Some(Self::from(l == r)), (Self::Mut(m), other) => { { let ref_m = &mut *m.borrow_mut(); *ref_m = mem::take(ref_m).try_eq(other)?; } Some(Self::Mut(m)) } (self_, Self::Mut(m)) => self_.try_eq(m.borrow().clone()), // TODO: _ => None, } } pub fn try_ne(self, other: Self) -> Option { match (self, other) { (Self::Int(l), Self::Int(r)) => Some(Self::from(l != r)), (Self::Nat(l), Self::Nat(r)) => Some(Self::from(l != r)), (Self::Float(l), Self::Float(r)) => Some(Self::from(l != r)), (Self::Int(l), Self::Nat(r)) => Some(Self::from(l != r as i32)), (Self::Nat(l), Self::Int(r)) => Some(Self::from(l as i32 != r)), (Self::Float(l), Self::Nat(r)) => Some(Self::from(l != r as f64)), (Self::Nat(l), Self::Float(r)) => Some(Self::from(l as f64 != r)), (Self::Float(l), Self::Int(r)) => Some(Self::from(l != r as f64)), (Self::Int(l), Self::Float(r)) => Some(Self::from(l as f64 != r)), (Self::Str(l), Self::Str(r)) => Some(Self::from(l != r)), (Self::Bool(l), Self::Bool(r)) => Some(Self::from(l != r)), (Self::Type(l), Self::Type(r)) => Some(Self::from(l != r)), (Self::Mut(m), other) => { { let ref_m = &mut *m.borrow_mut(); *ref_m = mem::take(ref_m).try_ne(other)?; } Some(Self::Mut(m)) } (self_, Self::Mut(m)) => self_.try_ne(m.borrow().clone()), _ => None, } } pub fn try_or(self, other: Self) -> Option { match (self, other) { (Self::Bool(l), Self::Bool(r)) => Some(Self::from(l || r)), _ => None, } } pub fn try_get_attr(&self, attr: &Field) -> Option { match self { Self::Type(typ) => match typ { TypeObj::Builtin { t: builtin, .. } => { log!(err "TODO: {builtin}{attr}"); None } TypeObj::Generated(gen) => match gen.typ() { Type::Record(rec) => { let t = rec.get(attr)?; Some(ValueObj::builtin_type(t.clone())) } _ => None, }, }, Self::Record(rec) => { let v = rec.get(attr)?; Some(v.clone()) } _ => None, } } pub fn as_type(&self) -> Option { match self { Self::Type(t) => Some(t.clone()), Self::Record(rec) => { let mut attr_ts = dict! {}; for (k, v) in rec.iter() { attr_ts.insert(k.clone(), v.as_type()?.typ().clone()); } Some(TypeObj::builtin_type(Type::Record(attr_ts))) } Self::Subr(subr) => subr.as_type().map(TypeObj::builtin_type), Self::Array(elems) | Self::Tuple(elems) => { log!(err "as_type({})", erg_common::fmt_vec(elems)); None } Self::Dict(elems) => { log!(err "as_type({elems})"); None } _other => None, } } } pub mod value_set { use crate::ty::{Type, ValueObj}; use erg_common::set::Set; // false -> SyntaxError pub fn is_homogeneous(set: &Set) -> bool { if let Some(first) = set.iter().next() { let l_first = first.class(); // `Set` iteration order is guaranteed (if not changed) set.iter().skip(1).all(|c| c.class() == l_first) } else { true } } pub fn inner_class(set: &Set) -> Type { set.iter() .next() .map(|elem| elem.class()) .unwrap_or(Type::Never) } pub fn max(set: &Set) -> Option { if !is_homogeneous(set) { return None; } set.iter() .max_by(|x, y| x.try_cmp(y).unwrap()) .map(Clone::clone) } pub fn min(set: &Set) -> Option { if !is_homogeneous(set) { return None; } set.iter() .min_by(|x, y| x.try_cmp(y).unwrap()) .map(Clone::clone) } }