summaryrefslogtreecommitdiffstats
path: root/third_party/rust/pulse/src/operation.rs
blob: 0b6823b2cc78a3f4657965423d0776538d082957 (plain)
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
// Copyright © 2017 Mozilla Foundation
//
// This program is made available under an ISC-style license.  See the
// accompanying file LICENSE for details.

use ffi;

#[derive(Debug)]
pub struct Operation(*mut ffi::pa_operation);

impl Operation {
    pub unsafe fn from_raw_ptr(raw: *mut ffi::pa_operation) -> Operation {
        Operation(raw)
    }

    pub fn cancel(&mut self) {
        unsafe {
            ffi::pa_operation_cancel(self.0);
        }
    }

    pub fn get_state(&self) -> ffi::pa_operation_state_t {
        unsafe { ffi::pa_operation_get_state(self.0) }
    }
}

impl Clone for Operation {
    fn clone(&self) -> Self {
        Operation(unsafe { ffi::pa_operation_ref(self.0) })
    }
}

impl Drop for Operation {
    fn drop(&mut self) {
        unsafe {
            ffi::pa_operation_unref(self.0);
        }
    }
}

pub unsafe fn from_raw_ptr(raw: *mut ffi::pa_operation) -> Operation {
    Operation::from_raw_ptr(raw)
}