nopaldb 0.4.32

High-performance graph database with ACID transactions, MVCC time-travel, and Arrow analytics
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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
// src/shacl/constraint.rs
//! Evaluacion de constraints SHACL Core sobre valores y nodos.

use crate::types::{Node, NodeId, PropertyValue};
use super::shape::ConstraintType;
use super::report::{ConstraintViolation, Severity};

/// Evalua una lista de constraints sobre un conjunto de valores resueltos.
///
/// `focus_node` es el nodo que se esta validando.
/// `shape_id` identifica el shape para el reporte.
/// `path` es la propiedad o edge_type (para mensajes), `None` si es constraint directa.
/// `values` son los valores resueltos del path (puede ser vacio).
pub fn evaluate_constraints(
    constraints: &[ConstraintType],
    values: &[PropertyValue],
    focus_node: NodeId,
    shape_id: NodeId,
    path: Option<&str>,
) -> Vec<ConstraintViolation> {
    let mut violations = Vec::new();

    for constraint in constraints {
        if let Some(v) = evaluate_constraint(constraint, values, focus_node, shape_id, path) {
            violations.push(v);
        }
    }

    violations
}

/// Evalua un constraint individual. Retorna `Some(violation)` si no conforma.
fn evaluate_constraint(
    constraint: &ConstraintType,
    values: &[PropertyValue],
    focus_node: NodeId,
    shape_id: NodeId,
    path: Option<&str>,
) -> Option<ConstraintViolation> {
    let path_str = path.map(|s| s.to_string());

    match constraint {
        // --- Cardinalidad ---
        ConstraintType::MinCount(min) => {
            if values.len() < *min {
                Some(ConstraintViolation::violation(
                    focus_node,
                    shape_id,
                    path_str,
                    format!(
                        "sh:minCount {min}: se encontraron {} valor(es), se requieren al menos {min}",
                        values.len()
                    ),
                ))
            } else {
                None
            }
        }

        ConstraintType::MaxCount(max) => {
            if values.len() > *max {
                Some(ConstraintViolation::violation(
                    focus_node,
                    shape_id,
                    path_str,
                    format!(
                        "sh:maxCount {max}: se encontraron {} valor(es), maximo permitido {max}",
                        values.len()
                    ),
                ))
            } else {
                None
            }
        }

        // --- Tipo de dato ---
        ConstraintType::Datatype(dtype) => {
            let bad: Vec<_> = values
                .iter()
                .filter(|v| !dtype.matches(v))
                .collect();
            if !bad.is_empty() {
                Some(ConstraintViolation::violation(
                    focus_node,
                    shape_id,
                    path_str,
                    format!(
                        "sh:datatype {:?}: {} valor(es) no cumplen el tipo requerido",
                        dtype,
                        bad.len()
                    ),
                ))
            } else {
                None
            }
        }

        // --- Rangos numericos ---
        ConstraintType::MinInclusive(min) => {
            let bad: Vec<_> = values
                .iter()
                .filter(|v| !numeric_ge(v, *min))
                .collect();
            if !bad.is_empty() {
                Some(ConstraintViolation::violation(
                    focus_node,
                    shape_id,
                    path_str,
                    format!("sh:minInclusive {min}: valor fuera de rango"),
                ))
            } else {
                None
            }
        }

        ConstraintType::MaxInclusive(max) => {
            let bad: Vec<_> = values
                .iter()
                .filter(|v| !numeric_le(v, *max))
                .collect();
            if !bad.is_empty() {
                Some(ConstraintViolation::violation(
                    focus_node,
                    shape_id,
                    path_str,
                    format!("sh:maxInclusive {max}: valor fuera de rango"),
                ))
            } else {
                None
            }
        }

        ConstraintType::MinExclusive(min) => {
            let bad: Vec<_> = values
                .iter()
                .filter(|v| !numeric_gt(v, *min))
                .collect();
            if !bad.is_empty() {
                Some(ConstraintViolation::violation(
                    focus_node,
                    shape_id,
                    path_str,
                    format!("sh:minExclusive {min}: valor fuera de rango"),
                ))
            } else {
                None
            }
        }

        ConstraintType::MaxExclusive(max) => {
            let bad: Vec<_> = values
                .iter()
                .filter(|v| !numeric_lt(v, *max))
                .collect();
            if !bad.is_empty() {
                Some(ConstraintViolation::violation(
                    focus_node,
                    shape_id,
                    path_str,
                    format!("sh:maxExclusive {max}: valor fuera de rango"),
                ))
            } else {
                None
            }
        }

        // --- Longitud de strings ---
        ConstraintType::MinLength(min) => {
            let bad: Vec<_> = values
                .iter()
                .filter(|v| {
                    if let PropertyValue::String(s) = v {
                        s.chars().count() < *min
                    } else {
                        false
                    }
                })
                .collect();
            if !bad.is_empty() {
                Some(ConstraintViolation::violation(
                    focus_node,
                    shape_id,
                    path_str,
                    format!("sh:minLength {min}: cadena demasiado corta"),
                ))
            } else {
                None
            }
        }

        ConstraintType::MaxLength(max) => {
            let bad: Vec<_> = values
                .iter()
                .filter(|v| {
                    if let PropertyValue::String(s) = v {
                        s.chars().count() > *max
                    } else {
                        false
                    }
                })
                .collect();
            if !bad.is_empty() {
                Some(ConstraintViolation::violation(
                    focus_node,
                    shape_id,
                    path_str,
                    format!("sh:maxLength {max}: cadena demasiado larga"),
                ))
            } else {
                None
            }
        }

        // --- Patron regex ---
        ConstraintType::Pattern(pattern) => {
            #[cfg(feature = "shacl")]
            {
                use regex::Regex;
                match Regex::new(pattern) {
                    Ok(re) => {
                        let bad: Vec<_> = values
                            .iter()
                            .filter(|v| {
                                if let PropertyValue::String(s) = v {
                                    !re.is_match(s)
                                } else {
                                    true // no-string no conforma
                                }
                            })
                            .collect();
                        if !bad.is_empty() {
                            Some(ConstraintViolation::violation(
                                focus_node,
                                shape_id,
                                path_str,
                                format!("sh:pattern '{pattern}': valor no coincide con el patron"),
                            ))
                        } else {
                            None
                        }
                    }
                    Err(e) => Some(ConstraintViolation {
                        focus_node,
                        shape_id,
                        path: path_str,
                        message: format!("sh:pattern: patron regex invalido '{pattern}': {e}"),
                        severity: Severity::Warning,
                    }),
                }
            }
        }

        // --- Enumeracion ---
        ConstraintType::In(allowed) => {
            let bad: Vec<_> = values
                .iter()
                .filter(|v| !allowed.contains(v))
                .collect();
            if !bad.is_empty() {
                Some(ConstraintViolation::violation(
                    focus_node,
                    shape_id,
                    path_str,
                    format!(
                        "sh:in: {} valor(es) no estan en la lista de valores permitidos",
                        bad.len()
                    ),
                ))
            } else {
                None
            }
        }

        // --- Valor exacto ---
        ConstraintType::HasValue(expected) => {
            if !values.contains(expected) {
                Some(ConstraintViolation::violation(
                    focus_node,
                    shape_id,
                    path_str,
                    "sh:hasValue: valor requerido no encontrado".to_string(),
                ))
            } else {
                None
            }
        }

        // --- NodeKind y Class se evaluan en mod.rs sobre el nodo directamente ---
        // Estos constraints no operan sobre "valores" sino sobre el nodo mismo.
        // Se retorna None aqui; mod.rs los evalua por separado.
        ConstraintType::NodeKindConstraint(_) | ConstraintType::Class(_) => None,
    }
}

/// Evalua constraints de NodeKind directamente sobre un nodo.
pub fn evaluate_node_kind_constraint(
    node: &Node,
    constraint: &ConstraintType,
    shape_id: NodeId,
) -> Option<ConstraintViolation> {
    match constraint {
        ConstraintType::NodeKindConstraint(expected_kind) => {
            if node.kind != *expected_kind {
                Some(ConstraintViolation::violation(
                    node.id,
                    shape_id,
                    None,
                    format!(
                        "sh:nodeKind: se esperaba {:?}, se encontro {:?}",
                        expected_kind, node.kind
                    ),
                ))
            } else {
                None
            }
        }
        ConstraintType::Class(expected_label) => {
            if node.label != *expected_label {
                Some(ConstraintViolation::violation(
                    node.id,
                    shape_id,
                    None,
                    format!(
                        "sh:class: se esperaba label '{}', se encontro '{}'",
                        expected_label, node.label
                    ),
                ))
            } else {
                None
            }
        }
        _ => None,
    }
}

// --- Helpers numericos ---

fn to_f64(v: &PropertyValue) -> Option<f64> {
    match v {
        PropertyValue::Int(i) => Some(*i as f64),
        PropertyValue::Float(f) => Some(*f),
        _ => None,
    }
}

fn numeric_ge(v: &PropertyValue, limit: f64) -> bool {
    to_f64(v).map(|n| n >= limit).unwrap_or(false)
}

fn numeric_le(v: &PropertyValue, limit: f64) -> bool {
    to_f64(v).map(|n| n <= limit).unwrap_or(false)
}

fn numeric_gt(v: &PropertyValue, limit: f64) -> bool {
    to_f64(v).map(|n| n > limit).unwrap_or(false)
}

fn numeric_lt(v: &PropertyValue, limit: f64) -> bool {
    to_f64(v).map(|n| n < limit).unwrap_or(false)
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::types::PropertyValue;
    use crate::shacl::DatatypeKind;
    use uuid::Uuid;

    fn node_id() -> NodeId { Uuid::new_v4() }
    fn shape_id() -> NodeId { Uuid::new_v4() }

    #[test]
    fn test_min_count_pass() {
        let vs = vec![PropertyValue::Int(1)];
        let result = evaluate_constraints(
            &[ConstraintType::MinCount(1)], &vs, node_id(), shape_id(), Some("age")
        );
        assert!(result.is_empty());
    }

    #[test]
    fn test_min_count_fail() {
        let vs: Vec<PropertyValue> = vec![];
        let result = evaluate_constraints(
            &[ConstraintType::MinCount(1)], &vs, node_id(), shape_id(), Some("age")
        );
        assert_eq!(result.len(), 1);
    }

    #[test]
    fn test_max_count_fail() {
        let vs = vec![PropertyValue::Int(1), PropertyValue::Int(2)];
        let result = evaluate_constraints(
            &[ConstraintType::MaxCount(1)], &vs, node_id(), shape_id(), Some("age")
        );
        assert_eq!(result.len(), 1);
    }

    #[test]
    fn test_datatype_int_pass() {
        let vs = vec![PropertyValue::Int(42)];
        let result = evaluate_constraints(
            &[ConstraintType::Datatype(DatatypeKind::Int)], &vs, node_id(), shape_id(), Some("age")
        );
        assert!(result.is_empty());
    }

    #[test]
    fn test_datatype_int_fail() {
        let vs = vec![PropertyValue::String("hello".into())];
        let result = evaluate_constraints(
            &[ConstraintType::Datatype(DatatypeKind::Int)], &vs, node_id(), shape_id(), Some("age")
        );
        assert_eq!(result.len(), 1);
    }

    #[test]
    fn test_min_inclusive_pass() {
        let vs = vec![PropertyValue::Int(10)];
        let result = evaluate_constraints(
            &[ConstraintType::MinInclusive(5.0)], &vs, node_id(), shape_id(), Some("score")
        );
        assert!(result.is_empty());
    }

    #[test]
    fn test_min_inclusive_fail() {
        let vs = vec![PropertyValue::Int(3)];
        let result = evaluate_constraints(
            &[ConstraintType::MinInclusive(5.0)], &vs, node_id(), shape_id(), Some("score")
        );
        assert_eq!(result.len(), 1);
    }

    #[test]
    fn test_in_pass() {
        let allowed = vec![
            PropertyValue::String("admin".into()),
            PropertyValue::String("user".into()),
        ];
        let vs = vec![PropertyValue::String("admin".into())];
        let result = evaluate_constraints(
            &[ConstraintType::In(allowed)], &vs, node_id(), shape_id(), Some("role")
        );
        assert!(result.is_empty());
    }

    #[test]
    fn test_in_fail() {
        let allowed = vec![
            PropertyValue::String("admin".into()),
            PropertyValue::String("user".into()),
        ];
        let vs = vec![PropertyValue::String("superuser".into())];
        let result = evaluate_constraints(
            &[ConstraintType::In(allowed)], &vs, node_id(), shape_id(), Some("role")
        );
        assert_eq!(result.len(), 1);
    }

    #[test]
    fn test_has_value_pass() {
        let vs = vec![PropertyValue::Bool(true)];
        let result = evaluate_constraints(
            &[ConstraintType::HasValue(PropertyValue::Bool(true))],
            &vs, node_id(), shape_id(), Some("active")
        );
        assert!(result.is_empty());
    }

    #[test]
    fn test_has_value_fail() {
        let vs = vec![PropertyValue::Bool(false)];
        let result = evaluate_constraints(
            &[ConstraintType::HasValue(PropertyValue::Bool(true))],
            &vs, node_id(), shape_id(), Some("active")
        );
        assert_eq!(result.len(), 1);
    }

    #[test]
    fn test_pattern_pass() {
        let vs = vec![PropertyValue::String("user@example.com".into())];
        let result = evaluate_constraints(
            &[ConstraintType::Pattern(r"^[^@]+@[^@]+\.[^@]+$".into())],
            &vs, node_id(), shape_id(), Some("email")
        );
        assert!(result.is_empty());
    }

    #[test]
    fn test_pattern_fail() {
        let vs = vec![PropertyValue::String("not-an-email".into())];
        let result = evaluate_constraints(
            &[ConstraintType::Pattern(r"^[^@]+@[^@]+\.[^@]+$".into())],
            &vs, node_id(), shape_id(), Some("email")
        );
        assert_eq!(result.len(), 1);
    }

    #[test]
    fn test_min_length_fail() {
        let vs = vec![PropertyValue::String("ab".into())];
        let result = evaluate_constraints(
            &[ConstraintType::MinLength(5)],
            &vs, node_id(), shape_id(), Some("name")
        );
        assert_eq!(result.len(), 1);
    }

    #[test]
    fn test_max_length_fail() {
        let vs = vec![PropertyValue::String("toolongstring".into())];
        let result = evaluate_constraints(
            &[ConstraintType::MaxLength(5)],
            &vs, node_id(), shape_id(), Some("code")
        );
        assert_eq!(result.len(), 1);
    }
}