µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
|
Defines pipelines, structures to hold many closures and functions to invoke them sequentially, composing their functionality. More...
#include "uevloop/utils/closure.h"
Go to the source code of this file.
Data Structures | |
struct | uel_pipeline_t |
A pipeline is an ordered closure list to be run in sequence. More... | |
Macros | |
#define | UEL_PIPELINE_DECLARE(id, ...) |
Helper macro to create a pipeline and its required data structures. More... | |
Functions | |
void | uel_pipeline_init (uel_pipeline_t *pipeline, uel_closure_t *closures, size_t count) |
Initialises a new pipeline. More... | |
void * | uel_pipeline_apply (uel_pipeline_t *pipeline, void *params) |
Applies a pipeline to some input. More... | |
Defines pipelines, structures to hold many closures and functions to invoke them sequentially, composing their functionality.
#define UEL_PIPELINE_DECLARE | ( | id, | |
... | |||
) |
Helper macro to create a pipeline and its required data structures.
This macro, based on the input identifier, declares:
id | The identifier on which to base declared variables' names. |
... | The closures to be pipelined. |
void* uel_pipeline_apply | ( | uel_pipeline_t * | pipeline, |
void * | params | ||
) |
Applies a pipeline to some input.
This function takes some input and passes it to the first closure in the pipeline. The value returned from this first closure will be passed to the second one and so on.
pipeline | The pipeline to be applied |
params | The initial parameters that will be passed to the first closure |
void uel_pipeline_init | ( | uel_pipeline_t * | pipeline, |
uel_closure_t * | closures, | ||
size_t | count | ||
) |
Initialises a new pipeline.
pipeline | The pipeline to be initialised |
closures | The closures that should be run in sequence, in an array. |
count | The number of closures to be piped. |