mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:02:44 +00:00 
			
		
		
		
	 56f7b392c1
			
		
	
	
		56f7b392c1
		
	
	
	
	
		
			
			This avoids blocking the main thread on filesystem access, which created noticeable stutters during compilation.
		
			
				
	
	
		
			85 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "Assertions.h"
 | |
| #include "Types.h"
 | |
| 
 | |
| namespace AK {
 | |
| 
 | |
| template<typename T, int Capacity>
 | |
| class CircularQueue {
 | |
| public:
 | |
|     CircularQueue()
 | |
|     {
 | |
|         for (int i = 0; i < Capacity; ++i)
 | |
|             m_elements[i] = T();
 | |
|     }
 | |
| 
 | |
|     bool is_empty() const { return !m_size; }
 | |
|     int size() const { return m_size; }
 | |
| 
 | |
|     int capacity() const { return Capacity; }
 | |
| 
 | |
|     void dump() const
 | |
|     {
 | |
|         kprintf("CircularQueue<%zu>:\n", Capacity);
 | |
|         kprintf(" size: %zu\n", m_size);
 | |
|         for (int i = 0; i < Capacity; ++i) {
 | |
|             kprintf(" [%zu] %d %c\n", i, m_elements[i], i == m_head ? '*' : ' ');
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     void enqueue(const T& t)
 | |
|     {
 | |
|         m_elements[(m_head + m_size) % Capacity] = t;
 | |
|         if (m_size == Capacity)
 | |
|             m_head = (m_head + 1) % Capacity;
 | |
|         else
 | |
|             ++m_size;
 | |
|     }
 | |
| 
 | |
|     T dequeue()
 | |
|     {
 | |
|         ASSERT(!is_empty());
 | |
|         T value = m_elements[m_head];
 | |
|         m_head = (m_head + 1) % Capacity;
 | |
|         --m_size;
 | |
|         return value;
 | |
|     }
 | |
| 
 | |
|     const T& at(int index) const { return m_elements[(m_head + index) % Capacity]; }
 | |
| 
 | |
|     class ConstIterator {
 | |
|     public:
 | |
|         bool operator!=(const ConstIterator& other) { return m_index != other.m_index; }
 | |
|         ConstIterator& operator++()
 | |
|         {
 | |
|             m_index = (m_index + 1) % Capacity;
 | |
|             if (m_index == m_queue.m_head)
 | |
|                 m_index = m_queue.m_size;
 | |
|             return *this;
 | |
|         }
 | |
| 
 | |
|         const T& operator*() const { return m_queue.m_elements[m_index]; }
 | |
|     private:
 | |
|         friend class CircularQueue;
 | |
|         ConstIterator(const CircularQueue& queue, const int index) : m_queue(queue), m_index(index) { }
 | |
|         const CircularQueue& m_queue;
 | |
|         int m_index { 0 };
 | |
|     };
 | |
| 
 | |
|     ConstIterator begin() const { return ConstIterator(*this, m_head); }
 | |
|     ConstIterator end() const { return ConstIterator(*this, size()); }
 | |
| 
 | |
|     int head_index() const { return m_head; }
 | |
| 
 | |
| private:
 | |
|     friend class ConstIterator;
 | |
|     T m_elements[Capacity];
 | |
|     int m_size { 0 };
 | |
|     int m_head { 0 };
 | |
| };
 | |
| 
 | |
| }
 | |
| 
 | |
| using AK::CircularQueue;
 | |
| 
 |