CaptureManager

Struct CaptureManager 

Source
pub(crate) struct CaptureManager {
    active: HashMap<u16, StreamCapture>,
}
Expand description

Manages multiple concurrent voice-stream captures.

A single Tier 3 connection can multiplex voice streams across modules (e.g. a reflector with modules A, B, C each carrying an independent transmission at the same time). The CaptureManager maps each wire stream ID to its in-progress StreamCapture so that frames are routed correctly.

§Lifecycle

  1. Self::start — called on VoiceStart: registers a new capture keyed by the stream ID from the header.
  2. Self::push_frame — called on VoiceFrame: appends the frame to the matching capture (no-op if the stream ID is unknown, which can happen if we missed the header).
  3. Self::end — called on VoiceEnd: removes and returns the capture for finalization (MP3 encode + database insert).

Fields§

§active: HashMap<u16, StreamCapture>

Active captures keyed by the wire stream ID.

Implementations§

Source§

impl CaptureManager

Source

pub(crate) fn new() -> Self

Creates an empty manager with no active captures.

Source

pub(crate) fn start(&mut self, capture: StreamCapture)

Registers a new capture. Replaces any existing entry for the same stream ID (a fresh header always supersedes any partial state).

Source

pub(crate) fn push_frame(&mut self, stream_id: u16, frame: &VoiceFrame)

Appends a voice frame to the capture matching stream_id.

No-op (logs a debug message) if no capture is registered for this stream ID. This can happen if we joined the wire mid-stream and missed the header, or if a stale frame arrives after we already processed the VoiceEnd.

Source

pub(crate) fn end(&mut self, stream_id: u16) -> Option<StreamCapture>

Finalizes and removes the capture matching stream_id.

Returns the captured state for downstream processing (MP3 encode, database insert). Returns None if no capture was registered for this stream ID.

Source

pub(crate) fn active_count(&self) -> usize

Returns the number of captures currently in progress.

Used for observability (metrics exported on the HTTP API) and for backpressure decisions in the orchestrator.

Trait Implementations§

Source§

impl Debug for CaptureManager

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for CaptureManager

Source§

fn default() -> CaptureManager

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> PolicyExt for T
where T: ?Sized,

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] only if self and other return Action::Follow. Read more
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,