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
114
115
116
117
118
119
120
121
122
123
|
/*
wearechat - generic multiplayer game with voip
Copyright (C) 2025 metamuffin
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, version 3 of the License only.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
use crate::network::Network;
use anyhow::Result;
use egui::{Grid, Widget};
use log::debug;
use std::{collections::HashSet, marker::PhantomData, sync::RwLock};
use weareshared::{
helper::ReadWrite,
packets::{Packet, Resource},
store::{ResourceStore, resource_hash},
};
pub struct Downloader {
inner: RwLock<DownloaderState>,
}
struct DownloaderState {
have: HashSet<Resource>,
need: HashSet<Resource>,
pending: HashSet<Resource>,
store: ResourceStore,
}
impl Downloader {
pub fn new(store: ResourceStore) -> Self {
Self {
inner: DownloaderState {
have: HashSet::new(),
need: HashSet::new(),
pending: HashSet::new(),
store,
}
.into(),
}
}
pub fn try_get<T: ReadWrite>(&self, hash: Resource<T>) -> Result<Option<T>> {
self.try_get_raw(Resource(hash.0, PhantomData))?
.map(|x| T::read(&mut x.as_slice()))
.transpose()
}
pub fn try_get_raw(&self, hash: Resource) -> Result<Option<Vec<u8>>> {
let mut state = self.inner.write().unwrap();
if state.have.contains(&hash) {
state.store.get_raw(hash)
} else if state.need.contains(&hash) {
Ok(None)
} else if let Some(res) = state.store.get_raw(hash)? {
state.have.insert(hash);
Ok(Some(res))
} else {
state.need.insert(hash);
Ok(None)
}
}
pub fn packet(&self, p: &Packet) -> Result<()> {
let mut state = self.inner.write().unwrap();
match p {
Packet::RespondResource(_, d) => {
let key = Resource(resource_hash(&d.0), PhantomData);
state.store.set_raw(&d.0)?;
state.need.remove(&key);
state.pending.remove(&key);
if state.have.insert(key) {
debug!("have {key}");
}
}
_ => (),
}
Ok(())
}
pub fn update(&self, network: &Network) -> Result<()> {
let mut state = self.inner.write().unwrap();
let mut new_pending = Vec::new();
for n in state
.need
.difference(&state.pending)
.take(32 - state.pending.len())
{
network
.packet_send
.send(Packet::RequestResource(*n))
.unwrap();
debug!("need {n}");
new_pending.push(*n);
}
state.pending.extend(new_pending);
Ok(())
}
}
impl Widget for &Downloader {
fn ui(self, ui: &mut egui::Ui) -> egui::Response {
let state = self.inner.read().unwrap();
Grid::new("dl")
.num_columns(2)
.show(ui, |ui| {
ui.label("Need");
ui.label(state.need.len().to_string());
ui.end_row();
ui.label("Pending");
ui.label(state.pending.len().to_string());
ui.end_row();
ui.label("Have");
ui.label(state.have.len().to_string());
ui.end_row();
})
.response
}
}
|