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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
// Take a look at the license at the top of the repository in the LICENSE file.

use std::{
    marker::PhantomData,
    ptr::{self, addr_of},
};

use glib::{prelude::*, translate::*};
use gst_rtsp::{rtsp_message::RTSPMessage, RTSPUrl};

use crate::{RTSPClient, RTSPSession, RTSPToken};

/// Information passed around containing the context of a request.
#[derive(Debug, PartialEq, Eq)]
#[doc(alias = "GstRTSPContext")]
#[repr(transparent)]
pub struct RTSPContext(ptr::NonNull<ffi::GstRTSPContext>);

impl RTSPContext {
    #[inline]
    pub fn with_current_context<F: FnOnce(&RTSPContext) -> T, T>(func: F) -> Option<T> {
        unsafe {
            let ptr = ffi::gst_rtsp_context_get_current();
            if ptr.is_null() {
                return None;
            }

            let ctx = RTSPContext(ptr::NonNull::new_unchecked(ptr));
            Some(func(&ctx))
        }
    }

    #[inline]
    pub fn uri(&self) -> Option<&RTSPUrl> {
        unsafe {
            let ptr = self.0.as_ptr();
            if (*ptr).uri.is_null() {
                None
            } else {
                let uri = RTSPUrl::from_glib_ptr_borrow(
                    addr_of!((*ptr).uri) as *const *const gst_rtsp::ffi::GstRTSPUrl
                );
                Some(uri)
            }
        }
    }

    #[inline]
    pub fn client(&self) -> Option<&RTSPClient> {
        unsafe {
            let ptr = self.0.as_ptr();
            if (*ptr).client.is_null() {
                None
            } else {
                let client = RTSPClient::from_glib_ptr_borrow(
                    addr_of!((*ptr).client) as *const *const ffi::GstRTSPClient
                );
                Some(client)
            }
        }
    }

    #[inline]
    pub fn request(&self) -> Option<&RTSPMessage> {
        unsafe {
            let ptr = self.0.as_ptr();
            if (*ptr).request.is_null() {
                None
            } else {
                let msg = RTSPMessage::from_glib_ptr_borrow(
                    addr_of!((*ptr).request) as *const *const gst_rtsp::ffi::GstRTSPMessage
                );
                Some(msg)
            }
        }
    }

    #[inline]
    pub fn response(&self) -> Option<&RTSPMessage> {
        unsafe {
            let ptr = self.0.as_ptr();
            if (*ptr).response.is_null() {
                None
            } else {
                let msg = RTSPMessage::from_glib_ptr_borrow(
                    addr_of!((*ptr).response) as *const *const gst_rtsp::ffi::GstRTSPMessage
                );
                Some(msg)
            }
        }
    }

    #[inline]
    pub fn session(&self) -> Option<&RTSPSession> {
        unsafe {
            let ptr = self.0.as_ptr();
            if (*ptr).session.is_null() {
                None
            } else {
                let sess = RTSPSession::from_glib_ptr_borrow(
                    addr_of!((*ptr).session) as *const *const ffi::GstRTSPSession
                );
                Some(sess)
            }
        }
    }

    #[inline]
    pub fn token(&self) -> Option<RTSPToken> {
        unsafe {
            let ptr = self.0.as_ptr();
            if (*ptr).token.is_null() {
                None
            } else {
                let token = RTSPToken::from_glib_none((*ptr).token as *const ffi::GstRTSPToken);
                Some(token)
            }
        }
    }

    /// Set the token for `self`.
    /// ## `token`
    /// a [`RTSPToken`][crate::RTSPToken]
    #[cfg(feature = "v1_22")]
    #[doc(alias = "gst_rtsp_context_set_token")]
    pub fn set_token(&self, token: RTSPToken) {
        unsafe {
            ffi::gst_rtsp_context_set_token(self.0.as_ptr(), token.into_glib_ptr());
        }
    }

    // TODO: Add additional getters for all the contained fields as needed
}

#[doc(hidden)]
impl FromGlibPtrBorrow<*mut ffi::GstRTSPContext> for RTSPContext {
    #[inline]
    unsafe fn from_glib_borrow(ptr: *mut ffi::GstRTSPContext) -> Borrowed<Self> {
        debug_assert!(!ptr.is_null());
        Borrowed::new(RTSPContext(ptr::NonNull::new_unchecked(ptr)))
    }
}

#[doc(hidden)]
impl<'a> ToGlibPtr<'a, *mut ffi::GstRTSPContext> for RTSPContext {
    type Storage = PhantomData<&'a RTSPContext>;

    #[inline]
    fn to_glib_none(&'a self) -> Stash<'a, *mut ffi::GstRTSPContext, Self> {
        Stash(self.0.as_ptr(), PhantomData)
    }

    fn to_glib_full(&self) -> *mut ffi::GstRTSPContext {
        unimplemented!()
    }
}