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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
// Copyright 2020 Parity Technologies (UK) Ltd.
// Copyright 2023 litep2p developers
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.

//! Substream-related helper code.

use crate::{
	codec::ProtocolCodec,
	error::{Error, SubstreamError},
	transport::{quic, tcp, websocket},
	types::SubstreamId,
	PeerId,
};

use bytes::{Buf, Bytes, BytesMut};
use futures::{Sink, Stream};
use tokio::io::{AsyncRead, AsyncWrite, AsyncWriteExt, ReadBuf};
use unsigned_varint::{decode, encode};

use std::{
	collections::{hash_map::Entry, HashMap, VecDeque},
	fmt,
	hash::Hash,
	io::ErrorKind,
	pin::Pin,
	task::{Context, Poll},
};

/// Logging target for the file.
const LOG_TARGET: &str = "substream";

macro_rules! poll_flush {
	($substream:expr, $cx:ident) => {{
		match $substream {
			SubstreamType::Tcp(substream) => Pin::new(substream).poll_flush($cx),
			SubstreamType::WebSocket(substream) => Pin::new(substream).poll_flush($cx),
			SubstreamType::Quic(substream) => Pin::new(substream).poll_flush($cx),
			#[cfg(test)]
			SubstreamType::Mock(_) => unreachable!(),
		}
	}};
}

macro_rules! poll_write {
	($substream:expr, $cx:ident, $frame:expr) => {{
		match $substream {
			SubstreamType::Tcp(substream) => Pin::new(substream).poll_write($cx, $frame),
			SubstreamType::WebSocket(substream) => Pin::new(substream).poll_write($cx, $frame),
			SubstreamType::Quic(substream) => Pin::new(substream).poll_write($cx, $frame),
			#[cfg(test)]
			SubstreamType::Mock(_) => unreachable!(),
		}
	}};
}

macro_rules! poll_read {
	($substream:expr, $cx:ident, $buffer:expr) => {{
		match $substream {
			SubstreamType::Tcp(substream) => Pin::new(substream).poll_read($cx, $buffer),
			SubstreamType::WebSocket(substream) => Pin::new(substream).poll_read($cx, $buffer),
			SubstreamType::Quic(substream) => Pin::new(substream).poll_read($cx, $buffer),
			#[cfg(test)]
			SubstreamType::Mock(_) => unreachable!(),
		}
	}};
}

macro_rules! poll_shutdown {
	($substream:expr, $cx:ident) => {{
		match $substream {
			SubstreamType::Tcp(substream) => Pin::new(substream).poll_shutdown($cx),
			SubstreamType::WebSocket(substream) => Pin::new(substream).poll_shutdown($cx),
			SubstreamType::Quic(substream) => Pin::new(substream).poll_shutdown($cx),
			#[cfg(test)]
			SubstreamType::Mock(substream) => {
				let _ = Pin::new(substream).poll_close($cx);
				todo!();
			},
		}
	}};
}

macro_rules! delegate_poll_next {
	($substream:expr, $cx:ident) => {{
		#[cfg(test)]
		if let SubstreamType::Mock(inner) = $substream {
			return Pin::new(inner).poll_next($cx);
		}
	}};
}

macro_rules! delegate_poll_ready {
	($substream:expr, $cx:ident) => {{
		#[cfg(test)]
		if let SubstreamType::Mock(inner) = $substream {
			return Pin::new(inner).poll_ready($cx);
		}
	}};
}

macro_rules! delegate_start_send {
	($substream:expr, $item:ident) => {{
		#[cfg(test)]
		if let SubstreamType::Mock(inner) = $substream {
			return Pin::new(inner).start_send($item);
		}
	}};
}

macro_rules! delegate_poll_flush {
	($substream:expr, $cx:ident) => {{
		#[cfg(test)]
		if let SubstreamType::Mock(inner) = $substream {
			return Pin::new(inner).poll_flush($cx);
		}
	}};
}

macro_rules! check_size {
	($max_size:expr, $size:expr) => {{
		if let Some(max_size) = $max_size {
			if $size > max_size {
				return Err(Error::IoError(ErrorKind::PermissionDenied));
			}
		}
	}};
}

/// Substream type.
enum SubstreamType {
	Tcp(tcp::Substream),
	WebSocket(websocket::Substream),
	Quic(quic::Substream),
	#[cfg(test)]
	Mock(Box<dyn crate::mock::substream::Substream>),
}

impl fmt::Debug for SubstreamType {
	fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
		match self {
			Self::Tcp(_) => write!(f, "Tcp"),
			Self::WebSocket(_) => write!(f, "WebSocket"),
			Self::Quic(_) => write!(f, "Quic"),
			#[cfg(test)]
			Self::Mock(_) => write!(f, "Mock"),
		}
	}
}

/// Backpressure boundary for `Sink`.
const BACKPRESSURE_BOUNDARY: usize = 65536;

/// `Litep2p` substream type.
///
/// Implements [`tokio::io::AsyncRead`]/[`tokio::io::AsyncWrite`] traits which can be wrapped
/// in a `Framed` to implement a custom codec.
///
/// In case a codec for the protocol was specified,
/// [`Sink::send()`](futures::Sink)/[`Stream::next()`](futures::Stream) are also provided which
/// implement the necessary framing to read/write codec-encoded messages from the underlying socket.
pub struct Substream {
	/// Remote peer ID.
	peer: PeerId,

	// Inner substream.
	substream: SubstreamType,

	/// Substream ID.
	substream_id: SubstreamId,

	/// Protocol codec.
	codec: ProtocolCodec,

	pending_out_frames: VecDeque<Bytes>,
	pending_out_bytes: usize,
	pending_out_frame: Option<Bytes>,

	read_buffer: BytesMut,
	offset: usize,
	pending_frames: VecDeque<BytesMut>,
	current_frame_size: Option<usize>,

	size_vec: BytesMut,
}

impl fmt::Debug for Substream {
	fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
		f.debug_struct("Substream")
			.field("peer", &self.peer)
			.field("substream_id", &self.substream_id)
			.field("codec", &self.codec)
			.field("protocol", &self.substream)
			.finish()
	}
}

impl Substream {
	/// Create new [`Substream`].
	fn new(
		peer: PeerId,
		substream_id: SubstreamId,
		substream: SubstreamType,
		codec: ProtocolCodec,
	) -> Self {
		Self {
			peer,
			substream,
			codec,
			substream_id,
			read_buffer: BytesMut::zeroed(1024),
			offset: 0usize,
			pending_frames: VecDeque::new(),
			current_frame_size: None,
			pending_out_bytes: 0usize,
			pending_out_frames: VecDeque::new(),
			pending_out_frame: None,
			size_vec: BytesMut::zeroed(10),
		}
	}

	/// Create new [`Substream`] for TCP.
	pub(crate) fn new_tcp(
		peer: PeerId,
		substream_id: SubstreamId,
		substream: tcp::Substream,
		codec: ProtocolCodec,
	) -> Self {
		tracing::trace!(target: LOG_TARGET, ?peer, ?codec, "create new substream for tcp");

		Self::new(peer, substream_id, SubstreamType::Tcp(substream), codec)
	}

	/// Create new [`Substream`] for WebSocket.
	pub(crate) fn new_websocket(
		peer: PeerId,
		substream_id: SubstreamId,
		substream: websocket::Substream,
		codec: ProtocolCodec,
	) -> Self {
		tracing::trace!(target: LOG_TARGET, ?peer, ?codec, "create new substream for websocket");

		Self::new(peer, substream_id, SubstreamType::WebSocket(substream), codec)
	}

	/// Create new [`Substream`] for QUIC.
	pub(crate) fn new_quic(
		peer: PeerId,
		substream_id: SubstreamId,
		substream: quic::Substream,
		codec: ProtocolCodec,
	) -> Self {
		tracing::trace!(target: LOG_TARGET, ?peer, ?codec, "create new substream for quic");

		Self::new(peer, substream_id, SubstreamType::Quic(substream), codec)
	}

	/// Create new [`Substream`] for mocking.
	#[cfg(test)]
	pub(crate) fn new_mock(
		peer: PeerId,
		substream_id: SubstreamId,
		substream: Box<dyn crate::mock::substream::Substream>,
	) -> Self {
		tracing::trace!(target: LOG_TARGET, ?peer, "create new substream for mocking");

		Self::new(peer, substream_id, SubstreamType::Mock(substream), ProtocolCodec::Unspecified)
	}

	/// Close the substream.
	pub async fn close(self) {
		let _ = match self.substream {
			SubstreamType::Tcp(mut substream) => substream.shutdown().await,
			SubstreamType::WebSocket(mut substream) => substream.shutdown().await,
			SubstreamType::Quic(mut substream) => substream.shutdown().await,
			#[cfg(test)]
			SubstreamType::Mock(mut substream) => {
				let _ = futures::SinkExt::close(&mut substream).await;
				Ok(())
			},
		};
	}

	/// Send identity payload to remote peer.
	async fn send_identity_payload<T: AsyncWrite + Unpin>(
		io: &mut T,
		payload_size: usize,
		payload: Bytes,
	) -> crate::Result<()> {
		if payload.len() != payload_size {
			return Err(Error::IoError(ErrorKind::PermissionDenied));
		}

		io.write_all(&payload)
			.await
			.map_err(|_| Error::SubstreamError(SubstreamError::ConnectionClosed))
	}

	/// Send framed data to remote peer.
	///
	/// This function may be faster than the provided [`futures::Sink`] implementation for
	/// [`Substream`] as it has direct access to the API of the underlying socket as opposed
	/// to going through [`tokio::io::AsyncWrite`].
	///
	/// # Cancel safety
	///
	/// This method is not cancellation safe. If that is required, use the provided
	/// [`futures::Sink`] implementation.
	///
	/// # Panics
	///
	/// Panics if no codec is provided.
	pub async fn send_framed(&mut self, mut bytes: Bytes) -> crate::Result<()> {
		tracing::trace!(
			target: LOG_TARGET,
			peer = ?self.peer,
			codec = ?self.codec,
			frame_len = ?bytes.len(),
			"send framed"
		);

		match &mut self.substream {
			#[cfg(test)]
			SubstreamType::Mock(ref mut substream) => futures::SinkExt::send(substream, bytes).await,
			SubstreamType::Tcp(ref mut substream) => match self.codec {
				ProtocolCodec::Unspecified => panic!("codec is unspecified"),
				ProtocolCodec::Identity(payload_size) =>
					Self::send_identity_payload(substream, payload_size, bytes).await,
				ProtocolCodec::UnsignedVarint(max_size) => {
					check_size!(max_size, bytes.len());

					let mut buffer = [0u8; 10];
					let len = unsigned_varint::encode::usize(bytes.len(), &mut buffer);
					let mut offset = 0;

					while offset < len.len() {
						offset += substream.write(&len[offset..]).await?;
					}

					while bytes.has_remaining() {
						let nwritten = substream.write(&bytes).await?;
						bytes.advance(nwritten);
					}

					substream.flush().await.map_err(From::from)
				},
			},
			SubstreamType::WebSocket(ref mut substream) => match self.codec {
				ProtocolCodec::Unspecified => panic!("codec is unspecified"),
				ProtocolCodec::Identity(payload_size) =>
					Self::send_identity_payload(substream, payload_size, bytes).await,
				ProtocolCodec::UnsignedVarint(max_size) => {
					check_size!(max_size, bytes.len());

					let mut buffer = [0u8; 10];
					let len = unsigned_varint::encode::usize(bytes.len(), &mut buffer);
					let mut offset = 0;

					while offset < len.len() {
						offset += substream.write(&len[offset..]).await?;
					}

					while bytes.has_remaining() {
						let nwritten = substream.write(&bytes).await?;
						bytes.advance(nwritten);
					}

					substream.flush().await.map_err(From::from)
				},
			},
			SubstreamType::Quic(ref mut substream) => match self.codec {
				ProtocolCodec::Unspecified => panic!("codec is unspecified"),
				ProtocolCodec::Identity(payload_size) =>
					Self::send_identity_payload(substream, payload_size, bytes).await,
				ProtocolCodec::UnsignedVarint(max_size) => {
					check_size!(max_size, bytes.len());

					let mut buffer = [0u8; 10];
					let len = unsigned_varint::encode::usize(bytes.len(), &mut buffer);
					let len = BytesMut::from(len);

					substream.write_all_chunks(&mut [len.freeze(), bytes]).await
				},
			},
		}
	}
}

impl tokio::io::AsyncRead for Substream {
	fn poll_read(
		mut self: Pin<&mut Self>,
		cx: &mut Context<'_>,
		buf: &mut tokio::io::ReadBuf<'_>,
	) -> Poll<std::io::Result<()>> {
		poll_read!(&mut self.substream, cx, buf)
	}
}

impl tokio::io::AsyncWrite for Substream {
	fn poll_write(
		mut self: Pin<&mut Self>,
		cx: &mut Context<'_>,
		buf: &[u8],
	) -> Poll<Result<usize, std::io::Error>> {
		poll_write!(&mut self.substream, cx, buf)
	}

	fn poll_flush(
		mut self: Pin<&mut Self>,
		cx: &mut Context<'_>,
	) -> Poll<Result<(), std::io::Error>> {
		poll_flush!(&mut self.substream, cx)
	}

	fn poll_shutdown(
		mut self: Pin<&mut Self>,
		cx: &mut Context<'_>,
	) -> Poll<Result<(), std::io::Error>> {
		poll_shutdown!(&mut self.substream, cx)
	}
}

enum ReadError {
	Overflow,
	NotEnoughBytes,
	DecodeError,
}

// Return the payload size and the number of bytes it took to encode it
fn read_payload_size(buffer: &[u8]) -> Result<(usize, usize), ReadError> {
	let max_len = encode::usize_buffer().len();

	for i in 0..std::cmp::min(buffer.len(), max_len) {
		if decode::is_last(buffer[i]) {
			match decode::usize(&buffer[..=i]) {
				Err(_) => return Err(ReadError::DecodeError),
				Ok(size) => return Ok((size.0, i + 1)),
			}
		}
	}

	match buffer.len() < max_len {
		true => Err(ReadError::NotEnoughBytes),
		false => Err(ReadError::Overflow),
	}
}

impl Stream for Substream {
	type Item = crate::Result<BytesMut>;

	fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
		let this = Pin::into_inner(self);

		// `MockSubstream` implements `Stream` so calls to `poll_next()` must be delegated
		delegate_poll_next!(&mut this.substream, cx);

		loop {
			match this.codec {
				ProtocolCodec::Identity(payload_size) => {
					let mut read_buf =
						ReadBuf::new(&mut this.read_buffer[this.offset..payload_size]);

					match futures::ready!(poll_read!(&mut this.substream, cx, &mut read_buf)) {
						Ok(_) => {
							let nread = read_buf.filled().len();
							if nread == 0 {
								tracing::trace!(
									target: LOG_TARGET,
									peer = ?this.peer,
									"read zero bytes, substream closed"
								);
								return Poll::Ready(None);
							}

							if nread == payload_size {
								let mut payload = std::mem::replace(
									&mut this.read_buffer,
									BytesMut::zeroed(payload_size),
								);
								payload.truncate(payload_size);
								this.offset = 0usize;

								return Poll::Ready(Some(Ok(payload)));
							} else {
								this.offset += read_buf.filled().len();
							}
						},
						Err(error) => return Poll::Ready(Some(Err(error.into()))),
					}
				},
				ProtocolCodec::UnsignedVarint(max_size) => {
					loop {
						// return all pending frames first
						if let Some(frame) = this.pending_frames.pop_front() {
							return Poll::Ready(Some(Ok(frame)));
						}

						match this.current_frame_size.take() {
							Some(frame_size) => {
								let mut read_buf =
									ReadBuf::new(&mut this.read_buffer[this.offset..]);
								this.current_frame_size = Some(frame_size);

								match futures::ready!(poll_read!(
									&mut this.substream,
									cx,
									&mut read_buf
								)) {
									Err(_error) => return Poll::Ready(None),
									Ok(_) => {
										let nread = match read_buf.filled().len() {
											0 => return Poll::Ready(None),
											nread => nread,
										};

										this.offset += nread;

										if this.offset == frame_size {
											let out_frame = std::mem::replace(
												&mut this.read_buffer,
												BytesMut::new(),
											);
											this.offset = 0;
											this.current_frame_size = None;

											return Poll::Ready(Some(Ok(out_frame)));
										} else {
											this.current_frame_size = Some(frame_size);
											continue;
										}
									},
								}
							},
							None => {
								let mut read_buf =
									ReadBuf::new(&mut this.size_vec[this.offset..this.offset + 1]);

								match futures::ready!(poll_read!(
									&mut this.substream,
									cx,
									&mut read_buf
								)) {
									Err(_error) => return Poll::Ready(None),
									Ok(_) => {
										if read_buf.filled().is_empty() {
											return Poll::Ready(None);
										}
										this.offset += 1;

										match read_payload_size(&this.size_vec[..this.offset]) {
											Err(ReadError::NotEnoughBytes) => continue,
											Err(_) =>
												return Poll::Ready(Some(Err(Error::InvalidData))),
											Ok((size, num_bytes)) => {
												debug_assert_eq!(num_bytes, this.offset);

												if let Some(max_size) = max_size {
													if size > max_size {
														return Poll::Ready(Some(Err(
															Error::InvalidData,
														)));
													}
												}

												this.offset = 0;
												this.current_frame_size = Some(size);
												this.read_buffer = BytesMut::zeroed(size);
											},
										}
									},
								}
							},
						}
					}
				},
				ProtocolCodec::Unspecified => panic!("codec is unspecified"),
			}
		}
	}
}

// TODO: this code can definitely be optimized
impl Sink<Bytes> for Substream {
	type Error = Error;

	fn poll_ready(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
		// `MockSubstream` implements `Sink` so calls to `poll_ready()` must be delegated
		delegate_poll_ready!(&mut self.substream, cx);

		if self.pending_out_bytes >= BACKPRESSURE_BOUNDARY {
			return poll_flush!(&mut self.substream, cx).map_err(From::from);
		}

		Poll::Ready(Ok(()))
	}

	fn start_send(mut self: Pin<&mut Self>, item: Bytes) -> Result<(), Self::Error> {
		// `MockSubstream` implements `Sink` so calls to `start_send()` must be delegated
		delegate_start_send!(&mut self.substream, item);

		match self.codec {
			ProtocolCodec::Identity(payload_size) => {
				if item.len() != payload_size {
					return Err(Error::IoError(ErrorKind::PermissionDenied));
				}

				self.pending_out_bytes += item.len();
				self.pending_out_frames.push_back(item);
			},
			ProtocolCodec::UnsignedVarint(max_size) => {
				check_size!(max_size, item.len());

				let len = {
					let mut buffer = [0u8; 10];
					let len = unsigned_varint::encode::usize(item.len(), &mut buffer);
					BytesMut::from(len)
				};

				self.pending_out_bytes += len.len() + item.len();
				self.pending_out_frames.push_back(len.freeze());
				self.pending_out_frames.push_back(item);
			},
			ProtocolCodec::Unspecified => panic!("codec is unspecified"),
		}

		return Ok(());
	}

	fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
		// `MockSubstream` implements `Sink` so calls to `poll_flush()` must be delegated
		delegate_poll_flush!(&mut self.substream, cx);

		loop {
			let mut pending_frame = match self.pending_out_frame.take() {
				Some(frame) => frame,
				None => match self.pending_out_frames.pop_front() {
					Some(frame) => frame,
					None => break,
				},
			};

			match poll_write!(&mut self.substream, cx, &pending_frame) {
				Poll::Ready(Err(error)) => return Poll::Ready(Err(error.into())),
				Poll::Pending => {
					self.pending_out_frame = Some(pending_frame);
					break;
				},
				Poll::Ready(Ok(nwritten)) => {
					pending_frame.advance(nwritten);

					if !pending_frame.is_empty() {
						self.pending_out_frame = Some(pending_frame);
					}
				},
			}
		}

		poll_flush!(&mut self.substream, cx).map_err(From::from)
	}

	fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
		poll_shutdown!(&mut self.substream, cx).map_err(From::from)
	}
}

/// Substream set key.
pub trait SubstreamSetKey: Hash + Unpin + fmt::Debug + PartialEq + Eq + Copy {}

impl<K: Hash + Unpin + fmt::Debug + PartialEq + Eq + Copy> SubstreamSetKey for K {}

/// Substream set.
#[derive(Debug, Default)]
pub struct SubstreamSet<K, S>
where
	K: SubstreamSetKey,
	S: Stream<Item = crate::Result<BytesMut>> + Unpin,
{
	substreams: HashMap<K, S>,
}

impl<K, S> SubstreamSet<K, S>
where
	K: SubstreamSetKey,
	S: Stream<Item = crate::Result<BytesMut>> + Unpin,
{
	/// Create new [`SubstreamSet`].
	pub fn new() -> Self {
		Self { substreams: HashMap::new() }
	}

	/// Add new substream to the set.
	pub fn insert(&mut self, key: K, substream: S) {
		match self.substreams.entry(key) {
			Entry::Vacant(entry) => {
				entry.insert(substream);
			},
			Entry::Occupied(_) => {
				tracing::error!(?key, "substream already exists");
				debug_assert!(false);
			},
		}
	}

	/// Remove substream from the set.
	pub fn remove(&mut self, key: &K) -> Option<S> {
		self.substreams.remove(key)
	}

	/// Get mutable reference to stored substream.
	#[cfg(test)]
	pub fn get_mut(&mut self, key: &K) -> Option<&mut S> {
		self.substreams.get_mut(key)
	}

	/// Get size of [`SubstreamSet`].
	pub fn len(&self) -> usize {
		self.substreams.len()
	}
}

impl<K, S> Stream for SubstreamSet<K, S>
where
	K: SubstreamSetKey,
	S: Stream<Item = crate::Result<BytesMut>> + Unpin,
{
	type Item = (K, <S as Stream>::Item);

	fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
		let inner = Pin::into_inner(self);

		// TODO: poll the streams more randomly
		for (key, mut substream) in inner.substreams.iter_mut() {
			match Pin::new(&mut substream).poll_next(cx) {
				Poll::Pending => continue,
				Poll::Ready(Some(data)) => return Poll::Ready(Some((*key, data))),
				Poll::Ready(None) =>
					return Poll::Ready(Some((
						*key,
						Err(Error::SubstreamError(SubstreamError::ConnectionClosed)),
					))),
			}
		}

		Poll::Pending
	}
}

#[cfg(test)]
mod tests {
	use super::*;
	use crate::{mock::substream::MockSubstream, PeerId};
	use futures::{SinkExt, StreamExt};

	#[test]
	fn add_substream() {
		let mut set = SubstreamSet::<PeerId, MockSubstream>::new();

		let peer = PeerId::random();
		let substream = MockSubstream::new();
		set.insert(peer, substream);

		let peer = PeerId::random();
		let substream = MockSubstream::new();
		set.insert(peer, substream);
	}

	#[test]
	#[should_panic]
	#[cfg(debug_assertions)]
	fn add_same_peer_twice() {
		let mut set = SubstreamSet::<PeerId, MockSubstream>::new();

		let peer = PeerId::random();
		let substream1 = MockSubstream::new();
		let substream2 = MockSubstream::new();

		set.insert(peer, substream1);
		set.insert(peer, substream2);
	}

	#[test]
	fn remove_substream() {
		let mut set = SubstreamSet::<PeerId, MockSubstream>::new();

		let peer1 = PeerId::random();
		let substream1 = MockSubstream::new();
		set.insert(peer1, substream1);

		let peer2 = PeerId::random();
		let substream2 = MockSubstream::new();
		set.insert(peer2, substream2);

		assert!(set.remove(&peer1).is_some());
		assert!(set.remove(&peer2).is_some());
		assert!(set.remove(&PeerId::random()).is_none());
	}

	#[tokio::test]
	async fn poll_data_from_substream() {
		let mut set = SubstreamSet::<PeerId, MockSubstream>::new();

		let peer = PeerId::random();
		let mut substream = MockSubstream::new();
		substream
			.expect_poll_next()
			.times(1)
			.return_once(|_| Poll::Ready(Some(Ok(BytesMut::from(&b"hello"[..])))));
		substream
			.expect_poll_next()
			.times(1)
			.return_once(|_| Poll::Ready(Some(Ok(BytesMut::from(&b"world"[..])))));
		substream.expect_poll_next().returning(|_| Poll::Pending);
		set.insert(peer, substream);

		let value = set.next().await.unwrap();
		assert_eq!(value.0, peer);
		assert_eq!(value.1.unwrap(), BytesMut::from(&b"hello"[..]));

		let value = set.next().await.unwrap();
		assert_eq!(value.0, peer);
		assert_eq!(value.1.unwrap(), BytesMut::from(&b"world"[..]));

		assert!(futures::poll!(set.next()).is_pending());
	}

	#[tokio::test]
	async fn substream_closed() {
		let mut set = SubstreamSet::<PeerId, MockSubstream>::new();

		let peer = PeerId::random();
		let mut substream = MockSubstream::new();
		substream
			.expect_poll_next()
			.times(1)
			.return_once(|_| Poll::Ready(Some(Ok(BytesMut::from(&b"hello"[..])))));
		substream.expect_poll_next().times(1).return_once(|_| Poll::Ready(None));
		substream.expect_poll_next().returning(|_| Poll::Pending);
		set.insert(peer, substream);

		let value = set.next().await.unwrap();
		assert_eq!(value.0, peer);
		assert_eq!(value.1.unwrap(), BytesMut::from(&b"hello"[..]));

		match set.next().await {
			Some((exited_peer, Err(Error::SubstreamError(SubstreamError::ConnectionClosed)))) => {
				assert_eq!(peer, exited_peer);
			},
			_ => panic!("inavlid event received"),
		}
	}

	#[tokio::test]
	async fn get_mut_substream() {
		let _ = tracing_subscriber::fmt()
			.with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
			.try_init();

		let mut set = SubstreamSet::<PeerId, MockSubstream>::new();

		let peer = PeerId::random();
		let mut substream = MockSubstream::new();
		substream
			.expect_poll_next()
			.times(1)
			.return_once(|_| Poll::Ready(Some(Ok(BytesMut::from(&b"hello"[..])))));
		substream.expect_poll_ready().times(1).return_once(|_| Poll::Ready(Ok(())));
		substream.expect_start_send().times(1).return_once(|_| Ok(()));
		substream.expect_poll_flush().times(1).return_once(|_| Poll::Ready(Ok(())));
		substream
			.expect_poll_next()
			.times(1)
			.return_once(|_| Poll::Ready(Some(Ok(BytesMut::from(&b"world"[..])))));
		substream.expect_poll_next().returning(|_| Poll::Pending);
		set.insert(peer, substream);

		let value = set.next().await.unwrap();
		assert_eq!(value.0, peer);
		assert_eq!(value.1.unwrap(), BytesMut::from(&b"hello"[..]));

		let substream = set.get_mut(&peer).unwrap();
		substream.send(vec![1, 2, 3, 4].into()).await.unwrap();

		let value = set.next().await.unwrap();
		assert_eq!(value.0, peer);
		assert_eq!(value.1.unwrap(), BytesMut::from(&b"world"[..]));

		// try to get non-existent substream
		assert!(set.get_mut(&PeerId::random()).is_none());
	}

	#[tokio::test]
	async fn poll_data_from_two_substreams() {
		let mut set = SubstreamSet::<PeerId, MockSubstream>::new();

		// prepare first substream
		let peer1 = PeerId::random();
		let mut substream1 = MockSubstream::new();
		substream1
			.expect_poll_next()
			.times(1)
			.return_once(|_| Poll::Ready(Some(Ok(BytesMut::from(&b"hello"[..])))));
		substream1
			.expect_poll_next()
			.times(1)
			.return_once(|_| Poll::Ready(Some(Ok(BytesMut::from(&b"world"[..])))));
		substream1.expect_poll_next().returning(|_| Poll::Pending);
		set.insert(peer1, substream1);

		// prepare second substream
		let peer2 = PeerId::random();
		let mut substream2 = MockSubstream::new();
		substream2
			.expect_poll_next()
			.times(1)
			.return_once(|_| Poll::Ready(Some(Ok(BytesMut::from(&b"siip"[..])))));
		substream2
			.expect_poll_next()
			.times(1)
			.return_once(|_| Poll::Ready(Some(Ok(BytesMut::from(&b"huup"[..])))));
		substream2.expect_poll_next().returning(|_| Poll::Pending);
		set.insert(peer2, substream2);

		let expected: Vec<Vec<(PeerId, BytesMut)>> = vec![
			vec![
				(peer1, BytesMut::from(&b"hello"[..])),
				(peer1, BytesMut::from(&b"world"[..])),
				(peer2, BytesMut::from(&b"siip"[..])),
				(peer2, BytesMut::from(&b"huup"[..])),
			],
			vec![
				(peer1, BytesMut::from(&b"hello"[..])),
				(peer2, BytesMut::from(&b"siip"[..])),
				(peer1, BytesMut::from(&b"world"[..])),
				(peer2, BytesMut::from(&b"huup"[..])),
			],
			vec![
				(peer2, BytesMut::from(&b"siip"[..])),
				(peer2, BytesMut::from(&b"huup"[..])),
				(peer1, BytesMut::from(&b"hello"[..])),
				(peer1, BytesMut::from(&b"world"[..])),
			],
			vec![
				(peer1, BytesMut::from(&b"hello"[..])),
				(peer2, BytesMut::from(&b"siip"[..])),
				(peer2, BytesMut::from(&b"huup"[..])),
				(peer1, BytesMut::from(&b"world"[..])),
			],
		];

		// poll values
		let mut values = Vec::new();

		for _ in 0..4 {
			let value = set.next().await.unwrap();
			values.push((value.0, value.1.unwrap()));
		}

		let mut correct_found = false;

		for set in expected {
			if values == set {
				correct_found = true;
				break;
			}
		}

		if !correct_found {
			panic!("invalid set generated");
		}

		// rest of the calls return `Poll::Pending`
		for _ in 0..10 {
			assert!(futures::poll!(set.next()).is_pending());
		}
	}
}