1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
use std::{
cell::UnsafeCell,
future::Future,
pin::Pin,
rc::Rc,
sync::mpsc::Sender,
task::{Context, Poll},
};
use crate::waker::from_task;
pub struct Task {
future: UnsafeCell<Box<dyn Future<Output = ()>>>,
pub(crate) task_queue: Sender<Rc<Task>>,
}
impl Task {
pub(crate) fn new(
future: impl Future<Output = ()> + 'static,
task_queue: Sender<Rc<Self>>,
) -> Self {
Self {
future: UnsafeCell::new(Box::new(future)),
task_queue,
}
}
pub(crate) fn poll(self: Rc<Self>) -> Poll<()> {
let future = unsafe { &mut *self.future.get() }.as_mut();
let pin = unsafe { Pin::new_unchecked(future) };
let waker = from_task(self);
let mut context = Context::from_waker(&waker);
pin.poll(&mut context)
}
}