2018-03-29 18:43:25 +00:00
|
|
|
// Copyright (C) 2018 Sebastian Dröge <sebastian@centricular.com>
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
use std::ffi::CStr;
|
2019-02-28 18:09:00 +00:00
|
|
|
use std::fmt;
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2019-03-19 07:58:20 +00:00
|
|
|
use gst_sdp_sys;
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2018-04-04 18:40:45 +00:00
|
|
|
#[repr(C)]
|
2019-03-19 07:58:20 +00:00
|
|
|
pub struct SDPOrigin(pub(crate) gst_sdp_sys::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()
|
|
|
|
}
|
|
|
|
}
|