Fix ServerBuilder::configure_async() helper method

This commit is contained in:
Nikolay Kim 2022-09-20 19:25:51 +02:00
parent eee3a3e523
commit 71a919e91e
4 changed files with 42 additions and 32 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.5.27] - 2022-09-20
* server: Fix ServerBuilder::configure_async() helper method
## [0.5.26] - 2022-09-20
* server: Add ServerBuilder::configure_async() helper, async version of configure method

View file

@ -1,6 +1,6 @@
[package]
name = "ntex"
version = "0.5.26"
version = "0.5.27"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Framework for composable network services"
readme = "README.md"
@ -65,7 +65,7 @@ ntex-glommio = { version = "0.1.2", optional = true }
ntex-async-std = { version = "0.1.1", optional = true }
async-oneshot = "0.5.0"
async-channel = "1.6.1"
async-channel = "1.7.1"
base64 = "0.13"
bitflags = "1.3"
log = "0.4"

View file

@ -155,9 +155,9 @@ impl ServerBuilder {
f(&mut cfg)?;
let apply = cfg.apply;
let mut srv = ConfiguredService::new(apply);
for (name, lst) in cfg.services {
let mut cfg = cfg.0.borrow_mut();
let mut srv = ConfiguredService::new(cfg.apply.take().unwrap());
for (name, lst) in mem::take(&mut cfg.services) {
let token = self.token.next();
srv.stream(token, name.clone(), lst.local_addr()?);
self.sockets.push((token, name, Listener::from_tcp(lst)));
@ -175,16 +175,17 @@ impl ServerBuilder {
/// different module or even library.
pub async fn configure_async<F, R>(mut self, f: F) -> io::Result<ServerBuilder>
where
F: Fn(&mut ServiceConfig) -> R,
F: Fn(ServiceConfig) -> R,
R: Future<Output = io::Result<()>>,
{
let mut cfg = ServiceConfig::new(self.threads, self.backlog);
let cfg = ServiceConfig::new(self.threads, self.backlog);
let inner = cfg.0.clone();
f(&mut cfg).await?;
f(cfg).await?;
let apply = cfg.apply;
let mut srv = ConfiguredService::new(apply);
for (name, lst) in cfg.services {
let mut cfg = inner.borrow_mut();
let mut srv = ConfiguredService::new(cfg.apply.take().unwrap());
for (name, lst) in mem::take(&mut cfg.services) {
let token = self.token.next();
srv.stream(token, name.clone(), lst.local_addr()?);
self.sockets.push((token, name, Listener::from_tcp(lst)));

View file

@ -39,9 +39,11 @@ impl Config {
}
}
pub struct ServiceConfig {
pub struct ServiceConfig(pub(super) Rc<RefCell<ServiceConfigInner>>);
pub(super) struct ServiceConfigInner {
pub(super) services: Vec<(String, net::TcpListener)>,
pub(super) apply: Box<dyn ServiceRuntimeConfiguration + Send>,
pub(super) apply: Option<Box<dyn ServiceRuntimeConfiguration + Send>>,
pub(super) threads: usize,
pub(super) backlog: i32,
applied: bool,
@ -49,27 +51,27 @@ pub struct ServiceConfig {
impl ServiceConfig {
pub(super) fn new(threads: usize, backlog: i32) -> Self {
ServiceConfig {
ServiceConfig(Rc::new(RefCell::new(ServiceConfigInner {
threads,
backlog,
services: Vec::new(),
applied: false,
apply: Box::new(ConfigWrapper {
apply: Some(Box::new(ConfigWrapper {
f: |_| {
not_configured();
Ready::Ok::<_, &'static str>(())
},
_t: PhantomData,
}),
}
})),
})))
}
/// Add new service to the server.
pub fn bind<U, N: AsRef<str>>(&mut self, name: N, addr: U) -> io::Result<&mut Self>
pub fn bind<U, N: AsRef<str>>(&self, name: N, addr: U) -> io::Result<&Self>
where
U: net::ToSocketAddrs,
{
let sockets = bind_addr(addr, self.backlog)?;
let sockets = bind_addr(addr, self.0.borrow().backlog)?;
for lst in sockets {
self.listen(name.as_ref(), lst);
@ -79,17 +81,20 @@ impl ServiceConfig {
}
/// Add new service to the server.
pub fn listen<N: AsRef<str>>(&mut self, name: N, lst: net::TcpListener) -> &mut Self {
if !self.applied {
self.apply = Box::new(ConfigWrapper {
f: |_| {
not_configured();
Ready::Ok::<_, &'static str>(())
},
_t: PhantomData,
});
pub fn listen<N: AsRef<str>>(&self, name: N, lst: net::TcpListener) -> &Self {
{
let mut inner = self.0.borrow_mut();
if !inner.applied {
inner.apply = Some(Box::new(ConfigWrapper {
f: |_| {
not_configured();
Ready::Ok::<_, &'static str>(())
},
_t: PhantomData,
}));
}
inner.services.push((name.as_ref().to_string(), lst));
}
self.services.push((name.as_ref().to_string(), lst));
self
}
@ -97,14 +102,14 @@ impl ServiceConfig {
///
/// This function get called during worker runtime configuration stage.
/// It get executed in the worker thread.
pub fn on_worker_start<F, R, E>(&mut self, f: F) -> io::Result<()>
pub fn on_worker_start<F, R, E>(&self, f: F) -> io::Result<()>
where
F: Fn(ServiceRuntime) -> R + Send + Clone + 'static,
R: Future<Output = Result<(), E>> + 'static,
E: fmt::Display + 'static,
{
self.applied = true;
self.apply = Box::new(ConfigWrapper { f, _t: PhantomData });
self.0.borrow_mut().applied = true;
self.0.borrow_mut().apply = Some(Box::new(ConfigWrapper { f, _t: PhantomData }));
Ok(())
}
}