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
use glib_sys;
use gst_sys;
use glib;
use glib::prelude::*;
use glib::translate::*;
use glib::subclass::prelude::*;
use libc;
use URIHandler;
use URIType;
pub trait URIHandlerImpl: super::element::ElementImpl + Send + Sync + 'static {
fn get_uri(&self, element: &URIHandler) -> Option<String>;
fn set_uri(&self, element: &URIHandler, uri: &str) -> Result<(), glib::Error>;
fn get_uri_type() -> URIType;
fn get_protocols() -> Vec<String>;
}
unsafe impl<T: ObjectSubclass + URIHandlerImpl> IsImplementable<T> for URIHandler {
unsafe extern "C" fn interface_init(
iface: glib_sys::gpointer,
_iface_data: glib_sys::gpointer,
) {
let uri_handler_iface = &mut *(iface as *mut gst_sys::GstURIHandlerInterface);
let mut data = T::type_data();
let protocols = T::get_protocols();
let protocols: *mut *const libc::c_char = protocols.to_glib_full();
let data = data.as_mut();
if data.interface_data.is_null() {
data.interface_data = Box::into_raw(Box::new(Vec::new()));
}
(*(data.interface_data as *mut Vec<(glib_sys::GType, glib_sys::gpointer)>))
.push((URIHandler::static_type().to_glib(), protocols as *mut _));
uri_handler_iface.get_type = Some(uri_handler_get_type::<T>);
uri_handler_iface.get_protocols = Some(uri_handler_get_protocols::<T>);
uri_handler_iface.get_uri = Some(uri_handler_get_uri::<T>);
uri_handler_iface.set_uri = Some(uri_handler_set_uri::<T>);
}
}
unsafe extern "C" fn uri_handler_get_type<T: ObjectSubclass>(
_type_: glib_sys::GType,
) -> gst_sys::GstURIType
where
T: URIHandlerImpl,
{
<T as URIHandlerImpl>::get_uri_type().to_glib()
}
unsafe extern "C" fn uri_handler_get_protocols<T: ObjectSubclass>(
_type_: glib_sys::GType,
) -> *const *const libc::c_char
where
T: URIHandlerImpl,
{
let data = <T as ObjectSubclass>::type_data();
data.as_ref()
.get_interface_data(URIHandler::static_type().to_glib()) as *const _
}
unsafe extern "C" fn uri_handler_get_uri<T: ObjectSubclass>(
uri_handler: *mut gst_sys::GstURIHandler,
) -> *mut libc::c_char
where
T: URIHandlerImpl,
{
let instance = &*(uri_handler as *mut T::Instance);
let imp = instance.get_impl();
imp.get_uri(&from_glib_borrow(uri_handler)).to_glib_full()
}
unsafe extern "C" fn uri_handler_set_uri<T: ObjectSubclass>(
uri_handler: *mut gst_sys::GstURIHandler,
uri: *const libc::c_char,
err: *mut *mut glib_sys::GError,
) -> glib_sys::gboolean
where
T: URIHandlerImpl,
{
let instance = &*(uri_handler as *mut T::Instance);
let imp = instance.get_impl();
match imp.set_uri(
&from_glib_borrow(uri_handler),
glib::GString::from_glib_borrow(uri).as_str(),
) {
Ok(()) => true.to_glib(),
Err(error) => {
*err = error.to_glib_full() as *mut _;
false.to_glib()
}
}
}