Struct spa_loop_control_methods

Source
#[repr(C)]
pub struct spa_loop_control_methods { pub version: u32, pub get_fd: Option<unsafe extern "C" fn(object: *mut c_void) -> c_int>, pub add_hook: Option<unsafe extern "C" fn(object: *mut c_void, hook: *mut spa_hook, hooks: *const spa_loop_control_hooks, data: *mut c_void)>, pub enter: Option<unsafe extern "C" fn(object: *mut c_void)>, pub leave: Option<unsafe extern "C" fn(object: *mut c_void)>, pub iterate: Option<unsafe extern "C" fn(object: *mut c_void, timeout: c_int) -> c_int>, pub check: Option<unsafe extern "C" fn(object: *mut c_void) -> c_int>, }
Expand description

Control an event loop

The event loop control function provide API to run the event loop.

The below (pseudo)code is a minimal example outlining the use of the loop control: \code{.c} spa_loop_control_enter(loop); while (running) { spa_loop_control_iterate(loop, -1); } spa_loop_control_leave(loop); \endcode

It is also possible to add the loop to an existing event loop by using the spa_loop_control_get_fd() call. This fd will become readable when activity has been detected on the sources in the loop. spa_loop_control_iterate() with a 0 timeout should be called to process the pending sources.

spa_loop_control_enter() and spa_loop_control_leave() should be called once from the thread that will run the iterate() function.

Fields§

§version: u32§get_fd: Option<unsafe extern "C" fn(object: *mut c_void) -> c_int>

get the loop fd \param object the control to query

Get the fd of this loop control. This fd will be readable when a source in the loop has activity. The user should call iterate() with a 0 timeout to schedule one iteration of the loop and dispatch the sources. \return the fd of the loop

§add_hook: Option<unsafe extern "C" fn(object: *mut c_void, hook: *mut spa_hook, hooks: *const spa_loop_control_hooks, data: *mut c_void)>

Add a hook \param object the control to change \param hooks the hooks to add

Adds hooks to the loop controlled by \a ctrl.

§enter: Option<unsafe extern "C" fn(object: *mut c_void)>

Enter a loop \param object the control

This function should be called before calling iterate and is typically used to capture the thread that this loop will run in. It should ideally be called once from the thread that will run the loop.

§leave: Option<unsafe extern "C" fn(object: *mut c_void)>

Leave a loop \param object the control

It should ideally be called once after calling iterate when the loop will no longer be iterated from the thread that called enter().

§iterate: Option<unsafe extern "C" fn(object: *mut c_void, timeout: c_int) -> c_int>

Perform one iteration of the loop. \param ctrl the control \param timeout an optional timeout in milliseconds. 0 for no timeout, -1 for infinite timeout.

This function will block up to \a timeout milliseconds and then dispatch the fds with activity. The number of dispatched fds is returned.

§check: Option<unsafe extern "C" fn(object: *mut c_void) -> c_int>

Check context of the loop \param ctrl the control

This function will check if the current thread is currently the one that did the enter call. Since version 1:1.

returns 1 on success, 0 or negative errno value on error.

Trait Implementations§

Source§

impl Clone for spa_loop_control_methods

Source§

fn clone(&self) -> spa_loop_control_methods

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 spa_loop_control_methods

Source§

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

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

impl PartialEq for spa_loop_control_methods

Source§

fn eq(&self, other: &spa_loop_control_methods) -> 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 Copy for spa_loop_control_methods

Source§

impl Eq for spa_loop_control_methods

Source§

impl StructuralPartialEq for spa_loop_control_methods

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<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.