2018-04-23 17:34:22 +00:00
|
|
|
// This file was generated by gir (https://github.com/gtk-rs/gir)
|
|
|
|
// from gir-files (https://github.com/gtk-rs/gir-files)
|
2018-02-09 02:30:08 +00:00
|
|
|
// DO NOT EDIT
|
|
|
|
|
2020-11-22 10:40:56 +00:00
|
|
|
use crate::RTSPMediaFactory;
|
2018-02-09 02:30:08 +00:00
|
|
|
use glib::object::IsA;
|
|
|
|
use glib::translate::*;
|
|
|
|
use std::mem;
|
|
|
|
|
2020-11-22 10:40:56 +00:00
|
|
|
glib::glib_wrapper! {
|
|
|
|
pub struct RTSPMountPoints(Object<ffi::GstRTSPMountPoints, ffi::GstRTSPMountPointsClass>);
|
2018-02-09 02:30:08 +00:00
|
|
|
|
|
|
|
match fn {
|
2020-11-22 10:40:56 +00:00
|
|
|
get_type => || ffi::gst_rtsp_mount_points_get_type(),
|
2018-02-09 02:30:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl RTSPMountPoints {
|
|
|
|
pub fn new() -> RTSPMountPoints {
|
|
|
|
assert_initialized_main_thread!();
|
2020-11-22 10:40:56 +00:00
|
|
|
unsafe { from_glib_full(ffi::gst_rtsp_mount_points_new()) }
|
2018-02-09 02:30:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for RTSPMountPoints {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl Send for RTSPMountPoints {}
|
|
|
|
unsafe impl Sync for RTSPMountPoints {}
|
|
|
|
|
2019-01-16 11:32:39 +00:00
|
|
|
pub const NONE_RTSP_MOUNT_POINTS: Option<&RTSPMountPoints> = None;
|
|
|
|
|
2018-12-08 09:05:20 +00:00
|
|
|
pub trait RTSPMountPointsExt: 'static {
|
2018-02-09 02:30:08 +00:00
|
|
|
fn add_factory<P: IsA<RTSPMediaFactory>>(&self, path: &str, factory: &P);
|
|
|
|
|
2020-11-22 10:40:56 +00:00
|
|
|
fn make_path(&self, url: &gst_rtsp::RTSPUrl) -> Result<glib::GString, glib::BoolError>;
|
2018-02-09 02:30:08 +00:00
|
|
|
|
|
|
|
fn match_(&self, path: &str) -> (RTSPMediaFactory, i32);
|
|
|
|
|
|
|
|
fn remove_factory(&self, path: &str);
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<O: IsA<RTSPMountPoints>> RTSPMountPointsExt for O {
|
|
|
|
fn add_factory<P: IsA<RTSPMediaFactory>>(&self, path: &str, factory: &P) {
|
|
|
|
unsafe {
|
2020-11-22 10:40:56 +00:00
|
|
|
ffi::gst_rtsp_mount_points_add_factory(
|
2019-06-18 10:12:00 +00:00
|
|
|
self.as_ref().to_glib_none().0,
|
|
|
|
path.to_glib_none().0,
|
|
|
|
factory.as_ref().to_glib_full(),
|
|
|
|
);
|
2018-02-09 02:30:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-22 10:40:56 +00:00
|
|
|
fn make_path(&self, url: &gst_rtsp::RTSPUrl) -> Result<glib::GString, glib::BoolError> {
|
2018-02-09 02:30:08 +00:00
|
|
|
unsafe {
|
2020-11-22 10:40:56 +00:00
|
|
|
Option::<_>::from_glib_full(ffi::gst_rtsp_mount_points_make_path(
|
2019-06-18 10:12:00 +00:00
|
|
|
self.as_ref().to_glib_none().0,
|
|
|
|
url.to_glib_none().0,
|
|
|
|
))
|
2020-11-22 10:40:56 +00:00
|
|
|
.ok_or_else(|| glib::glib_bool_error!("Failed to make path"))
|
2018-02-09 02:30:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn match_(&self, path: &str) -> (RTSPMediaFactory, i32) {
|
|
|
|
unsafe {
|
2019-07-10 08:21:28 +00:00
|
|
|
let mut matched = mem::MaybeUninit::uninit();
|
2020-11-22 10:40:56 +00:00
|
|
|
let ret = from_glib_full(ffi::gst_rtsp_mount_points_match(
|
2019-06-18 10:12:00 +00:00
|
|
|
self.as_ref().to_glib_none().0,
|
|
|
|
path.to_glib_none().0,
|
2019-07-10 08:21:28 +00:00
|
|
|
matched.as_mut_ptr(),
|
2019-06-18 10:12:00 +00:00
|
|
|
));
|
2019-07-10 08:21:28 +00:00
|
|
|
let matched = matched.assume_init();
|
2018-02-09 02:30:08 +00:00
|
|
|
(ret, matched)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn remove_factory(&self, path: &str) {
|
|
|
|
unsafe {
|
2020-11-22 10:40:56 +00:00
|
|
|
ffi::gst_rtsp_mount_points_remove_factory(
|
2019-06-18 10:12:00 +00:00
|
|
|
self.as_ref().to_glib_none().0,
|
|
|
|
path.to_glib_none().0,
|
|
|
|
);
|
2018-02-09 02:30:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|