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::fmt::{Debug};
use std::marker::PhantomData;
use educe::Educe;
use fluvio_protocol::record::RawRecords;
use fluvio_protocol::{Encoder, Decoder};
use fluvio_protocol::api::Request;
use fluvio_protocol::record::RecordSet;
use fluvio_smartmodule::dataplane::smartmodule::SmartModuleExtraParams;
use fluvio_types::PartitionId;
use crate::fetch::FetchablePartitionResponse;
use crate::isolation::Isolation;
pub type DefaultStreamFetchResponse = StreamFetchResponse<RecordSet<RawRecords>>;
pub type DefaultStreamFetchRequest = StreamFetchRequest<RecordSet<RawRecords>>;
use super::SpuServerApiKey;
#[allow(deprecated)]
use super::smartmodule::{LegacySmartModulePayload, SmartModuleInvocation};
pub const WASM_MODULE_API: i16 = 11;
pub const WASM_MODULE_V2_API: i16 = 12;
pub const AGGREGATOR_API: i16 = 13;
pub const GZIP_WASM_API: i16 = 14;
pub const ARRAY_MAP_WASM_API: i16 = 15;
pub const SMART_MODULE_API: i16 = 16;
pub const GENERIC_SMARTMODULE_API: i16 = 17;
pub const CHAIN_SMARTMODULE_API: i16 = 18;
#[allow(deprecated)]
#[derive(Decoder, Encoder, Default, Educe)]
#[educe(Debug)]
pub struct StreamFetchRequest<R>
where
R: Encoder + Decoder + Default + Debug,
{
pub topic: String,
pub partition: PartitionId,
pub fetch_offset: i64,
pub max_bytes: i32,
pub isolation: Isolation,
#[educe(Debug(ignore))]
#[fluvio(min_version = 11)]
pub wasm_module: Vec<u8>,
#[fluvio(min_version = 12)]
#[fluvio(max_version = 18)]
pub wasm_payload: Option<LegacySmartModulePayload>,
#[fluvio(min_version = 16)]
#[fluvio(max_version = 18)]
pub smartmodule: Option<SmartModuleInvocation>,
#[fluvio(min_version = 16)]
pub derivedstream: Option<DerivedStreamInvocation>,
#[fluvio(min_version = 18)]
pub smartmodules: Vec<SmartModuleInvocation>,
pub data: PhantomData<R>,
}
impl<R> Request for StreamFetchRequest<R>
where
R: Debug + Decoder + Encoder,
{
const API_KEY: u16 = SpuServerApiKey::StreamFetch as u16;
const DEFAULT_API_VERSION: i16 = CHAIN_SMARTMODULE_API;
type Response = StreamFetchResponse<R>;
}
#[derive(Debug, Default, Clone, Encoder, Decoder)]
pub struct DerivedStreamInvocation {
pub stream: String,
pub params: SmartModuleExtraParams,
}
#[derive(Encoder, Decoder, Default, Debug)]
pub struct StreamFetchResponse<R>
where
R: Encoder + Decoder + Default + Debug,
{
pub topic: String,
pub stream_id: u32,
pub partition: FetchablePartitionResponse<R>,
}
#[cfg(feature = "file")]
pub use file::*;
#[cfg(feature = "file")]
mod file {
use std::io::Error as IoError;
use log::trace;
use bytes::BytesMut;
use fluvio_protocol::Version;
use fluvio_protocol::store::{StoreValue, FileWrite};
use crate::file::FileRecordSet;
pub type FileStreamFetchRequest = StreamFetchRequest<FileRecordSet>;
use super::*;
impl FileWrite for StreamFetchResponse<FileRecordSet> {
fn file_encode(
&self,
src: &mut BytesMut,
data: &mut Vec<StoreValue>,
version: Version,
) -> Result<(), IoError> {
trace!("file encoding FlvContinuousFetchResponse");
trace!("topic {}", self.topic);
self.topic.encode(src, version)?;
self.stream_id.encode(src, version)?;
self.partition.file_encode(src, data, version)?;
Ok(())
}
}
}
#[cfg(test)]
mod tests {
use crate::server::smartmodule::{SmartModuleInvocationWasm, SmartModuleKind};
use super::*;
#[test]
fn test_encode_stream_fetch_request() {
let mut dest = Vec::new();
let value = DefaultStreamFetchRequest {
topic: "one".to_string(),
partition: 3,
smartmodules: vec![
(SmartModuleInvocation {
wasm: SmartModuleInvocationWasm::AdHoc(vec![0xde, 0xad, 0xbe, 0xef]),
kind: SmartModuleKind::Filter,
..Default::default()
}),
],
..Default::default()
};
value
.encode(&mut dest, CHAIN_SMARTMODULE_API)
.expect("should encode");
let expected = vec![
0x00, 0x03, 0x6f, 0x6e, 0x65, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x04, 0xde, 0xad, 0xbe, 0xef,
0x00, 0x00, 0x00,
];
assert_eq!(dest, expected);
}
#[test]
fn test_decode_stream_fetch_request() {
let bytes = vec![
0x00, 0x03, 0x6f, 0x6e, 0x65, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x04, 0xde, 0xad, 0xbe, 0xef,
0x00, 0x00, 0x00,
];
let mut value = DefaultStreamFetchRequest::default();
value
.decode(&mut std::io::Cursor::new(bytes), CHAIN_SMARTMODULE_API)
.unwrap();
assert_eq!(value.topic, "one");
assert_eq!(value.partition, 3);
let sm = match value.smartmodules.first() {
Some(wasm) => wasm,
_ => panic!("should have smartstreeam payload"),
};
let wasm = match &sm.wasm {
SmartModuleInvocationWasm::AdHoc(wasm) => wasm.as_slice(),
#[allow(unreachable_patterns)]
_ => panic!("should be SmartModuleInvocationWasm::AdHoc"),
};
assert_eq!(wasm, vec![0xde, 0xad, 0xbe, 0xef]);
assert!(matches!(sm.kind, SmartModuleKind::Filter));
}
#[test]
fn test_zip_unzip_works() {
const ORIG_LEN: usize = 1024;
let orig = vec![0x01; ORIG_LEN];
let compressed = SmartModuleInvocationWasm::adhoc_from_bytes(orig.as_slice())
.expect("compression failed");
assert!(
matches!(&compressed, &SmartModuleInvocationWasm::AdHoc(ref x) if x.len() < ORIG_LEN)
);
let uncompressed = compressed.into_raw().expect("decompression failed");
assert_eq!(orig, uncompressed);
}
}