-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstats.rs
54 lines (47 loc) · 1.28 KB
/
stats.rs
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
use crate::utils::CircularVec;
#[derive(Clone, PartialEq)]
pub struct TestResult {
pub test_num: u32,
pub steps: u32,
pub test_packet_costs: u32,
pub comm_packet_costs: u32,
pub deployed_test_packets: u32,
pub received_test_packets: u32,
}
impl TestResult {
pub fn new() -> Self {
Self {
test_num: 0,
steps: 0,
deployed_test_packets: 0,
received_test_packets: 0,
test_packet_costs: 0,
comm_packet_costs: 0,
}
}
/*
pub fn add_costs(&mut self, packet: &Packet, link: &Link) {
let costs = link.cost() as u32;
if packet.is_test() {
self.test_packet_costs += costs;
} else {
self.comm_packet_costs += costs;
}
}
*/
pub fn clear(&mut self) {
*self = TestResult::new();
}
pub fn to_json(&self) -> String {
use std::fmt::Write;
let mut ret = String::new();
write!(&mut ret, "{{").unwrap();
write!(&mut ret, "\"test_num\": {},", self.test_num).unwrap();
write!(&mut ret, "\"test_packet_costs\": {},", self.test_packet_costs).unwrap();
write!(&mut ret, "\"comm_packet_costs\": {},", self.comm_packet_costs).unwrap();
write!(&mut ret, "\"deployed_test_packets\": {},", self.deployed_test_packets).unwrap();
write!(&mut ret, "\"received_test_packets\": {},", self.received_test_packets).unwrap();
write!(&mut ret, "}}").unwrap();
return ret;
}
}