dumpster: A cycle-tracking garbage collector for Rust
dumpster is an cycle-detecting garbage collector for Rust.
It detects unreachable allocations and automatically frees them.
Why should you use this crate?
In short, dumpster offers a great mix of usability, performance, and flexibility.
dumpster's API is a drop-in replacement forstd's reference-counted shared allocations (RcandArc).- It's very performant and has builtin implementations of both thread-local and concurrent garbage collection.
- There are no restrictions on the reference structure within a garbage-collected allocation (references may point in any way you like).
- It's trivial to make a custom type collectable using the provided derive macros.
- You can even store
?Sizeddata in a garbage-collected pointer!
How it works
dumpster is unlike most tracing garbage collectors.
Other GCs keep track of a set of roots, which can then be used to perform a sweep and find out
which allocations are reachable and which are not.
Instead, dumpster extends reference-counted garbage collection (such as std::rc::Rc) with a
cycle-detection algorithm, enabling it to effectively clean up self-referential data structures.
For a deeper dive, check out this blog post.
What this library contains
dumpster actually contains two garbage collector implementations: one thread-local, non-Send
garbage collector in the module unsync, and one thread-safe garbage collector in the module
sync.
These garbage collectors can be safely mixed and matched.
This library also comes with a derive macro for creating custom collectable types.
Examples
use ;
// Create a new garbage-collected Foo.
let foo = new;
// Insert a circular reference inside of the foo.
*foo.ptr.borrow_mut = Some;
// Render the foo inaccessible.
// This may trigger a collection, but it's not guaranteed.
// If we had used `Rc` instead of `Gc`, this would have caused a memory leak.
drop;
// Trigger a collection.
// This isn't necessary, but it guarantees that `foo` will be collected immediately (instead of
// later).
collect;
Installation
To install, simply add dumpster as a dependency to your project.
[]
= "0.1.2"
Optional features
dumpster has two optional features: derive and coerce-unsized.
derive is enabled by default.
It enables the derive macro for Collectable, which makes it easy for users to implement their
own collectable types.
use ;
use RefCell;
// no manual implementation required
;
let my_foo = new;
*my_foo.0.borrow_mut = Some;
drop; // my_foo will be automatically cleaned up
coerce-unsized is disabled by default.
This enables the implementation of CoerceUnsized for each garbage collector,
making it possible to use Gc with !Sized types conveniently.
use Gc;
// this only works with "coerce-unsized" enabled while compiling on nightly Rust
let gc1: = new;
To use coerce-unsized, edit your installation to Cargo.toml to include the feature.
[]
= { = "0.1.2", = ["coerce-unsized"]}
License
This code is licensed under the GNU GPLv3 any later version of the GPL at your choice. For more information, refer to LICENSE.md.