libcamera
v0.3.1+12-19bbca3c
Supporting cameras in Linux since 2019
|
A poll-based event dispatcher. More...
Public Member Functions | |
void | registerEventNotifier (EventNotifier *notifier) |
Register an event notifier. More... | |
void | unregisterEventNotifier (EventNotifier *notifier) |
Unregister an event notifier. More... | |
void | registerTimer (Timer *timer) |
Register a timer. More... | |
void | unregisterTimer (Timer *timer) |
Unregister a timer. More... | |
void | processEvents () |
Wait for and process pending events. More... | |
void | interrupt () |
Interrupt any running processEvents() call as soon as possible. More... | |
A poll-based event dispatcher.
|
virtual |
Interrupt any running processEvents() call as soon as possible.
Calling this function interrupts any blocking processEvents() call in progress. The processEvents() function will return as soon as possible, after processing pending timers and events. If processEvents() isn't in progress, it will be interrupted immediately the next time it gets called.
Implements libcamera::EventDispatcher.
|
virtual |
Wait for and process pending events.
This function processes all pending events associated with registered event notifiers and timers and signals the corresponding EventNotifier and Timer objects. If no events are pending, it waits for the first event and processes it before returning.
Implements libcamera::EventDispatcher.
|
virtual |
Register an event notifier.
[in] | notifier | The event notifier to register |
Once the notifier is registered with the dispatcher, the dispatcher will emit the notifier EventNotifier::activated signal whenever a corresponding event is detected on the notifier's file descriptor. The event is monitored until the notifier is unregistered with unregisterEventNotifier().
Registering multiple notifiers for the same file descriptor and event type is not allowed and results in undefined behaviour.
Implements libcamera::EventDispatcher.
|
virtual |
Register a timer.
[in] | timer | The timer to register |
Once the timer is registered with the dispatcher, the dispatcher will emit the timer Timer::timeout signal when the timer times out. The timer can be unregistered with unregisterTimer() before it times out, in which case the signal will not be emitted.
When the timer times out, it is automatically unregistered by the dispatcher and can be registered back as early as from the Timer::timeout signal handlers.
Registering the same timer multiple times is not allowed and results in undefined behaviour.
Implements libcamera::EventDispatcher.
|
virtual |
Unregister an event notifier.
[in] | notifier | The event notifier to unregister |
After this function returns the notifier is guaranteed not to emit the EventNotifier::activated signal.
If the notifier isn't registered, this function performs no operation.
Implements libcamera::EventDispatcher.
|
virtual |
Unregister a timer.
[in] | timer | The timer to unregister |
After this function returns the timer is guaranteed not to emit the Timer::timeout signal.
If the timer isn't registered, this function performs no operation.
Implements libcamera::EventDispatcher.