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
use crate::data::ast::Flow;
use crate::data::error_info::ErrorInfo;
use crate::data::warnings::Warnings;

use std::collections::HashMap;

////////////////////////////////////////////////////////////////////////////////
// DATA STRUCTURES
////////////////////////////////////////////////////////////////////////////////

#[derive(Debug)]
pub struct CsmlResult {
    pub flows: Option<HashMap<String, Flow>>,
    pub warnings: Option<Vec<Warnings>>,
    pub errors: Option<Vec<ErrorInfo>>,
}

////////////////////////////////////////////////////////////////////////////////
// PUBLIC FUNCTION
////////////////////////////////////////////////////////////////////////////////

impl CsmlResult {
    pub fn new(
        flows: HashMap<String, Flow>,
        warnings: Vec<Warnings>,
        errors: Vec<ErrorInfo>,
    ) -> Self {
        let flows = match flows.is_empty() {
            false => Some(flows),
            true => None,
        };

        let warnings = match warnings.is_empty() {
            false => Some(warnings),
            true => None,
        };

        let errors = match errors.is_empty() {
            false => Some(errors),
            true => None,
        };

        Self {
            flows,
            warnings,
            errors,
        }
    }
}