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
use std::fmt;
use string_repr::StringRepr;

pub struct Host<'a>(&'a str);

impl<'a> Host<'a> {
    /// Create new Host.
    /// # Example:
    /// ```
    /// use wdg_uri::authority::Host;
    /// let host = Host::new("localhost");
    /// ```
    pub fn new(data: &str) -> Host {
        Host(data)
    }

    /// Validate Host.
    /// # Support:
    /// * IPv4Address
    /// * IPv6Address
    /// # Example:
    /// ```
    /// use wdg_uri::authority::Host;
    /// let host = Host::new("127.0.0.1");
    /// if !host.validate() {
    ///     panic!("fail");
    /// }
    /// ```
    pub fn validate(&self) -> bool {
        self.is_ipv4addr() | self.is_ipv6addr()
    }

    /// Check if Host is IPv4Address.
    /// # Example:
    /// ```
    /// use wdg_uri::authority::Host;
    /// let host = Host::new("127.0.0.1");
    /// if host.is_ipv4addr() {
    ///    println!("Host is IPv4Address.");
    /// }
    /// ```
    pub fn is_ipv4addr(&self) -> bool {
        regexp::IP_V4_ADDR(&self.0)
    }

    /// Check if Host is IPv6Address.
    /// # Example:
    /// ```
    /// use wdg_uri::authority::Host;
    /// let host = Host::new("::");
    /// if host.is_ipv6addr() {
    ///    println!("Host is IPv6Address.");
    /// }
    /// ```
    pub fn is_ipv6addr(&self) -> bool {
        regexp::IP_V6_ADDR(&self.0)
    }
}

impl<'a> StringRepr for Host<'a> {
    fn string_repr(&self) -> String {
        String::from(self.0)
    }
}

impl<'a> fmt::Display for Host<'a> {
    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
        write!(formatter, "host: {}", self.0)
    }
}

#[macro_export]
macro_rules! host {
    ($host:expr) => {
        Host::new($host)
    };
}