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

use crate::TomlValue;

use std::{collections::HashMap, convert::TryFrom, path::PathBuf};

pub trait FromToml : Sized {
    fn from_toml(from: Option<&TomlValue>) -> Option<Self>;
}

macro_rules! impl_from_toml_integer {
    ($x:ty) => {
        impl FromToml for $x {
            fn from_toml(from: Option<&TomlValue>) -> Option<Self> {
                match from {
                    Some(TomlValue::Integer(x)) => {
                        <$x>::try_from(*x).ok()
                    }
                    _ => { None }
                }.or_else(|| {
                    match from {
                        Some(TomlValue::String(x)) => {
                            str::parse::<$x>(&x).ok()
                        }
                        _ => { None }
                    }
                })
            }
        }
    };
}

impl_from_toml_integer!(u8);
impl_from_toml_integer!(u16);
impl_from_toml_integer!(u32);
impl_from_toml_integer!(u64);
impl_from_toml_integer!(usize);

impl_from_toml_integer!(i8);
impl_from_toml_integer!(i16);
impl_from_toml_integer!(i32);
impl_from_toml_integer!(i64);
impl_from_toml_integer!(isize);

impl FromToml for f32 {
    fn from_toml(from: Option<&TomlValue>) -> Option<Self> {
        match from {
            Some(TomlValue::Float(x)) => {
                Some(*x as f32)
            }
            Some(TomlValue::Integer(x)) => {
                Some(*x as f32)
            }
            _ => { None }
        }
    }
}

impl FromToml for f64 {
    fn from_toml(from: Option<&TomlValue>) -> Option<Self> {
        match from {
            Some(TomlValue::Float(x)) => {
                Some(*x)
            }
            Some(TomlValue::Integer(x)) => {
                Some(*x as f64)
            }
            _ => { None }
        }
    }
}
impl FromToml for bool {
    fn from_toml(from: Option<&TomlValue>) -> Option<Self> {
        match from {
            Some(TomlValue::Boolean(x)) => {
                Some(*x)
            }
            _ => { None }
        }
    }
}

impl FromToml for String {
    fn from_toml(from: Option<&TomlValue>) -> Option<Self> {
        match from {
            Some(TomlValue::String(x)) => {
                Some(x.clone())
            }
            _ => { None }
        }
    }
}
impl<T> FromToml for Vec<T> where T: FromToml {
    fn from_toml(from: Option<&TomlValue>) -> Option<Self> {
        match from {
            Some(TomlValue::Array(array)) => {
                let mut res = Self::new();
                for x in array {
                    if let Some(x) = T::from_toml(Some(x)) {
                        res.push(x);
                    } else {
                        return None
                    }
                }
                Some(res)
            }
            _ => {
                None
            }
        }
    }
}

impl<V> FromToml for HashMap<String, V> where V: FromToml {
    fn from_toml(from: Option<&TomlValue>) -> Option<Self> {
        match from {
            Some(TomlValue::Table(table)) => {
                let mut res = Self::new();
                for (key, value) in table {
                    if let Some(value) = V::from_toml(Some(value)) {
                        res.insert(key.clone(), value);
                    } else {
                        return None
                    }
                }
                Some(res)
            }
            _ => {
                None
            }
        }
    }
}

impl<T> FromToml for Option<T> where T: FromToml {
    fn from_toml(from: Option<&TomlValue>) -> Option<Self> {
        if let Some(from) = from {
            if let Some(value) = T::from_toml(Some(from)) {
                Some(Some(value))
            } else {
                None
            }
        } else {
            Some(None)
        }
        
    }
}

impl<T> FromToml for Box<T> where T: FromToml {
    fn from_toml(from: Option<&TomlValue>) -> Option<Self> {
        T::from_toml(from).map(Box::new)
    }
}

impl FromToml for PathBuf {
    fn from_toml(from: Option<&TomlValue>) -> Option<Self> {
        if let Some(TomlValue::String(s)) = from {
            Some(PathBuf::from(s))
        } else {
            None
        }
    }
}