2020-12-15 10:53:31 +00:00
|
|
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
2018-03-29 18:43:25 +00:00
|
|
|
|
|
|
|
use std::ffi::CStr;
|
2019-02-28 18:09:00 +00:00
|
|
|
use std::fmt;
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2020-10-24 17:06:59 +00:00
|
|
|
#[repr(transparent)]
|
2021-06-01 13:15:59 +00:00
|
|
|
#[doc(alias = "GstSDPOrigin")]
|
2020-11-22 10:38:16 +00:00
|
|
|
pub struct SDPOrigin(pub(crate) ffi::GstSDPOrigin);
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2019-12-18 15:04:42 +00:00
|
|
|
unsafe impl Send for SDPOrigin {}
|
|
|
|
unsafe impl Sync for SDPOrigin {}
|
|
|
|
|
2018-03-29 18:43:25 +00:00
|
|
|
impl SDPOrigin {
|
2019-11-20 21:57:46 +00:00
|
|
|
pub fn username(&self) -> Option<&str> {
|
|
|
|
unsafe {
|
|
|
|
if self.0.username.is_null() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(CStr::from_ptr(self.0.username).to_str().unwrap())
|
|
|
|
}
|
|
|
|
}
|
2018-04-05 17:41:31 +00:00
|
|
|
}
|
|
|
|
|
2019-11-20 21:57:46 +00:00
|
|
|
pub fn sess_id(&self) -> Option<&str> {
|
|
|
|
unsafe {
|
|
|
|
if self.0.sess_id.is_null() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(CStr::from_ptr(self.0.sess_id).to_str().unwrap())
|
|
|
|
}
|
|
|
|
}
|
2018-04-05 17:41:31 +00:00
|
|
|
}
|
|
|
|
|
2019-11-20 21:57:46 +00:00
|
|
|
pub fn sess_version(&self) -> Option<&str> {
|
|
|
|
unsafe {
|
|
|
|
if self.0.sess_version.is_null() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(CStr::from_ptr(self.0.sess_version).to_str().unwrap())
|
|
|
|
}
|
|
|
|
}
|
2018-04-05 17:41:31 +00:00
|
|
|
}
|
|
|
|
|
2019-11-20 21:57:46 +00:00
|
|
|
pub fn nettype(&self) -> Option<&str> {
|
|
|
|
unsafe {
|
|
|
|
if self.0.nettype.is_null() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(CStr::from_ptr(self.0.nettype).to_str().unwrap())
|
|
|
|
}
|
|
|
|
}
|
2018-04-05 17:41:31 +00:00
|
|
|
}
|
|
|
|
|
2019-11-20 21:57:46 +00:00
|
|
|
pub fn addrtype(&self) -> Option<&str> {
|
|
|
|
unsafe {
|
|
|
|
if self.0.addrtype.is_null() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(CStr::from_ptr(self.0.addrtype).to_str().unwrap())
|
|
|
|
}
|
|
|
|
}
|
2018-04-05 17:41:31 +00:00
|
|
|
}
|
|
|
|
|
2019-11-20 21:57:46 +00:00
|
|
|
pub fn addr(&self) -> Option<&str> {
|
|
|
|
unsafe {
|
|
|
|
if self.0.addr.is_null() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(CStr::from_ptr(self.0.addr).to_str().unwrap())
|
|
|
|
}
|
|
|
|
}
|
2018-04-05 17:41:31 +00:00
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
2019-02-28 18:09:00 +00:00
|
|
|
|
|
|
|
impl fmt::Debug for SDPOrigin {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
f.debug_struct("SDPOrigin")
|
|
|
|
.field("username", &self.username())
|
|
|
|
.field("sess_id", &self.sess_id())
|
|
|
|
.field("sess_version", &self.sess_version())
|
|
|
|
.field("nettype", &self.nettype())
|
|
|
|
.field("addrtype", &self.addrtype())
|
|
|
|
.field("addr", &self.addr())
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|