Alternative to AsyncDrop #6615
Labels
A-tokio
Area: The main tokio crate
C-feature-request
Category: A feature request.
M-task
Module: tokio/task
This is inspired by all the hard work of @Matthias247.
Background
AsyncDrop is a feature that is very needed in many scenarios.
Among them, the widely discussed ones include:
nested tasks to complete to avoid blocking scheduler/runtime threads.
Structured Concurrency Support #1879
https://gist.github.com/Matthias247/ffc0f189742abf6aa41a226fe07398a8
On the other hand, AsyncDrop is HARD to design and never reaches its
RFC state, since 2019.
Serious CHALLENGES include, e.g., how to forbid
cancelling of async-drops, how to prevent access to an in-progress dropping
struct. And the async WG goal is to do those without any support of runtimes,
which makes it more challenge.
The final design, if we managed to get there, would probably be either imperfect
or complex.
Discussion
There is yet an alternative to AsyncDrop, which makes clean-up work async.
The idea is make futures able to OPT IN to:
left)
The specific goal is:
code opt in.
canceled and be polled till clean-up work is done.
should be able to tell its descendants about the cancellation, and poll them if necessary.
Surprisingly, when come to the design, it is rather intuitively straight forward. It
requires nothing magic or complex, and no compiler support is ever needed. That makes
me believe it is probably a right approach to async cancellation.
Design
On the CANCEL-EE (typically an "atomic" Future) side, it needs an API to know
it is canceled.
The shape would be:
The intended usage would be:
On the CANCEL-ER side (typically a scheduler, or some Future combiner, such as select),
it needs an API to tell its descendants about the cancellation, and poll them if necessary.
The shape would be:
The intended usage would be:
That's all. Suddenly, all the goals we mentioned above is satisfied.
Analysis
First, let me explain a little about the 2 added API.
with_cancel_state()
returnstrue
if any descendent ofchild_future
calledis_cancelled()
.child_future
until its descendents finishtheir async-cancel.
is_cancelled()
andwith_cancel_state()
will return false.
is_cancelled()
just receives the parentcancel_child
state, as you can see.Let's check whether all the goals mentioned above is satisfied.
is_cancelled()
,NO EXTRA POLL is added.
join
, needdo nothing to opt in. (They just pass through the parent cancel state and poll).
select
, needto use
with_cancel_state()
to opt in. But if it's not, its descends still partially getthe async-clean-up ability from its ancestors. (If the cancellation is initialed by its
ancestors)
with_cancel_state()
to opt in. But if it's not, somedescents still get the async-clean-up ability. (If they are under an opt-in combiner that
initialed the cancellation)
a PURE OPTIMIZATION.
Implementation
I won't detail the implementation, because it is obvious.
On the opt-in side,
schedulers and combiners opt-in.
is async by nature will ever need to opt in.
The text was updated successfully, but these errors were encountered: