1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
use crate::{marshal::Marshal, Runtime};
use mun_memory::{HasStaticType, Type};

/// A type to emulate dynamic typing across compilation units for static types.
pub trait ReturnTypeReflection: Sized {
    /// Returns true if this specified type can be stored in an instance `Self`.
    fn accepts_type(ty: &Type) -> bool;

    /// Returns a type hint to indicate the name of this type
    fn type_hint() -> &'static str;
}

/// A type to emulate dynamic typing across compilation units for statically typed values.
pub trait ArgumentReflection: Sized {
    /// Retrieves the argument's type information.
    fn type_info(&self, runtime: &Runtime) -> Type;
}

macro_rules! impl_primitive_type {
    ($($ty:ty),+) => {
        $(
            impl ArgumentReflection for $ty {
                fn type_info(&self, _runtime: &Runtime) -> Type {
                    <Self as HasStaticType>::type_info().clone()
                }
            }

            impl ReturnTypeReflection for $ty {
                fn accepts_type(ty: &Type) -> bool {
                    ty == <Self as HasStaticType>::type_info()
                }

                fn type_hint() -> &'static str {
                    <Self as HasStaticType>::type_info().name()
                }
            }

            impl<'t> Marshal<'t> for $ty {
                type MunType = $ty;

                fn marshal_from<'r>(value: Self::MunType, _runtime: &'r Runtime) -> Self
                where
                    Self: 't,
                    'r: 't,
                {
                    value
                }

                fn marshal_into<'r>(self) -> Self::MunType {
                    self
                }

                fn marshal_from_ptr<'r>(
                    ptr: std::ptr::NonNull<Self::MunType>,
                    _runtime: &'r Runtime,
                    _type_info: &Type,
                ) -> Self
                where
                    Self: 't,
                    'r: 't,
                {
                    // TODO: Avoid unsafe `read` fn by using adding `Clone` trait to T.
                    // This also requires changes to the `impl Struct`
                    unsafe { ptr.as_ptr().read() }
                }

                fn marshal_to_ptr(
                    value: Self,
                    mut ptr: std::ptr::NonNull<Self::MunType>,
                    _type_info: &Type,
                ) {
                    unsafe { *ptr.as_mut() = value };
                }
            }
        )+
    }
}

impl_primitive_type!(
    i8,
    i16,
    i32,
    i64,
    i128,
    isize,
    u8,
    u16,
    u32,
    u64,
    u128,
    usize,
    f32,
    f64,
    bool,
    ()
);

impl<T> ArgumentReflection for *const T
where
    *const T: HasStaticType,
{
    fn type_info(&self, _runtime: &Runtime) -> Type {
        <Self as HasStaticType>::type_info().clone()
    }
}

impl<T> ReturnTypeReflection for *const T
where
    *const T: HasStaticType,
{
    fn accepts_type(ty: &Type) -> bool {
        <*const T as HasStaticType>::type_info() == ty
    }

    fn type_hint() -> &'static str {
        <*const T as HasStaticType>::type_info().name()
    }
}

impl<T> ArgumentReflection for *mut T
where
    *mut T: HasStaticType,
{
    fn type_info(&self, _runtime: &Runtime) -> Type {
        <Self as HasStaticType>::type_info().clone()
    }
}

impl<T> ReturnTypeReflection for *mut T
where
    *mut T: HasStaticType,
{
    fn accepts_type(ty: &Type) -> bool {
        <*mut T as HasStaticType>::type_info() == ty
    }

    fn type_hint() -> &'static str {
        <*mut T as HasStaticType>::type_info().name()
    }
}