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
use std::collections::BTreeMap;
use std::str::FromStr;
use num::NumCast;
use super::{File, Value};
pub trait FromValue: Sized {
fn from_value(value: &Value) -> Option<Self>;
}
impl FromValue for Value {
fn from_value(value: &Value) -> Option<Self> {
Some(value.clone())
}
}
macro_rules! num_from_value {
($ty:ty) => {
impl FromValue for $ty {
fn from_value(value: &Value) -> Option<$ty> {
match *value {
Value::I64(value) => NumCast::from(value),
Value::U64(value) => NumCast::from(value),
Value::F64(value) => NumCast::from(value),
Value::String(ref value) => FromStr::from_str(value).ok(),
_ => None,
}
}
}
}
}
num_from_value!(u8);
num_from_value!(u16);
num_from_value!(u32);
num_from_value!(u64);
num_from_value!(usize);
num_from_value!(i8);
num_from_value!(i16);
num_from_value!(i32);
num_from_value!(i64);
num_from_value!(isize);
num_from_value!(f32);
num_from_value!(f64);
impl FromValue for String {
fn from_value(value: &Value) -> Option<String> {
match *value {
Value::Null => Some(String::new()),
Value::Boolean(value) => Some(value.to_string()),
Value::I64(value) => Some(value.to_string()),
Value::U64(value) => Some(value.to_string()),
Value::F64(value) => Some(value.to_string()),
Value::String(ref value) => Some(value.clone()),
_ => None,
}
}
}
static FALSE_STRINGS: &'static [&'static str] = &["0", "f", "F", "false", "FALSE", "off", "OFF"];
static TRUE_STRINGS: &'static [&'static str] = &["1", "t", "T", "true", "TRUE", "on", "ON"];
impl FromValue for bool {
fn from_value(value: &Value) -> Option<bool> {
match *value {
Value::Boolean(value) => Some(value),
Value::I64(value) if value == 0 => Some(false),
Value::I64(value) if value == 1 => Some(true),
Value::U64(value) if value == 0 => Some(false),
Value::U64(value) if value == 1 => Some(true),
Value::String(ref value) if FALSE_STRINGS.contains(&&value[..]) => Some(false),
Value::String(ref value) if TRUE_STRINGS.contains(&&value[..]) => Some(true),
_ => None,
}
}
}
impl FromValue for File {
fn from_value(value: &Value) -> Option<File> {
match *value {
Value::File(ref file) => Some(file.clone()),
_ => None,
}
}
}
impl<T: FromValue> FromValue for Option<T> {
fn from_value(value: &Value) -> Option<Option<T>> {
match *value {
Value::Null => Some(None),
_ => T::from_value(value).map(|result| Some(result)),
}
}
}
impl<T: FromValue> FromValue for Vec<T> {
fn from_value(value: &Value) -> Option<Vec<T>> {
match *value {
Value::Array(ref array) => {
let mut vec = Vec::with_capacity(array.len());
for value in array {
match T::from_value(value) {
Some(value) => vec.push(value),
None => return None,
}
}
Some(vec)
},
_ => None,
}
}
}
impl<T: FromValue> FromValue for BTreeMap<String, T> {
fn from_value(value: &Value) -> Option<BTreeMap<String, T>> {
match *value {
Value::Map(ref map) => map.to_strict_map(),
_ => None,
}
}
}
#[test]
fn cast_within_bounds() {
assert_eq!(<u8 as FromValue>::from_value(&Value::U64(100)), Some(100));
assert_eq!(<u8 as FromValue>::from_value(&Value::String("100".to_owned())), Some(100));
assert_eq!(<i8 as FromValue>::from_value(&Value::I64(-100)), Some(-100));
assert_eq!(<i8 as FromValue>::from_value(&Value::String("-100".to_owned())), Some(-100));
}
#[test]
fn cast_out_of_bounds() {
assert!(<u8 as FromValue>::from_value(&Value::U64(1000)).is_none());
assert!(<u8 as FromValue>::from_value(&Value::String("1000".to_owned())).is_none());
assert!(<i8 as FromValue>::from_value(&Value::I64(-1000)).is_none());
assert!(<i8 as FromValue>::from_value(&Value::String("-1000".to_owned())).is_none());
}