Skip to main content

EventDecoder

Struct EventDecoder 

pub struct EventDecoder<T = String>
where T: EventDataRead,
{ /* private fields */ }
Available on crate features http and std only.
Expand description

Push-driven decoder turning raw SSE bytes into Events.

Push borrowed chunks to inspect an SSE body while forwarding it unchanged. Use EventStream to decode a stream of chunks instead.

Push a chunk, drain what it completed, repeat, and call finish once the body ends:

use rama_http_types::sse::EventDecoder;

let mut decoder = EventDecoder::<String>::new();

for chunk in [&b"data: hello\n"[..], b"\ndata: wor", b"ld\n\n"] {
    decoder.push(chunk)?;
    for event in decoder.events() {
        let event = event?;
        assert!(matches!(event.data(), Some(data) if data == "hello" || data == "world"));
    }
}
decoder.finish()?;

Chunks may split lines, UTF-8 sequences and CRLF pairs anywhere. Partial lines and undecoded chunk tails are buffered.

Events dispatch on blank lines. finish is optional; it checks trailing UTF-8 without dispatching an event. on_incomplete receives the buffered partial line on finish or drop.

Input is unlimited by default. For untrusted input, set max_line_len and max_event_len. These limits do not cap the undecoded backlog; drain events between pushes.

A decode error is fatal by default. lenient mode instead recovers to the next event boundary, losing only the events around the fault — useful when observing a stream that must not be blinded by one bad event.

Implementations§

§

impl<T> EventDecoder<T>
where T: EventDataRead,

pub fn new() -> EventDecoder<T>

Create a new EventDecoder.

pub fn maybe_with_max_line_len(self, max: Option<usize>) -> EventDecoder<T>

Fail decoding once a single line grows past max bytes, terminator excluded.

pub fn maybe_set_max_line_len( &mut self, max: Option<usize>, ) -> &mut EventDecoder<T>

Fail decoding once a single line grows past max bytes, terminator excluded.

pub fn with_max_line_len(self, max: usize) -> EventDecoder<T>

Fail decoding once a single line grows past max bytes, terminator excluded.

pub fn set_max_line_len(&mut self, max: usize) -> &mut EventDecoder<T>

Fail decoding once a single line grows past max bytes, terminator excluded.

pub fn without_max_line_len(self) -> EventDecoder<T>

Fail decoding once a single line grows past max bytes, terminator excluded.

pub fn unset_max_line_len(&mut self) -> &mut EventDecoder<T>

Fail decoding once a single line grows past max bytes, terminator excluded.

pub fn maybe_with_max_event_len(self, max: Option<usize>) -> EventDecoder<T>

Fail decoding once an event exceeds max raw line bytes. Includes field names, separators, comments, unknown fields and partial lines; excludes line terminators. Resets per event.

pub fn maybe_set_max_event_len( &mut self, max: Option<usize>, ) -> &mut EventDecoder<T>

Fail decoding once an event exceeds max raw line bytes. Includes field names, separators, comments, unknown fields and partial lines; excludes line terminators. Resets per event.

pub fn with_max_event_len(self, max: usize) -> EventDecoder<T>

Fail decoding once an event exceeds max raw line bytes. Includes field names, separators, comments, unknown fields and partial lines; excludes line terminators. Resets per event.

pub fn set_max_event_len(&mut self, max: usize) -> &mut EventDecoder<T>

Fail decoding once an event exceeds max raw line bytes. Includes field names, separators, comments, unknown fields and partial lines; excludes line terminators. Resets per event.

pub fn without_max_event_len(self) -> EventDecoder<T>

Fail decoding once an event exceeds max raw line bytes. Includes field names, separators, comments, unknown fields and partial lines; excludes line terminators. Resets per event.

pub fn unset_max_event_len(&mut self) -> &mut EventDecoder<T>

Fail decoding once an event exceeds max raw line bytes. Includes field names, separators, comments, unknown fields and partial lines; excludes line terminators. Resets per event.

pub fn maybe_with_on_incomplete( self, cb: Option<Box<dyn FnOnce(Vec<u8>) + Sync + Send>>, ) -> EventDecoder<T>

Pass a nonempty buffered partial line to cb at most once, on finish or drop.

Bytes may contain invalid UTF-8. Completed lines from an unfinished event and undrained input are excluded.

pub fn maybe_set_on_incomplete( &mut self, cb: Option<Box<dyn FnOnce(Vec<u8>) + Sync + Send>>, ) -> &mut EventDecoder<T>

Pass a nonempty buffered partial line to cb at most once, on finish or drop.

Bytes may contain invalid UTF-8. Completed lines from an unfinished event and undrained input are excluded.

pub fn with_on_incomplete( self, cb: Box<dyn FnOnce(Vec<u8>) + Sync + Send>, ) -> EventDecoder<T>

Pass a nonempty buffered partial line to cb at most once, on finish or drop.

Bytes may contain invalid UTF-8. Completed lines from an unfinished event and undrained input are excluded.

pub fn set_on_incomplete( &mut self, cb: Box<dyn FnOnce(Vec<u8>) + Sync + Send>, ) -> &mut EventDecoder<T>

Pass a nonempty buffered partial line to cb at most once, on finish or drop.

Bytes may contain invalid UTF-8. Completed lines from an unfinished event and undrained input are excluded.

pub fn without_on_incomplete(self) -> EventDecoder<T>

Pass a nonempty buffered partial line to cb at most once, on finish or drop.

Bytes may contain invalid UTF-8. Completed lines from an unfinished event and undrained input are excluded.

pub fn unset_on_incomplete(&mut self) -> &mut EventDecoder<T>

Pass a nonempty buffered partial line to cb at most once, on finish or drop.

Bytes may contain invalid UTF-8. Completed lines from an unfinished event and undrained input are excluded.

pub fn with_lenient(self, lenient: bool) -> EventDecoder<T>

Recover from a decode fault instead of failing the whole stream.

When on, a fault drops the event being built and skips to the next blank line, then resumes — losing only the events around it, never the rest of the stream. Off by default. See resync_count and with_on_resync to observe recovery.

pub fn set_lenient(&mut self, lenient: bool) -> &mut EventDecoder<T>

Recover from a decode fault instead of failing the whole stream.

When on, a fault drops the event being built and skips to the next blank line, then resumes — losing only the events around it, never the rest of the stream. Off by default. See resync_count and with_on_resync to observe recovery.

pub fn maybe_with_on_resync( self, sink: Option<Arc<dyn ErrorSink>>, ) -> EventDecoder<T>

Route each resync in lenient mode to an ErrorSink, which receives the triggering error. Wrap a Fn(BoxError) + Send + Sync closure in Arc to use one.

pub fn maybe_set_on_resync( &mut self, sink: Option<Arc<dyn ErrorSink>>, ) -> &mut EventDecoder<T>

Route each resync in lenient mode to an ErrorSink, which receives the triggering error. Wrap a Fn(BoxError) + Send + Sync closure in Arc to use one.

pub fn with_on_resync(self, sink: Arc<dyn ErrorSink>) -> EventDecoder<T>

Route each resync in lenient mode to an ErrorSink, which receives the triggering error. Wrap a Fn(BoxError) + Send + Sync closure in Arc to use one.

pub fn set_on_resync( &mut self, sink: Arc<dyn ErrorSink>, ) -> &mut EventDecoder<T>

Route each resync in lenient mode to an ErrorSink, which receives the triggering error. Wrap a Fn(BoxError) + Send + Sync closure in Arc to use one.

pub fn without_on_resync(self) -> EventDecoder<T>

Route each resync in lenient mode to an ErrorSink, which receives the triggering error. Wrap a Fn(BoxError) + Send + Sync closure in Arc to use one.

pub fn unset_on_resync(&mut self) -> &mut EventDecoder<T>

Route each resync in lenient mode to an ErrorSink, which receives the triggering error. Wrap a Fn(BoxError) + Send + Sync closure in Arc to use one.

pub fn resync_count(&self) -> usize

How many resyncs have happened in lenient mode. Zero when off, and nonzero exactly when recovery occurred — a health signal for an otherwise silent stream. Best-effort: the tally can shift slightly with how the input is chunked, though the surviving events do not.

pub fn try_set_last_event_id( &mut self, id: impl Into<SmolStr>, ) -> Result<(), Box<dyn Error + Sync + Send>>

Set the last event ID, e.g. to initialize the decoder with the ID a previous connection ended on.

pub fn last_event_id(&self) -> Option<&str>

The ID of the last event yielded that carried one.

pub fn push(&mut self, chunk: &[u8]) -> Result<(), Box<dyn Error + Sync + Send>>

Push one chunk of the event stream into the decoder.

Undecoded bytes are buffered. Drain with events between pushes to keep the backlog empty.

Decode errors surface through next_event after preceding events. This method returns an error if already finished or failed.

pub fn next_event( &mut self, ) -> Result<Option<Event<T>>, Box<dyn Error + Sync + Send>>

Yield the next decoded event, or None once everything pushed so far has been decoded.

An error is fatal: the byte stream can no longer be interpreted reliably, so the decoder yields nothing further.

pub fn events(&mut self) -> Events<'_, T>

Iterator over the events decodable from what was pushed so far, ending on the first error.

pub fn finish(&mut self) -> Result<(), Box<dyn Error + Sync + Send>>

End input and validate trailing UTF-8 without dispatching an event.

Releases the buffered partial line, passing it to on_incomplete if set, even if validation fails. Drain events first; undecoded input is a fatal error.

Trait Implementations§

§

impl<T> Debug for EventDecoder<T>

§

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

Formats the value using the given formatter. Read more
§

impl<T> Default for EventDecoder<T>
where T: EventDataRead,

§

fn default() -> EventDecoder<T>

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

impl<T> Drop for EventDecoder<T>
where T: EventDataRead,

§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

fn pin_drop(self: Pin<&mut Self>)

🔬This is a nightly-only experimental API. (pin_ergonomics)
Execute the destructor for this type, but different to Drop::drop, it requires self to be pinned. Read more

Auto Trait Implementations§

§

impl<T = String> !RefUnwindSafe for EventDecoder<T>

§

impl<T = String> !UnwindSafe for EventDecoder<T>

§

impl<T> Freeze for EventDecoder<T>
where DecodeState<T>: Freeze,

§

impl<T> Send for EventDecoder<T>
where DecodeState<T>: Send,

§

impl<T> Sync for EventDecoder<T>
where DecodeState<T>: Sync,

§

impl<T> Unpin for EventDecoder<T>
where DecodeState<T>: Unpin,

§

impl<T> UnsafeUnpin for EventDecoder<T>
where DecodeState<T>: UnsafeUnpin,

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
§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

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
§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
§

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> IntoRequest<T> for T

§

fn into_request(self) -> Request<T>

Wrap the input message T in a rama_grpc::Request
§

impl<L> LayerExt<L> for L

§

fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>
where L: Layer<S>,

Applies the layer to a service and wraps it in Layered.
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

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

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + 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: Sized + 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
§

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

§

fn rama_from(value: T) -> U

§

impl<T, U, CrateMarker> RamaInto<U, CrateMarker> for T
where U: RamaFrom<T, CrateMarker>,

§

fn rama_into(self) -> U

§

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

§

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

§

fn rama_try_from(value: T) -> Result<U, <U as RamaTryFrom<T>>::Error>

§

impl<T, U, CrateMarker> RamaTryInto<U, CrateMarker> for T
where U: RamaTryFrom<T, CrateMarker>,

§

type Error = <U as RamaTryFrom<T, CrateMarker>>::Error

§

fn rama_try_into(self) -> Result<U, <U as RamaTryFrom<T, CrateMarker>>::Error>

§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

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 = !

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

fn try_from(value: U) -> Result<T, !>

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<V, F> ValueFormatter<&V> for F
where F: ValueFormatter<V> + ?Sized, V: ?Sized,

§

const SHAPE: FieldShape<'static>

Available on non-metrique_require_explicit_impls only.
The shape of values produced by this formatter. Read more
§

fn format_value(writer: impl ValueWriter, value: &&V)

Write value to writer
§

impl<V, F> ValueFormatter<Arc<V>> for F
where F: ValueFormatter<V> + ?Sized, V: ?Sized,

§

const SHAPE: FieldShape<'static>

Available on non-metrique_require_explicit_impls only.
The shape of values produced by this formatter. Read more
§

fn format_value(writer: impl ValueWriter, value: &Arc<V>)

Write value to writer
§

impl<V, F> ValueFormatter<Box<V>> for F
where F: ValueFormatter<V> + ?Sized, V: ?Sized,

§

const SHAPE: FieldShape<'static>

Available on non-metrique_require_explicit_impls only.
The shape of values produced by this formatter. Read more
§

fn format_value(writer: impl ValueWriter, value: &Box<V>)

Write value to writer
§

impl<V, F> ValueFormatter<Cow<'_, V>> for F
where V: ToOwned + ?Sized, F: ValueFormatter<V> + ?Sized,

§

const SHAPE: FieldShape<'static>

Available on non-metrique_require_explicit_impls only.
The shape of values produced by this formatter. Read more
§

fn format_value(writer: impl ValueWriter, value: &Cow<'_, V>)

Write value to writer
§

impl<V, F> ValueFormatter<Option<V>> for F
where F: ValueFormatter<V> + ?Sized,

§

const SHAPE: FieldShape<'static>

Available on non-metrique_require_explicit_impls only.
The shape of values produced by this formatter. Read more
§

fn format_value(writer: impl ValueWriter, value: &Option<V>)

Write value to writer
§

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