µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
|
Go to the documentation of this file.
6 #ifndef UEL_APPLICATION_H
7 #define UEL_APPLICATION_H
62 void uel_app_load(uel_application_t *app, uel_module_t **modules,
size_t module_count);
103 uel_application_t *app,
104 uint16_t timeout_in_ms,
105 uel_closure_t closure,
123 uel_application_t *app,
124 uint16_t interval_in_ms,
126 uel_closure_t closure,
140 uel_application_t *app,
141 uel_closure_t *closure,
157 uel_application_t *app,
158 volatile uintptr_t *condition_var,
159 uel_closure_t *closure
enum uel_app_event uel_app_event_t
Alias to the uel_app_event enum.
Definition: application.h:29
uel_module_t * uel_app_require(uel_application_t *app, size_t id)
Fetches a module from the app's registry.
uel_llist_t relay_buffer[UEL_APP_EVENT_COUNT]
Unused.
Definition: application.h:47
uel_signal_relay_t relay
Unused.
Definition: application.h:46
Module responsible for keeping track of time and tasks to be run in the future.
uel_evloop_t event_loop
The application's event loop.
Definition: application.h:44
uel_scheduer_t scheduler
The applications's scheduler;.
Definition: application.h:45
size_t registry_size
The number of modules managed by this application.
Definition: application.h:41
uel_event_t * uel_app_run_later(uel_application_t *app, uint16_t timeout_in_ms, uel_closure_t closure, void *value)
Enqueues a closure for later execution.
void uel_app_enqueue_closure(uel_application_t *app, uel_closure_t *closure, void *value)
Enqueues a closure to be invoked.
uel_syspools_t pools
Holds the system pools: events and llist nodes.
Definition: application.h:42
uel_event_t * uel_app_observe(uel_application_t *app, volatile uintptr_t *condition_var, uel_closure_t *closure)
Sets up an observer.
Defines signals and relays, structures used to communicate asynchronously between distant parts of th...
void uel_app_init(uel_application_t *app)
Initialises an uel_application_t instance.
uel_app_event
Events emitted by the application relay. Unused ATM.
Definition: application.h:22
Top-level container for µEvLoop'd application.
Definition: application.h:39
uel_module_t ** registry
The modules managed by this application.
Definition: application.h:40
void uel_app_tick(uel_application_t *app)
Ticks the application.
bool run_scheduler
Marks when it's time to wake the scheduler.
Definition: application.h:48
void uel_app_update_timer(uel_application_t *app, uint32_t timer)
Updates the internal timer of an application, located at the scheduler.
A container for the system's internal queues.
void uel_app_load(uel_application_t *app, uel_module_t **modules, size_t module_count)
Loads modules into an application and run their lifecycle hooks.
uel_event_t * uel_app_run_at_intervals(uel_application_t *app, uint16_t interval_in_ms, bool immediate, uel_closure_t closure, void *value)
Enqueues a closure for execution at intervals.
A container for the system's internal pools.
Module responsible for running enqueued events and process them accordingly.
uel_sysqueues_t queues
Holds the system event queues.
Definition: application.h:43