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
use glib::{translate::ToGlibPtr, wrapper};

use crate::FpDevice;

wrapper! {
    /// This struct allows you to discover fingerprint scanning hardware. This is the starting point when integrating libfprint-rs into your software.
    pub struct FpContext(Object<libfprint_sys::FpContext, libfprint_sys::FpContextClass>);
    match fn {
        type_ => || libfprint_sys::fp_context_get_type() as usize,
    }
}
impl FpContext {
    #[cfg(not(doctest))]
    /// Create a new `FpContext`
    /// # Examples:
    /// ```rust
    /// use libfprint_rs::FpContext;
    ///
    /// let context = FpContext::new();
    /// ```
    pub fn new() -> Self {
        unsafe { glib::translate::from_glib_none(libfprint_sys::fp_context_new()) }
    }
    #[cfg(not(doctest))]
    /// Get the list of devices connected to the system
    /// # Examples:
    /// ```rust
    /// use libfprint_rs::FpContext;
    ///
    /// let context = FpContext::new();
    /// let devices = context.devices();
    /// ```
    pub fn devices(&self) -> Vec<FpDevice> {
        use glib::translate::FromGlibPtrContainer;

        unsafe {
            let devs = libfprint_sys::fp_context_get_devices(self.to_glib_none().0);

            let devs = devs.cast::<glib::ffi::GPtrArray>();
            FromGlibPtrContainer::from_glib_none(devs)
        }
    }

    /// Enumerate all the devices connected to the system
    ///
    /// This function will enumerate all the devices connected to the system and add them to the context.
    pub fn enumerate(&self) {
        unsafe {
            libfprint_sys::fp_context_enumerate(self.to_glib_none().0);
        }
    }
}