mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Use async fn for Service::ready() and Service::shutdown() (#363)
This commit is contained in:
parent
dec6ab083a
commit
b04bdf41f6
33 changed files with 285 additions and 299 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [2.0.0] - 2024-05-28
|
||||
|
||||
* Use async fn for Service::ready() and Service::shutdown()
|
||||
|
||||
## [1.1.0] - 2024-03-24
|
||||
|
||||
* Move tls connectors from ntex-connect
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-tls"
|
||||
version = "1.1.0"
|
||||
version = "2.0.0"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "An implementation of SSL streams for ntex backed by OpenSSL"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
@ -25,11 +25,11 @@ openssl = ["tls_openssl"]
|
|||
rustls = ["tls_rust"]
|
||||
|
||||
[dependencies]
|
||||
ntex-bytes = "0.1.21"
|
||||
ntex-io = "1.0"
|
||||
ntex-util = "1.0"
|
||||
ntex-service = "2.0"
|
||||
ntex-net = "1.0"
|
||||
ntex-bytes = "0.1"
|
||||
ntex-io = "2.0"
|
||||
ntex-util = "2.0"
|
||||
ntex-service = "3.0"
|
||||
ntex-net = "2.0"
|
||||
|
||||
log = "0.4"
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#![allow(dead_code)]
|
||||
use std::{cell::Cell, rc::Rc, task};
|
||||
use std::{cell::Cell, future::poll_fn, rc::Rc, task, task::Poll};
|
||||
|
||||
use ntex_util::task::LocalWaker;
|
||||
|
||||
|
@ -33,8 +32,15 @@ impl Counter {
|
|||
|
||||
/// Check if counter is not at capacity. If counter at capacity
|
||||
/// it registers notification for current task.
|
||||
pub(super) fn available(&self, cx: &mut task::Context<'_>) -> bool {
|
||||
self.0.available(cx)
|
||||
pub(super) async fn available(&self) {
|
||||
poll_fn(|cx| {
|
||||
if self.0.available(cx) {
|
||||
Poll::Ready(())
|
||||
} else {
|
||||
Poll::Pending
|
||||
}
|
||||
})
|
||||
.await
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use std::{cell::RefCell, error::Error, fmt, io, task::Context, task::Poll};
|
||||
use std::{cell::RefCell, error::Error, fmt, io};
|
||||
|
||||
use ntex_io::{Filter, Io, Layer};
|
||||
use ntex_service::{Service, ServiceCtx, ServiceFactory};
|
||||
|
@ -97,12 +97,9 @@ impl<F: Filter> Service<Io<F>> for SslAcceptorService {
|
|||
type Response = Io<Layer<SslFilter, F>>;
|
||||
type Error = Box<dyn Error>;
|
||||
|
||||
fn poll_ready(&self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
||||
if self.conns.available(cx) {
|
||||
Poll::Ready(Ok(()))
|
||||
} else {
|
||||
Poll::Pending
|
||||
}
|
||||
async fn ready(&self, _: ServiceCtx<'_, Self>) -> Result<(), Self::Error> {
|
||||
self.conns.available().await;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
async fn call(
|
||||
|
|
|
@ -27,12 +27,7 @@ impl<T: Address> SslConnector<T> {
|
|||
/// Use specified memory pool for memory allocations. By default P0
|
||||
/// memory pool is used.
|
||||
pub fn memory_pool(self, id: PoolId) -> Self {
|
||||
let connector = self
|
||||
.connector
|
||||
.into_service()
|
||||
.expect("Connector has been cloned")
|
||||
.memory_pool(id)
|
||||
.into();
|
||||
let connector = self.connector.get_ref().memory_pool(id).into();
|
||||
|
||||
Self {
|
||||
connector,
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
use std::task::{Context, Poll};
|
||||
use std::{io, sync::Arc};
|
||||
|
||||
use tls_rust::ServerConfig;
|
||||
|
@ -81,12 +80,9 @@ impl<F: Filter> Service<Io<F>> for TlsAcceptorService {
|
|||
type Response = Io<Layer<TlsServerFilter, F>>;
|
||||
type Error = io::Error;
|
||||
|
||||
fn poll_ready(&self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
||||
if self.conns.available(cx) {
|
||||
Poll::Ready(Ok(()))
|
||||
} else {
|
||||
Poll::Pending
|
||||
}
|
||||
async fn ready(&self, _: ServiceCtx<'_, Self>) -> Result<(), Self::Error> {
|
||||
self.conns.available().await;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
async fn call(
|
||||
|
|
|
@ -36,12 +36,7 @@ impl<T: Address> TlsConnector<T> {
|
|||
/// Use specified memory pool for memory allocations. By default P0
|
||||
/// memory pool is used.
|
||||
pub fn memory_pool(self, id: PoolId) -> Self {
|
||||
let connector = self
|
||||
.connector
|
||||
.into_service()
|
||||
.unwrap()
|
||||
.memory_pool(id)
|
||||
.into();
|
||||
let connector = self.connector.get_ref().memory_pool(id).into();
|
||||
Self {
|
||||
connector,
|
||||
config: self.config,
|
||||
|
@ -146,7 +141,7 @@ mod tests {
|
|||
.memory_pool(PoolId::P5)
|
||||
.clone();
|
||||
|
||||
let srv = factory.pipeline(&()).await.unwrap();
|
||||
let srv = factory.pipeline(&()).await.unwrap().bind();
|
||||
// always ready
|
||||
assert!(lazy(|cx| srv.poll_ready(cx)).await.is_ready());
|
||||
let result = srv
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue