s2n-quic-dc 0.72.0

Internal crate used by s2n-quic
Documentation
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

use crate::{
    clock,
    either::Either,
    event,
    stream::{recv, runtime, socket, TransportFeatures},
};
use core::future::Future;
use s2n_quic_core::{inet::SocketAddress, time::Timestamp, varint::VarInt};
use s2n_quic_platform::features;
use std::{io, sync::Arc};

use super::recv::buffer::Buffer;

type Result<T = (), E = io::Error> = core::result::Result<T, E>;

#[cfg(any(feature = "testing", test))]
pub mod bach;
#[cfg(feature = "tokio")]
pub mod tokio;
pub mod udp;

pub trait Environment {
    type Clock: Clone + clock::Clock;
    type Subscriber: event::Subscriber + Clone;

    fn subscriber(&self) -> &Self::Subscriber;
    fn clock(&self) -> Self::Clock;
    fn gso(&self) -> features::Gso;
    fn reader_rt(&self) -> runtime::ArcHandle<Self::Subscriber>;
    fn spawn_reader<F: 'static + Send + Future<Output = ()>>(&self, f: F);
    fn writer_rt(&self) -> runtime::ArcHandle<Self::Subscriber>;
    fn spawn_writer<F: 'static + Send + Future<Output = ()>>(&self, f: F);

    /// Creates an endpoint publisher with the environment's subscriber
    #[inline]
    fn endpoint_publisher(&self) -> event::EndpointPublisherSubscriber<'_, Self::Subscriber> {
        use s2n_quic_core::time::Clock as _;

        self.endpoint_publisher_with_time(self.clock().get_time())
    }

    #[inline]
    fn endpoint_publisher_with_time(
        &self,
        timestamp: Timestamp,
    ) -> event::EndpointPublisherSubscriber<'_, Self::Subscriber> {
        use s2n_quic_core::event::IntoEvent;

        let timestamp = timestamp.into_event();

        event::EndpointPublisherSubscriber::new(
            event::builder::EndpointMeta { timestamp },
            None,
            self.subscriber(),
        )
    }
}

impl<A, B> Environment for Either<A, B>
where
    A: Environment,
    B: Environment<Subscriber = A::Subscriber>,
{
    type Clock = Either<A::Clock, B::Clock>;
    type Subscriber = A::Subscriber;

    fn subscriber(&self) -> &Self::Subscriber {
        match self {
            Either::A(a) => a.subscriber(),
            Either::B(b) => b.subscriber(),
        }
    }

    fn clock(&self) -> Self::Clock {
        match self {
            Either::A(a) => Either::A(a.clock()),
            Either::B(b) => Either::B(b.clock()),
        }
    }

    fn gso(&self) -> features::Gso {
        match self {
            Either::A(a) => a.gso(),
            Either::B(b) => b.gso(),
        }
    }

    fn reader_rt(&self) -> runtime::ArcHandle<Self::Subscriber> {
        match self {
            Either::A(a) => a.reader_rt(),
            Either::B(b) => b.reader_rt(),
        }
    }

    fn spawn_reader<F: 'static + Send + Future<Output = ()>>(&self, f: F) {
        match self {
            Either::A(a) => a.spawn_reader(f),
            Either::B(b) => b.spawn_reader(f),
        }
    }

    fn writer_rt(&self) -> runtime::ArcHandle<Self::Subscriber> {
        match self {
            Either::A(a) => a.writer_rt(),
            Either::B(b) => b.writer_rt(),
        }
    }

    fn spawn_writer<F: 'static + Send + Future<Output = ()>>(&self, f: F) {
        match self {
            Either::A(a) => a.spawn_writer(f),
            Either::B(b) => b.spawn_writer(f),
        }
    }
}

pub struct SocketSet<R, W = R> {
    pub application: Box<dyn socket::application::Builder>,
    pub read_worker: Option<R>,
    pub write_worker: Option<W>,
    pub remote_addr: SocketAddress,
    pub source_queue_id: Option<VarInt>,
}

type SetupResult<ReadWorker, WriteWorker> =
    Result<(SocketSet<ReadWorker, WriteWorker>, recv::shared::RecvBuffer)>;

pub trait Peer<E: Environment> {
    type ReadWorkerSocket: ReadWorkerSocket;
    type WriteWorkerSocket: WriteWorkerSocket;

    fn features(&self) -> TransportFeatures;
    fn setup(self, env: &E) -> SetupResult<Self::ReadWorkerSocket, Self::WriteWorkerSocket>;
}

pub trait ReadWorkerSocket {
    type Socket: super::socket::Socket;

    fn setup(self) -> Self::Socket;
}

impl ReadWorkerSocket for () {
    type Socket = super::socket::SendOnly<Arc<std::net::UdpSocket>>;

    #[inline]
    fn setup(self) -> Self::Socket {
        unreachable!()
    }
}

impl<T: super::socket::Socket> ReadWorkerSocket for T {
    type Socket = T;

    #[inline]
    fn setup(self) -> Self::Socket {
        self
    }
}

pub trait WriteWorkerSocket {
    type Socket: super::socket::Socket;
    type Buffer: 'static + Buffer + Send;

    fn setup(self) -> (Self::Socket, Self::Buffer);
}

impl WriteWorkerSocket for () {
    type Socket = super::socket::SendOnly<Arc<std::net::UdpSocket>>;
    type Buffer = recv::buffer::Local;

    #[inline]
    fn setup(self) -> (Self::Socket, Self::Buffer) {
        unreachable!()
    }
}

impl<T: super::socket::Socket, B: 'static + Buffer + Send> WriteWorkerSocket for (T, B) {
    type Socket = T;
    type Buffer = B;

    #[inline]
    fn setup(self) -> (Self::Socket, Self::Buffer) {
        self
    }
}

pub struct AcceptError<Peer> {
    pub secret_control: Vec<u8>,
    pub peer: Option<Peer>,
    pub error: io::Error,
}

pub struct Builder<E: Environment> {
    env: E,
}

impl<E: Environment> Builder<E> {
    #[inline]
    pub fn new(env: E) -> Self {
        Self { env }
    }

    #[inline]
    pub fn clock(&self) -> E::Clock {
        self.env.clock()
    }
}