-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
mod.rs
86 lines (72 loc) · 2.22 KB
/
mod.rs
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
//! Service API that promotes monitoring and interactivity
//!
//! See [`Service`].
mod objects;
mod service;
mod validation;
use crate::{
objects::{Object, ObjectSet, Objects, WithHandle},
validate::ValidationErrors,
};
pub use self::{
objects::{InsertObject, Operation},
service::{Service, State},
validation::{Validation, ValidationCommand, ValidationEvent},
};
/// The kernel services
pub struct Services {
/// The objects service
///
/// Allows for inserting objects into a store after they were created.
pub objects: Service<Objects>,
/// The validation service
///
/// Validates objects that are inserted using the objects service.
pub validation: Service<Validation>,
}
impl Services {
/// Construct an instance of `Services`
pub fn new() -> Self {
let objects = Service::<Objects>::default();
let validation = Service::default();
Self {
objects,
validation,
}
}
/// Insert an object into the stores
pub fn insert_object(&mut self, object: Object<WithHandle>) {
let mut object_events = Vec::new();
self.objects
.execute(Operation::InsertObject { object }, &mut object_events);
for object_event in object_events {
let command = ValidationCommand::ValidateObject {
object: object_event.object.into(),
};
self.validation.execute(command, &mut Vec::new());
}
}
/// Validate the provided objects and forget all other validation errors
pub fn only_validate(&mut self, objects: impl Into<ObjectSet>) {
let objects = objects.into();
let mut events = Vec::new();
self.validation
.execute(ValidationCommand::OnlyValidate { objects }, &mut events);
}
/// Drop `Services`; return any unhandled validation error
pub fn drop_and_validate(self) -> Result<(), ValidationErrors> {
let errors = ValidationErrors(
self.validation.errors.values().cloned().collect(),
);
if errors.0.is_empty() {
Ok(())
} else {
Err(errors)
}
}
}
impl Default for Services {
fn default() -> Self {
Self::new()
}
}