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
280
281
282
283
284
285
// SRCE - Self-referential cell environments
// Copyright (C) 2022-2023 Soni L.
// This software is made with love by a queer trans person.
//
// SPDX-License-Identifier: MIT OR Apache-2.0
//! SRCE is a way to open and close an `LCellOwner`. This provides the full
//! expressive power of `selfref`, with the ability to use zeroish-cost
//! `LCell`s in the struct.
//!
//! This module requires crate feature `qcell`.
//!
//! # Examples
//!
//! Funny runtime specialization thing:
//!
//! ```rust
//! use core::cell::Cell;
//! use core::marker::PhantomData;
//! use core::pin::Pin;
//!
//! use qcell::LCell;
//!
//! use selfref::srce::LCellEnvironment;
//!
//! // Some traits we wanna have
//! trait Foo {
//! fn update(&mut self);
//! }
//! trait Bar {
//! fn get(&self) -> String;
//! }
//!
//! // Thing that impls multiple of them
//! struct MyThing;
//! impl Foo for MyThing {
//! fn update(&mut self) {
//! println!("hello world!");
//! }
//! }
//! impl Bar for MyThing {
//! fn get(&self) -> String {
//! return String::from("hello");
//! }
//! }
//!
//! // The container for the above.
//! // T is gonna become dyn Foo later
//! struct IntrusiveLCell<'a, T: ?Sized> {
//! y: Cell<Option<&'a LCell<'a, dyn Bar>>>,
//! x: LCell<'a, T>,
//! }
//! // The "key" or "kind" struct for `selfref` to do the magic.
//! struct IntrusiveLCellKey<T: ?Sized>(PhantomData<T>);
//! selfref::opaque! {
//! impl[T: ?Sized] Opaque for IntrusiveLCellKey<T> {
//! type Kind<'this> = IntrusiveLCell<'this, T>;
//! }
//! }
//!
//! fn main() {
//! // Create the holder
//! let mut holder = Box::pin(
//! LCellEnvironment::<IntrusiveLCellKey<MyThing>>::new_with(
//! |thing| thing.build(IntrusiveLCell {
//! y: Cell::new(None),
//! x: LCell::new(MyThing),
//! })
//! )
//! );
//!
//! // Create the `&LCell<dyn Bar>`. doesn't actually require rw because of
//! // the `Cell`!
//! holder.as_ref().open_ro(|_, thing| {
//! thing.y.set(Some(&thing.get_ref().x));
//! });
//!
//! // Coerce to dyn Foo.
//! let mut holder: Pin<Box<LCellEnvironment<IntrusiveLCellKey<dyn Foo>>>> = holder;
//!
//! // Run some rw/mut operations on it.
//! holder.as_mut().open_rw(|owner, thing| {
//! owner.rw(&thing.x).update();
//! });
//!
//! // Run some ro/ref operations on it
//! holder.as_ref().open_ro(|owner, thing| {
//! if let Some(y) = thing.y.get() {
//! owner.ro(y).get();
//! }
//! });
//! }
//! ```
use LCellOwner;
use crate::;
use Pin;
/// A self-referential environment of `LCell`s, with zero runtime cost.
///
/// Wrapper around [`Holder`]. Like `Holder`, the lifetime may be anything.
///
/// # Examples
///
/// ```rust
/// use qcell::LCell;
///
/// use selfref::srce::LCellEnvironment;
/// use selfref::opaque;
///
/// struct Foo<'a> {
/// foo: LCell<'a, Option<&'a Foo<'a>>>,
/// }
///
/// struct FooKey;
/// opaque! {
/// impl Opaque for FooKey {
/// type Kind<'a> = Foo<'a>;
/// }
/// }
///
/// fn main() {
/// // We can use a closure here, but we need to give the compiler a hint.
/// let holder = LCellEnvironment::<'_, FooKey>::new_with(
/// |foo| foo.build(Foo { foo: LCell::new(Default::default()) })
/// );
/// }
/// ```