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

574 lines
18 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::{
RTSPAuth, RTSPClient, RTSPFilterResult, RTSPMountPoints, RTSPSessionPool, RTSPThreadPool,
};
use glib::{
prelude::*,
signal::{connect_raw, SignalHandlerId},
translate::*,
};
use std::boxed::Box as Box_;
glib::wrapper! {
#[doc(alias = "GstRTSPServer")]
pub struct RTSPServer(Object<ffi::GstRTSPServer, ffi::GstRTSPServerClass>);
match fn {
type_ => || ffi::gst_rtsp_server_get_type(),
}
}
impl RTSPServer {
pub const NONE: Option<&'static RTSPServer> = None;
#[doc(alias = "gst_rtsp_server_new")]
pub fn new() -> RTSPServer {
assert_initialized_main_thread!();
unsafe { from_glib_full(ffi::gst_rtsp_server_new()) }
}
#[doc(alias = "gst_rtsp_server_io_func")]
pub fn io_func(
socket: &impl IsA<gio::Socket>,
condition: glib::IOCondition,
server: &impl IsA<RTSPServer>,
) -> Result<(), glib::error::BoolError> {
skip_assert_initialized!();
unsafe {
glib::result_from_gboolean!(
ffi::gst_rtsp_server_io_func(
socket.as_ref().to_glib_none().0,
condition.into_glib(),
server.as_ref().to_glib_none().0
),
"Failed to connect the source"
)
}
}
}
impl Default for RTSPServer {
fn default() -> Self {
Self::new()
}
}
unsafe impl Send for RTSPServer {}
unsafe impl Sync for RTSPServer {}
mod sealed {
pub trait Sealed {}
impl<T: super::IsA<super::RTSPServer>> Sealed for T {}
}
pub trait RTSPServerExt: IsA<RTSPServer> + sealed::Sealed + 'static {
#[doc(alias = "gst_rtsp_server_client_filter")]
fn client_filter(
&self,
func: Option<&mut dyn (FnMut(&RTSPServer, &RTSPClient) -> RTSPFilterResult)>,
) -> Vec<RTSPClient> {
let func_data: Option<&mut dyn (FnMut(&RTSPServer, &RTSPClient) -> RTSPFilterResult)> =
func;
unsafe extern "C" fn func_func(
server: *mut ffi::GstRTSPServer,
client: *mut ffi::GstRTSPClient,
user_data: glib::ffi::gpointer,
) -> ffi::GstRTSPFilterResult {
let server = from_glib_borrow(server);
let client = from_glib_borrow(client);
let callback = user_data
as *mut Option<&mut dyn (FnMut(&RTSPServer, &RTSPClient) -> RTSPFilterResult)>;
if let Some(ref mut callback) = *callback {
callback(&server, &client)
} else {
panic!("cannot get closure...")
}
.into_glib()
}
let func = if func_data.is_some() {
Some(func_func as _)
} else {
None
};
let super_callback0: &Option<
&mut dyn (FnMut(&RTSPServer, &RTSPClient) -> RTSPFilterResult),
> = &func_data;
unsafe {
FromGlibPtrContainer::from_glib_full(ffi::gst_rtsp_server_client_filter(
self.as_ref().to_glib_none().0,
func,
super_callback0 as *const _ as *mut _,
))
}
}
#[doc(alias = "gst_rtsp_server_create_socket")]
fn create_socket(
&self,
cancellable: Option<&impl IsA<gio::Cancellable>>,
) -> Result<gio::Socket, glib::Error> {
unsafe {
let mut error = std::ptr::null_mut();
let ret = ffi::gst_rtsp_server_create_socket(
self.as_ref().to_glib_none().0,
cancellable.map(|p| p.as_ref()).to_glib_none().0,
&mut error,
);
if error.is_null() {
Ok(from_glib_full(ret))
} else {
Err(from_glib_full(error))
}
}
}
#[doc(alias = "gst_rtsp_server_create_source")]
fn create_source(
&self,
cancellable: Option<&impl IsA<gio::Cancellable>>,
) -> Result<glib::Source, glib::Error> {
unsafe {
let mut error = std::ptr::null_mut();
let ret = ffi::gst_rtsp_server_create_source(
self.as_ref().to_glib_none().0,
cancellable.map(|p| p.as_ref()).to_glib_none().0,
&mut error,
);
if error.is_null() {
Ok(from_glib_full(ret))
} else {
Err(from_glib_full(error))
}
}
}
#[doc(alias = "gst_rtsp_server_get_address")]
#[doc(alias = "get_address")]
fn address(&self) -> Option<glib::GString> {
unsafe {
from_glib_full(ffi::gst_rtsp_server_get_address(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gst_rtsp_server_get_auth")]
#[doc(alias = "get_auth")]
fn auth(&self) -> Option<RTSPAuth> {
unsafe {
from_glib_full(ffi::gst_rtsp_server_get_auth(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gst_rtsp_server_get_backlog")]
#[doc(alias = "get_backlog")]
fn backlog(&self) -> i32 {
unsafe { ffi::gst_rtsp_server_get_backlog(self.as_ref().to_glib_none().0) }
}
#[doc(alias = "gst_rtsp_server_get_bound_port")]
#[doc(alias = "get_bound_port")]
fn bound_port(&self) -> i32 {
unsafe { ffi::gst_rtsp_server_get_bound_port(self.as_ref().to_glib_none().0) }
}
#[cfg(feature = "v1_18")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
#[doc(alias = "gst_rtsp_server_get_content_length_limit")]
#[doc(alias = "get_content_length_limit")]
fn content_length_limit(&self) -> u32 {
unsafe { ffi::gst_rtsp_server_get_content_length_limit(self.as_ref().to_glib_none().0) }
}
#[doc(alias = "gst_rtsp_server_get_mount_points")]
#[doc(alias = "get_mount_points")]
fn mount_points(&self) -> Option<RTSPMountPoints> {
unsafe {
from_glib_full(ffi::gst_rtsp_server_get_mount_points(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gst_rtsp_server_get_service")]
#[doc(alias = "get_service")]
fn service(&self) -> glib::GString {
unsafe {
from_glib_full(ffi::gst_rtsp_server_get_service(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gst_rtsp_server_get_session_pool")]
#[doc(alias = "get_session_pool")]
fn session_pool(&self) -> Option<RTSPSessionPool> {
unsafe {
from_glib_full(ffi::gst_rtsp_server_get_session_pool(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gst_rtsp_server_get_thread_pool")]
#[doc(alias = "get_thread_pool")]
fn thread_pool(&self) -> Option<RTSPThreadPool> {
unsafe {
from_glib_full(ffi::gst_rtsp_server_get_thread_pool(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gst_rtsp_server_set_address")]
fn set_address(&self, address: &str) {
unsafe {
ffi::gst_rtsp_server_set_address(
self.as_ref().to_glib_none().0,
address.to_glib_none().0,
);
}
}
#[doc(alias = "gst_rtsp_server_set_auth")]
fn set_auth(&self, auth: Option<&impl IsA<RTSPAuth>>) {
unsafe {
ffi::gst_rtsp_server_set_auth(
self.as_ref().to_glib_none().0,
auth.map(|p| p.as_ref()).to_glib_none().0,
);
}
}
#[doc(alias = "gst_rtsp_server_set_backlog")]
fn set_backlog(&self, backlog: i32) {
unsafe {
ffi::gst_rtsp_server_set_backlog(self.as_ref().to_glib_none().0, backlog);
}
}
#[cfg(feature = "v1_18")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
#[doc(alias = "gst_rtsp_server_set_content_length_limit")]
fn set_content_length_limit(&self, limit: u32) {
unsafe {
ffi::gst_rtsp_server_set_content_length_limit(self.as_ref().to_glib_none().0, limit);
}
}
#[doc(alias = "gst_rtsp_server_set_mount_points")]
fn set_mount_points(&self, mounts: Option<&impl IsA<RTSPMountPoints>>) {
unsafe {
ffi::gst_rtsp_server_set_mount_points(
self.as_ref().to_glib_none().0,
mounts.map(|p| p.as_ref()).to_glib_none().0,
);
}
}
#[doc(alias = "gst_rtsp_server_set_service")]
fn set_service(&self, service: &str) {
unsafe {
ffi::gst_rtsp_server_set_service(
self.as_ref().to_glib_none().0,
service.to_glib_none().0,
);
}
}
#[doc(alias = "gst_rtsp_server_set_session_pool")]
fn set_session_pool(&self, pool: Option<&impl IsA<RTSPSessionPool>>) {
unsafe {
ffi::gst_rtsp_server_set_session_pool(
self.as_ref().to_glib_none().0,
pool.map(|p| p.as_ref()).to_glib_none().0,
);
}
}
#[doc(alias = "gst_rtsp_server_set_thread_pool")]
fn set_thread_pool(&self, pool: Option<&impl IsA<RTSPThreadPool>>) {
unsafe {
ffi::gst_rtsp_server_set_thread_pool(
self.as_ref().to_glib_none().0,
pool.map(|p| p.as_ref()).to_glib_none().0,
);
}
}
#[doc(alias = "gst_rtsp_server_transfer_connection")]
fn transfer_connection(
&self,
socket: impl IsA<gio::Socket>,
ip: &str,
port: i32,
initial_buffer: Option<&str>,
) -> Result<(), glib::error::BoolError> {
unsafe {
glib::result_from_gboolean!(
ffi::gst_rtsp_server_transfer_connection(
self.as_ref().to_glib_none().0,
socket.upcast().into_glib_ptr(),
ip.to_glib_none().0,
port,
initial_buffer.to_glib_none().0
),
"Failed to transfer to the connection"
)
}
}
#[doc(alias = "content-length-limit")]
fn get_property_content_length_limit(&self) -> u32 {
ObjectExt::property(self.as_ref(), "content-length-limit")
}
#[doc(alias = "content-length-limit")]
fn set_property_content_length_limit(&self, content_length_limit: u32) {
ObjectExt::set_property(self.as_ref(), "content-length-limit", content_length_limit)
}
#[doc(alias = "client-connected")]
fn connect_client_connected<F: Fn(&Self, &RTSPClient) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn client_connected_trampoline<
P: IsA<RTSPServer>,
F: Fn(&P, &RTSPClient) + Send + Sync + 'static,
>(
this: *mut ffi::GstRTSPServer,
object: *mut ffi::GstRTSPClient,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(
RTSPServer::from_glib_borrow(this).unsafe_cast_ref(),
&from_glib_borrow(object),
)
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"client-connected\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
client_connected_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "address")]
fn connect_address_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_address_trampoline<
P: IsA<RTSPServer>,
F: Fn(&P) + Send + Sync + 'static,
>(
this: *mut ffi::GstRTSPServer,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(RTSPServer::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::address\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
notify_address_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "backlog")]
fn connect_backlog_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_backlog_trampoline<
P: IsA<RTSPServer>,
F: Fn(&P) + Send + Sync + 'static,
>(
this: *mut ffi::GstRTSPServer,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(RTSPServer::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::backlog\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
notify_backlog_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "bound-port")]
fn connect_bound_port_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_bound_port_trampoline<
P: IsA<RTSPServer>,
F: Fn(&P) + Send + Sync + 'static,
>(
this: *mut ffi::GstRTSPServer,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(RTSPServer::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::bound-port\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
notify_bound_port_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "content-length-limit")]
fn connect_content_length_limit_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_content_length_limit_trampoline<
P: IsA<RTSPServer>,
F: Fn(&P) + Send + Sync + 'static,
>(
this: *mut ffi::GstRTSPServer,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(RTSPServer::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::content-length-limit\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
notify_content_length_limit_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "mount-points")]
fn connect_mount_points_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_mount_points_trampoline<
P: IsA<RTSPServer>,
F: Fn(&P) + Send + Sync + 'static,
>(
this: *mut ffi::GstRTSPServer,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(RTSPServer::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::mount-points\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
notify_mount_points_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "service")]
fn connect_service_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_service_trampoline<
P: IsA<RTSPServer>,
F: Fn(&P) + Send + Sync + 'static,
>(
this: *mut ffi::GstRTSPServer,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(RTSPServer::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::service\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
notify_service_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "session-pool")]
fn connect_session_pool_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_session_pool_trampoline<
P: IsA<RTSPServer>,
F: Fn(&P) + Send + Sync + 'static,
>(
this: *mut ffi::GstRTSPServer,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(RTSPServer::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::session-pool\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
notify_session_pool_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}
impl<O: IsA<RTSPServer>> RTSPServerExt for O {}