reddb-io-server 1.1.2

RedDB server-side engine: storage, runtime, replication, MCP, AI, and the gRPC/HTTP/RedWire/PG-wire dispatchers. Re-exported by the umbrella `reddb` crate.
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
//! Source Steps
//!
//! Steps that initiate traversals by reading from graph data sources.
//!
//! # Steps
//!
//! - `V()`: Start with vertices
//! - `E()`: Start with edges
//! - `addV()`: Create vertex
//! - `addE()`: Create edge

use super::{Step, StepResult, Traverser, TraverserRequirement, TraverserValue};
use std::any::Any;

/// Trait for source steps (traversal starters)
pub trait SourceStep: Step {
    /// Generate initial traversers
    fn generate_traversers(&self) -> Vec<Traverser>;
}

/// Vertex source step - V()
#[derive(Debug, Clone)]
pub struct VertexSourceStep {
    id: String,
    labels: Vec<String>,
    /// Specific vertex IDs to start from (if empty, all vertices)
    vertex_ids: Vec<String>,
    /// Vertex type filter
    vertex_type: Option<String>,
}

impl VertexSourceStep {
    /// Create V() step for all vertices
    pub fn new() -> Self {
        Self {
            id: "V_0".to_string(),
            labels: Vec::new(),
            vertex_ids: Vec::new(),
            vertex_type: None,
        }
    }

    /// Create V(id) step for specific vertex
    pub fn with_ids(ids: Vec<String>) -> Self {
        Self {
            id: format!("V_{}", ids.first().unwrap_or(&"0".to_string())),
            labels: Vec::new(),
            vertex_ids: ids,
            vertex_type: None,
        }
    }

    /// Create V().hasLabel(type) step
    pub fn with_type(vertex_type: String) -> Self {
        Self {
            id: format!("V_{}", vertex_type),
            labels: Vec::new(),
            vertex_ids: Vec::new(),
            vertex_type: Some(vertex_type),
        }
    }

    /// Set step ID
    pub fn with_id(mut self, id: String) -> Self {
        self.id = id;
        self
    }

    /// Get vertex IDs filter
    pub fn vertex_ids(&self) -> &[String] {
        &self.vertex_ids
    }

    /// Get vertex type filter
    pub fn vertex_type(&self) -> Option<&str> {
        self.vertex_type.as_deref()
    }
}

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

impl Step for VertexSourceStep {
    fn id(&self) -> &str {
        &self.id
    }

    fn name(&self) -> &str {
        "VertexSourceStep"
    }

    fn labels(&self) -> &[String] {
        &self.labels
    }

    fn add_label(&mut self, label: String) {
        if !self.labels.contains(&label) {
            self.labels.push(label);
        }
    }

    fn requirements(&self) -> &[TraverserRequirement] {
        &[] // Source steps have no special requirements
    }

    fn process_traverser(&self, _traverser: Traverser) -> StepResult {
        // Source steps don't process traversers - they generate them
        // This is called via generate_traversers()
        StepResult::Filter
    }

    fn reset(&mut self) {
        // No state to reset
    }

    fn clone_step(&self) -> Box<dyn Step> {
        Box::new(self.clone())
    }

    fn as_any(&self) -> &dyn Any {
        self
    }

    fn as_any_mut(&mut self) -> &mut dyn Any {
        self
    }
}

impl SourceStep for VertexSourceStep {
    fn generate_traversers(&self) -> Vec<Traverser> {
        // In real implementation, this would query the graph store
        // For now, generate traversers for specified IDs
        self.vertex_ids
            .iter()
            .map(|id| Traverser::new(id))
            .collect()
    }
}

/// Edge source step - E()
#[derive(Debug, Clone)]
pub struct EdgeSourceStep {
    id: String,
    labels: Vec<String>,
    /// Specific edge IDs to start from (if empty, all edges)
    edge_ids: Vec<String>,
    /// Edge type filter
    edge_type: Option<String>,
}

impl EdgeSourceStep {
    /// Create E() step for all edges
    pub fn new() -> Self {
        Self {
            id: "E_0".to_string(),
            labels: Vec::new(),
            edge_ids: Vec::new(),
            edge_type: None,
        }
    }

    /// Create E(id) step for specific edge
    pub fn with_ids(ids: Vec<String>) -> Self {
        Self {
            id: format!("E_{}", ids.first().unwrap_or(&"0".to_string())),
            labels: Vec::new(),
            edge_ids: ids,
            edge_type: None,
        }
    }

    /// Create E().hasLabel(type) step
    pub fn with_type(edge_type: String) -> Self {
        Self {
            id: format!("E_{}", edge_type),
            labels: Vec::new(),
            edge_ids: Vec::new(),
            edge_type: Some(edge_type),
        }
    }

    /// Set step ID
    pub fn with_id(mut self, id: String) -> Self {
        self.id = id;
        self
    }

    /// Get edge IDs filter
    pub fn edge_ids(&self) -> &[String] {
        &self.edge_ids
    }

    /// Get edge type filter
    pub fn edge_type(&self) -> Option<&str> {
        self.edge_type.as_deref()
    }
}

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

impl Step for EdgeSourceStep {
    fn id(&self) -> &str {
        &self.id
    }

    fn name(&self) -> &str {
        "EdgeSourceStep"
    }

    fn labels(&self) -> &[String] {
        &self.labels
    }

    fn add_label(&mut self, label: String) {
        if !self.labels.contains(&label) {
            self.labels.push(label);
        }
    }

    fn requirements(&self) -> &[TraverserRequirement] {
        &[]
    }

    fn process_traverser(&self, _traverser: Traverser) -> StepResult {
        StepResult::Filter
    }

    fn reset(&mut self) {
        // No state to reset
    }

    fn clone_step(&self) -> Box<dyn Step> {
        Box::new(self.clone())
    }

    fn as_any(&self) -> &dyn Any {
        self
    }

    fn as_any_mut(&mut self) -> &mut dyn Any {
        self
    }
}

impl SourceStep for EdgeSourceStep {
    fn generate_traversers(&self) -> Vec<Traverser> {
        // Generate edge traversers
        self.edge_ids
            .iter()
            .map(|id| {
                Traverser::with_value(TraverserValue::Edge {
                    id: id.clone(),
                    source: String::new(), // Would be filled by graph store
                    target: String::new(),
                    label: self.edge_type.clone().unwrap_or_default(),
                })
            })
            .collect()
    }
}

/// Inject step - injects arbitrary values into traversal
#[derive(Debug, Clone)]
pub struct InjectStep {
    id: String,
    labels: Vec<String>,
    values: Vec<TraverserValue>,
}

impl InjectStep {
    /// Create inject step with values
    pub fn new(values: Vec<TraverserValue>) -> Self {
        Self {
            id: "inject_0".to_string(),
            labels: Vec::new(),
            values,
        }
    }

    /// Set step ID
    pub fn with_id(mut self, id: String) -> Self {
        self.id = id;
        self
    }
}

impl Step for InjectStep {
    fn id(&self) -> &str {
        &self.id
    }

    fn name(&self) -> &str {
        "InjectStep"
    }

    fn labels(&self) -> &[String] {
        &self.labels
    }

    fn add_label(&mut self, label: String) {
        if !self.labels.contains(&label) {
            self.labels.push(label);
        }
    }

    fn requirements(&self) -> &[TraverserRequirement] {
        &[]
    }

    fn process_traverser(&self, traverser: Traverser) -> StepResult {
        // Pass through existing traverser plus inject new values
        let mut result = vec![traverser];
        for value in &self.values {
            result.push(Traverser::with_value(value.clone()));
        }
        StepResult::Emit(result)
    }

    fn reset(&mut self) {
        // No state to reset
    }

    fn clone_step(&self) -> Box<dyn Step> {
        Box::new(self.clone())
    }

    fn as_any(&self) -> &dyn Any {
        self
    }

    fn as_any_mut(&mut self) -> &mut dyn Any {
        self
    }
}

impl SourceStep for InjectStep {
    fn generate_traversers(&self) -> Vec<Traverser> {
        self.values
            .iter()
            .map(|v| Traverser::with_value(v.clone()))
            .collect()
    }
}

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

    #[test]
    fn test_vertex_source_all() {
        let step = VertexSourceStep::new();
        assert_eq!(step.name(), "VertexSourceStep");
        assert!(step.vertex_ids().is_empty());
        assert!(step.vertex_type().is_none());
    }

    #[test]
    fn test_vertex_source_with_ids() {
        let step = VertexSourceStep::with_ids(vec!["v1".to_string(), "v2".to_string()]);
        assert_eq!(step.vertex_ids().len(), 2);

        let traversers = step.generate_traversers();
        assert_eq!(traversers.len(), 2);
    }

    #[test]
    fn test_vertex_source_with_type() {
        let step = VertexSourceStep::with_type("Host".to_string());
        assert_eq!(step.vertex_type(), Some("Host"));
    }

    #[test]
    fn test_edge_source() {
        let step = EdgeSourceStep::new();
        assert_eq!(step.name(), "EdgeSourceStep");
    }

    #[test]
    fn test_inject_step() {
        let step = InjectStep::new(vec![
            TraverserValue::String("hello".to_string()),
            TraverserValue::Integer(42),
        ]);

        let traversers = step.generate_traversers();
        assert_eq!(traversers.len(), 2);
    }

    #[test]
    fn test_step_labels() {
        let mut step = VertexSourceStep::new();
        step.add_label("a".to_string());
        step.add_label("b".to_string());
        assert_eq!(step.labels().len(), 2);

        // Adding duplicate should not increase count
        step.add_label("a".to_string());
        assert_eq!(step.labels().len(), 2);
    }
}