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
//! Defines the profile type of pipeline.

use crate::{
    common::*,
    device::Device,
    error::{ErrorChecker, Result},
    stream_profile_list::StreamProfileList,
};

#[derive(Debug)]
pub struct PipelineProfile {
    ptr: NonNull<sys::rs2_pipeline_profile>,
}

impl PipelineProfile {
    /// Gets corresponding device of pipeline.
    pub fn device(&self) -> Result<Device> {
        let ptr = unsafe {
            let mut checker = ErrorChecker::new();
            let ptr =
                sys::rs2_pipeline_profile_get_device(self.ptr.as_ptr(), checker.inner_mut_ptr());
            checker.check()?;
            ptr
        };

        let device = unsafe { Device::from_raw(ptr) };
        Ok(device)
    }

    /// Gets iterable list of streams of pipeline.
    pub fn streams(&self) -> Result<StreamProfileList> {
        let ptr = unsafe {
            let mut checker = ErrorChecker::new();
            let ptr =
                sys::rs2_pipeline_profile_get_streams(self.ptr.as_ptr(), checker.inner_mut_ptr());
            checker.check()?;
            ptr
        };

        let list = unsafe { StreamProfileList::from_raw(ptr) };
        Ok(list)
    }

    pub fn into_raw(self) -> *mut sys::rs2_pipeline_profile {
        let ptr = self.ptr;
        mem::forget(self);
        ptr.as_ptr()
    }

    pub unsafe fn from_raw(ptr: *mut sys::rs2_pipeline_profile) -> Self {
        Self {
            ptr: NonNull::new(ptr).unwrap(),
        }
    }

    pub(crate) unsafe fn unsafe_clone(&self) -> Self {
        Self { ptr: self.ptr }
    }
}

impl Drop for PipelineProfile {
    fn drop(&mut self) {
        unsafe {
            sys::rs2_delete_pipeline_profile(self.ptr.as_ptr());
        }
    }
}

unsafe impl Send for PipelineProfile {}