mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-05 16:06:40 +00:00
use pin_project_lite
This commit is contained in:
parent
d0c3c9172b
commit
37a7eadf17
1 changed files with 20 additions and 18 deletions
|
@ -1,23 +1,24 @@
|
||||||
use std::cmp::Ordering;
|
use std::cmp::Ordering;
|
||||||
use std::pin::Pin;
|
use std::pin::Pin;
|
||||||
|
|
||||||
|
use pin_project_lite::pin_project;
|
||||||
|
|
||||||
use crate::future::Future;
|
use crate::future::Future;
|
||||||
use crate::stream::Stream;
|
use crate::stream::Stream;
|
||||||
use crate::task::{Context, Poll};
|
use crate::task::{Context, Poll};
|
||||||
|
|
||||||
#[doc(hidden)]
|
pin_project! {
|
||||||
#[allow(missing_debug_implementations)]
|
#[doc(hidden)]
|
||||||
pub struct MaxByFuture<S, F, T> {
|
#[allow(missing_debug_implementations)]
|
||||||
stream: S,
|
pub struct MaxByFuture<S, F, T> {
|
||||||
compare: F,
|
#[pin]
|
||||||
max: Option<T>,
|
stream: S,
|
||||||
|
compare: F,
|
||||||
|
max: Option<T>,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<S, F, T> MaxByFuture<S, F, T> {
|
impl<S, F, T> MaxByFuture<S, F, T> {
|
||||||
pin_utils::unsafe_pinned!(stream: S);
|
|
||||||
pin_utils::unsafe_unpinned!(compare: F);
|
|
||||||
pin_utils::unsafe_unpinned!(max: Option<T>);
|
|
||||||
|
|
||||||
pub(super) fn new(stream: S, compare: F) -> Self {
|
pub(super) fn new(stream: S, compare: F) -> Self {
|
||||||
MaxByFuture {
|
MaxByFuture {
|
||||||
stream,
|
stream,
|
||||||
|
@ -35,22 +36,23 @@ where
|
||||||
{
|
{
|
||||||
type Output = Option<S::Item>;
|
type Output = Option<S::Item>;
|
||||||
|
|
||||||
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
||||||
let next = futures_core::ready!(self.as_mut().stream().poll_next(cx));
|
let this = self.project();
|
||||||
|
let next = futures_core::ready!(this.stream.poll_next(cx));
|
||||||
|
|
||||||
match next {
|
match next {
|
||||||
Some(new) => {
|
Some(new) => {
|
||||||
cx.waker().wake_by_ref();
|
cx.waker().wake_by_ref();
|
||||||
match self.as_mut().max().take() {
|
match this.max.take() {
|
||||||
None => *self.as_mut().max() = Some(new),
|
None => *this.max = Some(new),
|
||||||
Some(old) => match (&mut self.as_mut().compare())(&new, &old) {
|
Some(old) => match (this.compare)(&new, &old) {
|
||||||
Ordering::Greater => *self.as_mut().max() = Some(new),
|
Ordering::Greater => *this.max = Some(new),
|
||||||
_ => *self.as_mut().max() = Some(old),
|
_ => *this.max = Some(old),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
Poll::Pending
|
Poll::Pending
|
||||||
}
|
}
|
||||||
None => Poll::Ready(self.max),
|
None => Poll::Ready(*this.max),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue