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
use glib_sys::{self, gboolean, gpointer};
use source::Priority;
use std::mem;
use translate::*;
use MainContext;
use Source;
use SourceId;
impl MainContext {
pub fn prepare(&self) -> (bool, i32) {
unsafe {
let mut priority = mem::MaybeUninit::uninit();
let res = from_glib(glib_sys::g_main_context_prepare(
self.to_glib_none().0,
priority.as_mut_ptr(),
));
let priority = priority.assume_init();
(res, priority)
}
}
pub fn find_source_by_id(&self, source_id: &SourceId) -> Option<Source> {
unsafe {
from_glib_none(glib_sys::g_main_context_find_source_by_id(
self.to_glib_none().0,
source_id.to_glib(),
))
}
}
pub fn invoke<F>(&self, func: F)
where
F: FnOnce() + Send + 'static,
{
self.invoke_with_priority(::PRIORITY_DEFAULT_IDLE, func);
}
pub fn invoke_with_priority<F>(&self, priority: Priority, func: F)
where
F: FnOnce() + Send + 'static,
{
unsafe {
self.invoke_unsafe(priority, func);
}
}
pub fn invoke_local<F>(&self, func: F)
where
F: FnOnce() + 'static,
{
self.invoke_local_with_priority(::PRIORITY_DEFAULT_IDLE, func);
}
pub fn invoke_local_with_priority<F>(&self, priority: Priority, func: F)
where
F: FnOnce() + 'static,
{
unsafe {
assert!(self.is_owner());
self.invoke_unsafe(priority, func);
}
}
unsafe fn invoke_unsafe<F>(&self, priority: Priority, func: F)
where
F: FnOnce() + 'static,
{
unsafe extern "C" fn trampoline<F: FnOnce() + 'static>(func: gpointer) -> gboolean {
let func: &mut Option<F> = &mut *(func as *mut Option<F>);
let func = func
.take()
.expect("MainContext::invoke() closure called multiple times");
func();
glib_sys::G_SOURCE_REMOVE
}
unsafe extern "C" fn destroy_closure<F: FnOnce() + 'static>(ptr: gpointer) {
Box::<Option<F>>::from_raw(ptr as *mut _);
}
let func = Box::into_raw(Box::new(Some(func)));
glib_sys::g_main_context_invoke_full(
self.to_glib_none().0,
priority.to_glib(),
Some(trampoline::<F>),
func as gpointer,
Some(destroy_closure::<F>),
)
}
pub fn with_thread_default<R, F: Sized>(&self, func: F) -> R
where
F: FnOnce() -> R,
{
let _thread_default = ThreadDefaultContext::new(self);
func()
}
}
struct ThreadDefaultContext<'a>(&'a MainContext);
impl<'a> ThreadDefaultContext<'a> {
fn new(ctx: &MainContext) -> ThreadDefaultContext {
ctx.push_thread_default();
ThreadDefaultContext(ctx)
}
}
impl<'a> Drop for ThreadDefaultContext<'a> {
fn drop(&mut self) {
self.0.pop_thread_default();
}
}
#[cfg(test)]
mod tests {
use super::*;
use std::panic;
use std::ptr;
use std::thread;
#[test]
fn test_invoke() {
let c = MainContext::new();
let l = ::MainLoop::new(Some(&c), false);
let l_clone = l.clone();
thread::spawn(move || {
c.invoke(move || l_clone.quit());
});
l.run();
}
fn is_same_context(a: &MainContext, b: &MainContext) -> bool {
ptr::eq(a.to_glib_none().0, b.to_glib_none().0)
}
#[test]
fn test_with_thread_default() {
let a = MainContext::new();
let b = MainContext::new();
assert!(!is_same_context(&a, &b));
a.with_thread_default(|| {
let t = MainContext::get_thread_default().unwrap();
assert!(is_same_context(&a, &t));
&b.with_thread_default(|| {
let t = MainContext::get_thread_default().unwrap();
assert!(is_same_context(&b, &t));
});
let t = MainContext::get_thread_default().unwrap();
assert!(is_same_context(&a, &t));
});
}
#[test]
fn test_with_thread_default_is_panic_safe() {
let a = MainContext::new();
let b = MainContext::new();
assert!(!is_same_context(&a, &b));
a.with_thread_default(|| {
let t = MainContext::get_thread_default().unwrap();
assert!(is_same_context(&a, &t));
let result = panic::catch_unwind(|| {
&b.with_thread_default(|| {
panic!();
});
});
assert!(result.is_err());
let t = MainContext::get_thread_default().unwrap();
assert!(is_same_context(&a, &t));
});
}
}