1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-30 09:22:52 +01:00

Rename connect Connector to TcpConnector #10

This commit is contained in:
Nikolay Kim 2019-03-31 19:14:13 -07:00
parent 3add90628f
commit 5e8ae210f7
4 changed files with 46 additions and 28 deletions

View File

@ -1,5 +1,12 @@
# Changes
## [0.1.2] - 2019-04-xx
### Changed
* Rename connect Connector to TcpConnector #10
## [0.1.1] - 2019-03-15
### Fixed

View File

@ -1,6 +1,6 @@
[package]
name = "actix-connect"
version = "0.1.1"
version = "0.1.2"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix Connector - tcp connector service"
keywords = ["network", "framework", "async", "futures"]

View File

@ -12,54 +12,54 @@ use super::error::ConnectError;
/// Tcp connector service factory
#[derive(Debug)]
pub struct ConnectorFactory<T>(PhantomData<T>);
pub struct TcpConnectorFactory<T>(PhantomData<T>);
impl<T> ConnectorFactory<T> {
impl<T> TcpConnectorFactory<T> {
pub fn new() -> Self {
ConnectorFactory(PhantomData)
TcpConnectorFactory(PhantomData)
}
}
impl<T> Clone for ConnectorFactory<T> {
impl<T> Clone for TcpConnectorFactory<T> {
fn clone(&self) -> Self {
ConnectorFactory(PhantomData)
TcpConnectorFactory(PhantomData)
}
}
impl<T: Address> NewService for ConnectorFactory<T> {
impl<T: Address> NewService for TcpConnectorFactory<T> {
type Request = Connect<T>;
type Response = Connection<T, TcpStream>;
type Error = ConnectError;
type Service = Connector<T>;
type Service = TcpConnector<T>;
type InitError = ();
type Future = FutureResult<Self::Service, Self::InitError>;
fn new_service(&self, _: &()) -> Self::Future {
ok(Connector(PhantomData))
ok(TcpConnector(PhantomData))
}
}
/// Tcp connector service
#[derive(Debug)]
pub struct Connector<T>(PhantomData<T>);
pub struct TcpConnector<T>(PhantomData<T>);
impl<T> Connector<T> {
impl<T> TcpConnector<T> {
pub fn new() -> Self {
Connector(PhantomData)
TcpConnector(PhantomData)
}
}
impl<T> Clone for Connector<T> {
impl<T> Clone for TcpConnector<T> {
fn clone(&self) -> Self {
Connector(PhantomData)
TcpConnector(PhantomData)
}
}
impl<T: Address> Service for Connector<T> {
impl<T: Address> Service for TcpConnector<T> {
type Request = Connect<T>;
type Response = Connection<T, TcpStream>;
type Error = ConnectError;
type Future = Either<ConnectorResponse<T>, FutureResult<Self::Response, Self::Error>>;
type Future = Either<TcpConnectorResponse<T>, FutureResult<Self::Response, Self::Error>>;
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
Ok(Async::Ready(()))
@ -70,7 +70,7 @@ impl<T: Address> Service for Connector<T> {
let Connect { req, addr, .. } = req;
if let Some(addr) = addr {
Either::A(ConnectorResponse::new(req, port, addr))
Either::A(TcpConnectorResponse::new(req, port, addr))
} else {
error!("TCP connector: got unresolved address");
Either::B(err(ConnectError::Unresolverd))
@ -80,19 +80,19 @@ impl<T: Address> Service for Connector<T> {
#[doc(hidden)]
/// Tcp stream connector response future
pub struct ConnectorResponse<T> {
pub struct TcpConnectorResponse<T> {
req: Option<T>,
port: u16,
addrs: Option<VecDeque<SocketAddr>>,
stream: Option<ConnectFuture>,
}
impl<T: Address> ConnectorResponse<T> {
impl<T: Address> TcpConnectorResponse<T> {
pub fn new(
req: T,
port: u16,
addr: either::Either<SocketAddr, VecDeque<SocketAddr>>,
) -> ConnectorResponse<T> {
) -> TcpConnectorResponse<T> {
trace!(
"TCP connector - connecting to {:?} port:{}",
req.host(),
@ -100,13 +100,13 @@ impl<T: Address> ConnectorResponse<T> {
);
match addr {
either::Either::Left(addr) => ConnectorResponse {
either::Either::Left(addr) => TcpConnectorResponse {
req: Some(req),
port,
addrs: None,
stream: Some(TcpStream::connect(&addr)),
},
either::Either::Right(addrs) => ConnectorResponse {
either::Either::Right(addrs) => TcpConnectorResponse {
req: Some(req),
port,
addrs: Some(addrs),
@ -116,7 +116,7 @@ impl<T: Address> ConnectorResponse<T> {
}
}
impl<T: Address> Future for ConnectorResponse<T> {
impl<T: Address> Future for TcpConnectorResponse<T> {
type Item = Connection<T, TcpStream>;
type Error = ConnectError;

View File

@ -20,7 +20,7 @@ mod uri;
pub use trust_dns_resolver::{error::ResolveError, AsyncResolver};
pub use self::connect::{Address, Connect, Connection};
pub use self::connector::{Connector, ConnectorFactory};
pub use self::connector::{TcpConnector, TcpConnectorFactory};
pub use self::error::ConnectError;
pub use self::resolver::{Resolver, ResolverFactory};
@ -29,6 +29,17 @@ use tokio_tcp::TcpStream;
use trust_dns_resolver::config::{ResolverConfig, ResolverOpts};
use trust_dns_resolver::system_conf::read_system_conf;
#[doc(hidden)]
#[deprecated(since = "0.1.2", note = "please use `actix_connect::TcpConnector`")]
pub type Connector<T> = TcpConnector<T>;
#[doc(hidden)]
#[deprecated(
since = "0.1.2",
note = "please use `actix_connect::TcpConnectorFactory`"
)]
pub type ConnectorFactory<T> = TcpConnectorFactory<T>;
pub fn start_resolver(cfg: ResolverConfig, opts: ResolverOpts) -> AsyncResolver {
let (resolver, bg) = AsyncResolver::new(cfg, opts);
tokio_current_thread::spawn(bg);
@ -52,7 +63,7 @@ pub fn new_connector<T: Address>(
resolver: AsyncResolver,
) -> impl Service<Request = Connect<T>, Response = Connection<T, TcpStream>, Error = ConnectError>
+ Clone {
Resolver::new(resolver).and_then(Connector::new())
Resolver::new(resolver).and_then(TcpConnector::new())
}
/// Create tcp connector service
@ -64,14 +75,14 @@ pub fn new_connector_factory<T: Address>(
Error = ConnectError,
InitError = (),
> + Clone {
ResolverFactory::new(resolver).and_then(ConnectorFactory::new())
ResolverFactory::new(resolver).and_then(TcpConnectorFactory::new())
}
/// Create connector service with default parameters
pub fn default_connector<T: Address>(
) -> impl Service<Request = Connect<T>, Response = Connection<T, TcpStream>, Error = ConnectError>
+ Clone {
Resolver::new(start_default_resolver()).and_then(Connector::new())
Resolver::new(start_default_resolver()).and_then(TcpConnector::new())
}
/// Create connector service factory with default parameters
@ -81,5 +92,5 @@ pub fn default_connector_factory<T: Address>() -> impl NewService<
Error = ConnectError,
InitError = (),
> + Clone {
ResolverFactory::new(start_default_resolver()).and_then(ConnectorFactory::new())
ResolverFactory::new(start_default_resolver()).and_then(TcpConnectorFactory::new())
}