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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
use super::{
super::data::{
audio_info::{AudioInfo, AudioInfoKey},
ipc::{IFCollectionOutputData, IPC},
},
subs::peer_representation::{self, PeerRepresentation},
};
use bincode;
use libp2p::{
core::PeerId,
kad::{
record,
store::{MemoryStore, RecordStore},
Kademlia, KademliaEvent, PeerRecord, PutRecordOk, QueryResult, Quorum, Record,
},
};
#[allow(non_camel_case_types)]
#[derive(Serialize, Deserialize, Clone, Debug)]
pub enum MkadKeys {
KeyForPeerFinished(PeerRepresentation),
SingleAudioRecord(AudioInfoKey),
}
pub struct NetStorage {
nr_peers: usize,
}
impl NetStorage {
pub fn new() -> Self {
Self { nr_peers: 0 }
}
pub fn inc(&mut self) {
self.nr_peers += 1;
}
pub fn dec(&mut self) {
if self.nr_peers > 0 {
self.nr_peers -= 1;
} else {
error!("Trying to remove more peers as are known. Will not happen")
}
}
pub fn peers(&self) -> usize {
self.nr_peers
}
pub fn write_ipc(
&mut self,
kademlia: &mut Kademlia<MemoryStore>,
own_peer: u64,
ipc_event: IPC,
) {
if self.peers() == 0 {
warn!("There are no known peers that would react to writing to net storage yet!");
} else {
let bin_key;
let serialize_message = match ipc_event {
IPC::DoneSearching(out_data) => {
bin_key = Self::key_writer(MkadKeys::KeyForPeerFinished(own_peer));
let value_to_send = out_data;
if let Some(already_peer_finished_record) = kademlia.store_mut().get(&bin_key) {
let try_collection_output: Result<IFCollectionOutputData, bincode::Error> =
bincode::deserialize(already_peer_finished_record.value.as_ref());
if let Ok(found_and_deserializable) = try_collection_output {
info!(
"This record was already found somewhere else, and has {:?}!",
found_and_deserializable
);
}
} else {
trace!(
"this key {:?} was not yet set in the kademlia store with value!",
bin_key
);
}
Some(bincode::serialize(&value_to_send).unwrap())
}
IPC::PublishSingleAudioDataRecord(audio_key, audio_info) => {
bin_key = Self::key_writer(MkadKeys::SingleAudioRecord(audio_key));
if let Some(already_audio_record) = kademlia.store_mut().get(&bin_key) {
let already_audio_data: Result<AudioInfo, bincode::Error> =
bincode::deserialize(already_audio_record.value.as_ref());
if let Ok(found_and_deserializable) = already_audio_data {
info!(
"This record was already found somewhere else, and put as {}!",
found_and_deserializable.file_name
);
} else {
info!("This record was already there and not even de-serializable!");
}
None
} else {
Some(bincode::serialize(&audio_info).unwrap())
}
}
};
if let Some(bin_message) = serialize_message {
let record = Record {
key: bin_key,
value: bin_message,
publisher: None,
expires: None,
};
kademlia
.put_record(record, Quorum::One)
.expect("Failed to store record in kademlia locally.");
} else {
warn!("not possible to send IPC through kademlia!");
}
}
}
pub fn check_if_peer_finished(
kademlia: &mut Kademlia<MemoryStore>,
peer_id: &PeerId,
) -> Result<IFCollectionOutputData, ()> {
let peer_hash = peer_representation::peer_to_hash(peer_id);
let query_key = MkadKeys::KeyForPeerFinished(peer_hash);
Self::get_data_finished(kademlia, query_key)
}
pub fn on_retrieve(&self, message: KademliaEvent) {
match message {
KademliaEvent::QueryResult { result, .. } => match result {
QueryResult::GetRecord(get_record) => match get_record {
Ok(ok) => {
for PeerRecord {
record: Record { key, value, .. },
..
} in ok.records
{
Self::retrieve_record(key, value);
}
}
Err(err) => {
error!("Failed to get record: {:?}", err);
}
},
QueryResult::PutRecord(put_record) => match put_record {
Ok(PutRecordOk { key }) => {
let raw_key = Self::key_reader(&key);
match raw_key {
Ok(deserialized) => match deserialized {
MkadKeys::KeyForPeerFinished(peer_hash) => info!(
"Successfully put record key KeyForPeerFinished for peer {:?}!",
peer_representation::peer_hash_to_string(&peer_hash)
),
MkadKeys::SingleAudioRecord(_audio_info) => {
info!("Successfully put record key SingleAudioRecord!")
}
},
Err(_) => {
error!("key could not be verified!");
}
}
}
Err(err) => {
error!("Failed to put record: {:?}", err);
}
},
_ => trace!("other kademlie query results arrived?!"),
},
_ => (),
}
}
fn key_writer(internal_key: MkadKeys) -> record::Key {
let bin_key = bincode::serialize(&internal_key).unwrap();
record::Key::new(&bin_key)
}
fn retrieve_record(key: record::Key, _value: Vec<u8>) {
warn!("..............................................");
if let Ok(fits_mkad_keys) = Self::key_reader(&key) {
match fits_mkad_keys {
MkadKeys::KeyForPeerFinished(peer_hash) => {
info!("key for peer finished of '{}' retrieved!", peer_hash);
}
MkadKeys::SingleAudioRecord(audio_key) => {
info!("new audio data with key '{}' retrieved!", &audio_key.get());
}
}
} else {
error!("unknown MkadKeys format");
}
}
fn key_reader(
key_record: &record::Key,
) -> Result<MkadKeys, std::boxed::Box<bincode::ErrorKind>> {
bincode::deserialize(key_record.as_ref())
}
fn get_data_finished(
kademlia: &mut Kademlia<MemoryStore>,
key: MkadKeys,
) -> Result<IFCollectionOutputData, ()> {
let serialized_key = Self::key_writer(key);
match kademlia.store_mut().get(&serialized_key) {
Some(good_query) => {
let value: Result<IFCollectionOutputData, bincode::Error> =
bincode::deserialize(good_query.value.as_ref());
value.map_err(|_e| ())
}
None => Err(()),
}
}
}