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
use anyhow::Result;
use anyhow::Error;
use std::net::SocketAddr;
use std::net::IpAddr;
use std::net::Ipv4Addr;
use std::fmt;
use std::convert::TryFrom;

#[derive(Debug)]
pub struct ProxyAddr<'a> {
    addr: SocketAddr,
    protocal: &'a str,
}

impl<'a> ProxyAddr<'a> {
    pub const fn new(addr: SocketAddr, protocal: &'a str) -> Self {
        Self { addr, protocal }
    }
    pub const fn from_addr(addr: SocketAddr) -> Self {
        Self { addr, protocal: "http" }
    }
    pub fn from_str(s: &'a str) -> Result<Self> {
        let mut splits = s.rsplit("://");
        match (splits.next(), splits.next()) {
            (Some(addr),Some(protocal)) => Ok(Self::new(addr.parse()?, protocal)),
            (Some(addr), None) => Ok(Self::from_addr(addr.parse()?)),
            _ => Err(anyhow::anyhow!("Invailed proxy address syntax"))
        }
    }
    pub const fn protocal(&self) -> &str {
        self.protocal
    }
    pub const fn addr(&self) -> &SocketAddr {
        &self.addr
    }
}
impl<'a> fmt::Display for ProxyAddr<'a> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}://{}", self.protocal, self.addr)
    }
}
impl<'a> TryFrom<&'a str> for ProxyAddr<'a> {
    type Error = Error;

    #[inline]
    fn try_from(value: &'a str) -> Result<Self, Self::Error> {
        Self::from_str(value)
    }
}
impl<'a> Default for ProxyAddr<'a> {
    fn default() -> Self {
        Self::from_addr(SocketAddr::new(IpAddr::V4(Ipv4Addr::LOCALHOST), 1080))
    }
}