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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
//! Thread-safe reference-counted pointer abstraction using [`Arc`](std::sync::Arc).
//!
//! Provides trait implementations for using `Arc` in the library's pointer abstraction hierarchy. The corresponding brand is [`ArcBrand`](crate::brands::ArcBrand).
//!
//! ### Examples
//!
//! ```
//! use fp_library::{
//! brands::*,
//! functions::*,
//! };
//!
//! let ptr = send_ref_counted_pointer_new::<ArcBrand, _>(42);
//! assert_eq!(*ptr, 42);
//! ```
#[fp_macros::document_module]
mod inner {
use {
crate::{
brands::ArcBrand,
classes::{
Pointer,
RefCountedPointer,
SendRefCountedPointer,
ToDynCloneFn,
ToDynFn,
ToDynSendFn,
},
},
fp_macros::*,
std::sync::{
Arc,
Mutex,
},
};
impl Pointer for ArcBrand {
type Of<'a, T: ?Sized + 'a> = Arc<T>;
/// Wraps a sized value in an `Arc`.
#[document_signature]
///
#[document_type_parameters("The lifetime of the value.", "The type of the value to wrap.")]
///
#[document_parameters("The value to wrap.")]
///
#[document_returns("The value wrapped in an `Arc`.")]
///
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::*,
/// };
///
/// let ptr = pointer_new::<ArcBrand, _>(42);
/// assert_eq!(*ptr, 42);
/// ```
fn new<'a, T: 'a>(value: T) -> Arc<T> {
Arc::new(value)
}
}
impl RefCountedPointer for ArcBrand {
type Of<'a, T: ?Sized + 'a> = Arc<T>;
type TakeCellOf<'a, T: 'a> = Arc<Mutex<Option<T>>>;
/// Wraps a sized value in an `Arc`.
#[document_signature]
///
#[document_type_parameters("The lifetime of the value.", "The type of the value to wrap.")]
///
#[document_parameters("The value to wrap.")]
///
#[document_returns("The value wrapped in an `Arc`.")]
///
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::*,
/// };
///
/// let ptr = ref_counted_pointer_new::<ArcBrand, _>(42);
/// assert_eq!(*ptr, 42);
/// ```
fn new<'a, T: 'a>(value: T) -> Arc<T> {
Arc::new(value)
}
/// Attempts to unwrap the inner value if this is the sole reference.
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the wrapped value.",
"The type of the wrapped value."
)]
///
#[document_parameters("The pointer to attempt to unwrap.")]
///
#[document_returns("`Ok(value)` if this is the sole reference, otherwise `Err(ptr)`.")]
///
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::*,
/// };
///
/// let ptr = ref_counted_pointer_new::<ArcBrand, _>(42);
/// assert_eq!(try_unwrap::<ArcBrand, _>(ptr), Ok(42));
/// ```
fn try_unwrap<'a, T: 'a>(ptr: Arc<T>) -> Result<T, Arc<T>> {
Arc::try_unwrap(ptr)
}
/// Creates a new take-cell containing the given value.
#[document_signature]
///
#[document_type_parameters("The lifetime of the value.", "The type of the value to store.")]
///
#[document_parameters("The value to store in the cell.")]
///
#[document_returns("A new `Arc<Mutex<Option<T>>>` containing the value.")]
///
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// classes::*,
/// };
///
/// let cell = ArcBrand::take_cell_new(42);
/// assert_eq!(ArcBrand::take_cell_take(&cell), Some(42));
/// ```
fn take_cell_new<'a, T: 'a>(value: T) -> Arc<Mutex<Option<T>>> {
Arc::new(Mutex::new(Some(value)))
}
/// Takes the value out of the cell, leaving `None` behind.
#[document_signature]
///
#[document_type_parameters("The lifetime of the value.", "The type of the stored value.")]
///
#[document_parameters("The cell to take the value from.")]
///
#[document_returns("`Some(value)` if the cell still contains a value, `None` otherwise.")]
///
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// classes::*,
/// };
///
/// let cell = ArcBrand::take_cell_new(42);
/// assert_eq!(ArcBrand::take_cell_take(&cell), Some(42));
/// assert_eq!(ArcBrand::take_cell_take(&cell), None);
/// ```
fn take_cell_take<'a, T: 'a>(cell: &Arc<Mutex<Option<T>>>) -> Option<T> {
// SAFETY: lock only fails on poisoning, which cannot occur here
#[expect(
clippy::unwrap_used,
reason = "Lock only fails on poisoning, which cannot occur here"
)]
cell.lock().unwrap().take()
}
}
impl SendRefCountedPointer for ArcBrand {
type Of<'a, T: ?Sized + Send + Sync + 'a> = Arc<T>;
/// Wraps a sized value in an `Arc`.
#[document_signature]
///
#[document_type_parameters("The lifetime of the value.", "The type of the value to wrap.")]
///
#[document_parameters("The value to wrap.")]
///
#[document_returns("The value wrapped in an `Arc`.")]
///
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::*,
/// };
///
/// let ptr = send_ref_counted_pointer_new::<ArcBrand, _>(42);
/// assert_eq!(*ptr, 42);
/// ```
fn new<'a, T: Send + Sync + 'a>(value: T) -> Arc<T> {
Arc::new(value)
}
}
impl ToDynFn for ArcBrand {
/// Coerces a sized closure to a `dyn Fn` wrapped in an `Arc`.
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the closure.",
"The input type of the function.",
"The output type of the function."
)]
///
#[document_parameters("The closure to coerce.")]
///
#[document_returns("The closure wrapped in an `Arc` as a trait object.")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// classes::*,
/// };
///
/// let f = <ArcBrand as ToDynFn>::new(|x: i32| x + 1);
/// assert_eq!(f(1), 2);
/// ```
fn new<'a, A: 'a, B: 'a>(f: impl 'a + Fn(A) -> B) -> Arc<dyn 'a + Fn(A) -> B> {
Arc::new(f)
}
/// Coerces a sized by-reference closure to a `dyn Fn(&A) -> B` wrapped in an `Arc`.
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the closure.",
"The input type (the closure receives `&A`).",
"The output type of the function."
)]
///
#[document_parameters("The closure to coerce.")]
///
#[document_returns("The closure wrapped in an `Arc` as a by-reference trait object.")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// classes::*,
/// };
///
/// let f = <ArcBrand as ToDynFn>::ref_new(|x: &i32| *x + 1);
/// assert_eq!(f(&1), 2);
/// ```
fn ref_new<'a, A: 'a, B: 'a>(f: impl 'a + Fn(&A) -> B) -> Arc<dyn 'a + Fn(&A) -> B> {
Arc::new(f)
}
}
impl ToDynCloneFn for ArcBrand {
/// Coerces a sized closure to a `dyn Fn` wrapped in an `Arc`.
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the closure.",
"The input type of the function.",
"The output type of the function."
)]
///
#[document_parameters("The closure to coerce.")]
///
#[document_returns("The closure wrapped in an `Arc` as a trait object.")]
///
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::*,
/// };
///
/// let f = to_dyn_clone_fn::<ArcBrand, _, _>(|x: i32| x + 1);
/// assert_eq!(f(1), 2);
/// ```
fn new<'a, A: 'a, B: 'a>(f: impl 'a + Fn(A) -> B) -> Arc<dyn 'a + Fn(A) -> B> {
Arc::new(f)
}
/// Coerces a sized by-reference closure to a `dyn Fn(&A) -> B` wrapped in an `Arc`.
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the closure.",
"The input type (the closure receives `&A`).",
"The output type of the function."
)]
///
#[document_parameters("The closure to coerce.")]
///
#[document_returns("The closure wrapped in an `Arc` as a by-reference trait object.")]
///
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// classes::*,
/// };
///
/// let f = <ArcBrand as ToDynCloneFn>::ref_new(|x: &i32| *x + 1);
/// assert_eq!(f(&1), 2);
/// ```
fn ref_new<'a, A: 'a, B: 'a>(f: impl 'a + Fn(&A) -> B) -> Arc<dyn 'a + Fn(&A) -> B> {
Arc::new(f)
}
}
impl ToDynSendFn for ArcBrand {
/// Coerces a sized Send+Sync closure to a `dyn Fn + Send + Sync` wrapped in an `Arc`.
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the closure.",
"The input type of the function.",
"The output type of the function."
)]
///
#[document_parameters("The closure to coerce.")]
///
#[document_returns("The closure wrapped in an `Arc` as a thread-safe trait object.")]
///
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::*,
/// };
///
/// let f = to_dyn_send_fn::<ArcBrand, _, _>(|x: i32| x + 1);
/// assert_eq!(f(1), 2);
/// ```
fn new<'a, A: 'a, B: 'a>(
f: impl 'a + Fn(A) -> B + Send + Sync
) -> Arc<dyn 'a + Fn(A) -> B + Send + Sync> {
Arc::new(f)
}
/// Coerces a sized Send+Sync by-reference closure to a `dyn Fn(&A) -> B + Send + Sync` wrapped in an `Arc`.
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the closure.",
"The input type (the closure receives `&A`).",
"The output type of the function."
)]
///
#[document_parameters("The closure to coerce.")]
///
#[document_returns(
"The closure wrapped in an `Arc` as a thread-safe by-reference trait object."
)]
///
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// classes::*,
/// };
///
/// let f = <ArcBrand as ToDynSendFn>::ref_new(|x: &i32| *x + 1);
/// assert_eq!(f(&1), 2);
/// ```
fn ref_new<'a, A: 'a, B: 'a>(
f: impl 'a + Fn(&A) -> B + Send + Sync
) -> Arc<dyn 'a + Fn(&A) -> B + Send + Sync> {
Arc::new(f)
}
}
}
#[cfg(test)]
mod tests {
use crate::{
brands::ArcBrand,
classes::{
RefCountedPointer,
pointer::new as pointer_new,
ref_counted_pointer::new as ref_counted_pointer_new,
send_ref_counted_pointer::new as send_ref_counted_pointer_new,
},
};
/// Tests that `Pointer::new` correctly creates an `Arc` wrapping the value.
#[test]
fn test_arc_pointer_new() {
let ptr = pointer_new::<ArcBrand, _>(42);
assert_eq!(*ptr, 42);
}
/// Tests that `RefCountedPointer::new` correctly creates an `Arc` wrapping the value.
#[test]
fn test_arc_ref_counted_new() {
let ptr = ref_counted_pointer_new::<ArcBrand, _>(42);
assert_eq!(*ptr, 42);
}
/// Tests that `SendRefCountedPointer::new` correctly creates an `Arc` wrapping the value.
#[test]
fn test_arc_send_ref_counted_new() {
let ptr = send_ref_counted_pointer_new::<ArcBrand, _>(42);
assert_eq!(*ptr, 42);
}
/// Tests that cloning the pointer works as expected (shared ownership).
#[test]
fn test_arc_clone() {
let ptr = ref_counted_pointer_new::<ArcBrand, _>(42);
let clone = ptr.clone();
assert_eq!(*clone, 42);
}
/// Tests `try_unwrap` behavior:
/// - Returns `Ok(value)` when there is only one reference.
/// - Returns `Err(ptr)` when there are multiple references.
#[test]
fn test_arc_try_unwrap() {
let ptr = ref_counted_pointer_new::<ArcBrand, _>(42);
assert_eq!(ArcBrand::try_unwrap(ptr), Ok(42));
let ptr = ref_counted_pointer_new::<ArcBrand, _>(42);
let _clone = ptr.clone();
assert!(ArcBrand::try_unwrap(ptr).is_err());
}
}