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
use Error;
use ffi;
use glib::signal::SignalHandlerId;
use glib::signal::connect;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use libc;
use std::boxed::Box as Box_;
use std::mem;
use std::mem::transmute;
use std::ptr;
glib_wrapper! {
pub struct Cancellable(Object<ffi::GCancellable, ffi::GCancellableClass>);
match fn {
get_type => || ffi::g_cancellable_get_type(),
}
}
impl Cancellable {
pub fn new() -> Cancellable {
unsafe {
from_glib_full(ffi::g_cancellable_new())
}
}
pub fn cancel(&self) {
unsafe {
ffi::g_cancellable_cancel(self.to_glib_none().0);
}
}
pub fn disconnect(&self, handler_id: libc::c_ulong) {
unsafe {
ffi::g_cancellable_disconnect(self.to_glib_none().0, handler_id);
}
}
pub fn get_fd(&self) -> i32 {
unsafe {
ffi::g_cancellable_get_fd(self.to_glib_none().0)
}
}
pub fn is_cancelled(&self) -> bool {
unsafe {
from_glib(ffi::g_cancellable_is_cancelled(self.to_glib_none().0))
}
}
pub fn pop_current(&self) {
unsafe {
ffi::g_cancellable_pop_current(self.to_glib_none().0);
}
}
pub fn push_current(&self) {
unsafe {
ffi::g_cancellable_push_current(self.to_glib_none().0);
}
}
pub fn release_fd(&self) {
unsafe {
ffi::g_cancellable_release_fd(self.to_glib_none().0);
}
}
pub fn set_error_if_cancelled(&self) -> Result<(), Error> {
unsafe {
let mut error = ptr::null_mut();
let _ = ffi::g_cancellable_set_error_if_cancelled(self.to_glib_none().0, &mut error);
if error.is_null() { Ok(()) } else { Err(from_glib_full(error)) }
}
}
pub fn get_current() -> Option<Cancellable> {
unsafe {
from_glib_none(ffi::g_cancellable_get_current())
}
}
pub fn connect_cancelled<F: Fn(&Cancellable) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<Box_<Fn(&Cancellable) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "cancelled",
transmute(cancelled_trampoline as usize), Box_::into_raw(f) as *mut _)
}
}
}
impl Default for Cancellable {
fn default() -> Self {
Self::new()
}
}
unsafe impl Send for Cancellable {}
unsafe impl Sync for Cancellable {}
unsafe extern "C" fn cancelled_trampoline(this: *mut ffi::GCancellable, f: glib_ffi::gpointer) {
let f: &&(Fn(&Cancellable) + Send + Sync + 'static) = transmute(f);
f(&from_glib_borrow(this))
}