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
use std::any::TypeId;
use std::mem::transmute_copy;
use crate::ByteString;
use crate::U16String;
use crate::ZeroCopyBuf;
pub trait Serializable {
fn to_v8<'a>(
&mut self,
scope: &mut v8::HandleScope<'a>,
) -> Result<v8::Local<'a, v8::Value>, crate::Error>;
}
impl<T: serde::Serialize> Serializable for T {
fn to_v8<'a>(
&mut self,
scope: &mut v8::HandleScope<'a>,
) -> Result<v8::Local<'a, v8::Value>, crate::Error> {
crate::to_v8(scope, self)
}
}
pub enum SerializablePkg {
Primitive(Primitive),
Serializable(Box<dyn Serializable>),
}
impl SerializablePkg {
pub fn to_v8<'a>(
&mut self,
scope: &mut v8::HandleScope<'a>,
) -> Result<v8::Local<'a, v8::Value>, crate::Error> {
match self {
Self::Primitive(x) => crate::to_v8(scope, x),
Self::Serializable(x) => x.to_v8(scope),
}
}
}
pub enum Primitive {
Unit,
Bool(bool),
Int8(i8),
Int16(i16),
Int32(i32),
Int64(i64),
UInt8(u8),
UInt16(u16),
UInt32(u32),
UInt64(u64),
Float32(f32),
Float64(f64),
String(String),
ZeroCopyBuf(ZeroCopyBuf),
ByteString(ByteString),
U16String(U16String),
}
impl serde::Serialize for Primitive {
fn serialize<S>(&self, s: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Unit => ().serialize(s),
Self::Bool(x) => x.serialize(s),
Self::Int8(x) => x.serialize(s),
Self::Int16(x) => x.serialize(s),
Self::Int32(x) => x.serialize(s),
Self::Int64(x) => x.serialize(s),
Self::UInt8(x) => x.serialize(s),
Self::UInt16(x) => x.serialize(s),
Self::UInt32(x) => x.serialize(s),
Self::UInt64(x) => x.serialize(s),
Self::Float32(x) => x.serialize(s),
Self::Float64(x) => x.serialize(s),
Self::String(x) => x.serialize(s),
Self::ZeroCopyBuf(x) => x.serialize(s),
Self::ByteString(x) => x.serialize(s),
Self::U16String(x) => x.serialize(s),
}
}
}
impl<T: serde::Serialize + 'static> From<T> for SerializablePkg {
fn from(x: T) -> Self {
#[inline(always)]
fn tc<T, U>(src: T) -> U {
let x = unsafe { transmute_copy(&src) };
std::mem::forget(src);
x
}
let tid = TypeId::of::<T>();
if tid == TypeId::of::<()>() {
Self::Primitive(Primitive::Unit)
} else if tid == TypeId::of::<bool>() {
Self::Primitive(Primitive::Bool(tc(x)))
} else if tid == TypeId::of::<i8>() {
Self::Primitive(Primitive::Int8(tc(x)))
} else if tid == TypeId::of::<i16>() {
Self::Primitive(Primitive::Int16(tc(x)))
} else if tid == TypeId::of::<i32>() {
Self::Primitive(Primitive::Int32(tc(x)))
} else if tid == TypeId::of::<i64>() {
Self::Primitive(Primitive::Int64(tc(x)))
} else if tid == TypeId::of::<u8>() {
Self::Primitive(Primitive::UInt8(tc(x)))
} else if tid == TypeId::of::<u16>() {
Self::Primitive(Primitive::UInt16(tc(x)))
} else if tid == TypeId::of::<u32>() {
Self::Primitive(Primitive::UInt32(tc(x)))
} else if tid == TypeId::of::<u64>() {
Self::Primitive(Primitive::UInt64(tc(x)))
} else if tid == TypeId::of::<f32>() {
Self::Primitive(Primitive::Float32(tc(x)))
} else if tid == TypeId::of::<f64>() {
Self::Primitive(Primitive::Float64(tc(x)))
} else if tid == TypeId::of::<String>() {
Self::Primitive(Primitive::String(tc(x)))
} else if tid == TypeId::of::<ZeroCopyBuf>() {
Self::Primitive(Primitive::ZeroCopyBuf(tc(x)))
} else if tid == TypeId::of::<ByteString>() {
Self::Primitive(Primitive::ByteString(tc(x)))
} else if tid == TypeId::of::<U16String>() {
Self::Primitive(Primitive::U16String(tc(x)))
} else {
Self::Serializable(Box::new(x))
}
}
}