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
use validator::Validate;
use std::str::FromStr;

pub trait FormValue {
    fn fields(&self, prefix: &str, fields: &mut Vec<String>) {
        // By default, announce the value to be a scalar
        fields.push(String::from(prefix));
    }
    fn value(&self, field_path: &str) -> String;
    fn set_value(&mut self, field_path: &str, value: &str) -> Result<(), String>;

}

pub trait Model: FormValue + Validate + PartialEq + Clone + 'static {
}

pub fn split_field_path(field_path: &str) -> (&str, &str) {
    if let Some(index) = field_path.find(".") {
        (&field_path[0..index], &field_path[index+1..])
    } else {
        (field_path, "")
    }
}

impl<T: ToString + FromStr> FormValue for T {
    fn value(&self, field_path: &str) -> String {
        debug_assert!(field_path == "");

        self.to_string()
    }

    fn set_value(&mut self, field_path: &str, value: &str) -> Result<(), String> {
        debug_assert!(field_path == "");

        if let Ok(v) = value.parse::<T>() {
            *self = v;
            Ok(())
        } else {
            Err(String::from("Could not convert"))
        }
    }
}

#[cfg(test)]
mod tests {
    use crate::model::split_field_path;

    #[test]
    fn test_split_field_path() {
        let path = "field";
        let (field, suffix) = split_field_path(path);

        assert_eq!(field, "field");
        assert_eq!(suffix, "");

        let path = "field.sub";
        let (field, suffix) = split_field_path(path);

        assert_eq!(field, "field");
        assert_eq!(suffix, "sub");

        let path = "field.sub.subsub";
        let (field, suffix) = split_field_path(path);

        assert_eq!(field, "field");
        assert_eq!(suffix, "sub.subsub");
    }
}