mirror of
https://github.com/Xetibo/ReSet.git
synced 2025-04-18 18:48:33 +02:00
34 lines
906 B
Rust
34 lines
906 B
Rust
use std::{
|
|
sync::atomic::{AtomicBool, Ordering},
|
|
thread,
|
|
time::Duration,
|
|
};
|
|
|
|
use dbus::{blocking::Connection, Error};
|
|
|
|
#[derive(Default)]
|
|
pub struct Listeners {
|
|
pub network_listener: AtomicBool,
|
|
pub bluetooth_listener: AtomicBool,
|
|
pub pulse_listener: AtomicBool,
|
|
}
|
|
|
|
impl Listeners {
|
|
pub fn stop_network_listener(&self) {
|
|
if !self.network_listener.load(Ordering::SeqCst) {
|
|
return;
|
|
}
|
|
self.network_listener.store(false, Ordering::SeqCst);
|
|
thread::spawn(|| {
|
|
let conn = Connection::new_session().unwrap();
|
|
let proxy = conn.with_proxy(
|
|
"org.xetibo.ReSet",
|
|
"/org/xetibo/ReSet",
|
|
Duration::from_millis(1000),
|
|
);
|
|
let _: Result<(bool,), Error> =
|
|
proxy.method_call("org.xetibo.ReSet", "StopNetworkListener", ());
|
|
});
|
|
}
|
|
}
|