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
use std::{
    fmt,
    marker::PhantomData,
    ops::{Deref, DerefMut},
    ptr::NonNull,
};

use std::sync::RwLock;

use base::types::ArcType;

use crate::{
    api::{Opaque, OpaqueValue, Pushable, VmType},
    gc::{Gc, Trace},
    thread::{ActiveThread, RootedThread, Thread, ThreadInternal},
    value::Userdata,
    Result,
};

pub struct Ref<'a, T>
where
    T: Userdata,
{
    reference: &'a T,
    gluon_reference: Option<RefGuard<T, &'static ()>>,
}

impl<'a, 'b, T> VmType for &'b mut Ref<'a, T>
where
    T: Userdata + VmType,
{
    type Type = T::Type;
    fn make_type(vm: &Thread) -> ArcType {
        T::make_type(vm)
    }
}

impl<'vm, 'a, 'b, T> Pushable<'vm> for &'b mut Ref<'a, T>
where
    T: VmType + Userdata,
{
    fn vm_push(self, context: &mut ActiveThread<'vm>) -> Result<()> {
        Scoped::<T, _>::new(self.reference).vm_push(context)?;
        let value = context.last().unwrap();
        self.gluon_reference = Some(RefGuard {
            gluon_reference: Opaque::from_value(context.thread().root_value(value)),
        });
        Ok(())
    }
}

impl<'a, T> Ref<'a, T>
where
    T: Userdata,
{
    pub fn new(reference: &'a T) -> Self {
        Ref {
            reference,
            gluon_reference: None,
        }
    }
}

pub struct RefMut<'a, T>
where
    T: Userdata,
{
    reference: &'a mut T,
    gluon_reference: Option<RefGuard<T, &'static mut ()>>,
}

impl<'a, 'b, T> VmType for &'b mut RefMut<'a, T>
where
    T: Userdata + VmType,
{
    type Type = T::Type;
    fn make_type(vm: &Thread) -> ArcType {
        T::make_type(vm)
    }
}

impl<'vm, 'a, 'b, T> Pushable<'vm> for &'b mut RefMut<'a, T>
where
    T: VmType + Userdata,
{
    fn vm_push(self, context: &mut ActiveThread<'vm>) -> Result<()> {
        Scoped::<T, _>::new_mut(self.reference).vm_push(context)?;
        let value = context.last().unwrap();
        self.gluon_reference = Some(RefGuard {
            gluon_reference: Opaque::from_value(context.thread().root_value(value)),
        });
        Ok(())
    }
}

impl<'a, T> RefMut<'a, T>
where
    T: Userdata,
{
    pub fn new(reference: &'a mut T) -> Self {
        RefMut {
            reference,
            gluon_reference: None,
        }
    }
}

struct RefGuard<T, M>
where
    T: Userdata,
    M: 'static,
{
    gluon_reference: OpaqueValue<RootedThread, Scoped<T, M>>,
}

impl<T, M> Drop for RefGuard<T, M>
where
    T: Userdata,
    M: 'static,
{
    fn drop(&mut self) {
        Scoped::invalidate(&*self.gluon_reference);
    }
}

pub(crate) struct Scoped<T: ?Sized, M> {
    ptr: RwLock<Option<NonNull<T>>>,
    _marker: PhantomData<M>,
}

unsafe impl<T, M> Send for Scoped<T, M> where T: Send + Sync + ?Sized {}
unsafe impl<T, M> Sync for Scoped<T, M> where T: Send + Sync + ?Sized {}

impl<T, M> fmt::Debug for Scoped<T, M> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "Scoped")
    }
}

impl<T> Scoped<T, &'static ()> {
    pub fn new(ptr: &T) -> Self {
        Scoped {
            ptr: RwLock::new(NonNull::new(ptr as *const T as *mut T)),
            _marker: PhantomData,
        }
    }
}

impl<T> Scoped<T, &'static mut ()> {
    pub fn new_mut(ptr: &mut T) -> Self {
        Scoped {
            ptr: RwLock::new(NonNull::new(ptr as *mut T)),
            _marker: PhantomData,
        }
    }

    pub fn write(&self) -> Result<WriteGuard<T>> {
        let ptr = self.ptr.write().unwrap();
        if let None = *ptr {
            return Err("Scoped pointer is invalidated".to_string().into());
        }
        Ok(WriteGuard(ptr))
    }
}

impl<T, M> Scoped<T, M> {
    pub fn read(&self) -> Result<ReadGuard<T>> {
        let ptr = self.ptr.read().unwrap();
        if let None = *ptr {
            return Err("Scoped pointer is invalidated".to_string().into());
        }
        Ok(ReadGuard(ptr))
    }

    pub fn invalidate(&self) {
        *self.ptr.write().unwrap() = None;
    }
}

impl<'vm, T: VmType, M> VmType for Scoped<T, M> {
    type Type = T::Type;
    fn make_type(vm: &Thread) -> ArcType {
        T::make_type(vm)
    }
}

unsafe impl<T, M> Trace for Scoped<T, M>
where
    T: Trace,
{
    fn trace(&self, gc: &mut Gc) {
        if let Some(v) = *self.ptr.read().unwrap() {
            unsafe {
                v.as_ref().trace(gc);
            }
        }
    }
}

impl<T, M> Userdata for Scoped<T, M>
where
    T: Userdata,
    M: 'static,
{
}

#[doc(hidden)]
pub struct ReadGuard<'a, T>(std::sync::RwLockReadGuard<'a, Option<NonNull<T>>>);

impl<'a, T> Deref for ReadGuard<'a, T> {
    type Target = T;

    fn deref(&self) -> &Self::Target {
        unsafe {
            match *self.0 {
                Some(v) => &*v.as_ptr(),
                None => panic!("Scoped pointer is invalidated"),
            }
        }
    }
}

#[doc(hidden)]
pub struct WriteGuard<'a, T>(std::sync::RwLockWriteGuard<'a, Option<NonNull<T>>>);

impl<'a, T> Deref for WriteGuard<'a, T> {
    type Target = T;

    fn deref(&self) -> &Self::Target {
        unsafe {
            match *self.0 {
                Some(v) => &*v.as_ptr(),
                None => panic!("Scoped pointer is invalidated"),
            }
        }
    }
}

impl<'a, T> DerefMut for WriteGuard<'a, T> {
    fn deref_mut(&mut self) -> &mut Self::Target {
        unsafe {
            match *self.0 {
                Some(v) => &mut *v.as_ptr(),
                None => panic!("Scoped pointer is invalidated"),
            }
        }
    }
}