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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
use super::{chunk_header::*, chunk_type::*, *};
use bytes::{Buf, BufMut, Bytes, BytesMut};
use std::fmt;
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::Arc;
use std::time::SystemTime;
pub(crate) const PAYLOAD_DATA_ENDING_FRAGMENT_BITMASK: u8 = 1;
pub(crate) const PAYLOAD_DATA_BEGINING_FRAGMENT_BITMASK: u8 = 2;
pub(crate) const PAYLOAD_DATA_UNORDERED_BITMASK: u8 = 4;
pub(crate) const PAYLOAD_DATA_IMMEDIATE_SACK: u8 = 8;
pub(crate) const PAYLOAD_DATA_HEADER_SIZE: usize = 12;
#[derive(Debug, Copy, Clone, PartialEq)]
#[repr(C)]
pub enum PayloadProtocolIdentifier {
Dcep = 50,
String = 51,
Binary = 53,
StringEmpty = 56,
BinaryEmpty = 57,
Unknown,
}
impl Default for PayloadProtocolIdentifier {
fn default() -> Self {
PayloadProtocolIdentifier::Unknown
}
}
impl fmt::Display for PayloadProtocolIdentifier {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let s = match *self {
PayloadProtocolIdentifier::Dcep => "WebRTC DCEP",
PayloadProtocolIdentifier::String => "WebRTC String",
PayloadProtocolIdentifier::Binary => "WebRTC Binary",
PayloadProtocolIdentifier::StringEmpty => "WebRTC String (Empty)",
PayloadProtocolIdentifier::BinaryEmpty => "WebRTC Binary (Empty)",
_ => "Unknown Payload Protocol Identifier",
};
write!(f, "{}", s)
}
}
impl From<u32> for PayloadProtocolIdentifier {
fn from(v: u32) -> PayloadProtocolIdentifier {
match v {
50 => PayloadProtocolIdentifier::Dcep,
51 => PayloadProtocolIdentifier::String,
53 => PayloadProtocolIdentifier::Binary,
56 => PayloadProtocolIdentifier::StringEmpty,
57 => PayloadProtocolIdentifier::BinaryEmpty,
_ => PayloadProtocolIdentifier::Unknown,
}
}
}
#[derive(Debug, Clone)]
pub struct ChunkPayloadData {
pub(crate) unordered: bool,
pub(crate) beginning_fragment: bool,
pub(crate) ending_fragment: bool,
pub(crate) immediate_sack: bool,
pub(crate) tsn: u32,
pub(crate) stream_identifier: u16,
pub(crate) stream_sequence_number: u16,
pub(crate) payload_type: PayloadProtocolIdentifier,
pub(crate) user_data: Bytes,
pub(crate) acked: bool,
pub(crate) miss_indicator: u32,
pub(crate) since: SystemTime,
pub(crate) nsent: u32,
pub(crate) abandoned: Arc<AtomicBool>,
pub(crate) all_inflight: Arc<AtomicBool>,
pub(crate) retransmit: bool,
}
impl Default for ChunkPayloadData {
fn default() -> Self {
ChunkPayloadData {
unordered: false,
beginning_fragment: false,
ending_fragment: false,
immediate_sack: false,
tsn: 0,
stream_identifier: 0,
stream_sequence_number: 0,
payload_type: PayloadProtocolIdentifier::default(),
user_data: Bytes::new(),
acked: false,
miss_indicator: 0,
since: SystemTime::now(),
nsent: 0,
abandoned: Arc::new(AtomicBool::new(false)),
all_inflight: Arc::new(AtomicBool::new(false)),
retransmit: false,
}
}
}
impl fmt::Display for ChunkPayloadData {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}\n{}", self.header(), self.tsn)
}
}
impl Chunk for ChunkPayloadData {
fn header(&self) -> ChunkHeader {
let mut flags: u8 = 0;
if self.ending_fragment {
flags = 1;
}
if self.beginning_fragment {
flags |= 1 << 1;
}
if self.unordered {
flags |= 1 << 2;
}
if self.immediate_sack {
flags |= 1 << 3;
}
ChunkHeader {
typ: CT_PAYLOAD_DATA,
flags,
value_length: self.value_length() as u16,
}
}
fn unmarshal(raw: &Bytes) -> Result<Self> {
let header = ChunkHeader::unmarshal(raw)?;
if header.typ != CT_PAYLOAD_DATA {
return Err(Error::ErrChunkTypeNotPayloadData);
}
let immediate_sack = (header.flags & PAYLOAD_DATA_IMMEDIATE_SACK) != 0;
let unordered = (header.flags & PAYLOAD_DATA_UNORDERED_BITMASK) != 0;
let beginning_fragment = (header.flags & PAYLOAD_DATA_BEGINING_FRAGMENT_BITMASK) != 0;
let ending_fragment = (header.flags & PAYLOAD_DATA_ENDING_FRAGMENT_BITMASK) != 0;
if raw.len() < PAYLOAD_DATA_HEADER_SIZE {
return Err(Error::ErrChunkPayloadSmall);
}
let reader = &mut raw.slice(CHUNK_HEADER_SIZE..CHUNK_HEADER_SIZE + header.value_length());
let tsn = reader.get_u32();
let stream_identifier = reader.get_u16();
let stream_sequence_number = reader.get_u16();
let payload_type: PayloadProtocolIdentifier = reader.get_u32().into();
let user_data = raw.slice(
CHUNK_HEADER_SIZE + PAYLOAD_DATA_HEADER_SIZE..CHUNK_HEADER_SIZE + header.value_length(),
);
Ok(ChunkPayloadData {
unordered,
beginning_fragment,
ending_fragment,
immediate_sack,
tsn,
stream_identifier,
stream_sequence_number,
payload_type,
user_data,
acked: false,
miss_indicator: 0,
since: SystemTime::now(),
nsent: 0,
abandoned: Arc::new(AtomicBool::new(false)),
all_inflight: Arc::new(AtomicBool::new(false)),
retransmit: false,
})
}
fn marshal_to(&self, writer: &mut BytesMut) -> Result<usize> {
self.header().marshal_to(writer)?;
writer.put_u32(self.tsn);
writer.put_u16(self.stream_identifier);
writer.put_u16(self.stream_sequence_number);
writer.put_u32(self.payload_type as u32);
writer.extend(self.user_data.clone());
Ok(writer.len())
}
fn check(&self) -> Result<()> {
Ok(())
}
fn value_length(&self) -> usize {
PAYLOAD_DATA_HEADER_SIZE + self.user_data.len()
}
fn as_any(&self) -> &(dyn Any + Send + Sync) {
self
}
}
impl ChunkPayloadData {
pub(crate) fn abandoned(&self) -> bool {
let (abandoned, all_inflight) = (
self.abandoned.load(Ordering::SeqCst),
self.all_inflight.load(Ordering::SeqCst),
);
abandoned && all_inflight
}
pub(crate) fn set_abandoned(&self, abandoned: bool) {
self.abandoned.store(abandoned, Ordering::SeqCst);
}
pub(crate) fn set_all_inflight(&mut self) {
if self.ending_fragment {
self.all_inflight.store(true, Ordering::SeqCst);
}
}
}