-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatic_fifo_queue.c
97 lines (91 loc) · 2.47 KB
/
static_fifo_queue.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#include "static_fifo_queue.h"
#include <stdint.h>
#include <stdio.h>
#include <string.h>
sfqueue_t sfq_create_queue(const void* storage, SFQ_WIDTH_TYPE storage_width, SFQ_LENGTH_TYPE max_length)
{
sfqueue_t queue = {0U};
if((storage != NULL) && (storage_width != 0U) && (max_length != 0U))
{
queue.storage = (void*)storage;
queue.max_length = max_length;
}
return queue;
}
sfqueue_err_t sfq_check_queue(const sfqueue_t* queue)
{
sfqueue_err_t ret = SFQ_ERR_OK;
if((queue->storage == NULL)
|| (queue->max_length == (SFQ_LENGTH_TYPE) 0U)
|| (queue->storage_width == (SFQ_WIDTH_TYPE) 0U))
{
ret = SFQ_ERR_ARG;
}
return ret;
}
sfqueue_err_t sfq_enqueue(sfqueue_t* queue, void* source)
{
sfqueue_err_t ret = SFQ_ERR_OK;
if((queue == NULL) || (source == NULL))
{
ret = SFQ_ERR_ARG;
}
else if(queue->length >= (SFQ_LENGTH_TYPE) queue->max_length)
{
ret = SFQ_ERR_FULL;
}
else
{
uint8_t* target = &(((uint8_t*)queue->storage)[queue->tail * queue->storage_width]);
SFQ_WIDTH_TYPE storage_idx;
for(storage_idx = (SFQ_WIDTH_TYPE) 0U; storage_idx < queue->storage_width; storage_idx++)
{
target[storage_idx] = ((uint8_t*)source)[storage_idx];
}
queue->length++;
queue->tail++;
if(queue->tail >= queue->max_length)
{
queue->tail = (SFQ_LENGTH_TYPE) 0U;
}
}
return ret;
}
sfqueue_err_t sfq_dequeue(sfqueue_t* queue, void* destination)
{
sfqueue_err_t ret = SFQ_ERR_OK;
if((queue == NULL) || (destination == NULL))
{
ret = SFQ_ERR_ARG;
}
else if(queue->length == (SFQ_LENGTH_TYPE) 0U)
{
ret = SFQ_ERR_EMPTY;
}
else
{
uint8_t* source = &(((uint8_t*)queue->storage)[queue->head * queue->storage_width]);
SFQ_WIDTH_TYPE storage_idx;
for(storage_idx = (SFQ_WIDTH_TYPE) 0U; storage_idx < queue->storage_width; storage_idx++)
{
((uint8_t*)destination)[storage_idx] = source[storage_idx];
}
queue->head++;
queue->length--;
if(queue->head >= queue->max_length)
{
queue->head = (SFQ_LENGTH_TYPE) 0U;
}
}
return ret;
}
SFQ_LENGTH_TYPE sfq_remaining(sfqueue_t* queue)
{
SFQ_LENGTH_TYPE ret = (SFQ_LENGTH_TYPE) 0U;
sfqueue_err_t err = sfq_check_queue(queue);
if(err == SFQ_ERR_OK)
{
ret = queue->length;
}
return ret;
}