Expand description
§shredder
shredder
is a library providing a garbage collected smart pointer: Gc
.
This is useful for times when you want shared access to some data, but the structure
of the data has unpredictable cycles in it. (So Arc would not be appropriate.)
shredder
has the following features:
- safe: detects error conditions on the fly, and protects you from undefined behavior
- ergonomic: no need to manually manage roots, just a regular smart pointer
- deref support:
DerefGc
gives you a garbage collected andDeref
smart pointer where possible - ready for fearless concurrency: works in multi-threaded contexts, with
AtomicGc
for cases where you need atomic operations - limited stop-the world: regular processing will rarely be interrupted
- seamless destruction: regular
drop
for'static
data - clean finalization: optional
finalize
for non-'static
data - concurrent collection: collection happens in the background, improving performance
- concurrent destruction: destructors are run in the background, improving performance
shredder
has the following limitations:
- guarded access: accessing
Gc
data requires acquiring a guard (although you can useDerefGc
in many cases to avoid this) - multiple collectors: only a single global collector is supported
- can’t handle
Rc
/Arc
: requires allGc
objects have straightforward ownership semantics - collection optimized for speed, not memory use:
Gc
and internal metadata is small, but there is bloat during collection (will fix!) - no no-std support: The collector requires threading and other
std
features (will fix!)
Modules§
- atomic
- Atomic gc operations
- marker
- Marker types
- plumbing
- Various types used for plumbing, stuff you don’t need to care about
- wrappers
- Helpful wrappers used for convenience methods
Macros§
- impl_
empty_ scan_ for_ send_ static - Implements an empty
Scan
implementation for aSend + 'static
type - mark_
send_ static_ gc_ safe - A
Send + 'static
type can be safely marked asGcSafe
, and this macro eases that implementation
Structs§
- DerefGc
- A
Gc
, but with the ability toDeref
to its contents! - Gc
- A smart-pointer for data tracked by
shredder
garbage collector - GcGuard
- A guard object that lets you access the underlying data of a
Gc
. It exists as data needs protection from being scanned while it’s being concurrently modified. - R
- A
GcSafe
version of&T
- RMut
- A
GcSafe
version of&mut T
- Scanner
- Scanner is a struct used to manage the scanning of data, sort of analogous to
Hasher
Usually you will only care about this while implementingScan
Traits§
- Finalize
- A trait implementing an alternative to
Drop
, useful for non-GcDrop
data. - Finalize
Fields - A trait that lets you finalize all fields of a piece of data
- Scan
- A trait capturing the ability of data to be scanned for references to data in a
Gc
. - ToScan
- A trait that allows something that is
Scan
to be converted to adyn
ref.
Functions§
- collect
- A function for manually running a collection, ignoring the heuristic that governs normal garbage collector operations.
- number_
of_ active_ handles - Returns how many
Gc
s are currently in use. - number_
of_ tracked_ allocations - Returns how many underlying allocations are currently allocated.
- run_
with_ gc_ cleanup - A convenience method for helping ensure your destructors are run.
- set_
gc_ trigger_ percent - Sets the percent more data that’ll trigger collection.
- synchronize_
destructors - Block the current thread until the background thread has finished running the destructors for all data that was marked as garbage at the point this method was called.
Type Aliases§
- GMutex
- A convenient alias for
Gc<Mutex<T>>
. Note thatGc<Mutex<T>>
has additional specialized methods for working withMutex
s insideGc
s. - GRef
Cell - A convenient alias for
Gc<RefCell<T>>
. Note thatGc<RefCell<T>>
has additional specialized methods for working withRefCell
s insideGc
s. - GRwLock
- A convenient alias for
Gc<RwLock<T>>
. Note thatGc<Mutex<T>>
has additional specialized methods for working withMutex
s insideGc
s.
Derive Macros§
- Finalize
- The
Finalize
derive, powering#[derive(Finalize)]
- Finalize
Fields - The
FinalizeFields
derive, powering#[derive(FinalizeFields)]
- Scan
- The
Scan
derive, powering#[derive(Scan)]
. Important details here!