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
use crate::traits::InitableExt;
use crate::Cancellable;
use crate::Initable;
use glib::object::IsA;
use glib::object::IsClass;
use glib::value::ToValue;
use glib::{Cast, Object, StaticType, Type};
impl Initable {
#[allow(clippy::new_ret_no_self)]
pub fn new<O: Sized + IsClass + IsA<Object> + IsA<Initable>, P: IsA<Cancellable>>(
properties: &[(&str, &dyn ToValue)],
cancellable: Option<&P>,
) -> Result<O, InitableError> {
let object = Object::new::<O>(properties)?;
unsafe { object.init(cancellable)? };
Ok(object)
}
pub fn with_type(
type_: Type,
properties: &[(&str, &dyn ToValue)],
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<Object, InitableError> {
if !type_.is_a(Initable::static_type()) {
return Err(InitableError::NewObjectFailed(glib::bool_error!(
"Type '{}' is not initable",
type_
)));
}
let object = Object::with_type(type_, properties)?;
unsafe { object.unsafe_cast_ref::<Self>().init(cancellable)? };
Ok(object)
}
}
#[derive(thiserror::Error, Debug)]
pub enum InitableError {
#[error("Object::new failed with {0:?}")]
NewObjectFailed(#[from] glib::error::BoolError),
#[error("Initable::init failed with {0:?}")]
InitFailed(#[from] glib::Error),
}