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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
use std::fmt::{self, Debug};
use anyhow::Result;
use derive_builder::Builder;
use tracing::debug;
use wasmtime::{Engine, Module};
use fluvio_smartmodule::dataplane::smartmodule::{
SmartModuleExtraParams, SmartModuleInput, SmartModuleOutput,
};
use crate::init::SmartModuleInit;
use crate::instance::{SmartModuleInstance, SmartModuleInstanceContext};
use crate::metrics::SmartModuleChainMetrics;
use crate::state::WasmState;
use crate::transforms::create_transform;
const DEFAULT_SMARTENGINE_VERSION: i16 = 17;
#[derive(Clone)]
pub struct SmartEngine(Engine);
#[allow(clippy::new_without_default)]
impl SmartEngine {
pub fn new() -> Self {
let mut config = wasmtime::Config::default();
config.consume_fuel(true);
Self(Engine::new(&config).expect("Config is static"))
}
pub(crate) fn new_state(&self) -> WasmState {
WasmState::new(&self.0)
}
}
impl Debug for SmartEngine {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "SmartModuleEngine")
}
}
#[derive(Default)]
pub struct SmartModuleChainBuilder {
smart_modules: Vec<(SmartModuleConfig, Vec<u8>)>,
}
impl SmartModuleChainBuilder {
pub fn add_smart_module(&mut self, config: SmartModuleConfig, bytes: Vec<u8>) {
self.smart_modules.push((config, bytes))
}
pub fn initialize(self, engine: &SmartEngine) -> Result<SmartModuleChainInstance> {
let mut instances = Vec::with_capacity(self.smart_modules.len());
let mut state = engine.new_state();
for (config, bytes) in self.smart_modules {
let module = Module::new(&engine.0, bytes)?;
let version = config.version();
let ctx = SmartModuleInstanceContext::instantiate(
&mut state,
module,
config.params,
version,
)?;
let init = SmartModuleInit::try_instantiate(&ctx, &mut state)?;
let transform = create_transform(&ctx, config.initial_data, &mut state)?;
let mut instance = SmartModuleInstance::new(ctx, init, transform);
instance.init(&mut state)?;
instances.push(instance);
}
Ok(SmartModuleChainInstance {
store: state,
instances,
})
}
}
impl<T: Into<Vec<u8>>> From<(SmartModuleConfig, T)> for SmartModuleChainBuilder {
fn from(pair: (SmartModuleConfig, T)) -> Self {
let mut result = Self::default();
result.add_smart_module(pair.0, pair.1.into());
result
}
}
pub struct SmartModuleChainInstance {
store: WasmState,
instances: Vec<SmartModuleInstance>,
}
impl Debug for SmartModuleChainInstance {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "SmartModuleChainInstance")
}
}
impl SmartModuleChainInstance {
#[cfg(test)]
pub(crate) fn instances(&self) -> &Vec<SmartModuleInstance> {
&self.instances
}
pub fn process(
&mut self,
input: SmartModuleInput,
metric: &SmartModuleChainMetrics,
) -> Result<SmartModuleOutput> {
let raw_len = input.raw_bytes().len();
debug!(raw_len, "sm raw input");
metric.add_bytes_in(raw_len as u64);
let base_offset = input.base_offset();
if let Some((last, instances)) = self.instances.split_last_mut() {
let mut next_input = input;
for instance in instances {
self.store.top_up_fuel();
let output = instance.process(next_input, &mut self.store)?;
let fuel_used = self.store.get_used_fuel();
debug!(fuel_used, "fuel used");
metric.add_fuel_used(fuel_used);
if output.error.is_some() {
return Ok(output);
} else {
next_input = output.successes.try_into()?;
next_input.set_base_offset(base_offset);
}
}
self.store.top_up_fuel();
let output = last.process(next_input, &mut self.store)?;
let fuel_used = self.store.get_used_fuel();
debug!(fuel_used, "fuel used");
metric.add_fuel_used(fuel_used);
let records_out = output.successes.len();
metric.add_records_out(records_out as u64);
debug!(records_out, "sm records out");
Ok(output)
} else {
Ok(SmartModuleOutput::new(input.try_into()?))
}
}
}
#[derive(Debug, Clone)]
#[non_exhaustive]
pub enum SmartModuleInitialData {
None,
Aggregate { accumulator: Vec<u8> },
}
impl SmartModuleInitialData {
pub fn with_aggregate(accumulator: Vec<u8>) -> Self {
Self::Aggregate { accumulator }
}
}
impl Default for SmartModuleInitialData {
fn default() -> Self {
Self::None
}
}
#[derive(Builder)]
pub struct SmartModuleConfig {
#[builder(default, setter(strip_option))]
initial_data: SmartModuleInitialData,
#[builder(default)]
params: SmartModuleExtraParams,
#[builder(default, setter(into, strip_option))]
version: Option<i16>,
}
impl SmartModuleConfigBuilder {
pub fn param(&mut self, key: impl Into<String>, value: impl Into<String>) -> &mut Self {
let mut new = self;
let mut params = new.params.take().unwrap_or_default();
params.insert(key.into(), value.into());
new.params = Some(params);
new
}
}
impl SmartModuleConfig {
pub fn builder() -> SmartModuleConfigBuilder {
SmartModuleConfigBuilder::default()
}
pub(crate) fn version(&self) -> i16 {
self.version.unwrap_or(DEFAULT_SMARTENGINE_VERSION)
}
}
#[cfg(feature = "transformation")]
impl From<crate::transformation::TransformationStep> for SmartModuleConfig {
fn from(step: crate::transformation::TransformationStep) -> Self {
Self {
initial_data: SmartModuleInitialData::None,
params: step
.with
.into_iter()
.map(|(k, v)| (k, v.into()))
.collect::<std::collections::BTreeMap<String, String>>()
.into(),
version: None,
}
}
}
#[cfg(test)]
mod test {
use super::SmartModuleConfig;
#[test]
fn test_param() {
let config = SmartModuleConfig::builder()
.param("key", "apple")
.build()
.unwrap();
assert_eq!(config.params.get("key"), Some(&"apple".to_string()));
}
}
#[cfg(test)]
mod chaining_test {
use std::convert::TryFrom;
use fluvio_smartmodule::{dataplane::smartmodule::SmartModuleInput, Record};
use crate::{
SmartEngine, SmartModuleChainBuilder, SmartModuleConfig, SmartModuleInitialData,
metrics::SmartModuleChainMetrics,
};
const SM_FILTER_INIT: &str = "fluvio_smartmodule_filter_init";
const SM_MAP: &str = "fluvio_smartmodule_map";
use crate::fixture::read_wasm_module;
#[ignore]
#[test]
fn test_chain_filter_map() {
let engine = SmartEngine::new();
let mut chain_builder = SmartModuleChainBuilder::default();
let metrics = SmartModuleChainMetrics::default();
chain_builder.add_smart_module(
SmartModuleConfig::builder()
.param("key", "a")
.build()
.unwrap(),
read_wasm_module(SM_FILTER_INIT),
);
chain_builder.add_smart_module(
SmartModuleConfig::builder().build().unwrap(),
read_wasm_module(SM_MAP),
);
let mut chain = chain_builder
.initialize(&engine)
.expect("failed to build chain");
assert_eq!(chain.instances().len(), 2);
let input = vec![Record::new("hello world")];
let output = chain
.process(SmartModuleInput::try_from(input).expect("input"), &metrics)
.expect("process");
assert_eq!(output.successes.len(), 0); let input = vec![
Record::new("apple"),
Record::new("fruit"),
Record::new("banana"),
];
let output = chain
.process(SmartModuleInput::try_from(input).expect("input"), &metrics)
.expect("process");
assert_eq!(output.successes.len(), 2); assert_eq!(output.successes[0].value.as_ref(), b"APPLE");
assert_eq!(output.successes[1].value.as_ref(), b"BANANA");
assert!(metrics.fuel_used() > 0);
chain.store.top_up_fuel();
assert_eq!(chain.store.get_used_fuel(), 0);
}
const SM_AGGEGRATE: &str = "fluvio_smartmodule_aggregate";
#[ignore]
#[test]
fn test_chain_filter_aggregate() {
let engine = SmartEngine::new();
let mut chain_builder = SmartModuleChainBuilder::default();
let metrics = SmartModuleChainMetrics::default();
chain_builder.add_smart_module(
SmartModuleConfig::builder()
.param("key", "a")
.build()
.unwrap(),
read_wasm_module(SM_FILTER_INIT),
);
chain_builder.add_smart_module(
SmartModuleConfig::builder()
.initial_data(SmartModuleInitialData::with_aggregate(
"zero".to_string().as_bytes().to_vec(),
))
.build()
.unwrap(),
read_wasm_module(SM_AGGEGRATE),
);
let mut chain = chain_builder
.initialize(&engine)
.expect("failed to build chain");
assert_eq!(chain.instances().len(), 2);
let input = vec![
Record::new("apple"),
Record::new("fruit"),
Record::new("banana"),
];
let output = chain
.process(SmartModuleInput::try_from(input).expect("input"), &metrics)
.expect("process");
assert_eq!(output.successes.len(), 2); assert_eq!(output.successes[0].value().to_string(), "zeroapple");
assert_eq!(output.successes[1].value().to_string(), "zeroapplebanana");
let input = vec![Record::new("nothing")];
let output = chain
.process(SmartModuleInput::try_from(input).expect("input"), &metrics)
.expect("process");
assert_eq!(output.successes.len(), 0); let input = vec![Record::new("elephant")];
let output = chain
.process(SmartModuleInput::try_from(input).expect("input"), &metrics)
.expect("process");
assert_eq!(output.successes.len(), 1); assert_eq!(
output.successes[0].value().to_string(),
"zeroapplebananaelephant"
);
}
#[test]
fn test_empty_chain() {
let engine = SmartEngine::new();
let chain_builder = SmartModuleChainBuilder::default();
let mut chain = chain_builder
.initialize(&engine)
.expect("failed to build chain");
assert_eq!(chain.store.get_used_fuel(), 0);
let record = vec![Record::new("input")];
let input = SmartModuleInput::try_from(record).expect("valid input record");
let metrics = SmartModuleChainMetrics::default();
let output = chain.process(input, &metrics).expect("process failed");
assert_eq!(output.successes.len(), 1);
assert_eq!(output.successes[0].value().to_string(), "input");
}
}