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
use glib_sys;
use gobject_sys;
use std::ops;
use translate::*;
use value::*;
pub trait BoxedType: Clone + Sized + 'static {
const NAME: &'static str;
fn get_type() -> ::Type;
}
pub fn register_boxed_type<T: BoxedType>() -> ::Type {
unsafe extern "C" fn boxed_copy<T: BoxedType>(v: glib_sys::gpointer) -> glib_sys::gpointer {
let v = &*(v as *mut T);
let copy = Box::new(v.clone());
Box::into_raw(copy) as glib_sys::gpointer
}
unsafe extern "C" fn boxed_free<T: BoxedType>(v: glib_sys::gpointer) {
let v = v as *mut T;
let _ = Box::from_raw(v);
}
unsafe {
use std::ffi::CString;
let type_name = CString::new(T::NAME).unwrap();
if gobject_sys::g_type_from_name(type_name.as_ptr()) != gobject_sys::G_TYPE_INVALID {
panic!(
"Type {} has already been registered",
type_name.to_str().unwrap()
);
}
from_glib(gobject_sys::g_boxed_type_register_static(
type_name.as_ptr(),
Some(boxed_copy::<T>),
Some(boxed_free::<T>),
))
}
}
#[macro_export]
macro_rules! glib_boxed_type {
() => {
fn get_type() -> $crate::Type {
static mut TYPE_: $crate::Type = $crate::Type::Invalid;
static ONCE: ::std::sync::Once = ::std::sync::Once::new();
ONCE.call_once(|| {
let type_ = $crate::subclass::register_boxed_type::<Self>();
unsafe {
TYPE_ = type_;
}
});
unsafe { TYPE_ }
}
};
}
#[macro_export]
macro_rules! glib_boxed_derive_traits {
($name:ident) => {
impl $crate::StaticType for $name {
fn static_type() -> $crate::Type {
<$name as $crate::subclass::boxed::BoxedType>::get_type()
}
}
impl $crate::value::SetValue for $name {
unsafe fn set_value(value: &mut $crate::value::Value, this: &Self) {
let ptr: *mut $name = Box::into_raw(Box::new(this.clone()));
$crate::gobject_sys::g_value_take_boxed(
$crate::translate::ToGlibPtrMut::to_glib_none_mut(value).0,
ptr as *mut _,
);
}
}
impl $crate::value::SetValueOptional for $name {
unsafe fn set_value_optional(value: &mut $crate::value::Value, this: Option<&Self>) {
let this = this.expect("None not allowed");
let ptr: *mut $name = Box::into_raw(Box::new(this.clone()));
$crate::gobject_sys::g_value_take_boxed(
$crate::translate::ToGlibPtrMut::to_glib_none_mut(value).0,
ptr as *mut _,
);
}
}
impl<'a> $crate::value::FromValueOptional<'a> for &'a $name {
unsafe fn from_value_optional(value: &'a $crate::value::Value) -> Option<Self> {
let ptr = $crate::gobject_sys::g_value_get_boxed(
$crate::translate::ToGlibPtr::to_glib_none(value).0,
);
assert!(!ptr.is_null());
Some(&*(ptr as *mut $name))
}
}
impl<'a> $crate::value::FromValue<'a> for &'a $name {
unsafe fn from_value(value: &'a $crate::value::Value) -> Self {
let ptr = $crate::gobject_sys::g_value_get_boxed(
$crate::translate::ToGlibPtr::to_glib_none(value).0,
);
assert!(!ptr.is_null());
&*(ptr as *mut $name)
}
}
};
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct Boxed<T: BoxedType>(pub T);
impl<T: BoxedType> ops::Deref for Boxed<T> {
type Target = T;
fn deref(&self) -> &T {
&self.0
}
}
impl<T: BoxedType> ops::DerefMut for Boxed<T> {
fn deref_mut(&mut self) -> &mut T {
&mut self.0
}
}
impl<T: BoxedType> ::StaticType for Boxed<T> {
fn static_type() -> ::Type {
T::get_type()
}
}
impl<T: BoxedType> SetValue for Boxed<T> {
unsafe fn set_value(value: &mut Value, this: &Self) {
let ptr: *mut Boxed<T> = Box::into_raw(Box::new(this.clone()));
gobject_sys::g_value_take_boxed(value.to_glib_none_mut().0, ptr as *mut _);
}
}
impl<T: BoxedType> SetValueOptional for Boxed<T> {
unsafe fn set_value_optional(value: &mut Value, this: Option<&Self>) {
let this = this.expect("None not allowed");
let ptr: *mut Boxed<T> = Box::into_raw(Box::new(this.clone()));
gobject_sys::g_value_take_boxed(value.to_glib_none_mut().0, ptr as *mut _);
}
}
impl<'a, T: BoxedType> FromValueOptional<'a> for &'a Boxed<T> {
unsafe fn from_value_optional(value: &'a Value) -> Option<Self> {
let ptr = gobject_sys::g_value_get_boxed(value.to_glib_none().0);
assert!(!ptr.is_null());
Some(&*(ptr as *mut Boxed<T>))
}
}
impl<'a, T: BoxedType> FromValue<'a> for &'a Boxed<T> {
unsafe fn from_value(value: &'a Value) -> Self {
let ptr = gobject_sys::g_value_get_boxed(value.to_glib_none().0);
assert!(!ptr.is_null());
&*(ptr as *mut Boxed<T>)
}
}
#[cfg(test)]
mod test {
use super::*;
#[derive(Clone, Debug, PartialEq, Eq)]
struct MyBoxed(String);
impl BoxedType for MyBoxed {
const NAME: &'static str = "MyBoxed";
glib_boxed_type!();
}
glib_boxed_derive_traits!(MyBoxed);
#[test]
fn test_register() {
assert_ne!(::Type::Invalid, MyBoxed::get_type());
}
#[test]
fn test_value_boxed() {
assert_ne!(::Type::Invalid, MyBoxed::get_type());
let b = Boxed(MyBoxed(String::from("abc")));
let v = b.to_value();
let b2 = v.get_some::<&Boxed<MyBoxed>>().unwrap();
assert_eq!(&b, b2);
}
#[test]
fn test_value() {
assert_ne!(::Type::Invalid, MyBoxed::get_type());
let b = MyBoxed(String::from("abc"));
let v = b.to_value();
let b2 = v.get_some::<&MyBoxed>().unwrap();
assert_eq!(&b, b2);
}
}