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
use crate::dart_handle::{Port, TypedData};
use dart_sys as ffi;
use std::any::Any;
use std::ffi::{CStr, CString};
use std::marker::PhantomData;
use std::ops::{Index, IndexMut};
use std::os::raw::c_void;

pub enum CObject {
    Null,
    Bool(bool),
    Int32(i32),
    Int64(i64),
    Double(f64),
    String(CString),
    SendPort(Sender),
    Array(Vec<Self>),
    TypedData(TypedDataArray<dyn Any>),
}

impl CObject {
    pub unsafe fn from(ffi::Dart_CObject { type_: ty, value }: ffi::Dart_CObject) -> Self {
        use ffi::Dart_CObject_Type::*;
        match ty {
            Null => CObject::Null,
            Bool => CObject::Bool(value.as_bool),
            Int32 => CObject::Int32(value.as_int32),
            Int64 => CObject::Int64(value.as_int64),
            Double => CObject::Double(value.as_double),
            SendPort => CObject::SendPort(Sender(value.as_send_port)),
            String => {
                let ptr = value.as_string;
                let cstr = CStr::from_ptr(ptr);
                CObject::String(cstr.to_owned())
            }
            Array => {
                let arr = value.as_array;
                let ptr = arr.values;
                let len = arr.length as usize;
                let slice = std::slice::from_raw_parts_mut(ptr, len);
                let vec = slice.iter().map(|x| Self::from(**x)).collect::<Vec<_>>();
                CObject::Array(vec)
            }
            TypedData => CObject::TypedData(TypedDataArray::new(value.as_typed_data)),
            ExternalTypedData => {
                CObject::TypedData(TypedDataArray::new_external(value.as_external_typed_data))
            }
            Unsupported => panic!("Unsupported CObject!"),
            NumberOfTypes => unimplemented!("Number of Typed has yet to be implemented!"),
            Capability => {
                unimplemented!("Capabilities within CObjects have yet to be implemented!")
            }
        }
    }

    pub fn into_leak(self) -> ffi::Dart_CObject {
        use dart_sys::Dart_CObjectValue;
        match self {
            CObject::Null => ffi::Dart_CObject {
                type_: ffi::Dart_CObject_Type::Null,
                value: Dart_CObjectValue { as_bool: false },
            },
            CObject::Bool(x) => ffi::Dart_CObject {
                type_: ffi::Dart_CObject_Type::Bool,
                value: Dart_CObjectValue { as_bool: x },
            },
            CObject::Int32(x) => ffi::Dart_CObject {
                type_: ffi::Dart_CObject_Type::Int32,
                value: Dart_CObjectValue { as_int32: x },
            },
            CObject::Int64(x) => ffi::Dart_CObject {
                type_: ffi::Dart_CObject_Type::Int64,
                value: Dart_CObjectValue { as_int64: x },
            },
            CObject::Double(x) => ffi::Dart_CObject {
                type_: ffi::Dart_CObject_Type::Double,
                value: Dart_CObjectValue { as_double: x },
            },
            CObject::TypedData(x) => match x {
                TypedDataArray::WithoutFinalizer(x, _) => ffi::Dart_CObject {
                    type_: ffi::Dart_CObject_Type::TypedData,
                    value: Dart_CObjectValue { as_typed_data: x },
                },
                TypedDataArray::WithFinalizer(x) => ffi::Dart_CObject {
                    type_: ffi::Dart_CObject_Type::ExternalTypedData,
                    value: Dart_CObjectValue {
                        as_external_typed_data: x,
                    },
                },
            },
            CObject::SendPort(Sender(x)) => ffi::Dart_CObject {
                type_: ffi::Dart_CObject_Type::SendPort,
                value: Dart_CObjectValue { as_send_port: x },
            },
            CObject::Array(x) => {
                let vec: Vec<Box<ffi::Dart_CObject>> =
                    x.into_iter().map(|x| x.into_leak()).map(Box::new).collect();
                let boxed = Box::leak(vec.into_boxed_slice());
                let ptr = boxed as *mut [_] as *mut [Box<ffi::Dart_CObject>]
                    as *mut [*mut ffi::Dart_CObject]
                    as *mut *mut ffi::Dart_CObject;
                let len = boxed.len();
                let array = ffi::Dart_Array {
                    length: len as _,
                    values: ptr,
                };
                ffi::Dart_CObject {
                    type_: ffi::Dart_CObject_Type::Array,
                    value: Dart_CObjectValue { as_array: array },
                }
            }
            CObject::String(cstring) => {
                let ptr = CString::into_raw(cstring);
                ffi::Dart_CObject {
                    type_: ffi::Dart_CObject_Type::String,
                    value: Dart_CObjectValue { as_string: ptr },
                }
            }
        }
    }

    pub fn as_non_leak(&'_ self) -> CObjectLock<'_> {
        use dart_sys::Dart_CObjectValue;
        let obj = match self {
            CObject::Null => ffi::Dart_CObject {
                type_: ffi::Dart_CObject_Type::Null,
                value: Dart_CObjectValue { as_bool: false },
            },
            CObject::Bool(x) => ffi::Dart_CObject {
                type_: ffi::Dart_CObject_Type::Bool,
                value: Dart_CObjectValue { as_bool: *x },
            },
            CObject::Int32(x) => ffi::Dart_CObject {
                type_: ffi::Dart_CObject_Type::Int32,
                value: Dart_CObjectValue { as_int32: *x },
            },
            CObject::Int64(x) => ffi::Dart_CObject {
                type_: ffi::Dart_CObject_Type::Int64,
                value: Dart_CObjectValue { as_int64: *x },
            },
            CObject::Double(x) => ffi::Dart_CObject {
                type_: ffi::Dart_CObject_Type::Double,
                value: Dart_CObjectValue { as_double: *x },
            },
            CObject::TypedData(x) => match x {
                TypedDataArray::WithoutFinalizer(x, _) => ffi::Dart_CObject {
                    type_: ffi::Dart_CObject_Type::TypedData,
                    value: Dart_CObjectValue { as_typed_data: *x },
                },
                TypedDataArray::WithFinalizer(x) => ffi::Dart_CObject {
                    type_: ffi::Dart_CObject_Type::ExternalTypedData,
                    value: Dart_CObjectValue {
                        as_external_typed_data: *x,
                    },
                },
            },
            CObject::SendPort(Sender(x)) => ffi::Dart_CObject {
                type_: ffi::Dart_CObject_Type::SendPort,
                value: Dart_CObjectValue { as_send_port: *x },
            },
            CObject::Array(x) => {
                let vec: Vec<Box<ffi::Dart_CObject>> = x
                    .into_iter()
                    .map(|x| x.as_non_leak().object)
                    .map(Box::new)
                    .collect();
                let boxed = Box::leak(vec.into_boxed_slice());
                let ptr = boxed as *mut [_] as *mut [Box<ffi::Dart_CObject>]
                    as *mut [*mut ffi::Dart_CObject]
                    as *mut *mut ffi::Dart_CObject;
                let len = boxed.len();
                let array = ffi::Dart_Array {
                    length: len as _,
                    values: ptr,
                };
                ffi::Dart_CObject {
                    type_: ffi::Dart_CObject_Type::Array,
                    value: Dart_CObjectValue { as_array: array },
                }
            }
            CObject::String(cstring) => {
                let ptr = cstring.as_ptr() as *mut i8;
                ffi::Dart_CObject {
                    type_: ffi::Dart_CObject_Type::String,
                    value: Dart_CObjectValue { as_string: ptr },
                }
            }
        };

        unsafe { CObjectLock::new(self, obj) }
    }
}

pub struct CObjectLock<'a> {
    _rust_cobject: &'a CObject,
    pub(crate) object: ffi::Dart_CObject,
}

impl<'a> CObjectLock<'a> {
    pub unsafe fn new(rust_cobject: &'a CObject, object: ffi::Dart_CObject) -> Self {
        Self {
            _rust_cobject: rust_cobject,
            object,
        }
    }
    pub fn post_onto(&mut self, sender: &mut Sender) -> bool {
        unsafe {
            let port = Port::from_port(sender.0.id);
            if let Some(port) = port {
                port.post_raw_cobject(&mut self.object)
            } else {
                false
            }
        }
    }
}

#[repr(transparent)]
pub struct Sender(pub ffi::Dart_SendPort);

#[derive(Copy, Clone)]
pub enum TypedDataArray<T: ?Sized> {
    WithoutFinalizer(ffi::Dart_TypedData, PhantomData<T>),
    WithFinalizer(ffi::Dart_ExternalTypedData),
}

impl TypedDataArray<dyn Any> {
    pub unsafe fn new(arr: ffi::Dart_TypedData) -> Self {
        TypedDataArray::WithoutFinalizer(arr, PhantomData)
    }

    pub unsafe fn new_external(arr: ffi::Dart_ExternalTypedData) -> Self {
        TypedDataArray::WithFinalizer(arr)
    }

    pub fn cast<T: TypedData>(self) -> Option<TypedDataArray<T>> {
        match self {
            TypedDataArray::WithFinalizer(x) => {
                if x.type_ == T::TYPE {
                    Some(TypedDataArray::WithFinalizer(x))
                } else {
                    None
                }
            }
            TypedDataArray::WithoutFinalizer(x, _) => {
                if x.type_ == T::TYPE {
                    Some(TypedDataArray::WithoutFinalizer(x, PhantomData))
                } else {
                    None
                }
            }
        }
    }
}

impl<T: TypedData> TypedDataArray<T> {
    pub fn create(data: Vec<T>) -> Self {
        let ptr = Box::leak(data.into_boxed_slice());
        let len = ptr.len();
        let ptr_ptr = Box::leak(Box::new(ptr as *mut [T]));

        unsafe extern "C" fn free<T>(
            _isolate_callback_data: *mut c_void,
            _handle: ffi::Dart_WeakPersistentHandle,
            peer: *mut c_void,
        ) {
            let ptr = peer as *mut *mut [T];
            let boxed = Box::from_raw(*ptr);
            drop(boxed);
            let boxed_2 = Box::from_raw(ptr);
            drop(boxed_2);
        }

        TypedDataArray::WithFinalizer(ffi::Dart_ExternalTypedData {
            type_: T::TYPE,
            length: len as _,
            data: ptr as *mut [T] as *mut T as *mut u8,
            peer: ptr_ptr as *mut *mut [T] as *mut c_void,
            callback: Some(free::<T>),
        })
    }

    pub fn recast(self) -> TypedDataArray<dyn Any> {
        match self {
            TypedDataArray::WithFinalizer(x) => unsafe { TypedDataArray::new_external(x) },
            TypedDataArray::WithoutFinalizer(x, _) => unsafe { TypedDataArray::new(x) },
        }
    }
}

impl<T: TypedData + Sized> Index<usize> for TypedDataArray<T> {
    type Output = T;
    fn index(&self, idx: usize) -> &T {
        use TypedDataArray::*;
        match self {
            WithoutFinalizer(ffi::Dart_TypedData { length, values, .. }, _)
            | WithFinalizer(ffi::Dart_ExternalTypedData {
                length,
                data: values,
                ..
            }) => unsafe {
                let slice = std::slice::from_raw_parts(*values as *mut T, *length as _);
                &slice[idx]
            },
        }
    }
}

impl<T: TypedData + Sized> IndexMut<usize> for TypedDataArray<T> {
    fn index_mut(&mut self, idx: usize) -> &mut T {
        use TypedDataArray::*;
        match self {
            WithoutFinalizer(ffi::Dart_TypedData { length, values, .. }, _)
            | WithFinalizer(ffi::Dart_ExternalTypedData {
                length,
                data: values,
                ..
            }) => unsafe {
                let slice = std::slice::from_raw_parts_mut(*values as *mut T, *length as _);
                &mut slice[idx]
            },
        }
    }
}