1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
use glib;
use glib::translate::*;
use glib::value::ToSendValue;
use gst;
use gst_rtsp_server_sys;

use std::fmt;

gst_define_mini_object_wrapper!(
    RTSPToken,
    RTSPTokenRef,
    gst_rtsp_server_sys::GstRTSPToken,
    || gst_rtsp_server_sys::gst_rtsp_token_get_type()
);

impl RTSPToken {
    /// Create a new empty Authorization token.
    ///
    /// # Returns
    ///
    /// a new empty authorization token.
    pub fn new_empty() -> Self {
        assert_initialized_main_thread!();
        unsafe { from_glib_full(gst_rtsp_server_sys::gst_rtsp_token_new_empty()) }
    }

    /// Create a new Authorization token with the given fieldnames and values.
    /// Arguments are given similar to `gst::Structure::new`.
    /// ## `firstfield`
    /// the first fieldname
    ///
    /// # Returns
    ///
    /// a new authorization token.
    pub fn new(values: &[(&str, &dyn ToSendValue)]) -> Self {
        assert_initialized_main_thread!();
        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
    }
}

impl RTSPTokenRef {
    pub fn get_string(&self, field: &str) -> Option<String> {
        unsafe {
            from_glib_none(gst_rtsp_server_sys::gst_rtsp_token_get_string(
                self.as_mut_ptr(),
                field.to_glib_none().0,
            ))
        }
    }

    pub fn get_structure(&self) -> Option<gst::Structure> {
        unsafe {
            from_glib_none(gst_rtsp_server_sys::gst_rtsp_token_get_structure(
                self.as_mut_ptr(),
            ))
        }
    }

    pub fn is_allowed(&self, field: &str) -> bool {
        unsafe {
            from_glib(gst_rtsp_server_sys::gst_rtsp_token_is_allowed(
                self.as_mut_ptr(),
                field.to_glib_none().0,
            ))
        }
    }

    pub fn get_mut_structure(&mut self) -> Option<&mut gst::StructureRef> {
        unsafe {
            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))
            }
        }
    }
}

impl fmt::Debug for RTSPToken {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        RTSPTokenRef::fmt(self, f)
    }
}

impl fmt::Debug for RTSPTokenRef {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_struct("RTSPToken")
            .field("structure", &self.get_structure())
            .finish()
    }
}