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
// Smelling Salts
// Copyright © 2020-2021 Jeron Aldaron Lau.
//
// Licensed under any of:
// - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
// - MIT License (https://mit-license.org/)
// - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
// At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
// LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).

use crate::{watcher::Watcher, RawDevice};
use std::task::Waker;

/// Represents some device.
#[derive(Debug)]
pub struct Device(crate::ffi::Device);

impl Device {
    /// Start checking for events on a new device from a linux file descriptor.
    pub fn new(fd: RawDevice, events: Watcher) -> Self {
        Device(crate::ffi::Device::new(fd, events))
    }

    /// Register a waker to wake when the device gets an event.
    pub fn register_waker(&self, waker: &Waker) {
        self.0.register_waker(waker);
    }

    /// Convenience function to get the raw File Descriptor of the Device.
    pub fn raw(&self) -> RawDevice {
        self.0.raw()
    }

    /// Stop checking for events on a device from a linux file descriptor.
    #[allow(clippy::mutex_atomic)]
    pub fn old(&mut self) {
        self.0.old()
    }

    /// Returns true if this device hasn't been waked up.
    pub fn should_yield(&self) -> bool {
        self.0.should_yield()
    }
}