|
|
@@ -0,0 +1,122 @@ |
|
|
|
/*!
|
|
|
|
* \file cont/queue.h
|
|
|
|
* \brief
|
|
|
|
* A statically allocated queue based on deque.
|
|
|
|
*
|
|
|
|
* \copyright Copyright (C) 2021 Christos Choutouridis <christos@choutouridis.net>
|
|
|
|
*
|
|
|
|
* <dl class=\"section copyright\"><dt>License</dt><dd>
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
* </dd></dl>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TBX_CONT_QUQUE_H_
|
|
|
|
#define TBX_CONT_QUQUE_H_
|
|
|
|
|
|
|
|
#include <core/core.h>
|
|
|
|
#include <cont/deque.h>
|
|
|
|
|
|
|
|
namespace tbx {
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \class deque
|
|
|
|
* \brief
|
|
|
|
* A statically allocated queue based on deque.
|
|
|
|
*
|
|
|
|
* We use the \ref deque::push_back() and \ref deque::pop_front() pair from deque's
|
|
|
|
* functionality, so at the \c push the increment performed after the insertion.
|
|
|
|
* Similarly at the \c pop the decrement performed before the exctraction. This way also
|
|
|
|
* the \ref deque::front() and \ref deque::back() stay the same ;)
|
|
|
|
*
|
|
|
|
* We also provide stream operators.
|
|
|
|
*
|
|
|
|
* \tparam Data_t The char-like queued item type. Usually \c char
|
|
|
|
* \tparam N The size of deque
|
|
|
|
*/
|
|
|
|
template <typename Data_t, size_t N>
|
|
|
|
class queue : public deque<Data_t, N> {
|
|
|
|
public:
|
|
|
|
// meta-identity types
|
|
|
|
using queue_t = queue<Data_t, N>;
|
|
|
|
using base_type = deque<Data_t, N>;
|
|
|
|
|
|
|
|
// STL
|
|
|
|
using value_type = typename base_type::value_type;
|
|
|
|
using reference = typename base_type::reference;
|
|
|
|
using const_reference = typename base_type::const_reference;
|
|
|
|
using pointer = typename base_type::pointer;
|
|
|
|
using const_pointer = typename base_type::const_pointer;
|
|
|
|
using iterator = typename base_type::iterator;
|
|
|
|
using const_iterator = typename base_type::const_iterator;
|
|
|
|
using reverse_iterator = typename base_type::reverse_iterator;
|
|
|
|
using const_reverse_iterator= typename base_type::const_reverse_iterator;
|
|
|
|
|
|
|
|
//! \name Constructor / Destructor
|
|
|
|
//! @{
|
|
|
|
public:
|
|
|
|
//! Default constructor
|
|
|
|
queue () noexcept : base_type() { }
|
|
|
|
|
|
|
|
//! fill contructor
|
|
|
|
queue(const Data_t& value) noexcept : base_type(value) { }
|
|
|
|
|
|
|
|
//! Initializer list contructor
|
|
|
|
template <typename ...It>
|
|
|
|
queue(It&& ...it) noexcept : base_type(std::forward<It>(it)...) { }
|
|
|
|
|
|
|
|
//! @}
|
|
|
|
|
|
|
|
//! \name Member access
|
|
|
|
//! @{
|
|
|
|
public:
|
|
|
|
//! \brief Push an item in the back of the queue
|
|
|
|
//! \param it The item to push
|
|
|
|
void push (const Data_t& it) {
|
|
|
|
base_type::push_back(it);
|
|
|
|
}
|
|
|
|
|
|
|
|
//! \brief Extract an item from the front of the queue and remove it from the queue
|
|
|
|
//! \param it The item to push
|
|
|
|
Data_t pop () {
|
|
|
|
return base_type::pop_front();
|
|
|
|
}
|
|
|
|
|
|
|
|
//! \brief Push an item in the back of the queue
|
|
|
|
//! \param it The item to push
|
|
|
|
queue_t& operator<< (const Data_t& it) {
|
|
|
|
push(it);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! \brief Push an item in the back of the queue
|
|
|
|
//! \param it The item to push
|
|
|
|
queue_t& operator>> (Data_t& it) {
|
|
|
|
it = pop();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! @}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* TBX_CONT_QUQUE_H_ */
|