µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
application.h
Go to the documentation of this file.
1 
6 #ifndef UEL_APPLICATION_H
7 #define UEL_APPLICATION_H
8 #include <stdint.h>
10 #include <stdbool.h>
11 #include <stdlib.h>
13 
18 #include "uevloop/system/signal.h"
19 #include "uevloop/utils/module.h"
20 
23  UEL_APP_READY = 0,
24  UEL_APP_CRASHED,
25  UEL_APP_IDLE,
26  UEL_APP_EVENT_COUNT
27 };
30 
38 typedef struct uel_application uel_application_t;
40  uel_module_t **registry;
41  size_t registry_size;
42  uel_syspools_t pools;
43  uel_sysqueues_t queues;
44  uel_evloop_t event_loop;
45  uel_scheduer_t scheduler;
46  uel_signal_relay_t relay;
47  uel_llist_t relay_buffer[UEL_APP_EVENT_COUNT];
49 };
50 
54 void uel_app_init(uel_application_t *app);
55 
62 void uel_app_load(uel_application_t *app, uel_module_t **modules, size_t module_count);
63 
71 uel_module_t *uel_app_require(uel_application_t *app, size_t id);
72 
82 void uel_app_tick(uel_application_t *app);
83 
89 void uel_app_update_timer(uel_application_t *app, uint32_t timer);
90 
102  uel_event_t *uel_app_run_later(
103  uel_application_t *app,
104  uint16_t timeout_in_ms,
105  uel_closure_t closure,
106  void *value
107  );
108 
122 uel_event_t *uel_app_run_at_intervals(
123  uel_application_t *app,
124  uint16_t interval_in_ms,
125  bool immediate,
126  uel_closure_t closure,
127  void *value
128 );
129 
140  uel_application_t *app,
141  uel_closure_t *closure,
142  void *value
143 );
144 
156 uel_event_t *uel_app_observe(
157  uel_application_t *app,
158  volatile uintptr_t *condition_var,
159  uel_closure_t *closure
160 );
161 
162 #endif /* end of include guard: UEL_APPLICATION_H */
uel_app_event_t
enum uel_app_event uel_app_event_t
Alias to the uel_app_event enum.
Definition: application.h:29
uel_app_require
uel_module_t * uel_app_require(uel_application_t *app, size_t id)
Fetches a module from the app's registry.
module.h
uel_application::relay_buffer
uel_llist_t relay_buffer[UEL_APP_EVENT_COUNT]
Unused.
Definition: application.h:47
uel_application::relay
uel_signal_relay_t relay
Unused.
Definition: application.h:46
scheduler.h
Module responsible for keeping track of time and tasks to be run in the future.
uel_application::event_loop
uel_evloop_t event_loop
The application's event loop.
Definition: application.h:44
uel_application::scheduler
uel_scheduer_t scheduler
The applications's scheduler;.
Definition: application.h:45
uel_application::registry_size
size_t registry_size
The number of modules managed by this application.
Definition: application.h:41
uel_app_run_later
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.
uel_app_enqueue_closure
void uel_app_enqueue_closure(uel_application_t *app, uel_closure_t *closure, void *value)
Enqueues a closure to be invoked.
uel_application::pools
uel_syspools_t pools
Holds the system pools: events and llist nodes.
Definition: application.h:42
uel_app_observe
uel_event_t * uel_app_observe(uel_application_t *app, volatile uintptr_t *condition_var, uel_closure_t *closure)
Sets up an observer.
signal.h
Defines signals and relays, structures used to communicate asynchronously between distant parts of th...
uel_app_init
void uel_app_init(uel_application_t *app)
Initialises an uel_application_t instance.
uel_app_event
uel_app_event
Events emitted by the application relay. Unused ATM.
Definition: application.h:22
uel_application
Top-level container for µEvLoop'd application.
Definition: application.h:39
uel_application::registry
uel_module_t ** registry
The modules managed by this application.
Definition: application.h:40
uel_app_tick
void uel_app_tick(uel_application_t *app)
Ticks the application.
uel_application::run_scheduler
bool run_scheduler
Marks when it's time to wake the scheduler.
Definition: application.h:48
uel_app_update_timer
void uel_app_update_timer(uel_application_t *app, uint32_t timer)
Updates the internal timer of an application, located at the scheduler.
system-queues.h
A container for the system's internal queues.
uel_app_load
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_app_run_at_intervals
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.
system-pools.h
A container for the system's internal pools.
event-loop.h
Module responsible for running enqueued events and process them accordingly.
uel_application::queues
uel_sysqueues_t queues
Holds the system event queues.
Definition: application.h:43