summaryrefslogtreecommitdiff
path: root/src/services
diff options
context:
space:
mode:
authorFxQnLr <[email protected]>2023-11-02 20:57:47 +0100
committerFxQnLr <[email protected]>2023-11-02 20:57:47 +0100
commit94104b621e2eec44dd90eb22fae2db2ce4938b87 (patch)
treec357bcaca0681caf9a6742c857bb494dc4315900 /src/services
parent5b7302cf9be4e0badd691203e160ca110613e34c (diff)
downloadwebol-94104b621e2eec44dd90eb22fae2db2ce4938b87.tar
webol-94104b621e2eec44dd90eb22fae2db2ce4938b87.tar.gz
webol-94104b621e2eec44dd90eb22fae2db2ce4938b87.zip
update dependencies
Diffstat (limited to 'src/services')
-rw-r--r--src/services/ping.rs23
1 files changed, 14 insertions, 9 deletions
diff --git a/src/services/ping.rs b/src/services/ping.rs
index a26dacc..d900acb 100644
--- a/src/services/ping.rs
+++ b/src/services/ping.rs
@@ -41,7 +41,7 @@ pub async fn spawn(tx: Sender<BroadcastCommands>, ip: String, uuid: String, ping
41 } 41 }
42 } else { 42 } else {
43 let (_, duration) = ping.map_err(|err| error!("{}", err.to_string())).expect("fatal error"); 43 let (_, duration) = ping.map_err(|err| error!("{}", err.to_string())).expect("fatal error");
44 debug!("Ping took {:?}", duration); 44 debug!("ping took {:?}", duration);
45 cont = false; 45 cont = false;
46 handle_broadcast_send(&tx, ip.clone(), ping_map, uuid.clone()).await; 46 handle_broadcast_send(&tx, ip.clone(), ping_map, uuid.clone()).await;
47 }; 47 };
@@ -50,10 +50,12 @@ pub async fn spawn(tx: Sender<BroadcastCommands>, ip: String, uuid: String, ping
50 50
51async fn handle_broadcast_send(tx: &Sender<BroadcastCommands>, ip: String, ping_map: &PingMap, uuid: String) { 51async fn handle_broadcast_send(tx: &Sender<BroadcastCommands>, ip: String, ping_map: &PingMap, uuid: String) {
52 debug!("send pingsuccess message"); 52 debug!("send pingsuccess message");
53 ping_map.insert(uuid.clone(), PingValue { ip: ip.clone(), online: true });
54 let _ = tx.send(BroadcastCommands::PingSuccess(uuid.clone())); 53 let _ = tx.send(BroadcastCommands::PingSuccess(uuid.clone()));
54 trace!("sent message");
55 ping_map.insert(uuid.clone(), PingValue { ip: ip.clone(), online: true });
56 trace!("updated ping_map");
55 tokio::time::sleep(tokio::time::Duration::from_secs(60)).await; 57 tokio::time::sleep(tokio::time::Duration::from_secs(60)).await;
56 trace!("remove {} from ping_map after success", uuid); 58 debug!("remove {} from ping_map after success", uuid);
57 ping_map.remove(&uuid); 59 ping_map.remove(&uuid);
58} 60}
59 61
@@ -70,12 +72,12 @@ pub async fn status_websocket(mut socket: WebSocket, state: Arc<AppState>) {
70 72
71 trace!("Search for uuid: {:?}", uuid); 73 trace!("Search for uuid: {:?}", uuid);
72 74
73 match state.ping_map.get(&uuid) { 75 let device_exists = state.ping_map.contains_key(&uuid);
74 Some(device) => { 76 match device_exists {
75 debug!("got device: {} (online: {})", device.ip, device.online); 77 true => {
76 let _ = socket.send(process_device(state.clone(), uuid, device.to_owned()).await).await; 78 let _ = socket.send(process_device(state.clone(), uuid).await).await;
77 }, 79 },
78 None => { 80 false => {
79 debug!("didn't find any device"); 81 debug!("didn't find any device");
80 let _ = socket.send(Message::Text(format!("notfound_{}", uuid))).await; 82 let _ = socket.send(Message::Text(format!("notfound_{}", uuid))).await;
81 }, 83 },
@@ -84,7 +86,10 @@ pub async fn status_websocket(mut socket: WebSocket, state: Arc<AppState>) {
84 let _ = socket.close().await; 86 let _ = socket.close().await;
85} 87}
86 88
87async fn process_device(state: Arc<AppState>, uuid: String, device: PingValue) -> Message { 89async fn process_device(state: Arc<AppState>, uuid: String) -> Message {
90 let pm = state.ping_map.clone().into_read_only();
91 let device = pm.get(&uuid).expect("fatal error");
92 debug!("got device: {} (online: {})", device.ip, device.online);
88 match device.online { 93 match device.online {
89 true => { 94 true => {
90 debug!("already started"); 95 debug!("already started");