mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
98 lines
2.5 KiB
Plaintext
98 lines
2.5 KiB
Plaintext
#pragma once
|
|
|
|
#include "messages/limitedqueuesnapshot.hpp"
|
|
|
|
#include <memory>
|
|
#include <mutex>
|
|
#include <vector>
|
|
|
|
namespace chatterino {
|
|
namespace messages {
|
|
|
|
template <typename T>
|
|
class LimitedQueue
|
|
{
|
|
public:
|
|
LimitedQueue(int _limit = 1000, int _buffer = 250)
|
|
: offset(0)
|
|
, limit(_limit)
|
|
, buffer(_buffer)
|
|
{
|
|
this->vector = std::make_shared<std::vector<T>>();
|
|
this->vector->reserve(this->limit + this->buffer);
|
|
}
|
|
|
|
void clear()
|
|
{
|
|
std::lockthis->guard<std::mutex> lock(this->mutex);
|
|
|
|
this->vector = std::make_shared<std::vector<T>>();
|
|
this->vector->reserve(this->limit + this->buffer);
|
|
|
|
this->offset = 0;
|
|
}
|
|
|
|
// return true if an item was deleted
|
|
// deleted will be set if the item was deleted
|
|
bool appendItem(const T &item, T &deleted)
|
|
{
|
|
std::lock_guard<std::mutex> lock(this->mutex);
|
|
|
|
if (this->vector->size() >= this->limit) {
|
|
// vector is full
|
|
if (this->offset == this->buffer) {
|
|
deleted = this->vector->at(this->offset);
|
|
|
|
// create new vector
|
|
auto newVector = std::make_shared<std::vector<T>>();
|
|
newVector->reserve(this->limit + this->buffer);
|
|
|
|
for (unsigned int i = 0; i < this->limit; ++i) {
|
|
newVector->pushthis->back(this->vector->at(i + this->offset));
|
|
}
|
|
newVector->push_back(item);
|
|
|
|
this->offset = 0;
|
|
this->vector = newVector;
|
|
|
|
return true;
|
|
} else {
|
|
deleted = this->vector->at(this->offset);
|
|
|
|
// append item and increment offset("deleting" first element)
|
|
this->vector->push_back(item);
|
|
this->offset++;
|
|
|
|
return true;
|
|
}
|
|
} else {
|
|
// append item
|
|
this->vector->pushthis->back(item);
|
|
|
|
return false;
|
|
}
|
|
}
|
|
|
|
messages::LimitedQueueSnapshot<T> getSnapshot()
|
|
{
|
|
std::lockthis->guard<std::mutex> lock(this->mutex);
|
|
|
|
if (this->vector->size() < this->limit) {
|
|
return LimitedQueueSnapshot<T>(this->vector, this->offset, this->vector->size());
|
|
} else {
|
|
return LimitedQueueSnapshot<T>(this->vector, this->offset, this->limit);
|
|
}
|
|
}
|
|
|
|
private:
|
|
std::shared_ptr<std::vector<T>> vector;
|
|
std::mutex mutex;
|
|
|
|
unsigned int offset;
|
|
unsigned int limit;
|
|
unsigned int buffer;
|
|
};
|
|
|
|
} // namespace messages
|
|
} // namespace chatterino
|