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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git)
// DO NOT EDIT

use crate::{RTSPMedia, RTSPStreamTransport};
use glib::{prelude::*, translate::*};

glib::wrapper! {
    /// State of a client session regarding a specific media identified by path.
    ///
    /// # Implements
    ///
    /// [`RTSPSessionMediaExt`][trait@crate::prelude::RTSPSessionMediaExt], [`trait@glib::ObjectExt`]
    #[doc(alias = "GstRTSPSessionMedia")]
    pub struct RTSPSessionMedia(Object<ffi::GstRTSPSessionMedia, ffi::GstRTSPSessionMediaClass>);

    match fn {
        type_ => || ffi::gst_rtsp_session_media_get_type(),
    }
}

impl RTSPSessionMedia {
    pub const NONE: Option<&'static RTSPSessionMedia> = None;

    /// Create a new [`RTSPSessionMedia`][crate::RTSPSessionMedia] that manages the streams
    /// in `media` for `path`. `media` should be prepared.
    ///
    /// Ownership is taken of `media`.
    /// ## `path`
    /// the path
    /// ## `media`
    /// the [`RTSPMedia`][crate::RTSPMedia]
    ///
    /// # Returns
    ///
    /// a new [`RTSPSessionMedia`][crate::RTSPSessionMedia].
    #[doc(alias = "gst_rtsp_session_media_new")]
    pub fn new(path: &str, media: impl IsA<RTSPMedia>) -> RTSPSessionMedia {
        skip_assert_initialized!();
        unsafe {
            from_glib_full(ffi::gst_rtsp_session_media_new(
                path.to_glib_none().0,
                media.upcast().into_glib_ptr(),
            ))
        }
    }
}

unsafe impl Send for RTSPSessionMedia {}
unsafe impl Sync for RTSPSessionMedia {}

mod sealed {
    pub trait Sealed {}
    impl<T: super::IsA<super::RTSPSessionMedia>> Sealed for T {}
}

/// Trait containing all [`struct@RTSPSessionMedia`] methods.
///
/// # Implementors
///
/// [`RTSPSessionMedia`][struct@crate::RTSPSessionMedia]
pub trait RTSPSessionMediaExt: IsA<RTSPSessionMedia> + sealed::Sealed + 'static {
    //#[doc(alias = "gst_rtsp_session_media_alloc_channels")]
    //fn alloc_channels(&self, range: /*Ignored*/gst_rtsp::RTSPRange) -> bool {
    //    unsafe { TODO: call ffi:gst_rtsp_session_media_alloc_channels() }
    //}

    /// Get the base_time of the [`RTSPMedia`][crate::RTSPMedia] in `self`
    ///
    /// # Returns
    ///
    /// the base_time of the media.
    #[doc(alias = "gst_rtsp_session_media_get_base_time")]
    #[doc(alias = "get_base_time")]
    fn base_time(&self) -> Option<gst::ClockTime> {
        unsafe {
            from_glib(ffi::gst_rtsp_session_media_get_base_time(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    /// Get the [`RTSPMedia`][crate::RTSPMedia] that was used when constructing `self`
    ///
    /// # Returns
    ///
    /// the [`RTSPMedia`][crate::RTSPMedia] of `self`.
    /// Remains valid as long as `self` is valid.
    #[doc(alias = "gst_rtsp_session_media_get_media")]
    #[doc(alias = "get_media")]
    fn media(&self) -> Option<RTSPMedia> {
        unsafe {
            from_glib_none(ffi::gst_rtsp_session_media_get_media(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    /// Retrieve the RTP-Info header string for all streams in `self`
    /// with configured transports.
    ///
    /// # Returns
    ///
    /// The RTP-Info as a string or
    /// [`None`] when no RTP-Info could be generated, `g_free()` after usage.
    #[doc(alias = "gst_rtsp_session_media_get_rtpinfo")]
    #[doc(alias = "get_rtpinfo")]
    fn rtpinfo(&self) -> Option<glib::GString> {
        unsafe {
            from_glib_full(ffi::gst_rtsp_session_media_get_rtpinfo(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    //#[doc(alias = "gst_rtsp_session_media_get_rtsp_state")]
    //#[doc(alias = "get_rtsp_state")]
    //fn rtsp_state(&self) -> /*Ignored*/gst_rtsp::RTSPState {
    //    unsafe { TODO: call ffi:gst_rtsp_session_media_get_rtsp_state() }
    //}

    /// Get a previously created [`RTSPStreamTransport`][crate::RTSPStreamTransport] for the stream at `idx`.
    /// ## `idx`
    /// the stream index
    ///
    /// # Returns
    ///
    /// a [`RTSPStreamTransport`][crate::RTSPStreamTransport] that is
    /// valid until the session of `self` is unreffed.
    #[doc(alias = "gst_rtsp_session_media_get_transport")]
    #[doc(alias = "get_transport")]
    fn transport(&self, idx: u32) -> Option<RTSPStreamTransport> {
        unsafe {
            from_glib_none(ffi::gst_rtsp_session_media_get_transport(
                self.as_ref().to_glib_none().0,
                idx,
            ))
        }
    }

    /// Get a list of all available [`RTSPStreamTransport`][crate::RTSPStreamTransport] in this session.
    ///
    /// # Returns
    ///
    /// a
    /// list of [`RTSPStreamTransport`][crate::RTSPStreamTransport], g_ptr_array_unref () after usage.
    #[doc(alias = "gst_rtsp_session_media_get_transports")]
    #[doc(alias = "get_transports")]
    fn transports(&self) -> Vec<RTSPStreamTransport> {
        unsafe {
            FromGlibPtrContainer::from_glib_full(ffi::gst_rtsp_session_media_get_transports(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    /// Check if the path of `self` matches `path`. It `path` matches, the amount of
    /// matched characters is returned in `matched`.
    /// ## `path`
    /// a path
    ///
    /// # Returns
    ///
    /// [`true`] when `path` matches the path of `self`.
    ///
    /// ## `matched`
    /// the amount of matched characters of `path`
    #[doc(alias = "gst_rtsp_session_media_matches")]
    fn matches(&self, path: &str) -> Option<i32> {
        unsafe {
            let mut matched = std::mem::MaybeUninit::uninit();
            let ret = from_glib(ffi::gst_rtsp_session_media_matches(
                self.as_ref().to_glib_none().0,
                path.to_glib_none().0,
                matched.as_mut_ptr(),
            ));
            if ret {
                Some(matched.assume_init())
            } else {
                None
            }
        }
    }

    //#[doc(alias = "gst_rtsp_session_media_set_rtsp_state")]
    //fn set_rtsp_state(&self, state: /*Ignored*/gst_rtsp::RTSPState) {
    //    unsafe { TODO: call ffi:gst_rtsp_session_media_set_rtsp_state() }
    //}

    /// Tell the media object `self` to change to `state`.
    /// ## `state`
    /// the new state
    ///
    /// # Returns
    ///
    /// [`true`] on success.
    #[doc(alias = "gst_rtsp_session_media_set_state")]
    fn set_state(&self, state: gst::State) -> Result<(), glib::error::BoolError> {
        unsafe {
            glib::result_from_gboolean!(
                ffi::gst_rtsp_session_media_set_state(
                    self.as_ref().to_glib_none().0,
                    state.into_glib()
                ),
                "Failed to set state of session media"
            )
        }
    }

    //#[doc(alias = "gst_rtsp_session_media_set_transport")]
    //fn set_transport(&self, stream: &impl IsA<RTSPStream>, tr: /*Ignored*/gst_rtsp::RTSPTransport) -> RTSPStreamTransport {
    //    unsafe { TODO: call ffi:gst_rtsp_session_media_set_transport() }
    //}
}

impl<O: IsA<RTSPSessionMedia>> RTSPSessionMediaExt for O {}