--- title: "queue_spsc_locked" --- This class is designed to be a more generally useful version of `etl::queue_spsc_isr` and can replace it. A fixed capacity single-producer, single-consumer queue, generally used to transfer data to or from an ISR. Calls from the 'unlocked' thread of execution (ISR) must use the `_from_unlocked` versions. Helper functions must be supplied at construction that lock (disable) and unlock (enable) the relevant ISR. They are passed as const references to `etl::ifunction`. They must perform the requisite memory barriers to preserve the order of execution. Many functions have two versions. One locks and unlocks access and is used from the foreground task (non-ISR). The other, with a `_from_unlocked` suffix, are called from the ISR. ```cpp etl::queue_spsc_locked ``` Inherits from `etl::iqueue_spsc_locked`. `etl::iqueue_spsc_locked` may be used as a size independent pointer or reference type for any `etl::queue_spsc_locked` instance of the same implementation. The memory model determines the type used internally for indexes and size, to allow for the most efficient implementation for the application. ## Maximum queue sizes ```cpp MEMORY_MODEL_SMALL 255 MEMORY_MODEL_MEDIUM 65535 MEMORY_MODEL_LARGE 2147483647 MEMORY_MODEL_HUGE 9223372036854775807 ``` ## Member types ```cpp value_type T size_type pointer value_type* const_pointer const value_type* reference value_type& const_reference const value_type& ``` ## Constructor ```cpp queue_spsc_locked(const etl::ifunction& lock, const etl::ifunction& unlock) ``` **Parameters** `lock` The lock function wrapper. `unlock` The unlock function wrapper. ## Capacity ```cpp bool empty() const bool empty_from_unlocked() const ``` **Description** Returns `true` if the size of the queue is zero, otherwise `false`. --- ```cpp bool full() const bool full_from_unlocked() const ``` **Description** Returns `true` if the size of the queue is SIZE, otherwise `false`. --- ```cpp size_type size() const size_type size_from_unlocked() const ``` **Description** Returns the size of the queue. --- ```cpp size_type available() const size_type available_from_unlocked() const ``` **Description** Returns the remaining available capacity in the queue. --- ```cpp size_type max_size() const ``` **Description** Returns the maximum possible size of the queue. --- ```cpp size_type capacity() const ``` **Description** Returns the maximum possible size of the queue. ## Modifiers ```cpp bool push(const T& value) bool push(T&& value) bool push_from_locked(const T& value) bool push_from_locked(T&& value) ``` **Description** Pushes a value to the back of the queue. Returns `true` if successful, otherwise `false`. --- ```cpp bool pop() bool pop_from_unlocked() ``` **Description** Pop a value from the front of the list. Returns `true` if successful, otherwise `false`. --- ```cpp bool pop(T& value) bool pop_from_locked(T& value) bool pop(T&& value) bool pop_from_locked(T&& value) ``` **Description** Pop a value from the front of the list and place it in value. Returns `true` if successful, otherwise `false`. --- ```cpp void clear() void clear_from_unlocked() ``` **Description** Clears the queue to a size of zero. ### C++03 ```cpp bool emplace(const T1& value1) bool emplace(const T1& value1, const T2& value2) bool emplace(const T1& value1, const T2& value2, const T3& value3) bool emplace(const T1& value1, const T2& value2, const T3& value3, const T4& value4) ``` **Description** Constructs an item in the the queue 'in place'. --- ```cpp bool emplace_from_unlocked(const T1& value1) bool emplace_from_unlocked(const T1& value1, const T2& value2) bool emplace_from_unlocked(const T1& value1, const T2& value2, const T3& value3) bool emplace_from_unlocked(const T1& value1, const T2& value2, const T3& value3, const T4& value4) ``` **Description** Constructs an item in the the queue 'in place'. ### C++11 ```cpp template bool emplace(Args&&… args) ``` **Description** Constructs an item in the the queue 'in place'. --- ```cpp template bool emplace_from_unlocked(Args&&... args) ``` **Description** Constructs an item in the the queue 'in place'. ## Notes Remember that interrupts may occur between calls to the access protected functions. For example, a call to `empty()` may return `true`, but a subsequent call to `pop()` may succeed if an interrupt occurred between the two and pushed a new value. ## Example ```cpp class InterruptControl { public: void lock() { // Store current interrupt control register and disable the relevant interrupt. } void unlock() { // Restore the interrupt control register. } }; InterruptControl interruptControl; // Create function wrappers with direct calls to the instance's member functions. etl::function_imv lock; etl::function_imv unlock; etl::queue_spsc_locked queue(lock, unlock); int main() { while (true) { char c; if (queue.pop(c)) { Print(c); } } } void ISR(char c) { queue.push_from_unlocked(c); } ```