gstreamer-rs/gstreamer-rtsp-server/src/auto/rtsp_mount_points.rs

91 lines
2.8 KiB
Rust

// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git)
// DO NOT EDIT
use crate::{ffi, RTSPMediaFactory};
use glib::{prelude::*, translate::*};
glib::wrapper! {
#[doc(alias = "GstRTSPMountPoints")]
pub struct RTSPMountPoints(Object<ffi::GstRTSPMountPoints, ffi::GstRTSPMountPointsClass>);
match fn {
type_ => || ffi::gst_rtsp_mount_points_get_type(),
}
}
impl RTSPMountPoints {
pub const NONE: Option<&'static RTSPMountPoints> = None;
#[doc(alias = "gst_rtsp_mount_points_new")]
pub fn new() -> RTSPMountPoints {
assert_initialized_main_thread!();
unsafe { from_glib_full(ffi::gst_rtsp_mount_points_new()) }
}
}
impl Default for RTSPMountPoints {
fn default() -> Self {
Self::new()
}
}
unsafe impl Send for RTSPMountPoints {}
unsafe impl Sync for RTSPMountPoints {}
mod sealed {
pub trait Sealed {}
impl<T: super::IsA<super::RTSPMountPoints>> Sealed for T {}
}
pub trait RTSPMountPointsExt: IsA<RTSPMountPoints> + sealed::Sealed + 'static {
#[doc(alias = "gst_rtsp_mount_points_add_factory")]
fn add_factory(&self, path: &str, factory: impl IsA<RTSPMediaFactory>) {
unsafe {
ffi::gst_rtsp_mount_points_add_factory(
self.as_ref().to_glib_none().0,
path.to_glib_none().0,
factory.upcast().into_glib_ptr(),
);
}
}
#[doc(alias = "gst_rtsp_mount_points_make_path")]
fn make_path(&self, url: &gst_rtsp::RTSPUrl) -> Result<glib::GString, glib::BoolError> {
unsafe {
Option::<_>::from_glib_full(ffi::gst_rtsp_mount_points_make_path(
self.as_ref().to_glib_none().0,
url.to_glib_none().0,
))
.ok_or_else(|| glib::bool_error!("Failed to make path"))
}
}
#[doc(alias = "gst_rtsp_mount_points_match")]
#[doc(alias = "match")]
fn match_(&self, path: &str) -> (RTSPMediaFactory, i32) {
unsafe {
let mut matched = std::mem::MaybeUninit::uninit();
let ret = from_glib_full(ffi::gst_rtsp_mount_points_match(
self.as_ref().to_glib_none().0,
path.to_glib_none().0,
matched.as_mut_ptr(),
));
(ret, matched.assume_init())
}
}
#[doc(alias = "gst_rtsp_mount_points_remove_factory")]
fn remove_factory(&self, path: &str) {
unsafe {
ffi::gst_rtsp_mount_points_remove_factory(
self.as_ref().to_glib_none().0,
path.to_glib_none().0,
);
}
}
}
impl<O: IsA<RTSPMountPoints>> RTSPMountPointsExt for O {}