2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 08:38:21 +00:00
|
|
|
*/
|
|
|
|
|
2019-10-16 12:29:06 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/CircularQueue.h>
|
|
|
|
#include <AK/Types.h>
|
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2020-02-20 12:18:42 +00:00
|
|
|
template<typename T, size_t Capacity>
|
2019-10-16 12:29:06 +00:00
|
|
|
class CircularDeque : public CircularQueue<T, Capacity> {
|
|
|
|
public:
|
2021-01-15 22:55:36 +00:00
|
|
|
template<typename U = T>
|
|
|
|
void enqueue_begin(U&& value)
|
2020-03-02 08:50:43 +00:00
|
|
|
{
|
2022-04-01 17:58:27 +00:00
|
|
|
auto const new_head = (this->m_head - 1 + Capacity) % Capacity;
|
2020-03-02 08:50:43 +00:00
|
|
|
auto& slot = this->elements()[new_head];
|
|
|
|
if (this->m_size == Capacity)
|
|
|
|
slot.~T();
|
|
|
|
else
|
|
|
|
++this->m_size;
|
|
|
|
|
2021-01-15 22:55:36 +00:00
|
|
|
new (&slot) T(forward<U>(value));
|
2020-03-02 08:50:43 +00:00
|
|
|
this->m_head = new_head;
|
|
|
|
}
|
|
|
|
|
2019-10-16 12:29:06 +00:00
|
|
|
T dequeue_end()
|
|
|
|
{
|
2021-02-23 19:42:32 +00:00
|
|
|
VERIFY(!this->is_empty());
|
2019-10-23 10:20:45 +00:00
|
|
|
auto& slot = this->elements()[(this->m_head + this->m_size - 1) % Capacity];
|
|
|
|
T value = move(slot);
|
|
|
|
slot.~T();
|
2019-10-16 12:29:06 +00:00
|
|
|
this->m_size--;
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-11-26 11:18:30 +00:00
|
|
|
#if USING_AK_GLOBALLY
|
2019-10-16 12:29:06 +00:00
|
|
|
using AK::CircularDeque;
|
2022-11-26 11:18:30 +00:00
|
|
|
#endif
|