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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
use std::sync::Arc;
use axum::extract::{ws::WebSocket};
use axum::extract::ws::Message;
use dashmap::DashMap;
use time::{Duration, Instant};
use tokio::sync::broadcast::{Sender};
use tracing::{debug, error, trace};
use crate::AppState;
use crate::config::SETTINGS;
pub type PingMap = DashMap<String, PingValue>;
#[derive(Debug, Clone)]
pub struct PingValue {
pub ip: String,
pub online: bool
}
pub async fn spawn(tx: Sender<BroadcastCommands>, ip: String, uuid: String, ping_map: &PingMap) {
let timer = Instant::now();
let payload = [0; 8];
let mut cont = true;
while cont {
let ping = surge_ping::ping(
ip.parse().expect("bad ip"),
&payload
).await;
if let Err(ping) = ping {
cont = matches!(ping, surge_ping::SurgeError::Timeout { .. });
if !cont {
error!("{}", ping.to_string());
}
if timer.elapsed() >= Duration::minutes(SETTINGS.get_int("pingtimeout").unwrap_or(10)) {
let _ = tx.send(BroadcastCommands::PingTimeout(uuid.clone()));
trace!("remove {} from ping_map after timeout", uuid);
ping_map.remove(&uuid);
cont = false;
}
} else {
let (_, duration) = ping.map_err(|err| error!("{}", err.to_string())).expect("fatal error");
debug!("Ping took {:?}", duration);
cont = false;
handle_broadcast_send(&tx, ip.clone(), ping_map, uuid.clone()).await;
};
}
}
async fn handle_broadcast_send(tx: &Sender<BroadcastCommands>, ip: String, ping_map: &PingMap, uuid: String) {
debug!("send pingsuccess message");
ping_map.insert(uuid.clone(), PingValue { ip: ip.clone(), online: true });
let _ = tx.send(BroadcastCommands::PingSuccess(uuid.clone()));
tokio::time::sleep(tokio::time::Duration::from_secs(60)).await;
trace!("remove {} from ping_map after success", uuid);
ping_map.remove(&uuid);
}
#[derive(Clone, Debug)]
pub enum BroadcastCommands {
PingSuccess(String),
PingTimeout(String)
}
pub async fn status_websocket(mut socket: WebSocket, state: Arc<AppState>) {
trace!("wait for ws message (uuid)");
let msg = socket.recv().await;
let uuid = msg.unwrap().unwrap().into_text().unwrap();
trace!("Search for uuid: {:?}", uuid);
match state.ping_map.get(&uuid) {
Some(device) => {
debug!("got device: {} (online: {})", device.ip, device.online);
let _ = socket.send(process_device(state.clone(), uuid, device.to_owned()).await).await;
},
None => {
debug!("didn't find any device");
let _ = socket.send(Message::Text(format!("notfound_{}", uuid))).await;
},
};
let _ = socket.close().await;
}
async fn process_device(state: Arc<AppState>, uuid: String, device: PingValue) -> Message {
match device.online {
true => {
debug!("already started");
Message::Text(format!("start_{}", uuid))
},
false => {
loop{
trace!("wait for tx message");
let message = state.ping_send.subscribe().recv().await.expect("fatal error");
trace!("got message {:?}", message);
return match message {
BroadcastCommands::PingSuccess(msg_uuid) => {
if msg_uuid != uuid { continue; }
trace!("message == uuid success");
Message::Text(format!("start_{}", uuid))
},
BroadcastCommands::PingTimeout(msg_uuid) => {
if msg_uuid != uuid { continue; }
trace!("message == uuid timeout");
Message::Text(format!("timeout_{}", uuid))
}
}
}
}
}
}
|