µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
Data Structures | Typedefs | Enumerations | Functions
application.h File Reference

The application module is a convenient top-level container for the system internals. More...

#include "uevloop/system/containers/system-pools.h"
#include "uevloop/system/containers/system-queues.h"
#include "uevloop/system/event-loop.h"
#include "uevloop/system/scheduler.h"
#include "uevloop/system/signal.h"
#include "uevloop/utils/module.h"
Include dependency graph for application.h:

Go to the source code of this file.

Data Structures

struct  uel_application_t
 Top-level container for µEvLoop'd application. More...
 

Typedefs

typedef enum uel_app_event uel_app_event_t
 Alias to the uel_app_event enum.
 

Enumerations

enum  uel_app_event { UEL_APP_READY = 0, UEL_APP_CRASHED, UEL_APP_IDLE, UEL_APP_EVENT_COUNT }
 Events emitted by the application relay. Unused ATM.
 

Functions

void uel_app_init (uel_application_t *app)
 Initialises an uel_application_t instance. More...
 
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. More...
 
uel_module_t * uel_app_require (uel_application_t *app, size_t id)
 Fetches a module from the app's registry. More...
 
void uel_app_tick (uel_application_t *app)
 Ticks the application. More...
 
void uel_app_update_timer (uel_application_t *app, uint32_t timer)
 Updates the internal timer of an application, located at the scheduler. More...
 
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. More...
 
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. More...
 
void uel_app_enqueue_closure (uel_application_t *app, uel_closure_t *closure, void *value)
 Enqueues a closure to be invoked. More...
 
uel_event_t * uel_app_observe (uel_application_t *app, volatile uintptr_t *condition_var, uel_closure_t *closure)
 Sets up an observer. More...
 

Detailed Description

The application module is a convenient top-level container for the system internals.

Function Documentation

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

Proxies the call to uel_evloop_enqueue_closure() with uel_application_t::event_loop as parameter.

Parameters
appThe uel_application_t instance
closureThe closure to be enqueued
valueThe value to invoked the closure with

◆ uel_app_init()

void uel_app_init ( uel_application_t *  app)

Initialises an uel_application_t instance.

Parameters
appThe uel_application_t instance

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

Parameters
appThe application onto which to load the modules
modulesThe modules to be loaded
module_countThe number of modules being loaded

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

Proxies the call to uel_evloop_observe() with uel_application_t::event_loop as parameter.

Parameters
appThe uel_application_t instance
condition_varThe address of the value to be observed
closureThe closure to be invoked on change dection
Returns
The observer event associated with this operation

◆ uel_app_require()

uel_module_t* uel_app_require ( uel_application_t *  app,
size_t  id 
)

Fetches a module from the app's registry.

Parameters
appThe application from where to fetch the module
idThe module ID to be fetched
Returns
The module at idth position in the registry

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

Proxies the call to uel_sch_run_at_intervals() with uel_application_t::scheduler as parameter.

Parameters
appThe uel_application_t instance
interval_in_msThe delay in milliseconds two executions of the closure
immediateIf this flag is set, the the event will be created with a due time to the current time.
closureThe closure to be invoked when the due time is reached
valueThe value to invoked the closure with
Returns
The timer event associated with this operation

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

Proxies the call to uel_sch_run_later() with uel_application_t::scheduler as parameter.

Parameters
appThe uel_application_t instance
timeout_in_msThe delay in milliseconds until the closure is run
closureThe closure to be invoked when the due time is reached
valueThe value to invoked the closure with
Returns
The timer event associated with this operation

◆ uel_app_tick()

void uel_app_tick ( uel_application_t *  app)

Ticks the application.

Yields control to the application runtime. This will:

  1. Check if the scheduler ought to be run (i.e.: the counter has been updated or there are events awaiting rescheduling) and do so if necessary
  2. Perform a runloop
Parameters
appThe uel_application_t instance

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

Parameters
appThe uel_application_t instance
timerThe current application timer, in milliseconds