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
141
142
143
144
145
146
147
|
use std::alloc::Layout;
use std::any::TypeId;
pub use engine_macros::Reflection;
pub trait With: 'static
{
const REFLECTION: &Reflection;
fn reflection() -> &'static Reflection
where
Self: Sized;
fn get_reflection(&self) -> &'static Reflection;
}
#[derive(Debug, Clone)]
#[non_exhaustive]
pub enum Reflection
{
Struct(Struct),
Array(Array),
Slice(Slice),
Literal,
}
#[derive(Debug, Clone)]
pub struct Struct
{
pub fields: &'static [StructField],
}
#[derive(Debug, Clone)]
pub struct StructField
{
pub name: &'static str,
pub index: usize,
pub layout: Layout,
pub byte_offset: usize,
pub type_id: TypeId,
pub type_name: &'static str,
pub reflection: &'static Reflection,
}
#[derive(Debug, Clone)]
pub struct Array
{
pub item_reflection: &'static Reflection,
pub length: usize,
}
#[derive(Debug, Clone)]
pub struct Slice
{
pub item_reflection: &'static Reflection,
}
macro_rules! impl_with_for_literals {
($($literal: ty),*) => {
$(
impl With for $literal
{
const REFLECTION: &Reflection = &Reflection::Literal;
fn reflection() -> &'static Reflection
where
Self: Sized
{
Self::REFLECTION
}
fn get_reflection(&self) -> &'static Reflection
{
Self::reflection()
}
}
)*
};
}
impl_with_for_literals!(
u8,
i8,
u16,
i16,
u32,
i32,
u64,
i64,
u128,
i128,
f32,
f64,
usize,
isize,
&'static str
);
impl<T: With, const LEN: usize> With for [T; LEN]
{
const REFLECTION: &Reflection = &Reflection::Array(Array {
item_reflection: T::REFLECTION,
length: LEN,
});
fn reflection() -> &'static Reflection
where
Self: Sized,
{
Self::REFLECTION
}
fn get_reflection(&self) -> &'static Reflection
{
Self::reflection()
}
}
impl<T: With> With for &'static [T]
{
const REFLECTION: &Reflection =
&Reflection::Slice(Slice { item_reflection: T::REFLECTION });
fn reflection() -> &'static Reflection
where
Self: Sized,
{
Self::REFLECTION
}
fn get_reflection(&self) -> &'static Reflection
{
Self::reflection()
}
}
// Used by the Reflection derive macro
#[doc(hidden)]
pub mod __private
{
pub const fn get_type_reflection<T>() -> &'static super::Reflection
where
T: super::With,
{
T::REFLECTION
}
}
|