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