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

Module responsible for keeping track of time and tasks to be run in the future. More...

#include "uevloop/system/containers/system-pools.h"
#include "uevloop/system/containers/system-queues.h"
#include "uevloop/utils/linked-list.h"
#include "uevloop/utils/closure.h"
Include dependency graph for scheduler.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  uel_scheduer_t
 The scheduler object. More...
 

Functions

void uel_sch_init (uel_scheduer_t *scheduler, uel_syspools_t *pools, uel_sysqueues_t *queues)
 Initialises a scheduler object. More...
 
uel_event_t * uel_sch_run_later (uel_scheduer_t *scheduler, uint16_t timeout_in_ms, uel_closure_t closure, void *value)
 Enqueues a closure for later execution. More...
 
uel_event_t * uel_sch_run_at_intervals (uel_scheduer_t *scheduler, uint16_t interval_in_ms, bool immediate, uel_closure_t closure, void *value)
 Enqueues a closure for execution at intervals. More...
 
void uel_sch_manage_timers (uel_scheduer_t *scheduler)
 Enqueue timers that are due to be processed in the event queue. More...
 
void uel_sch_update_timer (uel_scheduer_t *scheduler, uint32_t timer)
 Updates the internal time counter. More...
 

Detailed Description

Module responsible for keeping track of time and tasks to be run in the future.

Function Documentation

◆ uel_sch_init()

void uel_sch_init ( uel_scheduer_t *  scheduler,
uel_syspools_t *  pools,
uel_sysqueues_t *  queues 
)

Initialises a scheduler object.

Parameters
schedulerThe uel_scheduer_t instance to be initialised
poolsThe system's internal pools
queuesThe system's internal queues

◆ uel_sch_manage_timers()

void uel_sch_manage_timers ( uel_scheduer_t *  scheduler)

Enqueue timers that are due to be processed in the event queue.

Checks, based on the current time counter, what timers should be enqueued for execution. Afterwards, enqueue them.

Parameters
schedulerThe uel_scheduer_t to manage

◆ uel_sch_run_at_intervals()

uel_event_t* uel_sch_run_at_intervals ( uel_scheduer_t *  scheduler,
uint16_t  interval_in_ms,
bool  immediate,
uel_closure_t  closure,
void *  value 
)

Enqueues a closure for execution at intervals.

Parameters
schedulerThe uel_scheduer_t into which the event will be registered
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 scheduled event

◆ uel_sch_run_later()

uel_event_t* uel_sch_run_later ( uel_scheduer_t *  scheduler,
uint16_t  timeout_in_ms,
uel_closure_t  closure,
void *  value 
)

Enqueues a closure for later execution.

Parameters
schedulerThe uel_scheduer_t into which the event will be registered
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 scheduled event

◆ uel_sch_update_timer()

void uel_sch_update_timer ( uel_scheduer_t *  scheduler,
uint32_t  timer 
)

Updates the internal time counter.

Parameters
schedulerThe scheduler whose time coounter should be updated
timerThe new counter value to be acknowledged.