1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
use crate::rc::GcVisitor;

/// Must be implemented for any value which will be stored inside of a [Gc](`crate::rc::Gc`).
///
/// While this is implemented for many of Rust's basic types, it's not
/// recommended that you store them in a [Gc](`crate::rc::Gc`), as there is still a real
/// cost to doing so. You're probably better off using [std::rc::Rc] in cases where you know a type
/// can't participate in cycles.
pub trait Traceable {
    /// Visit the gc pointers owned by this type.
    ///
    /// It is recommended that you simply call visit_children(visitor) on each value owned by the
    /// implementor which may participate in a reference cycle. The default implementation for
    /// `Gc` will appropriately notify the collector when it is visited. You may also pass your
    /// struct's owned `Gc` values directly to the visitor.
    ///
    /// Impromper implementation of this trait will not cause undefined behavior, however, if you
    /// fail to report a value you may leak memory and if you report a value you don't own (or
    /// report a value more than once), you may cause the collector to clean it up prematurely.
    /// Attemting to access a value which has been cleaned up will cause a panic, but will not cause
    /// undefined behavior.
    ///
    /// # Example
    /// ```
    /// # use std::collections::HashMap;
    /// # use std::cell::RefCell;
    /// # use tracing_rc::{
    /// #     empty_traceable,
    /// #     rc::{
    /// #         Gc,
    /// #         GcVisitor,
    /// #         Traceable,
    /// #         collect_full,
    /// #     },
    /// # };
    ///
    /// struct GraphNode<T: 'static> {
    ///     neighbors: Vec<Gc<RefCell<GraphNode<T>>>>,
    ///     data: T,
    /// }
    ///
    /// impl<T: 'static> Traceable for GraphNode<T> {
    ///     fn visit_children(&self, visitor: &mut GcVisitor) {
    ///         self.neighbors.visit_children(visitor);
    ///     }
    /// }
    /// # #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
    /// # struct NodeId(usize);
    /// empty_traceable!(NodeId);
    ///
    /// struct Graph<T: 'static> {
    ///     nodes: HashMap<NodeId, Gc<RefCell<GraphNode<T>>>>,
    /// }
    ///
    /// impl<T: 'static> Traceable for Graph<T> {
    ///     fn visit_children(&self, visitor: &mut GcVisitor) {
    ///         self.nodes.visit_children(visitor);
    ///     }
    /// }
    /// # fn build_graph<T>() -> Graph<T> { Graph{ nodes: HashMap::default() } }
    /// # fn operate_on_graph(_: &Graph<usize>) { }
    ///
    /// // Usage:
    /// # fn main() {
    /// {
    ///     {
    ///         let graph: Graph<usize> = build_graph();
    ///         operate_on_graph(&graph);
    ///     }
    ///     // None of the graph nodes will remain allocated after this call.
    ///     collect_full();
    /// }
    /// # }
    /// ```
    ///
    /// # Examples of improper implementations
    /// - You should not report Gcs owned by the inner contents of Gcs.
    /// ```
    /// # use tracing_rc::rc::{
    /// #     Gc,
    /// #     GcVisitor,
    /// #     Traceable,
    /// # };
    /// struct MyStruct {
    ///     ptr: Gc<MyStruct>,
    ///     other_ptr: Gc<MyStruct>,
    /// }
    ///
    /// impl Traceable for MyStruct {
    ///     fn visit_children(&self, visitor: &mut GcVisitor) {
    ///         // This is normal and ok.
    ///         self.ptr.visit_children(visitor);
    ///         // This is also acceptable
    ///         visitor.visit_node(&self.other_ptr);
    ///
    ///         // This will not cause undefined behavior, but it is wrong and may cause panics if
    ///         // it causes the collector to believe the node is dead, and the program later
    ///         // attempts to access the now dead value.
    ///         self.ptr.ptr.visit_children(visitor);
    ///     }
    /// }
    /// ```
    /// - You should not report a unique Gc instance twice.
    /// ```
    /// # use tracing_rc::rc::{
    /// #     Gc,
    /// #     GcVisitor,
    /// #     Traceable,
    /// # };
    /// struct MyStruct {
    ///     ptr: Gc<usize>,
    /// }
    ///
    /// impl Traceable for MyStruct {
    ///     fn visit_children(&self, visitor: &mut GcVisitor) {
    ///         // This is normal and ok.
    ///         visitor.visit_node(&self.ptr);
    ///
    ///         // This is wrong and may cause panics.
    ///         visitor.visit_node(&self.ptr);
    ///     }
    /// }
    /// ```
    /// - You should not report Gcs that are not owned by your object.
    ///     - It is acceptable skip reporting, although doing so will result in memory leaks.
    /// ```
    /// # use tracing_rc::rc::{
    /// #     Gc,
    /// #     GcVisitor,
    /// #     Traceable,
    /// # };
    /// thread_local! { static GLOBAL_PTR: Gc<usize> = Gc::new(10)}
    ///
    /// struct MyStruct {
    ///     ptr: Gc<MyStruct>,
    ///     leaks: Gc<usize>,
    /// }
    ///
    /// impl Traceable for MyStruct {
    ///     fn visit_children(&self, visitor: &mut GcVisitor) {
    ///         // This is normal and ok.
    ///         visitor.visit_node(&self.ptr);
    ///
    ///         // Leaving this line commented out will leak, which is safe.
    ///         // Uncommenting it is safe and will allow leaks to be cleaned up.
    ///         // visitor(self.leaks.node());
    ///
    ///         // This is wrong and will cause GLOBAL_PTR to be cleaned up. If anything tries to
    ///         // access GLOBAL_PTR without checking if it is still alive, a panic will occur.
    ///         GLOBAL_PTR.with(|ptr| visitor.visit_node(ptr));
    ///     }
    /// }
    /// ```
    fn visit_children(&self, visitor: &mut GcVisitor);
}

/// This will cause memory leaks if it is used to implement tracing on a type which ends up
/// participating in a cycle. This is useful for types that are e.g. used as a key in
/// [`std::collections::HashMap`], but are not actually `Gc` pointers.
#[macro_export]
macro_rules! empty_traceable {
    ($t:path) => {
        impl Traceable for $t {
            fn visit_children(&self, _: &mut GcVisitor) {}
        }
    };
    ($first:path, $($rest:path),+) => {
        empty_traceable!($first);
        empty_traceable!($($rest),+);
    };
}

empty_traceable!(f32, f64);
empty_traceable!(i8, i16, i32, i64, isize, i128);
empty_traceable!(u8, u16, u32, u64, usize, u128);
empty_traceable!(bool, char);
empty_traceable!(std::string::String);

impl<T: Traceable> Traceable for std::cell::RefCell<T> {
    fn visit_children(&self, visitor: &mut GcVisitor) {
        T::visit_children(&self.borrow(), visitor);
    }
}

impl<T: Traceable> Traceable for std::option::Option<T> {
    fn visit_children(&self, visitor: &mut GcVisitor) {
        if let Some(inner) = self {
            inner.visit_children(visitor);
        }
    }
}

impl<T: Traceable> Traceable for std::vec::Vec<T> {
    fn visit_children(&self, visitor: &mut GcVisitor) {
        for elem in self.iter() {
            elem.visit_children(visitor);
        }
    }
}

impl<T: Traceable> Traceable for std::boxed::Box<T> {
    fn visit_children(&self, visitor: &mut GcVisitor) {
        T::visit_children(self, visitor)
    }
}

impl<T: Traceable, const S: usize> Traceable for [T; S] {
    fn visit_children(&self, visitor: &mut GcVisitor) {
        for elem in self.iter() {
            elem.visit_children(visitor);
        }
    }
}

impl<T: Traceable> Traceable for [T] {
    fn visit_children(&self, visitor: &mut GcVisitor) {
        for elem in self.iter() {
            elem.visit_children(visitor);
        }
    }
}

impl<V: Traceable> Traceable for std::collections::BinaryHeap<V> {
    fn visit_children(&self, visitor: &mut GcVisitor) {
        for v in self.iter() {
            v.visit_children(visitor);
        }
    }
}

impl<K: Traceable, V: Traceable> Traceable for std::collections::BTreeMap<K, V> {
    fn visit_children(&self, visitor: &mut GcVisitor) {
        for (k, v) in self.iter() {
            k.visit_children(visitor);
            v.visit_children(visitor);
        }
    }
}

impl<V: Traceable> Traceable for std::collections::BTreeSet<V> {
    fn visit_children(&self, visitor: &mut GcVisitor) {
        for v in self.iter() {
            v.visit_children(visitor);
        }
    }
}

impl<K: Traceable, V: Traceable> Traceable for std::collections::HashMap<K, V> {
    fn visit_children(&self, visitor: &mut GcVisitor) {
        for (k, v) in self.iter() {
            k.visit_children(visitor);
            v.visit_children(visitor);
        }
    }
}

impl<V: Traceable> Traceable for std::collections::HashSet<V> {
    fn visit_children(&self, visitor: &mut GcVisitor) {
        for v in self.iter() {
            v.visit_children(visitor);
        }
    }
}

impl<V: Traceable> Traceable for std::collections::LinkedList<V> {
    fn visit_children(&self, visitor: &mut GcVisitor) {
        for v in self.iter() {
            v.visit_children(visitor);
        }
    }
}

impl<V: Traceable> Traceable for std::collections::VecDeque<V> {
    fn visit_children(&self, visitor: &mut GcVisitor) {
        for v in self.iter() {
            v.visit_children(visitor);
        }
    }
}