aegis-streaming 0.2.6

Real-time streaming for Aegis database
Documentation
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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
//! Aegis Streaming Stream Processing
//!
//! Stream processing utilities for event transformation.
//!
//! @version 0.1.0
//! @author AutomataNexus Development Team

use crate::event::{Event, EventData, EventFilter};
use std::collections::VecDeque;
use std::sync::{Arc, RwLock};
use std::time::Duration;

// =============================================================================
// Event Stream
// =============================================================================

/// A stream of events with processing capabilities.
pub struct EventStream {
    events: VecDeque<Event>,
    max_size: usize,
}

impl EventStream {
    /// Create a new event stream.
    pub fn new() -> Self {
        Self {
            events: VecDeque::new(),
            max_size: 10_000,
        }
    }

    /// Create a stream with a maximum size.
    pub fn with_max_size(max_size: usize) -> Self {
        Self {
            events: VecDeque::new(),
            max_size,
        }
    }

    /// Push an event to the stream.
    pub fn push(&mut self, event: Event) {
        if self.events.len() >= self.max_size {
            self.events.pop_front();
        }
        self.events.push_back(event);
    }

    /// Pop the next event from the stream.
    pub fn pop(&mut self) -> Option<Event> {
        self.events.pop_front()
    }

    /// Peek at the next event.
    pub fn peek(&self) -> Option<&Event> {
        self.events.front()
    }

    /// Get the number of events in the stream.
    pub fn len(&self) -> usize {
        self.events.len()
    }

    /// Check if the stream is empty.
    pub fn is_empty(&self) -> bool {
        self.events.is_empty()
    }

    /// Clear all events.
    pub fn clear(&mut self) {
        self.events.clear();
    }

    /// Filter events in the stream.
    pub fn filter(&self, filter: &EventFilter) -> Vec<&Event> {
        self.events.iter().filter(|e| e.matches(filter)).collect()
    }

    /// Take events matching a filter.
    pub fn take(&mut self, filter: &EventFilter) -> Vec<Event> {
        let matching: Vec<Event> = self
            .events
            .iter()
            .filter(|e| e.matches(filter))
            .cloned()
            .collect();

        self.events.retain(|e| !e.matches(filter));

        matching
    }

    /// Get events as a slice.
    pub fn as_slice(&self) -> impl Iterator<Item = &Event> {
        self.events.iter()
    }
}

impl Default for EventStream {
    fn default() -> Self {
        Self::new()
    }
}

// =============================================================================
// Stream Processor
// =============================================================================

/// Processes events in a stream.
pub struct StreamProcessor {
    pipeline: Vec<Box<dyn ProcessingStep + Send + Sync>>,
}

impl StreamProcessor {
    /// Create a new stream processor.
    pub fn new() -> Self {
        Self {
            pipeline: Vec::new(),
        }
    }

    /// Add a processing step.
    pub fn add_step(mut self, step: impl ProcessingStep + Send + Sync + 'static) -> Self {
        self.pipeline.push(Box::new(step));
        self
    }

    /// Add a filter step.
    pub fn filter(self, filter: EventFilter) -> Self {
        self.add_step(FilterStep { filter })
    }

    /// Add a map step.
    pub fn map(self, mapper: impl Fn(Event) -> Event + Send + Sync + 'static) -> Self {
        self.add_step(MapStep {
            mapper: Arc::new(mapper),
        })
    }

    /// Add a transform step on event data.
    pub fn transform_data(
        self,
        transformer: impl Fn(EventData) -> EventData + Send + Sync + 'static,
    ) -> Self {
        self.add_step(TransformDataStep {
            transformer: Arc::new(transformer),
        })
    }

    /// Process an event through the pipeline.
    pub fn process(&self, event: Event) -> Option<Event> {
        let mut current = Some(event);

        for step in &self.pipeline {
            if let Some(e) = current {
                current = step.process(e);
            } else {
                break;
            }
        }

        current
    }

    /// Process a batch of events.
    pub fn process_batch(&self, events: Vec<Event>) -> Vec<Event> {
        events.into_iter().filter_map(|e| self.process(e)).collect()
    }
}

impl Default for StreamProcessor {
    fn default() -> Self {
        Self::new()
    }
}

// =============================================================================
// Processing Step
// =============================================================================

/// A step in the processing pipeline.
pub trait ProcessingStep {
    fn process(&self, event: Event) -> Option<Event>;
}

/// Filter step that filters events.
struct FilterStep {
    filter: EventFilter,
}

impl ProcessingStep for FilterStep {
    fn process(&self, event: Event) -> Option<Event> {
        if event.matches(&self.filter) {
            Some(event)
        } else {
            None
        }
    }
}

/// Map step that transforms events.
struct MapStep {
    mapper: Arc<dyn Fn(Event) -> Event + Send + Sync>,
}

impl ProcessingStep for MapStep {
    fn process(&self, event: Event) -> Option<Event> {
        Some((self.mapper)(event))
    }
}

/// Transform step that transforms event data.
struct TransformDataStep {
    transformer: Arc<dyn Fn(EventData) -> EventData + Send + Sync>,
}

impl ProcessingStep for TransformDataStep {
    fn process(&self, mut event: Event) -> Option<Event> {
        event.data = (self.transformer)(event.data);
        Some(event)
    }
}

// =============================================================================
// Windowed Stream
// =============================================================================

/// A time-windowed event stream.
pub struct WindowedStream {
    window_size: Duration,
    windows: RwLock<Vec<Window>>,
}

impl WindowedStream {
    /// Create a windowed stream.
    pub fn new(window_size: Duration) -> Self {
        Self {
            window_size,
            windows: RwLock::new(Vec::new()),
        }
    }

    /// Add an event to the appropriate window.
    pub fn push(&self, event: Event) {
        let window_start = self.window_start(event.timestamp);
        let mut windows = self
            .windows
            .write()
            .expect("windows RwLock poisoned in push");

        if let Some(window) = windows.iter_mut().find(|w| w.start == window_start) {
            window.events.push(event);
        } else {
            let mut window = Window::new(window_start, self.window_size.as_millis() as u64);
            window.events.push(event);
            windows.push(window);
        }
    }

    /// Get completed windows.
    pub fn completed_windows(&self) -> Vec<Window> {
        let now = current_timestamp_millis();
        let windows = self
            .windows
            .read()
            .expect("windows RwLock poisoned in completed_windows");

        windows.iter().filter(|w| w.end() <= now).cloned().collect()
    }

    /// Remove completed windows and return them.
    pub fn flush_completed(&self) -> Vec<Window> {
        let now = current_timestamp_millis();
        let mut windows = self
            .windows
            .write()
            .expect("windows RwLock poisoned in flush_completed");

        let completed: Vec<Window> = windows.iter().filter(|w| w.end() <= now).cloned().collect();

        windows.retain(|w| w.end() > now);

        completed
    }

    fn window_start(&self, timestamp: u64) -> u64 {
        let window_ms = self.window_size.as_millis() as u64;
        (timestamp / window_ms) * window_ms
    }
}

/// A time window of events.
#[derive(Debug, Clone)]
pub struct Window {
    pub start: u64,
    pub duration: u64,
    pub events: Vec<Event>,
}

impl Window {
    pub fn new(start: u64, duration: u64) -> Self {
        Self {
            start,
            duration,
            events: Vec::new(),
        }
    }

    pub fn end(&self) -> u64 {
        self.start + self.duration
    }

    pub fn len(&self) -> usize {
        self.events.len()
    }

    pub fn is_empty(&self) -> bool {
        self.events.is_empty()
    }
}

// =============================================================================
// Aggregation
// =============================================================================

/// Aggregate function for stream processing.
#[derive(Debug, Clone, Copy)]
pub enum AggregateFunction {
    Count,
    Sum,
    Avg,
    Min,
    Max,
}

impl AggregateFunction {
    /// Apply the aggregation to numeric values.
    pub fn apply(&self, values: &[f64]) -> Option<f64> {
        if values.is_empty() {
            return None;
        }

        Some(match self {
            Self::Count => values.len() as f64,
            Self::Sum => values.iter().sum(),
            Self::Avg => values.iter().sum::<f64>() / values.len() as f64,
            Self::Min => values.iter().cloned().fold(f64::INFINITY, f64::min),
            Self::Max => values.iter().cloned().fold(f64::NEG_INFINITY, f64::max),
        })
    }
}

fn current_timestamp_millis() -> u64 {
    std::time::SystemTime::now()
        .duration_since(std::time::UNIX_EPOCH)
        .map(|d| d.as_millis() as u64)
        .unwrap_or(0)
}

// =============================================================================
// Tests
// =============================================================================

#[cfg(test)]
mod tests {
    use super::*;
    use crate::event::EventType;

    fn create_test_event(source: &str, value: i64) -> Event {
        Event::new(EventType::Created, source, EventData::Int(value))
    }

    #[test]
    fn test_event_stream() {
        let mut stream = EventStream::new();

        stream.push(create_test_event("test", 1));
        stream.push(create_test_event("test", 2));
        stream.push(create_test_event("test", 3));

        assert_eq!(stream.len(), 3);

        let event = stream.pop().unwrap();
        assert_eq!(event.data.as_i64(), Some(1));
    }

    #[test]
    fn test_stream_filter() {
        let mut stream = EventStream::new();

        stream.push(create_test_event("users", 1));
        stream.push(create_test_event("orders", 2));
        stream.push(create_test_event("users", 3));

        let filter = EventFilter::new().with_source("users");
        let filtered = stream.filter(&filter);

        assert_eq!(filtered.len(), 2);
    }

    #[test]
    fn test_stream_processor() {
        let processor = StreamProcessor::new()
            .filter(EventFilter::new().with_type(EventType::Created))
            .map(|mut e| {
                e.metadata
                    .insert("processed".to_string(), "true".to_string());
                e
            });

        let event = create_test_event("test", 42);
        let processed = processor.process(event).unwrap();

        assert_eq!(
            processed.get_metadata("processed"),
            Some(&"true".to_string())
        );
    }

    #[test]
    fn test_stream_max_size() {
        let mut stream = EventStream::with_max_size(3);

        for i in 0..5 {
            stream.push(create_test_event("test", i));
        }

        assert_eq!(stream.len(), 3);

        let first = stream.pop().unwrap();
        assert_eq!(first.data.as_i64(), Some(2));
    }

    #[test]
    fn test_aggregate_functions() {
        let values = vec![1.0, 2.0, 3.0, 4.0, 5.0];

        assert_eq!(AggregateFunction::Count.apply(&values), Some(5.0));
        assert_eq!(AggregateFunction::Sum.apply(&values), Some(15.0));
        assert_eq!(AggregateFunction::Avg.apply(&values), Some(3.0));
        assert_eq!(AggregateFunction::Min.apply(&values), Some(1.0));
        assert_eq!(AggregateFunction::Max.apply(&values), Some(5.0));
    }

    #[test]
    fn test_window() {
        let window = Window::new(1000, 100);
        assert_eq!(window.start, 1000);
        assert_eq!(window.end(), 1100);
        assert!(window.is_empty());
    }
}