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
use crate::config::Config;
use crate::sequence_buffer::CongestionData;
use std::time::Duration;
#[allow(dead_code)]
pub enum NetworkQuality {
Good,
Bad,
}
pub struct RttMeasurer {
config: Config,
rtt: f32,
}
impl RttMeasurer {
pub fn new(config: &Config) -> RttMeasurer {
RttMeasurer {
config: config.clone(),
rtt: 0.,
}
}
pub fn calculate_rrt(&mut self, congestion_data: Option<&mut CongestionData>) {
self.rtt = self.get_smoothed_rtt(congestion_data);
}
#[cfg(test)]
pub fn get_rtt(&self) -> f32 {
return self.rtt;
}
fn get_smoothed_rtt(&self, congestion_avoidance_entry: Option<&mut CongestionData>) -> f32 {
match congestion_avoidance_entry {
Some(avoidance_data) => {
let elapsed_time = avoidance_data.sending_time.elapsed();
let rtt_time = self.as_milliseconds(elapsed_time);
self.smooth_out_rtt(rtt_time)
}
None => 0.0,
}
}
fn as_milliseconds(&self, duration: Duration) -> u64 {
let nanos = u64::from(duration.subsec_nanos());
(1000 * 1000 * 1000 * duration.as_secs() + nanos) / (1000 * 1000)
}
fn smooth_out_rtt(&self, rtt: u64) -> f32 {
let exceeded_rrt_time = rtt as i64 - i64::from(self.config.rtt_max_value);
exceeded_rrt_time as f32 * self.config.rtt_smoothing_factor
}
}
#[cfg(test)]
mod test {
use super::RttMeasurer;
use crate::config::Config;
use crate::net::connection::VirtualConnection;
use std::net::ToSocketAddrs;
use std::time::Duration;
static TEST_HOST_IP: &'static str = "127.0.0.1";
static TEST_PORT: &'static str = "20000";
#[test]
fn test_create_connection() {
let mut addr = format!("{}:{}", TEST_HOST_IP, TEST_PORT)
.to_socket_addrs()
.unwrap();
let _new_conn = VirtualConnection::new(addr.next().unwrap(), &Config::default());
}
#[test]
fn convert_duration_to_milliseconds_test() {
let network_quality = RttMeasurer::new(&Config::default());
let milliseconds1 = network_quality.as_milliseconds(Duration::from_secs(1));
let milliseconds2 = network_quality.as_milliseconds(Duration::from_millis(1500));
let milliseconds3 = network_quality.as_milliseconds(Duration::from_millis(1671));
assert_eq!(milliseconds1, 1000);
assert_eq!(milliseconds2, 1500);
assert_eq!(milliseconds3, 1671);
}
#[test]
fn smooth_out_rtt() {
let mut config = Config::default();
config.rtt_smoothing_factor = 0.10;
config.rtt_max_value = 250;
let network_quality = RttMeasurer::new(&config);
let smoothed_rtt = network_quality.smooth_out_rtt(300);
assert_eq!(smoothed_rtt, 5.0);
}
}