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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
use std::collections::HashMap;
use bytes::{Bytes, BytesMut};
use tokio::sync::Mutex;
use util::{Marshal, MarshalSize};
use super::*;
use crate::error::flatten_errs;
/// TrackLocalStaticRTP is a TrackLocal that has a pre-set codec and accepts RTP Packets.
/// If you wish to send a media.Sample use TrackLocalStaticSample
#[derive(Debug)]
pub struct TrackLocalStaticRTP {
pub(crate) bindings: Mutex<Vec<Arc<TrackBinding>>>,
codec: RTCRtpCodecCapability,
id: String,
rid: Option<String>,
stream_id: String,
}
impl TrackLocalStaticRTP {
/// returns a TrackLocalStaticRTP without rid.
pub fn new(codec: RTCRtpCodecCapability, id: String, stream_id: String) -> Self {
TrackLocalStaticRTP {
codec,
bindings: Mutex::new(vec![]),
id,
rid: None,
stream_id,
}
}
/// returns a TrackLocalStaticRTP with rid.
pub fn new_with_rid(
codec: RTCRtpCodecCapability,
id: String,
rid: String,
stream_id: String,
) -> Self {
TrackLocalStaticRTP {
codec,
bindings: Mutex::new(vec![]),
id,
rid: Some(rid),
stream_id,
}
}
/// codec gets the Codec of the track
pub fn codec(&self) -> RTCRtpCodecCapability {
self.codec.clone()
}
pub async fn any_binding_paused(&self) -> bool {
let bindings = self.bindings.lock().await;
bindings
.iter()
.any(|b| b.sender_paused.load(Ordering::SeqCst))
}
pub async fn all_binding_paused(&self) -> bool {
let bindings = self.bindings.lock().await;
bindings
.iter()
.all(|b| b.sender_paused.load(Ordering::SeqCst))
}
/// write_rtp_with_extensions writes a RTP Packet to the TrackLocalStaticRTP
/// If one PeerConnection fails the packets will still be sent to
/// all PeerConnections. The error message will contain the ID of the failed
/// PeerConnections so you can remove them
///
/// If the RTCRtpSender direction is such that no packets should be sent, any call to this
/// function are blocked internally. Care must be taken to not increase the sequence number
/// while the sender is paused. While the actual _sending_ is blocked, the receiver will
/// miss out when the sequence number "rolls over", which in turn will break SRTP.
///
/// Extensions that are already configured on the packet are overwritten by extensions in
/// `extensions`.
pub async fn write_rtp_with_extensions(
&self,
p: &rtp::packet::Packet,
extensions: &[rtp::extension::HeaderExtension],
) -> Result<usize> {
let attr = Attributes::new();
self.write_rtp_with_extensions_attributes(p, extensions, &attr)
.await
}
pub async fn write_rtp_with_extensions_attributes(
&self,
p: &rtp::packet::Packet,
extensions: &[rtp::extension::HeaderExtension],
attr: &Attributes,
) -> Result<usize> {
let mut n = 0;
let mut write_errs = vec![];
let mut pkt = p.clone();
let bindings = {
let bindings = self.bindings.lock().await;
bindings.clone()
};
// Prepare the extensions data
let extension_data: HashMap<_, _> = extensions
.iter()
.flat_map(|extension| {
let buf = {
let mut buf = BytesMut::with_capacity(extension.marshal_size());
buf.resize(extension.marshal_size(), 0);
if let Err(err) = extension.marshal_to(&mut buf) {
write_errs.push(Error::Util(err));
return None;
}
buf.freeze()
};
Some((extension.uri(), buf))
})
.collect();
for b in bindings.into_iter() {
if b.is_sender_paused() {
// See caveat in function doc.
continue;
}
pkt.header.ssrc = b.ssrc;
pkt.header.payload_type = b.payload_type;
for ext in b.hdr_ext_ids.iter() {
let payload = ext.payload.to_owned();
if let Err(err) = pkt.header.set_extension(ext.id, payload) {
write_errs.push(Error::Rtp(err));
}
}
for (uri, data) in extension_data.iter() {
if let Some(id) = b
.params
.header_extensions
.iter()
.find(|ext| &ext.uri == uri)
.map(|ext| ext.id)
{
if let Err(err) = pkt.header.set_extension(id as u8, data.clone()) {
write_errs.push(Error::Rtp(err));
continue;
}
}
}
match b.write_stream.write_rtp_with_attributes(&pkt, attr).await {
Ok(m) => {
n += m;
}
Err(err) => {
write_errs.push(err);
}
}
}
flatten_errs(write_errs)?;
Ok(n)
}
}
#[async_trait]
impl TrackLocal for TrackLocalStaticRTP {
/// bind is called by the PeerConnection after negotiation is complete
/// This asserts that the code requested is supported by the remote peer.
/// If so it setups all the state (SSRC and PayloadType) to have a call
async fn bind(&self, t: &TrackLocalContext) -> Result<RTCRtpCodecParameters> {
let parameters = RTCRtpCodecParameters {
capability: self.codec.clone(),
..Default::default()
};
let mut hdr_ext_ids = vec![];
if let Some(id) = t
.header_extensions()
.iter()
.find(|e| e.uri == ::sdp::extmap::SDES_MID_URI)
.map(|e| e.id as u8)
{
if let Some(payload) = t
.mid
.as_ref()
.map(|mid| Bytes::copy_from_slice(mid.as_bytes()))
{
hdr_ext_ids.push(rtp::header::Extension { id, payload });
}
}
if let Some(id) = t
.header_extensions()
.iter()
.find(|e| e.uri == ::sdp::extmap::SDES_RTP_STREAM_ID_URI)
.map(|e| e.id as u8)
{
if let Some(payload) = self.rid().map(|rid| rid.to_owned().into()) {
hdr_ext_ids.push(rtp::header::Extension { id, payload });
}
}
let (codec, match_type) = codec_parameters_fuzzy_search(¶meters, t.codec_parameters());
if match_type != CodecMatch::None {
{
let mut bindings = self.bindings.lock().await;
bindings.push(Arc::new(TrackBinding {
id: t.id(),
ssrc: t.ssrc(),
payload_type: codec.payload_type,
params: t.params.clone(),
write_stream: t.write_stream(),
sender_paused: t.paused.clone(),
hdr_ext_ids,
}));
}
Ok(codec)
} else {
Err(Error::ErrUnsupportedCodec)
}
}
/// unbind implements the teardown logic when the track is no longer needed. This happens
/// because a track has been stopped.
async fn unbind(&self, t: &TrackLocalContext) -> Result<()> {
let mut bindings = self.bindings.lock().await;
let mut idx = None;
for (index, binding) in bindings.iter().enumerate() {
if binding.id == t.id() {
idx = Some(index);
break;
}
}
if let Some(index) = idx {
bindings.remove(index);
Ok(())
} else {
Err(Error::ErrUnbindFailed)
}
}
/// id is the unique identifier for this Track. This should be unique for the
/// stream, but doesn't have to globally unique. A common example would be 'audio' or 'video'
/// and StreamID would be 'desktop' or 'webcam'
fn id(&self) -> &str {
self.id.as_str()
}
/// RID is the RTP Stream ID for this track.
fn rid(&self) -> Option<&str> {
self.rid.as_deref()
}
/// stream_id is the group this track belongs too. This must be unique
fn stream_id(&self) -> &str {
self.stream_id.as_str()
}
/// kind controls if this TrackLocal is audio or video
fn kind(&self) -> RTPCodecType {
if self.codec.mime_type.starts_with("audio/") {
RTPCodecType::Audio
} else if self.codec.mime_type.starts_with("video/") {
RTPCodecType::Video
} else {
RTPCodecType::Unspecified
}
}
fn as_any(&self) -> &dyn Any {
self
}
}
#[async_trait]
impl TrackLocalWriter for TrackLocalStaticRTP {
/// `write_rtp_with_attributes` writes a RTP Packet to the TrackLocalStaticRTP
/// If one PeerConnection fails the packets will still be sent to
/// all PeerConnections. The error message will contain the ID of the failed
/// PeerConnections so you can remove them
///
/// If the RTCRtpSender direction is such that no packets should be sent, any call to this
/// function are blocked internally. Care must be taken to not increase the sequence number
/// while the sender is paused. While the actual _sending_ is blocked, the receiver will
/// miss out when the sequence number "rolls over", which in turn will break SRTP.
async fn write_rtp_with_attributes(
&self,
pkt: &rtp::packet::Packet,
attr: &Attributes,
) -> Result<usize> {
self.write_rtp_with_extensions_attributes(pkt, &[], attr)
.await
}
/// write writes a RTP Packet as a buffer to the TrackLocalStaticRTP
/// If one PeerConnection fails the packets will still be sent to
/// all PeerConnections. The error message will contain the ID of the failed
/// PeerConnections so you can remove them
async fn write(&self, mut b: &[u8]) -> Result<usize> {
let pkt = rtp::packet::Packet::unmarshal(&mut b)?;
self.write_rtp(&pkt).await?;
Ok(b.len())
}
}