blob: 325c77f605091b433e202bb3f733d34598d0fc22 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
use std::{net::SocketAddr, task};
use super::Listener;
use async_trait::async_trait;
use dubbo_logger::tracing;
use futures_core::Stream;
use hyper::server::accept::Accept;
use tokio::net::{TcpListener as tokioTcpListener, TcpStream};
pub struct TcpListener {
inner: tokioTcpListener,
}
impl TcpListener {
pub async fn bind(addr: SocketAddr) -> std::io::Result<TcpListener> {
let listener = tokioTcpListener::bind(addr).await?;
Ok(TcpListener { inner: listener })
}
}
#[async_trait]
impl Listener for TcpListener {
type Conn = TcpStream;
async fn accept(&self) -> std::io::Result<(Self::Conn, SocketAddr)> {
let conn = self.inner.accept().await?;
Ok(conn)
}
}
impl Stream for TcpListener {
type Item = TcpStream;
fn poll_next(
self: std::pin::Pin<&mut Self>,
cx: &mut std::task::Context<'_>,
) -> std::task::Poll<Option<Self::Item>> {
self.inner.poll_accept(cx).map(|res| match res {
Ok(data) => Some(data.0),
Err(err) => {
tracing::error!("TcpListener poll_next Error: {:?}", err);
None
}
})
}
}
impl Accept for TcpListener {
type Conn = TcpStream;
type Error = crate::Error;
fn poll_accept(
self: std::pin::Pin<&mut Self>,
cx: &mut task::Context<'_>,
) -> std::task::Poll<Option<Result<Self::Conn, Self::Error>>> {
self.inner.poll_accept(cx).map(|res| match res {
Ok(data) => Some(Ok(data.0)),
Err(err) => {
tracing::error!("TcpListener poll_accept Error: {:?}", err);
None
}
})
}
}