| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363 |
- /*
- Copyright (c) 2013 Daniele Bartolini, Michele Rossi
- Copyright (c) 2012 Daniele Bartolini, Simone Boscaratto
- 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.
- */
- #pragma once
- #include "Types.h"
- #include "List.h"
- #include "Allocator.h"
- #include "Assert.h"
- #include <cstring>
- namespace crown
- {
- /// Circular buffer double-ended queue of POD items.
- /// @note
- /// Does not call constructors/destructors so it is not very suitable for non-POD items.
- template <typename T>
- class Queue
- {
- public:
- Queue(Allocator& allocator);
- ~Queue();
- /// Random access by index
- T& operator[](uint32_t index);
- /// Random access by index
- const T& operator[](uint32_t index) const;
- /// Returns whether the queue is empty.
- bool empty() const;
- /// Returns the number of items in the queue
- uint32_t size() const;
- /// Returns the number of items the queue can hold before
- /// a resize must occur.
- uint32_t space() const;
- /// Increase or decrease the capacity of the queue.
- /// @note
- /// Old items will be copied to the newly created queue.
- /// If the new @a capacity is smaller than the previous one, the
- /// queue will be truncated.
- void increase_capacity(uint32_t capacity);
- /// Grows the queue to contain at least @a min_capacity items.
- /// If @a min_capacity is set to 0, the queue automatically
- /// determines the new capacity based on its size at the
- /// time of call.
- void grow(uint32_t min_capacity);
- /// Appends an @a item to the back of the queue
- void push_back(const T& item);
- /// Removes the last item from the queue
- void pop_back();
- /// Appends an @a item to the front of the queue
- void push_front(const T& item);
- /// Removes the first item from the queue
- void pop_front();
- /// Appends @a n @a items to the back of the queue
- void push(const T *items, uint32_t n);
- /// Removes @a n items from the front of the queue
- void pop(uint32_t n);
- /// Clears the content of the queue.
- /// @note
- /// Does not free memory nor call destructors, it only zeroes
- /// the number of items in the queue for efficiency.
- void clear();
- T* begin();
- const T* begin() const;
- T* end();
- const T* end() const;
- T& front();
- const T& front() const;
- T& back();
- const T& back() const;
- private:
- uint32_t m_read;
- uint32_t m_size;
- List<T> m_queue;
- };
- //-----------------------------------------------------------------------------
- template <typename T>
- inline Queue<T>::Queue(Allocator& allocator) :
- m_read(0),
- m_size(0),
- m_queue(allocator)
- {
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline Queue<T>::~Queue()
- {
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline T& Queue<T>::operator[](uint32_t index)
- {
- return m_queue[(m_read + index) % m_queue.size()];
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline const T& Queue<T>::operator[](uint32_t index) const
- {
- return m_queue[(m_read + index) % m_queue.size()];
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline bool Queue<T>::empty() const
- {
- return m_size == 0;
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline uint32_t Queue<T>::size() const
- {
- return m_size;
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline uint32_t Queue<T>::space() const
- {
- return m_queue.size() - m_size;
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline void Queue<T>::increase_capacity(uint32_t capacity)
- {
- uint32_t old_size = m_queue.size();
- m_queue.resize(capacity);
- if (m_read + m_size > old_size)
- {
- memmove(m_queue.begin() + capacity - (old_size - m_read), m_queue.begin() + m_read, (old_size - m_read) * sizeof(T));
- m_read += (capacity - old_size);
- }
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline void Queue<T>::grow(uint32_t min_capacity)
- {
- uint32_t new_capacity = m_queue.size() * 2 + 1;
- if (new_capacity < min_capacity)
- {
- new_capacity = min_capacity;
- }
- increase_capacity(new_capacity);
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline void Queue<T>::push_back(const T& item)
- {
- if (space() == 0)
- {
- grow(0);
- }
- (*this)[m_size] = item;
- m_size++;
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline void Queue<T>::pop_back()
- {
- CE_ASSERT(m_size > 0, "The queue is empty");
- m_size--;
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline void Queue<T>::push_front(const T& item)
- {
- if (space() == 0)
- {
- grow(0);
- }
- m_read = (m_read - 1 + m_queue.size()) % m_queue.size();
- (*this)[0] = item;
- m_size++;
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline void Queue<T>::pop_front()
- {
- CE_ASSERT(m_size > 0, "The queue is empty");
- m_read = (m_read + 1) % m_queue.size();
- m_size--;
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline void Queue<T>::push(const T *items, uint32_t n)
- {
- if (space() < n)
- {
- grow(size() + n);
- }
- const uint32_t size = m_queue.size();
- const uint32_t insert = (m_read + m_size) % size;
- uint32_t to_insert = n;
- if (insert + to_insert > size)
- {
- to_insert = size - insert;
- }
- memcpy(m_queue.begin() + insert, items, to_insert * sizeof(T));
- m_size += to_insert;
- items += to_insert;
- n -= to_insert;
- memcpy(m_queue.begin(), items, n * sizeof(T));
- m_size += n;
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline void Queue<T>::pop(uint32_t n)
- {
- CE_ASSERT(m_size > 0, "The queue is empty");
- m_read = (m_read + n) % m_queue.size();
- m_size -= n;
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline void Queue<T>::clear()
- {
- m_read = 0;
- m_size = 0;
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline T* Queue<T>::begin()
- {
- return m_queue.begin() + m_read;
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline const T* Queue<T>::begin() const
- {
- return m_queue.begin() + m_read;
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline T* Queue<T>::end()
- {
- uint32_t end = m_read + m_size;
- return end >= m_queue.size() ? m_queue.end() : m_queue.begin() + end;
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline const T* Queue<T>::end() const
- {
- uint32_t end = m_read + m_size;
- return end >= m_queue.size() ? m_queue.end() : m_queue.begin() + end;
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline T& Queue<T>::front()
- {
- CE_ASSERT(m_size > 0, "The queue is empty");
- return m_queue[m_read];
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline const T& Queue<T>::front() const
- {
- CE_ASSERT(m_size > 0, "The queue is empty");
- return m_queue[m_read];
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline T& Queue<T>::back()
- {
- CE_ASSERT(m_size > 0, "The queue is empty");
- return (*this)[m_size - 1];
- }
- //-----------------------------------------------------------------------------
- template <typename T>
- inline const T& Queue<T>::back() const
- {
- CE_ASSERT(m_size > 0, "The queue is empty");
- return (*this)[m_size - 1];
- }
- } // namespace crown
|