gstreamer-rs/gstreamer-rtsp-server/src/rtsp_token.rs

87 lines
2.2 KiB
Rust
Raw Normal View History

2018-03-01 23:46:12 +00:00
use glib;
use glib::translate::*;
2018-04-01 08:30:03 +00:00
use glib::value::ToSendValue;
use gst;
use gst::miniobject::*;
2019-03-19 07:58:20 +00:00
use gst_rtsp_server_sys;
use std::fmt;
2018-03-01 23:46:12 +00:00
2019-03-19 07:58:20 +00:00
gst_define_mini_object_wrapper!(
RTSPToken,
RTSPTokenRef,
gst_rtsp_server_sys::GstRTSPToken,
[Debug,],
|| gst_rtsp_server_sys::gst_rtsp_token_get_type()
);
2018-03-01 23:46:12 +00:00
impl RTSPToken {
pub fn new_empty() -> Self {
2018-03-01 23:46:12 +00:00
assert_initialized_main_thread!();
2019-03-19 07:58:20 +00:00
unsafe { from_glib_full(gst_rtsp_server_sys::gst_rtsp_token_new_empty()) }
2018-03-01 23:46:12 +00:00
}
pub fn new(values: &[(&str, &ToSendValue)]) -> Self {
let mut token = RTSPToken::new_empty();
{
let token = token.get_mut().unwrap();
let structure = token.get_mut_structure().unwrap();
for &(f, v) in values {
structure.set_value(f, v.to_send_value());
}
}
token
}
2018-03-01 23:46:12 +00:00
}
impl RTSPTokenRef {
pub fn get_string(&self, field: &str) -> Option<String> {
unsafe {
2019-03-19 07:58:20 +00:00
from_glib_none(gst_rtsp_server_sys::gst_rtsp_token_get_string(
2018-04-01 08:30:03 +00:00
self.as_mut_ptr(),
field.to_glib_none().0,
))
2018-03-01 23:46:12 +00:00
}
}
pub fn get_structure(&self) -> Option<gst::Structure> {
2019-03-19 07:58:20 +00:00
unsafe {
from_glib_none(gst_rtsp_server_sys::gst_rtsp_token_get_structure(
self.as_mut_ptr(),
))
}
2018-03-01 23:46:12 +00:00
}
pub fn is_allowed(&self, field: &str) -> bool {
unsafe {
2019-03-19 07:58:20 +00:00
from_glib(gst_rtsp_server_sys::gst_rtsp_token_is_allowed(
2018-04-01 08:30:03 +00:00
self.as_mut_ptr(),
field.to_glib_none().0,
))
2018-03-01 23:46:12 +00:00
}
}
pub fn get_mut_structure(&mut self) -> Option<&mut gst::StructureRef> {
unsafe {
2019-03-19 07:58:20 +00:00
let structure =
gst_rtsp_server_sys::gst_rtsp_token_writable_structure(self.as_mut_ptr());
if structure.is_null() {
None
} else {
Some(gst::StructureRef::from_glib_borrow_mut(structure))
}
}
}
}
2018-03-01 23:46:12 +00:00
impl fmt::Debug for RTSPTokenRef {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("RTSPToken")
.field("structure", &self.get_structure())
.finish()
2018-03-01 23:46:12 +00:00
}
}