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
use std::mem;
use std::ptr;
use glib_ffi;
use gobject_ffi;
use gst_ffi;
use glib;
use glib::translate::*;
use gst;
use gst::prelude::*;
use gobject_subclass::anyimpl::*;
use gobject_subclass::object::*;
use pad::*;
pub trait GhostPadImpl<T: GhostPadBase>:
AnyImpl + ObjectImpl<T> + PadImpl<T> + Send + Sync + 'static
{
}
any_impl!(GhostPadBase, GhostPadImpl);
pub unsafe trait GhostPadBase: IsA<gst::GhostPad> + IsA<gst::Pad> + ObjectType {}
pub unsafe trait GhostPadClassExt<T: GhostPadBase>
where
T::ImplType: GhostPadImpl<T>,
{
fn override_vfuncs(&mut self, _: &ClassInitToken) {}
}
glib_wrapper! {
pub struct GhostPad(Object<InstanceStruct<GhostPad>>):
[gst::GhostPad => gst_ffi::GstGhostPad,
gst::ProxyPad => gst_ffi::GstProxyPad,
gst::Pad => gst_ffi::GstPad,
gst::Object => gst_ffi::GstObject];
match fn {
get_type => || get_type::<GhostPad>(),
}
}
unsafe impl<T: IsA<gst::GhostPad> + IsA<gst::Pad> + ObjectType> GhostPadBase for T {}
pub type GhostPadClass = ClassStruct<GhostPad>;
unsafe impl GhostPadClassExt<GhostPad> for GhostPadClass {}
unsafe impl PadClassExt<GhostPad> for GhostPadClass {}
unsafe impl ObjectClassExt<GhostPad> for GhostPadClass {}
unsafe impl Send for GhostPad {}
unsafe impl Sync for GhostPad {}
#[macro_export]
macro_rules! box_ghost_pad_impl(
($name:ident) => {
box_pad_impl!($name);
impl<T: GhostPadBase> GhostPadImpl<T> for Box<$name<T>>
{
}
};
);
box_ghost_pad_impl!(GhostPadImpl);
impl ObjectType for GhostPad {
const NAME: &'static str = "RsGhostPad";
type ParentType = gst::GhostPad;
type ImplType = Box<GhostPadImpl<Self>>;
type InstanceStructType = InstanceStruct<Self>;
fn class_init(token: &ClassInitToken, klass: &mut GhostPadClass) {
ObjectClassExt::override_vfuncs(klass, token);
PadClassExt::override_vfuncs(klass, token);
GhostPadClassExt::override_vfuncs(klass, token);
}
object_type_fns!();
}