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
223
224
225
226
227
228
229
230
use super::*;
use bytes::Bytes;
use std::collections::VecDeque;
use std::io::{Error, ErrorKind};
use std::str::FromStr;
use std::sync::atomic::{AtomicUsize, Ordering};
use std::sync::Arc;
use tokio::sync::{mpsc, Mutex};
use tokio::time::Duration;
const TICK_WAIT: Duration = Duration::from_micros(10);
struct BridgeConn {
br: Arc<Bridge>,
id: usize,
rd_rx: Mutex<mpsc::Receiver<Bytes>>,
loss_chance: u8,
}
#[async_trait]
impl Conn for BridgeConn {
async fn connect(&self, _addr: SocketAddr) -> Result<()> {
Err(Error::new(ErrorKind::Other, "Not applicable").into())
}
async fn recv(&self, b: &mut [u8]) -> Result<usize> {
let mut rd_rx = self.rd_rx.lock().await;
let v = match rd_rx.recv().await {
Some(v) => v,
None => return Err(Error::new(ErrorKind::UnexpectedEof, "Unexpected EOF").into()),
};
let l = std::cmp::min(v.len(), b.len());
b[..l].copy_from_slice(&v[..l]);
Ok(l)
}
async fn recv_from(&self, buf: &mut [u8]) -> Result<(usize, SocketAddr)> {
let n = self.recv(buf).await?;
Ok((n, SocketAddr::from_str("0.0.0.0:0")?))
}
async fn send(&self, b: &[u8]) -> Result<usize> {
if rand::random::<u8>() % 100 < self.loss_chance {
return Ok(b.len());
}
self.br.push(b, self.id).await
}
async fn send_to(&self, _buf: &[u8], _target: SocketAddr) -> Result<usize> {
Err(Error::new(ErrorKind::Other, "Not applicable").into())
}
async fn local_addr(&self) -> Result<SocketAddr> {
Err(Error::new(ErrorKind::AddrNotAvailable, "Addr Not Available").into())
}
async fn remote_addr(&self) -> Option<SocketAddr> {
None
}
async fn close(&self) -> Result<()> {
Ok(())
}
}
pub type FilterCbFn = Box<dyn Fn(&Bytes) -> bool + Send + Sync>;
#[derive(Default)]
pub struct Bridge {
drop_nwrites: [AtomicUsize; 2],
reorder_nwrites: [AtomicUsize; 2],
stack: [Mutex<VecDeque<Bytes>>; 2],
queue: [Mutex<VecDeque<Bytes>>; 2],
wr_tx: [Option<mpsc::Sender<Bytes>>; 2],
filter_cb: [Option<FilterCbFn>; 2],
}
impl Bridge {
pub fn new(
loss_chance: u8,
filter_cb0: Option<FilterCbFn>,
filter_cb1: Option<FilterCbFn>,
) -> (Arc<Bridge>, impl Conn, impl Conn) {
let (wr_tx0, rd_rx0) = mpsc::channel(1024);
let (wr_tx1, rd_rx1) = mpsc::channel(1024);
let br = Arc::new(Bridge {
wr_tx: [Some(wr_tx0), Some(wr_tx1)],
filter_cb: [filter_cb0, filter_cb1],
..Default::default()
});
let conn0 = BridgeConn {
br: Arc::clone(&br),
id: 0,
rd_rx: Mutex::new(rd_rx0),
loss_chance,
};
let conn1 = BridgeConn {
br: Arc::clone(&br),
id: 1,
rd_rx: Mutex::new(rd_rx1),
loss_chance,
};
(br, conn0, conn1)
}
#[allow(clippy::len_without_is_empty)]
pub async fn len(&self, id: usize) -> usize {
let q = self.queue[id].lock().await;
q.len()
}
pub async fn push(&self, b: &[u8], id: usize) -> Result<usize> {
tokio::time::sleep(TICK_WAIT).await;
let d = Bytes::from(b.to_vec());
if self.drop_nwrites[id].load(Ordering::SeqCst) > 0 {
self.drop_nwrites[id].fetch_sub(1, Ordering::SeqCst);
} else if self.reorder_nwrites[id].load(Ordering::SeqCst) > 0 {
let mut stack = self.stack[id].lock().await;
stack.push_back(d);
if self.reorder_nwrites[id].fetch_sub(1, Ordering::SeqCst) == 1 {
let ok = inverse(&mut stack);
if ok {
let mut queue = self.queue[id].lock().await;
queue.append(&mut stack);
}
}
} else if let Some(filter_cb) = &self.filter_cb[id] {
if filter_cb(&d) {
let mut queue = self.queue[id].lock().await;
queue.push_back(d);
}
} else {
let mut queue = self.queue[id].lock().await;
queue.push_back(d);
}
Ok(b.len())
}
pub async fn reorder(&self, id: usize) -> bool {
let mut queue = self.queue[id].lock().await;
inverse(&mut queue)
}
pub async fn drop_offset(&self, id: usize, offset: usize, n: usize) {
let mut queue = self.queue[id].lock().await;
queue.drain(offset..offset + n);
}
pub async fn drop_next_nwrites(&self, id: usize, n: usize) {
self.drop_nwrites[id].store(n, Ordering::SeqCst);
}
pub async fn reorder_next_nwrites(&self, id: usize, n: usize) {
self.reorder_nwrites[id].store(n, Ordering::SeqCst);
}
pub async fn clear(&self) {
for id in 0..2 {
let mut queue = self.queue[id].lock().await;
queue.clear();
}
}
pub async fn tick(&self) -> usize {
let mut n = 0;
for id in 0..2 {
let mut queue = self.queue[id].lock().await;
if let Some(d) = queue.pop_front() {
n += 1;
if let Some(wr_tx) = &self.wr_tx[1 - id] {
let _ = wr_tx.send(d).await;
}
}
}
n
}
pub async fn process(&self) {
loop {
tokio::time::sleep(TICK_WAIT).await;
self.tick().await;
if self.len(0).await == 0 && self.len(1).await == 0 {
break;
}
}
}
}
pub(crate) fn inverse(s: &mut VecDeque<Bytes>) -> bool {
if s.len() < 2 {
return false;
}
let (mut i, mut j) = (0, s.len() - 1);
while i < j {
s.swap(i, j);
i += 1;
j -= 1;
}
true
}