mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
99 lines
2.6 KiB
Rust
99 lines
2.6 KiB
Rust
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
use deno::ErrBox;
|
|
use futures::Async;
|
|
use futures::Future;
|
|
use futures::Poll;
|
|
use std::net::SocketAddr;
|
|
use std::net::ToSocketAddrs;
|
|
|
|
/// Resolve network address. Returns a future.
|
|
pub fn resolve_addr(hostname: &str, port: u16) -> ResolveAddrFuture {
|
|
ResolveAddrFuture {
|
|
hostname: hostname.to_string(),
|
|
port,
|
|
}
|
|
}
|
|
|
|
pub struct ResolveAddrFuture {
|
|
hostname: String,
|
|
port: u16,
|
|
}
|
|
|
|
impl Future for ResolveAddrFuture {
|
|
type Item = SocketAddr;
|
|
type Error = ErrBox;
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
// The implementation of this is not actually async at the moment,
|
|
// however we intend to use async DNS resolution in the future and
|
|
// so we expose this as a future instead of Result.
|
|
|
|
// Default to localhost if given just the port. Example: ":80"
|
|
let addr: &str = if !self.hostname.is_empty() {
|
|
&self.hostname
|
|
} else {
|
|
"0.0.0.0"
|
|
};
|
|
|
|
// If this looks like an ipv6 IP address. Example: "[2001:db8::1]"
|
|
// Then we remove the brackets.
|
|
let addr = if addr.starts_with('[') && addr.ends_with(']') {
|
|
let l = addr.len() - 1;
|
|
addr.get(1..l).unwrap()
|
|
} else {
|
|
addr
|
|
};
|
|
let addr_port_pair = (addr, self.port);
|
|
let r = addr_port_pair.to_socket_addrs().map_err(ErrBox::from);
|
|
|
|
r.and_then(|mut iter| match iter.next() {
|
|
Some(a) => Ok(Async::Ready(a)),
|
|
None => panic!("There should be at least one result"),
|
|
})
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use std::net::Ipv4Addr;
|
|
use std::net::Ipv6Addr;
|
|
use std::net::SocketAddrV4;
|
|
use std::net::SocketAddrV6;
|
|
|
|
#[test]
|
|
fn resolve_addr1() {
|
|
let expected =
|
|
SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::new(127, 0, 0, 1), 80));
|
|
let actual = resolve_addr("127.0.0.1", 80).wait().unwrap();
|
|
assert_eq!(actual, expected);
|
|
}
|
|
|
|
#[test]
|
|
fn resolve_addr2() {
|
|
let expected =
|
|
SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::new(0, 0, 0, 0), 80));
|
|
let actual = resolve_addr("", 80).wait().unwrap();
|
|
assert_eq!(actual, expected);
|
|
}
|
|
|
|
#[test]
|
|
fn resolve_addr3() {
|
|
let expected =
|
|
SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::new(192, 0, 2, 1), 25));
|
|
let actual = resolve_addr("192.0.2.1", 25).wait().unwrap();
|
|
assert_eq!(actual, expected);
|
|
}
|
|
|
|
#[test]
|
|
fn resolve_addr_ipv6() {
|
|
let expected = SocketAddr::V6(SocketAddrV6::new(
|
|
Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 1),
|
|
8080,
|
|
0,
|
|
0,
|
|
));
|
|
let actual = resolve_addr("[2001:db8::1]", 8080).wait().unwrap();
|
|
assert_eq!(actual, expected);
|
|
}
|
|
}
|