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
use super::WiFiDevice;
use crate::accesspoint::AccessPoint;
use crate::dbus_api::DBusAccessor;
use crate::errors::Error;
use crate::gen::OrgFreedesktopNetworkManagerDeviceWireless;

pub trait Wireless {
    fn get_access_points(&self) -> Result<Vec<AccessPoint>, Error>;
    fn get_all_access_points(&self) -> Result<Vec<AccessPoint>, Error>;
    fn request_scan(
        &self,
        options: ::std::collections::HashMap<&str, dbus::arg::Variant<Box<dyn dbus::arg::RefArg>>>,
    ) -> Result<(), Error>;
    fn hw_address(&self) -> Result<String, Error>;
    fn perm_hw_address(&self) -> Result<String, Error>;
    fn mode(&self) -> Result<u32, Error>;
    fn bitrate(&self) -> Result<u32, Error>;
    fn access_points(&self) -> Result<Vec<AccessPoint>, Error>;
    fn active_access_point(&self) -> Result<AccessPoint, Error>;
    fn wireless_capabilities(&self) -> Result<u32, Error>;
    fn last_scan(&self) -> Result<i64, Error>;
}

impl<'a> Wireless for WiFiDevice<'a> {
    fn request_scan(
        &self,
        options: std::collections::HashMap<&str, dbus::arg::Variant<Box<dyn dbus::arg::RefArg>>>,
    ) -> Result<(), Error> {
        Ok(proxy!(self).request_scan(options)?)
    }
    fn get_access_points(&self) -> Result<Vec<AccessPoint>, Error> {
        Ok(proxy!(self)
            .get_access_points()?
            .iter()
            .map(|x| {
                AccessPoint::new(DBusAccessor::new(
                    self.dbus_accessor.connection,
                    &self.dbus_accessor.bus,
                    x,
                ))
            })
            .collect())
    }
    fn get_all_access_points(&self) -> Result<Vec<AccessPoint>, Error> {
        Ok(proxy!(self)
            .get_all_access_points()?
            .iter()
            .map(|x| {
                AccessPoint::new(DBusAccessor::new(
                    self.dbus_accessor.connection,
                    &self.dbus_accessor.bus,
                    x,
                ))
            })
            .collect())
    }
    fn hw_address(&self) -> Result<String, Error> {
        Ok(proxy!(self).hw_address()?)
    }
    fn perm_hw_address(&self) -> Result<String, Error> {
        Ok(proxy!(self).perm_hw_address()?)
    }
    fn mode(&self) -> Result<u32, Error> {
        Ok(proxy!(self).mode()?)
    }
    fn bitrate(&self) -> Result<u32, Error> {
        Ok(proxy!(self).bitrate()?)
    }
    fn access_points(&self) -> Result<Vec<AccessPoint>, Error> {
        Ok(proxy!(self)
            .access_points()?
            .iter()
            .map(|x| {
                AccessPoint::new(DBusAccessor::new(
                    self.dbus_accessor.connection,
                    &self.dbus_accessor.bus,
                    x,
                ))
            })
            .collect())
    }
    fn active_access_point(&self) -> Result<AccessPoint, Error> {
        let path = proxy!(self).active_access_point()?;
        Ok(AccessPoint::new(DBusAccessor::new(
            self.dbus_accessor.connection,
            &self.dbus_accessor.bus,
            &path,
        )))
    }
    fn wireless_capabilities(&self) -> Result<u32, Error> {
        Ok(proxy!(self).wireless_capabilities()?)
    }
    fn last_scan(&self) -> Result<i64, Error> {
        Ok(proxy!(self).last_scan()?)
    }
}