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
pub trait CloneHandle {
type Handle: std::ops::Deref<Target = Self>;
type WeakHandle;
fn clone_handle(&self) -> Self::Handle;
fn clone_weak_handle(&self) -> Self::WeakHandle;
}
#[macro_export]
macro_rules! define_handles {
(< $t:ty > :: $i:ident , $sv:vis $s:ident , $wv:vis $w:ident) => {
impl riddle_common::CloneHandle for $t {
type Handle = $s;
type WeakHandle = $w;
#[inline]
fn clone_handle(&self) -> $s {
<$w>::upgrade(&self.$i).unwrap()
}
#[inline]
fn clone_weak_handle(&self) -> $w {
self.$i.clone()
}
}
#[derive(Clone)]
$sv struct $s {
handle: std::sync::Arc<$t>,
}
impl $s {
#[inline]
pub fn downgrade(this: &$s) -> $w {
$w {
handle: std::sync::Arc::downgrade(&this.handle)
}
}
#[inline]
pub(crate) fn new<F: FnOnce($w) -> $t>(f: F) -> $s {
$s {
handle: std::sync::Arc::new_cyclic(|weak_sync| {
let weak_self = $w { handle: weak_sync.clone() };
f(weak_self)
})
}
}
#[inline]
pub fn eq(a: &$s, b: &$s) -> bool {
std::sync::Arc::ptr_eq(&a.handle, &b.handle)
}
}
impl std::ops::Deref for $s {
type Target = $t;
#[inline]
fn deref(&self) -> &$t {
std::ops::Deref::deref(&self.handle)
}
}
#[derive(Clone)]
$wv struct $w {
handle: std::sync::Weak<$t>,
}
impl $w {
#[inline]
pub fn upgrade(this: &$w) -> Option<$s> {
std::sync::Weak::upgrade(&this.handle).map(|s| $s { handle: s.clone() })
}
}
};
}