gcmodule

Documentation crates.io Build Status

Garbage collection inspired by CPython's implementation.

This library provides a type Cc<T>. It provides shared reference-counting pointer, similar to stdlib Rc<T>. Unlike Rc, reference cycles in Cc can be collected.

If all values can be freed by just reference-counting, the collector used by this library does not take extra memory. This is different from some other implementations, which require manual collection to free the extra memory used by the collector.

Example

```rust use gcmodule::{Cc, Trace}; use std::cell::RefCell;

type List = Cc>>>; let a: List = Default::default(); let b: List = Default::default(); a.borrowmut().push(Box::new(b.clone())); b.borrowmut().push(Box::new(a.clone())); // Form a cycle. drop(a); drop(b); // Internal values are not dropped due to the cycle. gcmodule::collectthreadcycles(); // Internal values are dropped. ```

For customized structures, they need to implement the Trace interface. That can be done by #[derive(Trace)].

```rust use gcmodule::{Cc, Trace}; use std::cell::RefCell;

[derive(Trace, Default)]

struct List(RefCell>>); { let a: List = Default::default(); let b: List = Default::default(); a.borrowmut().push(Box::new(b.clone())); b.borrowmut().push(Box::new(a.clone())); } asserteq!(gcmodule::collectthread_cycles(), 2); // 2 values are collected. ```

Refer to the documentation for more examples and technical details.

Similar Projects

bacon-rajan-cc v0.3

rcgc v0.1