µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
circular-queue.h
Go to the documentation of this file.
1 
6 #ifndef UEL_CIRCULAR_QUEUE_H
7 #define UEL_CIRCULAR_QUEUE_H
8 
10 #include <stdint.h>
11 #include <stdbool.h>
13 
22 typedef struct uel_cqueue uel_cqueue_t;
23 struct uel_cqueue {
25  void **buffer;
27  uintptr_t size;
30  uintptr_t mask;
32  uintptr_t tail;
35  uintptr_t count;
36 };
37 
45 void uel_cqueue_init(uel_cqueue_t *queue, void **buffer, uintptr_t size_log2n);
46 
52 void uel_cqueue_clear(uel_cqueue_t *queue, bool clear_buffer);
53 
60 bool uel_cqueue_push(uel_cqueue_t *queue, void *element);
61 
67 void *uel_cqueue_pop(uel_cqueue_t *queue);
68 
75 void *uel_cqueue_peek_tail(uel_cqueue_t *queue);
76 
83 void *uel_cqueue_peek_head(uel_cqueue_t *queue);
84 
90 bool uel_cqueue_is_full(uel_cqueue_t *queue);
91 
97 bool uel_cqueue_is_empty(uel_cqueue_t *queue);
98 
104 uintptr_t uel_cqueue_count(uel_cqueue_t *queue);
105 
106 #endif /* UEL_CIRCULAR_QUEUE_H */
uel_cqueue_count
uintptr_t uel_cqueue_count(uel_cqueue_t *queue)
Counts the number o elements in the queue.
uel_cqueue::size
uintptr_t size
The size of the queue. Must be a power of two.
Definition: circular-queue.h:27
uel_cqueue_pop
void * uel_cqueue_pop(uel_cqueue_t *queue)
Pops an element from the queue.
uel_cqueue_clear
void uel_cqueue_clear(uel_cqueue_t *queue, bool clear_buffer)
Empties a queue by resetting its tail and count values.
uel_cqueue
Defines a circular queue of void pointers.
Definition: circular-queue.h:23
uel_cqueue::count
uintptr_t count
Definition: circular-queue.h:35
uel_cqueue_peek_tail
void * uel_cqueue_peek_tail(uel_cqueue_t *queue)
Peeks the tail of the queue, where the oldest element is enqueued. This is the element that will be r...
uel_cqueue_peek_head
void * uel_cqueue_peek_head(uel_cqueue_t *queue)
Peeks the head of the queue, where the newest element is enqueued. This is the element that was enque...
uel_cqueue_is_empty
bool uel_cqueue_is_empty(uel_cqueue_t *queue)
Checks if the queue is empty. Use this before popping from the queue.
uel_cqueue_init
void uel_cqueue_init(uel_cqueue_t *queue, void **buffer, uintptr_t size_log2n)
Initialised a circular queue object.
uel_cqueue::tail
uintptr_t tail
The position that indicates where the oldest enqueued element is.
Definition: circular-queue.h:32
uel_cqueue_is_full
bool uel_cqueue_is_full(uel_cqueue_t *queue)
Checks if the queue is full.
uel_cqueue::mask
uintptr_t mask
Definition: circular-queue.h:30
uel_cqueue::buffer
void ** buffer
The buffer that will contain the enqueued values.
Definition: circular-queue.h:25
uel_cqueue_push
bool uel_cqueue_push(uel_cqueue_t *queue, void *element)
Pushes an element into the queue.