use crate::{Stack, Value, ValueError, ValueType, ValueTypeInfo, VmError};
mod bytes;
mod fn_ptr;
mod hash_map;
mod object;
mod option;
mod primitive;
mod result;
mod string;
mod tuple;
mod vec;
pub trait IntoArgs {
fn into_args(self, stack: &mut Stack) -> Result<(), VmError>;
fn into_vec(self) -> Result<Vec<Value>, VmError>;
fn count() -> usize;
}
pub trait ReflectValueType: Sized {
type Owned;
fn value_type() -> ValueType;
fn value_type_info() -> ValueTypeInfo;
}
pub trait ToValue: Sized {
fn to_value(self) -> Result<Value, ValueError>;
}
pub trait FromValue: 'static + Sized {
fn from_value(value: Value) -> Result<Self, ValueError>;
}
pub trait UnsafeFromValue: Sized {
type Output: 'static;
type Guard: 'static;
unsafe fn unsafe_from_value(value: Value) -> Result<(Self::Output, Self::Guard), ValueError>;
unsafe fn to_arg(output: Self::Output) -> Self;
}
impl<T> UnsafeFromValue for T
where
T: FromValue,
{
type Output = T;
type Guard = ();
unsafe fn unsafe_from_value(value: Value) -> Result<(Self, Self::Guard), ValueError> {
Ok((T::from_value(value)?, ()))
}
unsafe fn to_arg(output: Self::Output) -> Self {
output
}
}
impl FromValue for Value {
fn from_value(value: Value) -> Result<Self, ValueError> {
Ok(value)
}
}
impl ToValue for Value {
fn to_value(self) -> Result<Value, ValueError> {
Ok(self)
}
}
impl ToValue for &Value {
fn to_value(self) -> Result<Value, ValueError> {
Ok(self.clone())
}
}
macro_rules! impl_into_args {
() => {
impl_into_args!{@impl 0,}
};
({$ty:ident, $value:ident, $count:expr}, $({$l_ty:ident, $l_value:ident, $l_count:expr},)*) => {
impl_into_args!{@impl $count, {$ty, $value, $count}, $({$l_ty, $l_value, $l_count},)*}
impl_into_args!{$({$l_ty, $l_value, $l_count},)*}
};
(@impl $count:expr, $({$ty:ident, $value:ident, $ignore_count:expr},)*) => {
impl<$($ty,)*> IntoArgs for ($($ty,)*)
where
$($ty: ToValue + std::fmt::Debug,)*
{
#[allow(unused)]
fn into_args(self, stack: &mut Stack) -> Result<(), VmError> {
let ($($value,)*) = self;
impl_into_args!(@push stack, [$($value)*]);
Ok(())
}
#[allow(unused)]
fn into_vec(self) -> Result<Vec<Value>, VmError> {
let ($($value,)*) = self;
$(let $value = <$ty>::to_value($value)?;)*
Ok(vec![$($value,)*])
}
fn count() -> usize {
$count
}
}
};
(@push $stack:ident, [] $($value:ident)*) => {
$(
let $value = $value.to_value()?;
$stack.push($value);
)*
};
(@push $vm:ident, [$first:ident $($rest:ident)*] $($value:ident)*) => {
impl_into_args!(@push $vm, [$($rest)*] $first $($value)*)
};
}
impl_into_args!(
{H, h, 8},
{G, g, 7},
{F, f, 6},
{E, e, 5},
{D, d, 4},
{C, c, 3},
{B, b, 2},
{A, a, 1},
);