async-dropper
async-dropper
is probably the least-worst ad-hoc AsyncDrop
implementation you've seen, and it works in two ways:
async_dropper::simple
is stolen nearly verbatim from this StackOverflow answer (thanks to paholg
!)async_dropper::derive
provides a trait called AsyncDrop
and corresponding derive macro, which try to use Default
and PartialEq
to determine when to async drop.The code in this crate was most directly inspired by this StackOverflow thread on Async Drop and many other conversations:
You must set features on this crate, as it works with async runtimes:
console
cargo add async-dropper --features tokio # use tokio
cargo add async-dropper --features async-std # use async-std
If you're editing Cargo.toml
by hand, choose one of the following lines:
```toml [dependencies]
```
Warning
async-dropper
does not allow using bothasync-std
andtokio
features at the same time (see the FAQ below).
async_dropper::simple
To use the "simple" version which uses a wrapper struct (AsyncDropper<T>
), see examples/async_drop_simple.rs
:
```rust use std::{ result::Result, time::Duration, };
use asyncdroppersimple::{AsyncDrop, AsyncDropper}; use asynctrait::asynctrait;
// NOTE: this example is rooted in crates/async-dropper
/// This object will be async-dropped (which must be wrapped in AsyncDropper)
struct AsyncThing(String);
impl AsyncDrop for AsyncThing { async fn asyncdrop(&mut self) { eprintln!("async dropping [{}]!", self.0); tokio::time::sleep(Duration::fromsecs(2)).await; eprintln!("dropped [{}]!", self.0); } }
async fn main() -> Result<(), Boxdrop(_example_obj)
}
Ok(())
}
```
You can run the example and see the output:
console
cargo run --example async-drop-simple --features=tokio
async_dropper::derive
The derive macro is a novel (and possibly foolhardy) attempt to implement AsyncDrop
without actually wrapping the existing struct.
async_dropper::derive
uses Default
and PartialEq
to check if the struct in question is equivalent to it's default.
For this approach to work well your T
should have cheap-to-create Default
s, and comparing a default value to an existing value should meaningfully differ (and identify an object that is no longer in use). Please think thoroughly about whether this model works for your use case.
For an example, see examples/async_drop.rs
:
```rust use std::{ result::Result, time::Duration, };
use asyncdropper::derive::AsyncDrop; use asynctrait::async_trait;
/// This object will be async-dropped /// /// Objects that are dropped must implement [Default] and [PartialEq] /// (so make members optional, hide them behind Rc/Arc as necessary)
struct AsyncThing(String);
/// Implementation of [AsyncDrop] that specifies the actual behavior
impl AsyncDrop for AsyncThing { // simulated work during asyncdrop async fn asyncdrop(&mut self) -> Result<(), AsyncDropError> { eprintln!("async dropping [{}]!", self.0); tokio::time::sleep(Duration::from_secs(2)).await; eprintln!("dropped [{}]!", self.0); Ok(()) }
fn drop_timeout(&self) -> Duration {
Duration::from_secs(5) // extended from default 3 seconds, as an example
}
// NOTE: the method below is automatically derived for you, but you can override it
// make sure that the object is equal to T::default() by the end, otherwise it will panic!
// fn reset(&mut self) {
// self.0 = String::default();
// }
// NOTE: below was not implemented since we want the default of DropFailAction::Continue
// fn drop_fail_action(&self) -> DropFailAction;
}
async fn main() -> Result<(), Boxdrop(_example_obj)
}
Ok(())
} ```
You can run the example and see the output:
console
cargo run --example async-drop --features=tokio
async-dropper
works with the following async environments:
| Name | Supported? |
|-----------------------------------|------------|
| Async w/ tokio
| ✅ |
| Async w/ async-std
| ✅ |
async-dropper
assume that I'm using either async-std
or tokio
Because you probably are. If this is a problem for you, it can be changed, please file an issue.
async_dropper::derive
cost?There is waste introduced by async_dropper::derive
, namely:
Mutex
-protected T::default()
instance of your type, that exists as long as the program runsT::default()
that is made of an individual T
being dropped.As a result, every drop
you perform on a T will perform two drops -- one on a T::default()
and another on your T
, which has been converted to a T::default
(via reset(&mut self)
).
To get started working on developing async-dropper
, run the following just
targets:
console
just setup build
To check that your changes are fine, you'll probably want to run:
console
just test
If you want to see the full list of targets available that you can run just
without any arguments.
console
just
There are a few useful targets like just build-watch
which will continuously build the project thanks to cargo watch
.
From the top level of this repository:
console
PUBLISH_CRATE=yes PKG=<crate name> just release <version>
For example, to create the next semver patch
release for async-dropper-simple
:
console
PUBLISH_CRATE=yes PKG=async-dropper-simple just release patch
Contributions are welcome! If you find a bug or an impovement that should be included in async-dropper
, create an issue or open a pull request.