cueOS  2.4
cueOS - Universal Show Control OS for ARM
DMX512_chaser_pool.c
1/***============================================================================================================================
2 * Dependencies inclusion
3 * Necessary dependencies should be declared here. Header file should contain as little dependecies declarations as possible
4 *=============================================================================================================================*/
5
6#include "cueos_config.h"
7#if cueOS_CONFIG_NODETYPE == cueOS_NODETYPE_SLAVE_DMX
8#include <stdlib.h>
9#include <string.h>
10#include "cmsis_os.h"
11#include "DMX512_chaser_pool.h"
12
13
14/***============================================================================================================================
15 * Private functions definitions
16 * These functions are only accessible from within the file's scope
17 *=============================================================================================================================*/
18
26static int16_t _DMX512_chaser_pool_search(DMX512_chaser_pool_s *chaser_pool, uint16_t id){
27 for(uint16_t i=0; i<chaser_pool->chaser_count; i++){
28 if(id == chaser_pool->chasers[i].id){
29 return i;
30 }
31 }
32 return -1;
33}
34
35
36/***============================================================================================================================
37 * Public functions definitions
38 * These functions can be accessed outside of the file's scope
39 *=============================================================================================================================*/
40
47 DMX512_chaser_pool_s *chaser_pool = pvPortMalloc(sizeof(DMX512_chaser_pool_s));
48 chaser_pool->chasers = pvPortMalloc(sizeof(DMX512_chaser_s));
49 chaser_pool->chaser_count = 0;
50 return chaser_pool;
51}
52
61
63
64 if(_DMX512_chaser_pool_search(chaser_pool, chaser.id) >=0){
66 }else{
67 chaser_pool->chasers = (DMX512_chaser_s*) pvPortRealloc(chaser_pool->chasers, sizeof(DMX512_chaser_s) * (chaser_pool->chaser_count + 1));
68 chaser_pool->chasers[chaser_pool->chaser_count] = chaser;
69 chaser_pool->chaser_count++;
70 }
71
72 return err;
73
74}
75
83
85 int16_t index = _DMX512_chaser_pool_search(chaser_pool, id);
86
87 if(index >= 0){
88 for(uint16_t i=index+1; i<chaser_pool->chaser_count; i++){
89 chaser_pool->chasers[i-1] = chaser_pool->chasers[i];
90 }
91 chaser_pool->chaser_count--;
92 chaser_pool->chasers = pvPortRealloc(chaser_pool->chasers, sizeof(DMX512_chaser_s) * (chaser_pool->chaser_count));
93 }else{
95 }
96
97 return err;
98
99}
100
108
110
111 int16_t index = _DMX512_chaser_pool_search(chaser_pool, id);
112
113 if(index >= 0){
114 *chaser = &chaser_pool->chasers[index];
115 err = DMX512_ENGINE_OK;
116 }
117
118 //TODO: return error here
119
120}
121
128 for(uint16_t i=0; i<chaser_pool->chaser_count; i++){
129 DMX512_chaser_manage(&chaser_pool->chasers[i]);
130 }
131}
132
139 if(chaser_pool != NULL){
140 vPortFree(chaser_pool->chasers);
141 vPortFree(chaser_pool);
142 }
143}
144
145#endif
DMX512_engine_err_e DMX512_chaser_pool_del(DMX512_chaser_pool_s *chaser_pool, uint16_t id)
Deletes a chaser instance from the pool.
DMX512_engine_err_e DMX512_chaser_pool_add(DMX512_chaser_pool_s *chaser_pool, DMX512_chaser_s chaser)
Adds a chaser instance into the pool.
DMX512_engine_err_e DMX512_chaser_pool_get(DMX512_chaser_pool_s *chaser_pool, uint16_t id, DMX512_chaser_s **chaser)
Gets a chaser instance from the pool.
DMX512_chaser_pool_s * DMX512_chaser_pool_new(void)
Creates a new chaser pool instance.
void DMX512_chaser_pool_free(DMX512_chaser_pool_s *chaser_pool)
Frees instance pool.
void DMX512_chaser_pool_manage(DMX512_chaser_pool_s *chaser_pool)
Manages execution of chaser instances for a whole pool.
void DMX512_chaser_manage(DMX512_chaser_s *chaser)
Handles step selection and trigger over time.
DMX512_engine_err_e
DMX512 engine error index constants.
Definition: DMX512_defs.h:24
@ DMX512_ENGINE_INSTANCE_UNDEFINED
Definition: DMX512_defs.h:28
@ DMX512_ENGINE_INSTANCE_DUPLICATE
Definition: DMX512_defs.h:26
@ DMX512_ENGINE_OK
Definition: DMX512_defs.h:25
Defines a DMX512 chaser pool object.
DMX512_chaser_s * chasers
DMX512 chaser structure object.
Definition: DMX512_chaser.h:88