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
pub use env_loader_convert::convert;
use std::collections::HashMap;
use std::env;
#[derive(Debug, Clone)]
pub enum Value {
    Str,
    Int,
    Long,
    Bool,
}
#[derive(Debug, Clone)]
enum InnerValue {
    Str(String),
    Int(i32),
    Long(i64),
    Bool(bool),
    None,
}
#[allow(private_in_public)]
impl From<(String, &Value)> for InnerValue {
    fn from(value: (String, &Value)) -> InnerValue {
        match value.1 {
            Value::Bool => match value.0.to_ascii_lowercase().as_ref() {
                "true" => InnerValue::Bool(true),
                "false" => InnerValue::Bool(false),
                _ => InnerValue::None,
            },
            Value::Int => {
                let parsed = value.0.parse();
                if parsed.is_err() {
                    return InnerValue::None;
                }
                InnerValue::Int(parsed.unwrap())
            }
            Value::Long => {
                let parsed = value.0.parse();
                if parsed.is_err() {
                    return InnerValue::None;
                }
                InnerValue::Long(parsed.unwrap())
            }
            Value::Str => InnerValue::Str(value.0),
        }
    }
}

impl From<InnerValue> for Option<i64> {
    fn from(value: InnerValue) -> Self {
        match value {
            InnerValue::Long(val) => Some(val),
            _ => None,
        }
    }
}

impl From<InnerValue> for Option<i32> {
    fn from(value: InnerValue) -> Self {
        match value {
            InnerValue::Int(num) => Some(num),
            _ => None,
        }
    }
}
impl From<InnerValue> for Option<String> {
    fn from(value: InnerValue) -> Self {
        match value {
            InnerValue::Str(str) => Some(str),
            _ => None,
        }
    }
}
impl From<InnerValue> for Option<bool> {
    fn from(value: InnerValue) -> Self {
        match value {
            InnerValue::Bool(flag) => Some(flag),
            _ => None,
        }
    }
}

#[derive(Debug)]
pub enum ConfigLoaderError {
    NoEnvFile,
    ValueNotInEnv(&'static str),
    IncorrectValueType(&'static str),
    IsNotPartOfRuntime(&'static str),
    WrongConvertion,
    WrongTypeTryingToGet(&'static str),
}

pub struct ConfigLoader(HashMap<String, InnerValue>);

impl ConfigLoader {
    pub fn new(names: &[(&'static str, Value)]) -> Result<Self, ConfigLoaderError> {
        let dotenv_reading_result = dotenv::dotenv();
        if dotenv_reading_result.is_err() {
            return Err(ConfigLoaderError::NoEnvFile);
        }
        dotenv_reading_result.ok();
        let mut store = HashMap::new();
        for (name, typing) in names {
            let value = env::var(name);
            if value.is_err() {
                return Err(ConfigLoaderError::ValueNotInEnv(name));
            }
            let res: InnerValue = (value.unwrap(), typing).into();
            match res {
                InnerValue::None => return Err(ConfigLoaderError::WrongConvertion),
                val => store.insert(String::from(*name), val),
            };
        }
        Ok(Self(store))
    }

    pub fn get<T>(&self, name: &'static str) -> Result<T, ConfigLoaderError>
    where
        Option<T>: From<InnerValue>,
    {
        let val = self.0.get(name);
        if val.is_none() {
            return Err(ConfigLoaderError::IsNotPartOfRuntime(name));
        }

        match (*val.unwrap()).clone().into() {
            Some(inner) => Ok(inner),
            None => Err(ConfigLoaderError::WrongTypeTryingToGet(name)),
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    const VARS: [(&str, Value); 4] = [
        ("PORT", Value::Int),
        ("HOST", Value::Str),
        ("CRITICAL_FLAG", Value::Bool),
        ("LONG_VAR", Value::Long),
    ];
    #[test]
    fn check_int() {
        let store = ConfigLoader::new(&VARS).unwrap();
        let port: i32 = store.get("PORT").unwrap();
        assert_eq!(port, 9999);
    }
    #[test]
    fn check_str() {
        let store = ConfigLoader::new(&VARS).unwrap();
        let host: String = store.get("HOST").unwrap();

        assert_eq!(host, "localhost");
    }
    #[test]
    fn check_bool() {
        let store = ConfigLoader::new(&VARS).unwrap();
        let flag: bool = store.get("CRITICAL_FLAG").unwrap();

        assert!(flag);
    }
    #[test]
    fn check_long() {
        let store = ConfigLoader::new(&VARS).unwrap();
        let num: i64 = store.get("LONG_VAR").unwrap();

        assert_eq!(num, 5405632342349523);
    }

    #[test]
    fn check_multiple_values_with_macro() {
        let env_values = convert! {
            PORT:int,
            HOST:str,
            CRITICAL_FLAG:bool,
            LONG_VAR:i64
        };
        let store = ConfigLoader::new(&env_values).unwrap();
        let port: i32 = store.get("PORT").unwrap();
        let host: String = store.get("HOST").unwrap();
        let flag: bool = store.get("CRITICAL_FLAG").unwrap();
        let num: i64 = store.get("LONG_VAR").unwrap();
        assert_eq!(port, 9999);
        assert_eq!(host, "localhost");
        assert!(flag);
        assert_eq!(num, 5405632342349523);
    }
}