mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-01-23 23:48:10 +00:00
8eae37c525
This is implemented mostly manually because the API is a bit weird and we need to do some extra work to make it work properly. Also basing it on a Builder makes it much nicer to user. This commit also includes required new types either generated with `gir` or manually implemented when required. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1227>
65 lines
1.9 KiB
Rust
65 lines
1.9 KiB
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
use glib::prelude::*;
|
|
use glib::translate::*;
|
|
|
|
use crate::ActionType;
|
|
use crate::Scenario;
|
|
|
|
gst::mini_object_wrapper!(Action, ActionRef, ffi::GstValidateAction, || {
|
|
ffi::gst_validate_action_get_type()
|
|
});
|
|
|
|
impl ActionRef {
|
|
pub fn structure(&self) -> &gst::StructureRef {
|
|
unsafe {
|
|
let action = &self.0 as *const ffi::GstValidateAction;
|
|
|
|
gst::StructureRef::from_glib_borrow((*action).structure)
|
|
}
|
|
}
|
|
|
|
pub fn structure_mut(&mut self) -> &mut gst::StructureRef {
|
|
unsafe {
|
|
let action = &mut self.0 as *mut ffi::GstValidateAction;
|
|
|
|
gst::StructureRef::from_glib_borrow_mut((*action).structure)
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Action {
|
|
#[doc(alias = "gst_validate_action_new")]
|
|
pub fn new(
|
|
scenario: Option<&impl IsA<Scenario>>,
|
|
action_type: &ActionType,
|
|
structure: &gst::StructureRef,
|
|
add_to_lists: bool,
|
|
) -> Action {
|
|
assert_initialized_main_thread!();
|
|
unsafe {
|
|
from_glib_full(ffi::gst_validate_action_new(
|
|
scenario.map(|p| p.as_ref()).to_glib_none().0,
|
|
action_type.to_glib_none().0,
|
|
structure.as_mut_ptr(),
|
|
add_to_lists.into_glib(),
|
|
))
|
|
}
|
|
}
|
|
|
|
#[doc(alias = "gst_validate_execute_action")]
|
|
pub fn execute(&self) -> Result<crate::ActionSuccess, crate::ActionError> {
|
|
unsafe {
|
|
let action: *mut ffi::GstValidateAction = self.to_glib_none().0;
|
|
let action_type = ffi::gst_validate_get_action_type((*action).type_);
|
|
|
|
let res = ffi::gst_validate_execute_action(action_type, action);
|
|
|
|
if let Some(v) = crate::ActionSuccess::from_value(res) {
|
|
Ok(v)
|
|
} else {
|
|
Err(crate::ActionError::from_value(res))
|
|
}
|
|
}
|
|
}
|
|
}
|