cQueue 
Queue handling library (written in plain c)
This library is designed for a c implementation on embedded devices, yet may be compiled without change with gcc for other purposes/targets. Designed as a library to be compatible with Arduino LibManager specifications (yet rather use Queue instead - https://github.com/SMFSW/Queue). Port of Queue has been made to work with STM32 code written in plain c.
Usage
- Initialize a Queue using
q_init(Queue_t * q, uint16_t size_rec, uint16_t nb_recs=20, QueueType type=FIFO, overwrite=false):q- pointer to the queue structsize_rec- size of a record in the queuenb_recs- number of records in the queuetype- Queue implementation type:FIFO,LIFOoverwrite- Overwrite previous records when queue is full if set totrue
- Push stuff to the queue using
q_push(Queue_t * q, void * rec)- returns
trueif successfully pushed into queue - returns
falseis queue is full
- returns
- Pop stuff from the queue using
q_pop(Queue_t * q, void * rec)orq_pull(Queue_t * q, void * rec)- returns
trueif successfully popped from queue - returns
falseif queue is empty
- returns
- Peek stuff from the queue using
q_peek(Queue_t * q, void * rec)- returns
trueif successfully peeked from queue - returns
falseif queue is empty
- returns
- Drop stuff from the queue using
q_drop(Queue_t * q)- returns
trueif successfully dropped from queue - returns
falseif queue is empty
- returns
- Peek stuff at index from the queue using
q_peekIdx(Queue_t * q, void * rec, uint16_t idx)- returns
trueif successfully peeked from queue - returns
falseif index is out of range - warning: no associated drop function, not to use with
q_drop
- returns
- Peek latest stored from the queue using
q_peekPrevious(Queue_t * q, void * rec)- returns
trueif successfully peeked from queue - returns
falseif queue is empty - warning: no associated drop function, not to use with
q_drop - note: only useful with FIFO implementation, use
q_peekinstead with a LIFO
- returns
- Other methods:
q_IsInitialized(Queue_t * q):trueif initialized properly,falseotherwiseq_isEmpty(Queue_t * q):trueif empty,falseotherwiseq_isFull(Queue_t * q):trueif full,falseotherwiseq_sizeof(Queue_t * q): queue size in bytes (returns 0 in case queue allocation failed)q_getCount(Queue_t * q)orq_nbRecs(Queue_t * q): number of records stored in the queueq_getRemainingCount(Queue_t * q): number of records left in the queueq_clean(Queue_t * q)orq_flush(Queue_t * q): remove all items in the queue
Notes
- Interrupt safe automation is not implemented in the library. You have to manually disable/enable interrupts where required.
No implementation will be made as it would be an issue when using
peek/dropmethods with LIFO implementation: if an item is put to the queue through interrupt betweenpeekanddropcalls, thedropcall would drop the wrong (newer) item. In this particular case, dropping decision must be made before re-enabling interrupts.
Examples included
- SimpleQueue.ino: Simple queue example (both LIFO FIFO implementations can be tested)
- PointersQueue.ino: Queue of function pointers performing queued actions
- QueueDuplicates.ino: Simple test to test queue duplicates before pushing to queue
- QueueIdxPeeking.ino: Simple test to test queue index picking
- RolloverTest.ino: Simple test to test queue rollover (for lib testing purposes mainly)
- LibTst.ino: flexible test (for lib testing purposes mainly)
Documentation
Doxygen doc can be generated using "Doxyfile".
Release Notes
See release notes
See also
Queue - Cpp implementation of this library

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
