2017-10-27 21:03:45 +00:00
|
|
|
// Copyright (C) 2017 Sebastian Dröge <sebastian@centricular.com>
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
use glib;
|
2019-01-16 11:32:58 +00:00
|
|
|
use glib::object::{Cast, ObjectExt};
|
2018-04-01 08:30:03 +00:00
|
|
|
use glib::signal::SignalHandlerId;
|
2018-12-08 09:22:42 +00:00
|
|
|
use glib::translate::{from_glib_borrow, from_glib_none, ToGlibPtr};
|
2018-04-25 08:10:06 +00:00
|
|
|
use glib::IsA;
|
2017-10-27 21:03:45 +00:00
|
|
|
|
2019-03-19 07:58:20 +00:00
|
|
|
use gobject_sys;
|
2017-10-27 21:03:45 +00:00
|
|
|
|
2018-12-08 09:22:42 +00:00
|
|
|
pub trait GstObjectExtManual: 'static {
|
2018-07-27 10:36:40 +00:00
|
|
|
fn connect_deep_notify<
|
|
|
|
'a,
|
|
|
|
P: Into<Option<&'a str>>,
|
|
|
|
F: Fn(&Self, &::Object, &glib::ParamSpec) + Send + Sync + 'static,
|
|
|
|
>(
|
2017-10-27 21:03:45 +00:00
|
|
|
&self,
|
2018-07-09 17:47:15 +00:00
|
|
|
name: P,
|
2017-10-27 21:03:45 +00:00
|
|
|
f: F,
|
|
|
|
) -> SignalHandlerId;
|
|
|
|
}
|
|
|
|
|
2018-12-08 09:22:42 +00:00
|
|
|
impl<O: IsA<::Object>> GstObjectExtManual for O {
|
2018-07-27 10:36:40 +00:00
|
|
|
fn connect_deep_notify<
|
|
|
|
'a,
|
|
|
|
P: Into<Option<&'a str>>,
|
|
|
|
F: Fn(&Self, &::Object, &glib::ParamSpec) + Send + Sync + 'static,
|
|
|
|
>(
|
2017-10-27 21:03:45 +00:00
|
|
|
&self,
|
2018-07-09 17:47:15 +00:00
|
|
|
name: P,
|
2017-10-27 21:03:45 +00:00
|
|
|
f: F,
|
|
|
|
) -> SignalHandlerId {
|
2018-07-09 17:47:15 +00:00
|
|
|
let name = name.into();
|
|
|
|
let signal_name = if let Some(name) = name {
|
|
|
|
format!("deep-notify::{}", name)
|
|
|
|
} else {
|
|
|
|
"deep-notify".into()
|
|
|
|
};
|
|
|
|
|
2018-12-08 09:22:42 +00:00
|
|
|
let obj: glib::Object =
|
2019-03-19 07:58:20 +00:00
|
|
|
unsafe { from_glib_borrow(self.as_ptr() as *mut gobject_sys::GObject) };
|
2018-12-08 09:22:42 +00:00
|
|
|
|
|
|
|
obj.connect(signal_name.as_str(), false, move |values| {
|
2019-01-16 11:32:58 +00:00
|
|
|
let obj: O = unsafe { values[0].get::<::Object>().unwrap().unsafe_cast() };
|
2017-10-27 21:03:45 +00:00
|
|
|
let prop_obj: ::Object = values[1].get().unwrap();
|
|
|
|
|
2018-07-09 17:47:15 +00:00
|
|
|
let pspec = unsafe {
|
2019-03-19 07:58:20 +00:00
|
|
|
let pspec = gobject_sys::g_value_get_param(values[2].to_glib_none().0);
|
2018-07-09 17:47:15 +00:00
|
|
|
from_glib_none(pspec)
|
2017-10-27 21:03:45 +00:00
|
|
|
};
|
|
|
|
|
2018-07-09 17:47:15 +00:00
|
|
|
f(&obj, &prop_obj, &pspec);
|
2017-10-27 21:03:45 +00:00
|
|
|
|
|
|
|
None
|
2018-10-08 12:02:23 +00:00
|
|
|
})
|
|
|
|
.unwrap()
|
2017-10-27 21:03:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
use prelude::*;
|
|
|
|
use std::sync::{Arc, Mutex};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_deep_notify() {
|
|
|
|
::init().unwrap();
|
|
|
|
|
|
|
|
let bin = ::Bin::new(None);
|
2019-03-19 07:58:20 +00:00
|
|
|
let identity = ::ElementFactory::make("identity", Some("id")).unwrap();
|
2017-10-27 21:03:45 +00:00
|
|
|
bin.add(&identity).unwrap();
|
|
|
|
|
|
|
|
let notify = Arc::new(Mutex::new(None));
|
|
|
|
let notify_clone = notify.clone();
|
2018-07-09 17:47:15 +00:00
|
|
|
bin.connect_deep_notify(None, move |_, id, prop| {
|
|
|
|
*notify_clone.lock().unwrap() = Some((id.clone(), String::from(prop.get_name())));
|
2017-10-27 21:03:45 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
identity.set_property("silent", &false).unwrap();
|
|
|
|
assert_eq!(
|
|
|
|
*notify.lock().unwrap(),
|
|
|
|
Some((identity.upcast::<::Object>(), String::from("silent")))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|