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
148
149
150
151
152
153
154
155
156
157
158
use std::sync::Arc;
#[cfg(any(target_arch = "wasm32", feature = "cef"))]
pub(crate) const ZAP_PARAM_STRING: u32 = 0;
#[cfg(any(target_arch = "wasm32", feature = "cef"))]
pub(crate) const ZAP_PARAM_READ_ONLY_UINT8_BUFFER: u32 = 1;
#[cfg(any(target_arch = "wasm32", feature = "cef"))]
pub(crate) const ZAP_PARAM_UINT8_BUFFER: u32 = 2;
#[cfg(any(target_arch = "wasm32", feature = "cef"))]
pub(crate) const ZAP_PARAM_FLOAT32_BUFFER: u32 = 3;
#[cfg(any(target_arch = "wasm32", feature = "cef"))]
pub(crate) const ZAP_PARAM_READ_ONLY_FLOAT32_BUFFER: u32 = 4;
#[cfg(any(target_arch = "wasm32", feature = "cef"))]
pub(crate) const ZAP_PARAM_UINT32_BUFFER: u32 = 5;
#[cfg(any(target_arch = "wasm32", feature = "cef"))]
pub(crate) const ZAP_PARAM_READ_ONLY_UINT32_BUFFER: u32 = 6;
#[derive(Clone, Debug, PartialEq)]
pub enum ZapParam {
String(String),
ReadOnlyU8Buffer(Arc<Vec<u8>>),
ReadOnlyU32Buffer(Arc<Vec<u32>>),
ReadOnlyF32Buffer(Arc<Vec<f32>>),
MutableU8Buffer(Vec<u8>),
MutableF32Buffer(Vec<f32>),
MutableU32Buffer(Vec<u32>),
}
impl ZapParam {
pub fn as_str(&self) -> &str {
match self {
ZapParam::String(v) => v,
_ => panic!("ZapParam is not a String"),
}
}
pub fn as_u8_slice(&self) -> &[u8] {
match self {
ZapParam::MutableU8Buffer(v) => v,
ZapParam::ReadOnlyU8Buffer(v) => v,
_ => panic!("{:?} is not a U8Buffer or ReadOnlyU8Buffer", self),
}
}
pub fn as_u32_slice(&self) -> &[u32] {
match self {
ZapParam::MutableU32Buffer(v) => v,
ZapParam::ReadOnlyU32Buffer(v) => v,
_ => panic!("{:?} is not a U32Buffer or ReadOnlyU32Buffer", self),
}
}
pub fn as_f32_slice(&self) -> &[f32] {
match self {
ZapParam::MutableF32Buffer(v) => v,
ZapParam::ReadOnlyF32Buffer(v) => v,
_ => panic!("{:?} is not a F32Buffer or ReadOnlyF32Buffer", self),
}
}
pub fn as_arc_vec_u8(&self) -> Arc<Vec<u8>> {
match self {
ZapParam::ReadOnlyU8Buffer(v) => Arc::clone(v),
_ => panic!("{:?} is not a ReadOnlyU8Buffer", self),
}
}
pub fn as_arc_vec_u32(&self) -> Arc<Vec<u32>> {
match self {
ZapParam::ReadOnlyU32Buffer(v) => Arc::clone(v),
_ => panic!("{:?} is not a ReadOnlyU32Buffer", self),
}
}
pub fn as_arc_vec_f32(&self) -> Arc<Vec<f32>> {
match self {
ZapParam::ReadOnlyF32Buffer(v) => Arc::clone(v),
_ => panic!("{:?} is not a ReadOnlyF32Buffer", self),
}
}
pub fn into_string(self) -> String {
match self {
ZapParam::String(v) => v,
_ => panic!("ZapParam is not a String"),
}
}
pub fn into_vec_u8(self) -> Vec<u8> {
match self {
ZapParam::MutableU8Buffer(v) => v,
_ => panic!("{:?} is not a U8Buffer", self),
}
}
pub fn into_vec_u32(self) -> Vec<u32> {
match self {
ZapParam::MutableU32Buffer(v) => v,
_ => panic!("{:?} is not a U32Buffer", self),
}
}
pub fn into_vec_f32(self) -> Vec<f32> {
match self {
ZapParam::MutableF32Buffer(v) => v,
_ => panic!("{:?} is not a F32Buffer", self),
}
}
}
pub trait IntoParam {
fn into_param(self) -> ZapParam;
}
impl IntoParam for String {
fn into_param(self) -> ZapParam {
ZapParam::String(self)
}
}
impl IntoParam for Vec<u8> {
fn into_param(self) -> ZapParam {
ZapParam::MutableU8Buffer(self)
}
}
impl IntoParam for Vec<f32> {
fn into_param(self) -> ZapParam {
ZapParam::MutableF32Buffer(self)
}
}
impl IntoParam for Arc<Vec<u8>> {
fn into_param(self) -> ZapParam {
ZapParam::ReadOnlyU8Buffer(self)
}
}
impl IntoParam for Arc<Vec<f32>> {
fn into_param(self) -> ZapParam {
ZapParam::ReadOnlyF32Buffer(self)
}
}
impl IntoParam for Arc<Vec<u32>> {
fn into_param(self) -> ZapParam {
ZapParam::ReadOnlyU32Buffer(self)
}
}
impl IntoParam for Vec<u32> {
fn into_param(self) -> ZapParam {
ZapParam::MutableU32Buffer(self)
}
}