This commit is contained in:
Nikolay Kim 2021-05-17 17:32:53 +06:00
parent fd102816ff
commit fffe03e76f
14 changed files with 24 additions and 56 deletions

View file

@ -265,7 +265,7 @@ impl Tree {
base_skip,
)
})
.filter_map(|x| x)
.flatten()
.next();
return if let Some((val, skip)) = res {
@ -519,7 +519,7 @@ impl Tree {
base_skip,
)
})
.filter_map(|x| x)
.flatten()
.next()
{
return Some(res);
@ -559,7 +559,7 @@ impl Tree {
base_skip,
)
})
.filter_map(|x| x)
.flatten()
.next();
} else {
path = &path[idx + 1..];

View file

@ -184,7 +184,7 @@ where
F: Fn(A::Error) -> E,
{
fn new(fut: A::Future, f: F) -> Self {
MapErrServiceFuture { f, fut }
MapErrServiceFuture { fut, f }
}
}

View file

@ -53,7 +53,7 @@ where
Shutdown::None,
);
Self { io, st, state }
Self { st, io, state }
}
}
@ -165,7 +165,7 @@ where
// disconnect timeout
if let Some(ref mut delay) = delay {
if let Poll::Pending = Pin::new(delay).poll(cx) {
if Pin::new(delay).poll(cx).is_pending() {
return Poll::Pending;
}
}

View file

@ -419,8 +419,8 @@ where
Self {
io,
codec,
state,
codec,
res,
}
}

View file

@ -425,11 +425,7 @@ where
}
fn call(&self, (io, addr): Self::Request) -> Self::Future {
let on_connect = if let Some(ref on_connect) = self.on_connect {
Some(on_connect(&io))
} else {
None
};
let on_connect = self.on_connect.as_ref().map(|f| f(&io));
Dispatcher::new(io, self.config.clone(), addr, on_connect)
}

View file

@ -260,17 +260,11 @@ where
fn call(&self, (io, addr): Self::Request) -> Self::Future {
trace!("New http2 connection, peer address: {:?}", addr);
let on_connect = if let Some(ref on_connect) = self.on_connect {
Some(on_connect(&io))
} else {
None
};
H2ServiceHandlerResponse {
state: State::Handshake(
self.config.clone(),
addr,
on_connect,
self.on_connect.as_ref().map(|f| f(&io)),
server::handshake(io),
),
}

View file

@ -509,11 +509,7 @@ where
proto,
peer_addr
);
let on_connect = if let Some(ref on_connect) = self.on_connect {
Some(on_connect(&io))
} else {
None
};
let on_connect = self.on_connect.as_ref().map(|f| f(&io));
match proto {
Protocol::Http2 => HttpServiceHandlerResponse {

View file

@ -331,7 +331,7 @@ impl Accept {
self.backpressure = true;
for (_, info) in self.sockets.iter_mut() {
// disable err timeout
if let None = info.timeout.take() {
if info.timeout.take().is_none() {
trace!("Enabling backpressure for {}", info.addr);
let _ = self.poll.registry().deregister(&mut info.sock);
}

View file

@ -72,7 +72,7 @@ where
}
});
}
if let Poll::Pending = this.service.poll_shutdown(cx, *is_err) {
if this.service.poll_shutdown(cx, *is_err).is_pending() {
return Poll::Pending;
}
return Poll::Ready(());

View file

@ -21,7 +21,7 @@ struct AppConfigInner {
impl AppConfig {
pub(crate) fn new(secure: bool, addr: SocketAddr, host: String) -> Self {
AppConfig(Rc::new(AppConfigInner { secure, addr, host }))
AppConfig(Rc::new(AppConfigInner { secure, host, addr }))
}
/// Server host name.

View file

@ -41,9 +41,9 @@ impl HttpRequest {
head,
path,
payload,
app_data,
rmap,
config,
app_data,
pool,
}))
}
@ -218,11 +218,7 @@ impl HttpRequest {
/// let opt_t = req.app_data::<Data<T>>();
/// ```
pub fn app_data<T: 'static>(&self) -> Option<&T> {
if let Some(st) = self.0.app_data.get::<T>() {
Some(&st)
} else {
None
}
self.0.app_data.get::<T>()
}
}
@ -322,11 +318,7 @@ impl HttpRequestPool {
/// Get message from the pool
#[inline]
pub(crate) fn get_request(&self) -> Option<HttpRequest> {
if let Some(inner) = self.0.borrow_mut().pop() {
Some(HttpRequest(inner))
} else {
None
}
self.0.borrow_mut().pop().map(HttpRequest)
}
pub(crate) fn clear(&self) {

View file

@ -206,13 +206,11 @@ impl AcceptEncoding {
.collect();
encodings.sort();
for enc in encodings {
if let Some(enc) = enc {
if encoding == ContentEncoding::Auto {
return enc.encoding;
} else if encoding == enc.encoding {
return encoding;
}
for enc in encodings.into_iter().flatten() {
if encoding == ContentEncoding::Auto {
return enc.encoding;
} else if encoding == enc.encoding {
return encoding;
}
}
ContentEncoding::Identity

View file

@ -759,10 +759,10 @@ where
};
TestServer {
ssl,
addr,
client,
system,
ssl,
server,
}
}

View file

@ -310,11 +310,7 @@ pub trait BodyEncoding {
impl BodyEncoding for HttpResponseBuilder {
fn get_encoding(&self) -> Option<ContentEncoding> {
if let Some(ref enc) = self.extensions().get::<Enc>() {
Some(enc.0)
} else {
None
}
self.extensions().get::<Enc>().as_ref().map(|enc| enc.0)
}
fn encoding(&mut self, encoding: ContentEncoding) -> &mut Self {
@ -325,11 +321,7 @@ impl BodyEncoding for HttpResponseBuilder {
impl<B> BodyEncoding for HttpResponse<B> {
fn get_encoding(&self) -> Option<ContentEncoding> {
if let Some(ref enc) = self.extensions().get::<Enc>() {
Some(enc.0)
} else {
None
}
self.extensions().get::<Enc>().as_ref().map(|enc| enc.0)
}
fn encoding(&mut self, encoding: ContentEncoding) -> &mut Self {