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-04-05 17:41:31 +00:00
|
|
|
use std::mem;
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2018-04-04 18:40:45 +00:00
|
|
|
use glib::translate::*;
|
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 SDPConnection(pub(crate) gst_sdp_sys::GstSDPConnection);
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2019-12-18 15:04:42 +00:00
|
|
|
unsafe impl Send for SDPConnection {}
|
|
|
|
unsafe impl Sync for SDPConnection {}
|
|
|
|
|
2018-03-29 18:43:25 +00:00
|
|
|
impl SDPConnection {
|
2019-02-28 18:09:00 +00:00
|
|
|
pub fn new(nettype: &str, addrtype: &str, address: &str, ttl: u32, addr_number: u32) -> Self {
|
2018-04-05 17:41:31 +00:00
|
|
|
assert_initialized_main_thread!();
|
2018-03-29 18:43:25 +00:00
|
|
|
unsafe {
|
2019-07-11 13:02:46 +00:00
|
|
|
let mut conn = mem::MaybeUninit::zeroed();
|
2019-03-19 07:58:20 +00:00
|
|
|
gst_sdp_sys::gst_sdp_connection_set(
|
2019-07-11 13:02:46 +00:00
|
|
|
conn.as_mut_ptr(),
|
2018-03-29 18:43:25 +00:00
|
|
|
nettype.to_glib_none().0,
|
|
|
|
addrtype.to_glib_none().0,
|
|
|
|
address.to_glib_none().0,
|
|
|
|
ttl,
|
|
|
|
addr_number,
|
2018-04-05 18:05:49 +00:00
|
|
|
);
|
2019-07-11 13:02:46 +00:00
|
|
|
SDPConnection(conn.assume_init())
|
2018-03-29 18:43:25 +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
|
|
|
}
|
2018-03-29 18:43:25 +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
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2019-11-20 21:57:46 +00:00
|
|
|
pub fn address(&self) -> Option<&str> {
|
|
|
|
unsafe {
|
|
|
|
if self.0.address.is_null() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(CStr::from_ptr(self.0.address).to_str().unwrap())
|
|
|
|
}
|
|
|
|
}
|
2018-04-05 17:41:31 +00:00
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2018-04-05 17:41:31 +00:00
|
|
|
pub fn ttl(&self) -> u32 {
|
|
|
|
self.0.ttl as u32
|
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2018-04-05 17:41:31 +00:00
|
|
|
pub fn addr_number(&self) -> u32 {
|
|
|
|
self.0.addr_number as u32
|
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
|
2019-02-28 18:09:00 +00:00
|
|
|
impl Clone for SDPConnection {
|
|
|
|
fn clone(&self) -> Self {
|
2019-11-20 21:57:46 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
unsafe {
|
|
|
|
let mut conn = mem::MaybeUninit::zeroed();
|
|
|
|
gst_sdp_sys::gst_sdp_connection_set(
|
|
|
|
conn.as_mut_ptr(),
|
|
|
|
self.0.nettype,
|
|
|
|
self.0.addrtype,
|
|
|
|
self.0.address,
|
|
|
|
self.0.ttl,
|
|
|
|
self.0.addr_number,
|
|
|
|
);
|
|
|
|
SDPConnection(conn.assume_init())
|
|
|
|
}
|
2019-02-28 18:09:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-29 18:43:25 +00:00
|
|
|
impl Drop for SDPConnection {
|
|
|
|
fn drop(&mut self) {
|
2018-04-04 18:40:45 +00:00
|
|
|
unsafe {
|
2019-03-19 07:58:20 +00:00
|
|
|
gst_sdp_sys::gst_sdp_connection_clear(&mut self.0);
|
2018-04-04 18:40:45 +00:00
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-28 18:09:00 +00:00
|
|
|
|
|
|
|
impl fmt::Debug for SDPConnection {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
f.debug_struct("SDPConnection")
|
|
|
|
.field("nettype", &self.nettype())
|
|
|
|
.field("addrtype", &self.addrtype())
|
|
|
|
.field("address", &self.address())
|
|
|
|
.field("ttl", &self.ttl())
|
|
|
|
.field("addr_number", &self.addr_number())
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|