12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- use super::{waker::RcWake, Scheduler, SchedulerMsg};
- use crate::ScopeId;
- use std::cell::RefCell;
- use std::future::Future;
- use std::task::Context;
- use std::{pin::Pin, rc::Rc, task::Poll};
- #[cfg_attr(feature = "serialize", derive(serde::Serialize, serde::Deserialize))]
- #[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)]
- pub struct TaskId(pub usize);
- /// the task itself is the waker
- pub(crate) struct LocalTask {
- pub scope: ScopeId,
- id: TaskId,
- tx: futures_channel::mpsc::UnboundedSender<SchedulerMsg>,
- task: RefCell<Pin<Box<dyn Future<Output = ()> + 'static>>>,
- }
- impl LocalTask {
- /// Poll this task and return whether or not it is complete
- pub(super) fn progress(self: &Rc<Self>) -> bool {
- let waker = self.waker();
- let mut cx = Context::from_waker(&waker);
- match self.task.borrow_mut().as_mut().poll(&mut cx) {
- Poll::Ready(_) => true,
- _ => false,
- }
- }
- }
- impl Scheduler {
- /// Start a new future on the same thread as the rest of the VirtualDom.
- ///
- /// This future will not contribute to suspense resolving, so you should primarily use this for reacting to changes
- /// and long running tasks.
- ///
- /// Whenever the component that owns this future is dropped, the future will be dropped as well.
- ///
- /// Spawning a future onto the root scope will cause it to be dropped when the root component is dropped - which
- /// will only occur when the VirtuaalDom itself has been dropped.
- pub fn spawn(&self, scope: ScopeId, task: impl Future<Output = ()> + 'static) -> TaskId {
- let mut tasks = self.tasks.borrow_mut();
- let entry = tasks.vacant_entry();
- let task_id = TaskId(entry.key());
- entry.insert(Rc::new(LocalTask {
- id: task_id,
- tx: self.sender.clone(),
- task: RefCell::new(Box::pin(task)),
- scope,
- }));
- self.sender
- .unbounded_send(SchedulerMsg::TaskNotified(task_id))
- .expect("Scheduler should exist");
- task_id
- }
- /// Drop the future with the given TaskId
- ///
- /// This does nto abort the task, so you'll want to wrap it in an aborthandle if that's important to you
- pub fn remove(&self, id: TaskId) {
- self.tasks.borrow_mut().remove(id.0);
- }
- }
- impl RcWake for LocalTask {
- fn wake_by_ref(arc_self: &Rc<Self>) {
- _ = arc_self
- .tx
- .unbounded_send(SchedulerMsg::TaskNotified(arc_self.id));
- }
- }
|