logo
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
use serde::Serialize;
use std::{fmt::Display, str::FromStr};

/// Represents a point in two dimensional space
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct GeoCoordinate {
    latitude: f32,
    longitude: f32,
}

impl GeoCoordinate {
    /// Creates an instance of [`GeoCoordinate`]
    pub fn new(latitude: f32, longitude: f32) -> Self {
        Self {
            latitude,
            longitude,
        }
    }
}

impl Display for GeoCoordinate {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        format!("[{}, {}]", &self.longitude, &self.latitude).fmt(f)
    }
}

impl Serialize for GeoCoordinate {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        [self.longitude, self.latitude].serialize(serializer)
    }
}

impl From<[f32; 2]> for GeoCoordinate {
    fn from(value: [f32; 2]) -> Self {
        Self {
            latitude: value[1],
            longitude: value[0],
        }
    }
}

impl From<(f32, f32)> for GeoCoordinate {
    fn from(value: (f32, f32)) -> Self {
        Self {
            latitude: value.1,
            longitude: value.0,
        }
    }
}

impl FromStr for GeoCoordinate {
    type Err = String;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        let mut values = s.split(',');

        let longitude = values.next().and_then(|x| x.trim().parse().ok());
        let latitude = values.next().and_then(|x| x.trim().parse().ok());

        match (longitude, latitude, values.next()) {
            (Some(longitude), Some(latitude), None) => Ok(Self {
                longitude,
                latitude,
            }),
            _ => Err(format!("Couldn't parse '{}' as geographic coordinate", s)),
        }
    }
}

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

    #[test]
    fn serialization() {
        assert_serialize(GeoCoordinate::new(1.1, 2.2), json!([2.2, 1.1]));
        assert_serialize(GeoCoordinate::from([2.2, 1.1]), json!([2.2, 1.1]));
        assert_serialize(GeoCoordinate::from((2.2, 1.1)), json!([2.2, 1.1]));
    }

    #[test]
    fn from_str() {
        assert_eq!(
            GeoCoordinate::from_str("1.1, 2.2").unwrap(),
            GeoCoordinate::new(2.2, 1.1)
        );
        assert_eq!(
            GeoCoordinate::from_str("1,2").unwrap(),
            GeoCoordinate::new(2., 1.)
        );

        assert!(GeoCoordinate::from_str("1.1").is_err());
        assert!(GeoCoordinate::from_str("1.1,2.2,3").is_err());
        assert!(GeoCoordinate::from_str("abc").is_err());
    }
}