Skip to main content

EslEvent

Struct EslEvent 

Source
pub struct EslEvent { /* private fields */ }
Expand description

ESL Event structure containing headers and optional body

Implementations§

Source§

impl EslEvent

Source

pub fn new() -> Self

Create a new empty event

Source

pub fn with_type(event_type: EslEventType) -> Self

Create event with specified type

Source

pub fn event_type(&self) -> Option<EslEventType>

Parsed event type, if recognized.

Source

pub fn set_event_type(&mut self, event_type: Option<EslEventType>)

Override the event type.

Source

pub fn header(&self, name: EventHeader) -> Option<&str>

Look up a header by its EventHeader enum variant (case-sensitive).

For headers not covered by EventHeader, use header_str().

Source

pub fn header_str(&self, name: &str) -> Option<&str>

Look up a header by name, trying the canonical key first then falling back through the alias map for non-canonical lookups.

Use header() with an EventHeader variant for known headers. This method is for headers not (yet) covered by the enum, such as custom X- headers or FreeSWITCH headers added after this library was published.

Source

pub fn variable_str(&self, name: &str) -> Option<&str>

Look up a channel variable by its bare name.

Equivalent to variable() but matches the HeaderLookup trait signature.

Source

pub fn headers(&self) -> &IndexMap<String, String>

All headers as a map.

Source

pub fn set_header(&mut self, name: impl Into<String>, value: impl Into<String>)

Set or overwrite a header, normalizing the key.

Source

pub fn remove_header(&mut self, name: impl AsRef<str>) -> Option<String>

Remove a header, returning its value if it existed.

Accepts both canonical and original (non-normalized) key names.

Source

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

Event body (the content after the blank line in plain-text events).

Source

pub fn set_body(&mut self, body: impl Into<String>)

Set the event body.

Source

pub fn set_priority(&mut self, priority: EslEventPriority)

Sets the priority header carried on the event.

FreeSWITCH stores this as metadata but does not use it for dispatch ordering – all events are delivered FIFO regardless of priority.

Source

pub fn push_header(&mut self, name: &str, value: &str)

Append a value to a multi-value header (PUSH semantics).

If the header doesn’t exist, sets it as a plain value. If it exists as a plain value, converts to ARRAY::old|:new. If it already has an ARRAY:: prefix, appends the new value.

let mut event = EslEvent::new();
event.push_header("X-Test", "first");
event.push_header("X-Test", "second");
assert_eq!(event.header_str("X-Test"), Some("ARRAY::first|:second"));
Source

pub fn unshift_header(&mut self, name: &str, value: &str)

Prepend a value to a multi-value header (UNSHIFT semantics).

Same conversion rules as push_header(), but inserts at the front.

let mut event = EslEvent::new();
event.set_header("X-Test", "ARRAY::b|:c");
event.unshift_header("X-Test", "a");
assert_eq!(event.header_str("X-Test"), Some("ARRAY::a|:b|:c"));
Source

pub fn is_event_type(&self, event_type: EslEventType) -> bool

Check whether this event matches the given type.

Source

pub fn to_plain_format(&self) -> String

Serialize to ESL plain text wire format with percent-encoded header values.

This is the inverse of EslParser::parse_plain_event(). The output can be fed back through the parser to reconstruct an equivalent EslEvent (round-trip).

Headers are emitted in insertion order (which matches wire order when the event was parsed from the network). Content-Length from stored headers is skipped and recomputed from the body if present.

Trait Implementations§

Source§

impl Clone for EslEvent

Source§

fn clone(&self) -> EslEvent

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for EslEvent

Source§

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

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

impl Default for EslEvent

Source§

fn default() -> Self

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

impl<'de> Deserialize<'de> for EslEvent

Available on crate feature serde only.
Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Hash for EslEvent

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl HeaderLookup for EslEvent

Source§

fn header_str(&self, name: &str) -> Option<&str>

Look up a header by its raw wire name (e.g. "Unique-ID").
Source§

fn variable_str(&self, name: &str) -> Option<&str>

Look up a channel variable by its bare name (e.g. "sip_call_id"). Read more
Source§

fn header(&self, name: EventHeader) -> Option<&str>

Look up a header by its EventHeader enum variant.
Source§

fn variable(&self, name: impl VariableName) -> Option<&str>

Look up a channel variable by its typed enum variant.
Source§

fn unique_id(&self) -> Option<&str>

Unique-ID header, falling back to Caller-Unique-ID.
Source§

fn job_uuid(&self) -> Option<&str>

Job-UUID header from bgapi BACKGROUND_JOB events.
Source§

fn channel_name(&self) -> Option<&str>

Channel-Name header (e.g. sofia/internal/1000@domain).
Source§

fn caller_id_number(&self) -> Option<&str>

Caller-Caller-ID-Number header.
Source§

fn caller_id_name(&self) -> Option<&str>

Caller-Caller-ID-Name header.
Source§

fn destination_number(&self) -> Option<&str>

Caller-Destination-Number header.
Source§

fn callee_id_number(&self) -> Option<&str>

Caller-Callee-ID-Number header.
Source§

fn callee_id_name(&self) -> Option<&str>

Caller-Callee-ID-Name header.
Source§

fn hangup_cause(&self) -> Result<Option<HangupCause>, ParseHangupCauseError>

Parse the Hangup-Cause header into a HangupCause. Read more
Source§

fn event_subclass(&self) -> Option<&str>

Event-Subclass header for CUSTOM events (e.g. sofia::register).
Source§

fn pl_data(&self) -> Option<&str>

pl_data header – SIP NOTIFY body content from NOTIFY_IN events. Read more
Source§

fn sip_event(&self) -> Option<&str>

event header – SIP event package name from NOTIFY_IN events. Read more
Source§

fn gateway_name(&self) -> Option<&str>

gateway_name header – gateway that received a SIP NOTIFY.
Source§

fn channel_state(&self) -> Result<Option<ChannelState>, ParseChannelStateError>

Parse the Channel-State header into a ChannelState. Read more
Source§

fn channel_state_number( &self, ) -> Result<Option<ChannelState>, ParseChannelStateError>

Parse the Channel-State-Number header into a ChannelState. Read more
Source§

fn call_state(&self) -> Result<Option<CallState>, ParseCallStateError>

Parse the Channel-Call-State header into a CallState. Read more
Source§

fn answer_state(&self) -> Result<Option<AnswerState>, ParseAnswerStateError>

Parse the Answer-State header into an AnswerState. Read more
Source§

fn call_direction( &self, ) -> Result<Option<CallDirection>, ParseCallDirectionError>

Parse the Call-Direction header into a CallDirection. Read more
Source§

fn priority(&self) -> Result<Option<EslEventPriority>, ParsePriorityError>

Parse the priority header value. Read more
Source§

fn timetable( &self, prefix: &str, ) -> Result<Option<ChannelTimetable>, ParseTimetableError>

Extract timetable from timestamp headers with the given prefix. Read more
Source§

fn caller_timetable( &self, ) -> Result<Option<ChannelTimetable>, ParseTimetableError>

Caller-leg channel timetable (Caller-*-Time headers).
Source§

fn other_leg_timetable( &self, ) -> Result<Option<ChannelTimetable>, ParseTimetableError>

Other-leg channel timetable (Other-Leg-*-Time headers).
Source§

impl PartialEq for EslEvent

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for EslEvent

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Eq for EslEvent

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,