-
Notifications
You must be signed in to change notification settings - Fork 11
/
helpers.rs
59 lines (47 loc) · 1.46 KB
/
helpers.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
use std::{cell::RefCell, rc::Rc};
use super::{
constants::{BORROWABLE, THIS_IS_A_BUG},
errors::ValidationError,
types::{Port, ValidationContext},
};
pub fn merge_errors(errors: Vec<anyhow::Error>, new_error: anyhow::Error) -> Vec<anyhow::Error> {
let mut errors = errors;
errors.push(new_error);
errors
}
pub fn merge_errors_vecs(
errors: Vec<anyhow::Error>,
new_errors: Vec<anyhow::Error>,
) -> Vec<anyhow::Error> {
let mut errors = errors;
for new_error in new_errors.into_iter() {
errors.push(new_error);
}
errors
}
pub fn ensure_node_name_unique(
node_name: String,
validation_context: Rc<RefCell<ValidationContext>>,
) -> Result<(), anyhow::Error> {
let mut context = validation_context
.try_borrow_mut()
.expect(&format!("{}, {}", BORROWABLE, THIS_IS_A_BUG));
if !context.used_nodes_names.contains(&node_name) {
context.used_nodes_names.push(node_name);
return Ok(());
}
Err(ValidationError::NodeNameAlreadyUsed(node_name).into())
}
pub fn ensure_port_unique(
port: Port,
validation_context: Rc<RefCell<ValidationContext>>,
) -> Result<(), anyhow::Error> {
let mut context = validation_context
.try_borrow_mut()
.expect(&format!("{}, {}", BORROWABLE, THIS_IS_A_BUG));
if !context.used_ports.contains(&port) {
context.used_ports.push(port);
return Ok(());
}
Err(ValidationError::PortAlreadyUsed(port).into())
}