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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
use std::{any::Any, marker::PhantomData, sync::Arc};
use anyhow::Result;
use super::{Data, Linker};
pub trait HostComponent: Send + Sync + 'static {
type Data: Send + Sized + 'static;
fn add_to_linker<T: Send>(
linker: &mut Linker<T>,
get: impl Fn(&mut Data<T>) -> &mut Self::Data + Send + Sync + Copy + 'static,
) -> Result<()>;
fn build_data(&self) -> Self::Data;
}
impl<HC: HostComponent> HostComponent for Arc<HC> {
type Data = HC::Data;
fn add_to_linker<T: Send>(
linker: &mut Linker<T>,
get: impl Fn(&mut Data<T>) -> &mut Self::Data + Send + Sync + Copy + 'static,
) -> Result<()> {
HC::add_to_linker(linker, get)
}
fn build_data(&self) -> Self::Data {
(**self).build_data()
}
}
pub struct HostComponentDataHandle<HC: HostComponent> {
idx: usize,
_phantom: PhantomData<fn() -> HC::Data>,
}
impl<HC: HostComponent> Copy for HostComponentDataHandle<HC> {}
impl<HC: HostComponent> Clone for HostComponentDataHandle<HC> {
fn clone(&self) -> Self {
Self {
idx: self.idx,
_phantom: PhantomData,
}
}
}
type DataBuilder = Box<dyn Fn() -> Box<dyn Any + Send> + Send + Sync>;
pub struct HostComponentsBuilder {
data_builders: Vec<DataBuilder>,
}
impl HostComponentsBuilder {
pub fn add_host_component<T: Send, HC: HostComponent + 'static>(
&mut self,
linker: &mut Linker<T>,
host_component: HC,
) -> Result<HostComponentDataHandle<HC>> {
let idx = self.data_builders.len();
self.data_builders
.push(Box::new(move || Box::new(host_component.build_data())));
HC::add_to_linker(linker, move |data| {
data.host_components_data
.get_or_insert_idx(idx)
.downcast_mut()
.unwrap()
})?;
Ok(HostComponentDataHandle::<HC> {
idx,
_phantom: PhantomData,
})
}
pub fn build(self) -> HostComponents {
let data_builders = Arc::new(self.data_builders);
HostComponents { data_builders }
}
}
pub struct HostComponents {
data_builders: Arc<Vec<DataBuilder>>,
}
impl HostComponents {
pub fn builder() -> HostComponentsBuilder {
HostComponentsBuilder {
data_builders: Default::default(),
}
}
pub fn new_data(&self) -> HostComponentsData {
let data = std::iter::repeat_with(Default::default)
.take(self.data_builders.len())
.collect();
HostComponentsData {
data,
data_builders: self.data_builders.clone(),
}
}
}
pub struct HostComponentsData {
data: Vec<Option<Box<dyn Any + Send>>>,
data_builders: Arc<Vec<DataBuilder>>,
}
impl HostComponentsData {
pub fn set<HC: HostComponent>(&mut self, handle: HostComponentDataHandle<HC>, data: HC::Data) {
self.data[handle.idx] = Some(Box::new(data));
}
pub fn get_or_insert<HC: HostComponent>(
&mut self,
handle: HostComponentDataHandle<HC>,
) -> &mut HC::Data {
let x = self.get_or_insert_idx(handle.idx);
x.downcast_mut().unwrap()
}
fn get_or_insert_idx(&mut self, idx: usize) -> &mut Box<dyn Any + Send> {
self.data[idx].get_or_insert_with(|| self.data_builders[idx]())
}
}
#[cfg(test)]
mod tests {
use super::*;
struct TestHC;
impl HostComponent for TestHC {
type Data = u8;
fn add_to_linker<T: Send>(
_linker: &mut Linker<T>,
_get: impl Fn(&mut Data<T>) -> &mut Self::Data + Send + Sync + Copy + 'static,
) -> Result<()> {
Ok(())
}
fn build_data(&self) -> Self::Data {
0
}
}
#[test]
fn host_components_data() {
let engine = wasmtime::Engine::default();
let mut linker: crate::Linker<()> = crate::Linker::new(&engine);
let mut builder = HostComponents::builder();
let handle1 = builder
.add_host_component(&mut linker, Arc::new(TestHC))
.unwrap();
let handle2 = builder.add_host_component(&mut linker, TestHC).unwrap();
let host_components = builder.build();
let mut hc_data = host_components.new_data();
assert_eq!(hc_data.get_or_insert(handle1), &0);
hc_data.set(handle2, 1);
assert_eq!(hc_data.get_or_insert(handle2), &1);
}
}