mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
178 lines
5.8 KiB
Rust
178 lines
5.8 KiB
Rust
#[macro_export]
|
|
macro_rules! has_attr {
|
|
($(#[$attr:meta])* $attr_name:literal $item:ident) => {
|
|
concat_idents::concat_idents!(fn_name = has_, $attr_name {
|
|
$(#[$attr])*
|
|
pub fn fn_name(&self) -> bool {
|
|
match to_device(&self.$item) {
|
|
Ok(p) => $crate::has_attr(&p, $attr_name),
|
|
Err(_) => false,
|
|
}
|
|
}
|
|
});
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! watch_attr {
|
|
($(#[$attr:meta])* $attr_name:literal $item:ident) => {
|
|
concat_idents::concat_idents!(fn_name = monitor_, $attr_name {
|
|
$(#[$attr])*
|
|
pub fn fn_name(&self) -> Result<inotify::Inotify> {
|
|
let mut path = self.$item.clone();
|
|
path.push($attr_name);
|
|
if let Some(path) = path.to_str() {
|
|
let inotify = inotify::Inotify::init()?;
|
|
inotify.watches().add(path, inotify::WatchMask::MODIFY)
|
|
.map_err(|e| {
|
|
if e.kind() == std::io::ErrorKind::NotFound {
|
|
PlatformError::AttrNotFound(format!("{}", $attr_name))
|
|
} else {
|
|
PlatformError::IoPath(format!("{}", path), e)
|
|
}
|
|
})?;
|
|
return Ok(inotify);
|
|
}
|
|
Err(PlatformError::AttrNotFound(format!("{}", $attr_name)))
|
|
}
|
|
});
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! get_attr_bool {
|
|
($(#[$attr:meta])* $attr_name:literal $item:ident) => {
|
|
concat_idents::concat_idents!(fn_name = get_, $attr_name {
|
|
$(#[$attr])*
|
|
pub fn fn_name(&self) -> Result<bool> {
|
|
$crate::read_attr_bool(&to_device(&self.$item)?, $attr_name)
|
|
}
|
|
});
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! set_attr_bool {
|
|
($(#[$attr:meta])* $attr_name:literal $item:ident) => {
|
|
concat_idents::concat_idents!(fn_name = set_, $attr_name {
|
|
$(#[$attr])*
|
|
pub fn fn_name(&self, value: bool) -> Result<()> {
|
|
$crate::write_attr_bool(&mut to_device(&self.$item)?, $attr_name, value)
|
|
}
|
|
});
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! attr_bool {
|
|
($(#[$attr:meta])* $attr_name:literal, $item:ident) => {
|
|
$crate::has_attr!($attr_name $item);
|
|
$crate::get_attr_bool!( $attr_name $item);
|
|
$crate::set_attr_bool!($attr_name $item);
|
|
$crate::watch_attr!($attr_name $item);
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! get_attr_u8 {
|
|
($(#[$attr:meta])* $attr_name:literal $item:ident) => {
|
|
concat_idents::concat_idents!(fn_name = get_, $attr_name {
|
|
$(#[$attr])*
|
|
pub fn fn_name(&self) -> Result<u8> {
|
|
$crate::read_attr_u8(&to_device(&self.$item)?, $attr_name)
|
|
}
|
|
});
|
|
};
|
|
}
|
|
|
|
/// Most attributes expect `u8` as a char, so `1` should be written as `b'1'`.
|
|
#[macro_export]
|
|
macro_rules! set_attr_u8 {
|
|
($(#[$attr:meta])* $attr_name:literal $item:ident) => {
|
|
concat_idents::concat_idents!(fn_name = set_, $attr_name {
|
|
$(#[$attr])*
|
|
pub fn fn_name(&self, value: u8) -> Result<()> {
|
|
$crate::write_attr_u8(&mut to_device(&self.$item)?, $attr_name, value)
|
|
}
|
|
});
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! attr_u8 {
|
|
($(#[$attr:meta])* $attr_name:literal, $item:ident) => {
|
|
$crate::has_attr!($(#[$attr])* $attr_name $item);
|
|
$crate::get_attr_u8!($(#[$attr])* $attr_name $item);
|
|
$crate::set_attr_u8!($(#[$attr])* $attr_name $item);
|
|
$crate::watch_attr!($(#[$attr])* $attr_name $item);
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! get_attr_u8_array {
|
|
($(#[$attr:meta])* $attr_name:literal $item:ident) => {
|
|
concat_idents::concat_idents!(fn_name = get_, $attr_name {
|
|
$(#[$attr])*
|
|
pub fn fn_name(&self) -> Result<Vec<u8>> {
|
|
$crate::read_attr_u8_array(&to_device(&self.$item)?, $attr_name)
|
|
}
|
|
});
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! set_attr_u8_array {
|
|
($(#[$attr:meta])* $attr_name:literal $item:ident) => {
|
|
concat_idents::concat_idents!(fn_name = set_, $attr_name {
|
|
$(#[$attr])*
|
|
pub fn fn_name(&self, values: &[u8]) -> Result<()> {
|
|
$crate::write_attr_u8_array(&mut to_device(&self.$item)?, $attr_name, values)
|
|
}
|
|
});
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! attr_u8_array {
|
|
($(#[$attr:meta])* $attr_name:literal, $item:ident) => {
|
|
$crate::has_attr!($attr_name $item);
|
|
$crate::get_attr_u8_array!($attr_name $item);
|
|
$crate::set_attr_u8_array!($attr_name $item);
|
|
$crate::watch_attr!($attr_name $item);
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! get_attr_string {
|
|
($(#[$attr:meta])* $attr_name:literal $item:ident) => {
|
|
concat_idents::concat_idents!(fn_name = get_, $attr_name {
|
|
$(#[$attr])*
|
|
pub fn fn_name(&self) -> Result<String> {
|
|
$crate::read_attr_string(&to_device(&self.$item)?, $attr_name)
|
|
}
|
|
});
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! set_attr_string {
|
|
($(#[$attr:meta])* $attr_name:literal $item:ident) => {
|
|
concat_idents::concat_idents!(fn_name = set_, $attr_name {
|
|
$(#[$attr])*
|
|
pub fn fn_name(&self, values: &str) -> Result<()> {
|
|
$crate::write_attr_string(&mut to_device(&self.$item)?, $attr_name, values)
|
|
}
|
|
});
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! attr_string {
|
|
($(#[$attr:meta])* $attr_name:literal, $item:ident) => {
|
|
$crate::has_attr!($attr_name $item);
|
|
$crate::get_attr_string!($attr_name $item);
|
|
$crate::set_attr_string!($attr_name $item);
|
|
$crate::watch_attr!($attr_name $item);
|
|
};
|
|
}
|