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
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
use s2n_quic_transport::stream;
/// A QUIC stream that is only allowed to receive data.
#[derive(Debug)]
pub struct ReceiveStream(stream::ReceiveStream);
macro_rules! impl_receive_stream_api {
(| $stream:ident, $dispatch:ident | $dispatch_body:expr) => {
/// Receives a chunk of data from the stream.
///
/// # Return value
///
/// The function returns:
///
/// - `Ok(Some(chunk))` if the stream is open and data was available.
/// - `Ok(None)` if the stream was finished and all of the data was consumed.
/// - `Err(e)` if the stream encountered a [`stream::Error`](crate::stream::Error).
///
/// # Examples
///
/// ```rust,no_run
/// # async fn test() -> s2n_quic::stream::Result<()> {
/// # let mut stream: s2n_quic::stream::ReceiveStream = todo!();
/// #
/// while let Some(chunk) = stream.receive().await? {
/// println!("received: {:?}", chunk);
/// }
///
/// println!("finished");
/// #
/// # Ok(())
/// # }
/// ```
#[inline]
pub async fn receive(&mut self) -> $crate::stream::Result<Option<bytes::Bytes>> {
::futures::future::poll_fn(|cx| self.poll_receive(cx)).await
}
/// Poll for a chunk of data from the stream.
///
/// # Return value
///
/// The function returns:
///
/// - `Poll::Pending` if the stream is waiting to receive data from the peer. In this case,
/// the caller should retry receiving after the [`Waker`](core::task::Waker) on the provided
/// [`Context`](core::task::Context) is notified.
/// - `Poll::Ready(Ok(Some(chunk)))` if the stream is open and data was available.
/// - `Poll::Ready(Ok(None))` if the stream was finished and all of the data was consumed.
/// - `Poll::Ready(Err(e))` if the stream encountered a [`stream::Error`](crate::stream::Error).
#[inline]
pub fn poll_receive(
&mut self,
cx: &mut core::task::Context,
) -> core::task::Poll<$crate::stream::Result<Option<bytes::Bytes>>> {
macro_rules! $dispatch {
() => {
Err($crate::stream::Error::non_readable()).into()
};
($variant: expr) => {
$variant.poll_receive(cx)
};
}
let $stream = self;
$dispatch_body
}
/// Receives a slice of chunks of data from the stream.
///
/// This can be more efficient than calling [`receive`](Self::receive) for each chunk,
/// especially when receiving large amounts of data.
///
/// # Return value
///
/// The function returns:
///
/// - `Ok((count, is_open))` if the stream received data into the slice,
/// where `count` was the number of chunks received, and `is_open` indicating if the stream is
/// still open. If `is_open == true`, `count` will be at least `1`. If `is_open == false`, future calls to
/// [`receive_vectored`](Self::receive_vectored) will always return
/// `Ok((0, false))`.
/// - `Err(e)` if the stream encountered a [`stream::Error`](crate::stream::Error).
///
/// # Examples
///
/// ```rust,no_run
/// # async fn test() -> s2n_quic::stream::Result<()> {
/// # let mut stream: s2n_quic::stream::ReceiveStream = todo!();
/// #
/// # use bytes::Bytes;
/// #
/// loop {
/// let mut chunks = [Bytes::new(), Bytes::new(), Bytes::new()];
/// let (count, is_open) = stream.receive_vectored(&mut chunks).await?;
///
/// for chunk in &chunks[..count] {
/// println!("received: {:?}", chunk);
/// }
///
/// if !is_open {
/// break;
/// }
/// }
///
/// println!("finished");
/// #
/// # Ok(())
/// # }
/// ```
#[inline]
pub async fn receive_vectored(
&mut self,
chunks: &mut [bytes::Bytes],
) -> $crate::stream::Result<(usize, bool)> {
::futures::future::poll_fn(|cx| self.poll_receive_vectored(chunks, cx)).await
}
/// Polls for receiving a slice of chunks of data from the stream.
///
/// # Return value
///
/// The function returns:
///
/// - `Poll::Pending` if the stream is waiting to receive data from the peer. In this case,
/// the caller should retry receiving after the [`Waker`](core::task::Waker) on the provided
/// [`Context`](core::task::Context) is notified.
/// - `Poll::Ready(Ok((count, is_open)))` if the stream received data into the slice,
/// where `count` was the number of chunks received, and `is_open` indicating if the stream is
/// still open. If `is_open == true`, `count` will be at least `1`. If `is_open == false`, future calls to
/// [`poll_receive_vectored`](Self::poll_receive_vectored) will always return
/// `Poll::Ready(Ok((0, false)))`.
/// - `Poll::Ready(Err(e))` if the stream encountered a [`stream::Error`](crate::stream::Error).
#[inline]
pub fn poll_receive_vectored(
&mut self,
chunks: &mut [bytes::Bytes],
cx: &mut core::task::Context,
) -> core::task::Poll<$crate::stream::Result<(usize, bool)>> {
macro_rules! $dispatch {
() => {
Err($crate::stream::Error::non_readable()).into()
};
($variant: expr) => {
$variant.poll_receive_vectored(chunks, cx)
};
}
let $stream = self;
$dispatch_body
}
/// Notifies the peer to stop sending data on the stream.
///
/// This requests the peer to finish the stream as soon as possible
/// by issuing a [`reset`](crate::stream::SendStream::reset) with the
/// provided [`error_code`](crate::application::Error).
///
/// Since this is merely a request for the peer to reset the stream, the
/// stream will not immediately be in a reset state after issuing this
/// call.
///
/// If the stream has already been reset by the peer or if all data has
/// been received, the call will not trigger any action.
///
/// # Return value
///
/// The function returns:
///
/// - `Ok(())` if the stop sending message was enqueued for the peer.
/// - `Err(e)` if the stream encountered a [`stream::Error`](crate::stream::Error).
///
/// # Examples
///
/// ```rust,no_run
/// # async fn test() -> s2n_quic::stream::Result<()> {
/// # let mut connection: s2n_quic::connection::Connection = todo!();
/// #
/// while let Some(stream) = connection.accept_receive_stream().await? {
/// stream.stop_sending(123u8.into());
/// }
/// #
/// # Ok(())
/// # }
/// ```
#[inline]
pub fn stop_sending(
&mut self,
error_code: $crate::application::Error,
) -> $crate::stream::Result<()> {
macro_rules! $dispatch {
() => {
Err($crate::stream::Error::non_readable())
};
($variant: expr) => {
$variant.stop_sending(error_code)
};
}
let $stream = self;
$dispatch_body
}
/// Create a batch request for receiving data
#[inline]
pub(crate) fn rx_request(
&mut self,
) -> $crate::stream::Result<s2n_quic_transport::stream::RxRequest> {
macro_rules! $dispatch {
() => {
Err($crate::stream::Error::non_readable())
};
($variant: expr) => {
$variant.rx_request()
};
}
let $stream = self;
$dispatch_body
}
};
}
macro_rules! impl_receive_stream_trait {
($name:ident, | $stream:ident, $dispatch:ident | $dispatch_body:expr) => {
impl futures::stream::Stream for $name {
type Item = $crate::stream::Result<bytes::Bytes>;
#[inline]
fn poll_next(
mut self: core::pin::Pin<&mut Self>,
cx: &mut core::task::Context<'_>,
) -> core::task::Poll<Option<Self::Item>> {
match core::task::ready!(self.poll_receive(cx)) {
Ok(Some(v)) => Some(Ok(v)),
Ok(None) => None,
Err(err) => Some(Err(err)),
}
.into()
}
}
impl futures::io::AsyncRead for $name {
fn poll_read(
mut self: core::pin::Pin<&mut Self>,
cx: &mut core::task::Context<'_>,
buf: &mut [u8],
) -> core::task::Poll<std::io::Result<usize>> {
use bytes::Bytes;
if buf.is_empty() {
return Ok(0).into();
}
// create some chunks on the stack to receive into
// TODO investigate a better default number
let mut chunks = [
Bytes::new(),
Bytes::new(),
Bytes::new(),
Bytes::new(),
Bytes::new(),
];
let high_watermark = buf.len();
let response = core::task::ready!(self
.rx_request()?
.receive(&mut chunks)
// don't receive more than we're capable of storing
.with_high_watermark(high_watermark)
.poll(Some(cx))?
.into_poll());
let chunks = &chunks[..response.chunks.consumed];
let mut bufs = [buf];
let copied_len = s2n_quic_core::slice::vectored_copy(chunks, &mut bufs);
debug_assert_eq!(
copied_len, response.bytes.consumed,
"the consumed bytes should always have enough capacity in bufs"
);
Ok(response.bytes.consumed).into()
}
fn poll_read_vectored(
mut self: core::pin::Pin<&mut Self>,
cx: &mut core::task::Context<'_>,
bufs: &mut [futures::io::IoSliceMut],
) -> core::task::Poll<std::io::Result<usize>> {
use bytes::Bytes;
if bufs.is_empty() {
return Ok(0).into();
}
// create some chunks on the stack to receive into
// TODO investigate a better default number
let mut chunks = [
Bytes::new(),
Bytes::new(),
Bytes::new(),
Bytes::new(),
Bytes::new(),
Bytes::new(),
Bytes::new(),
Bytes::new(),
Bytes::new(),
Bytes::new(),
];
let high_watermark = bufs.iter().map(|buf| buf.len()).sum();
let response = core::task::ready!(self
.rx_request()?
.receive(&mut chunks)
// don't receive more than we're capable of storing
.with_high_watermark(high_watermark)
.poll(Some(cx))?
.into_poll());
let chunks = &chunks[..response.chunks.consumed];
let copied_len = s2n_quic_core::slice::vectored_copy(chunks, bufs);
debug_assert_eq!(
copied_len, response.bytes.consumed,
"the consumed bytes should always have enough capacity in bufs"
);
Ok(copied_len).into()
}
}
impl tokio::io::AsyncRead for $name {
fn poll_read(
mut self: core::pin::Pin<&mut Self>,
cx: &mut core::task::Context<'_>,
buf: &mut tokio::io::ReadBuf,
) -> core::task::Poll<std::io::Result<()>> {
use bytes::Bytes;
if buf.remaining() == 0 {
return Ok(()).into();
}
// create some chunks on the stack to receive into
// TODO investigate a better default number
let mut chunks = [
Bytes::new(),
Bytes::new(),
Bytes::new(),
Bytes::new(),
Bytes::new(),
];
let high_watermark = buf.remaining();
let response = core::task::ready!(self
.rx_request()?
.receive(&mut chunks)
// don't receive more than we're capable of storing
.with_high_watermark(high_watermark)
.poll(Some(cx))?
.into_poll());
for chunk in &chunks[..response.chunks.consumed] {
buf.put_slice(chunk);
}
Ok(()).into()
}
}
};
}
impl ReceiveStream {
#[inline]
pub(crate) const fn new(stream: stream::ReceiveStream) -> Self {
Self(stream)
}
/// Returns the stream's identifier
///
/// This value is unique to a particular connection. The format follows the same as what is
/// defined in the
/// [QUIC Transport RFC](https://www.rfc-editor.org/rfc/rfc9000.html#name-stream-types-and-identifier).
///
/// # Examples
///
/// ```rust,no_run
/// # async fn test() -> s2n_quic::stream::Result<()> {
/// # let connection: s2n_quic::connection::Connection = todo!();
/// #
/// while let Some(stream) = connection.accept_receive_stream().await? {
/// println!("New stream's id: {}", stream.id());
/// }
/// #
/// # Ok(())
/// # }
/// ```
#[inline]
pub fn id(&self) -> u64 {
self.0.id().into()
}
impl_connection_api!(|stream| crate::connection::Handle(stream.0.connection().clone()));
impl_receive_stream_api!(|stream, dispatch| dispatch!(stream.0));
}
impl_splittable_stream_trait!(ReceiveStream, |stream| (Some(stream), None));
impl_receive_stream_trait!(ReceiveStream, |stream, dispatch| dispatch!(stream.0));