nmd_core/
load.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
use std::io;
use std::path::PathBuf;
use getset::{CopyGetters, Getters, Setters};
use thiserror::Error;
use crate::resource::resource_reference::ResourceReferenceError;
use crate::resource::ResourceError;




#[derive(Error, Debug)]
pub enum LoadError {

    #[error("bucket of errors: '{0:#?}'")]
    BucketOfErrors(Vec<LoadError>),

    #[error(transparent)]
    ResourceError(#[from] ResourceError),

    #[error(transparent)]
    ResourceReferenceError(#[from] ResourceReferenceError),

    #[error("elaboration error: {0}")]
    ElaborationError(String),
    
    #[error(transparent)]
    IoError(#[from] io::Error),

    #[error("block error: {0}")]
    BlockError(String),

    #[error("invalid tag: {0}")]
    InvalidTag(String)
}

impl Clone for LoadError {
    fn clone(&self) -> Self {
        match self {
            Self::IoError(e) => Self::ElaborationError(e.to_string()),
            other => other.clone()
        }
    }
}


#[derive(Debug, Getters, CopyGetters, Setters)]
pub struct LoadConfiguration {
    
    #[getset(get = "pub", set = "pub")]
    input_location: PathBuf,

    #[getset(get_copy = "pub", set = "pub")]
    strict_focus_block_check: bool,

    #[getset(get_copy = "pub", set = "pub")]
    strict_paragraphs_loading_rules_check: bool,

    #[getset(get_copy = "pub", set = "pub")]
    parallelization: bool,
}

impl Default for LoadConfiguration {
    fn default() -> Self {
        Self {
            input_location: PathBuf::from("."),
            strict_focus_block_check: false,
            strict_paragraphs_loading_rules_check: true,
            parallelization: true
        }
    }
}


#[derive(Debug, Getters, Setters, Default, Clone)]
pub struct LoadConfigurationOverLay {

    #[getset(get = "pub", set = "pub")]
    dossier_name: Option<String>,

    #[getset(get = "pub", set = "pub")]
    document_name: Option<String>,
}