2017-02-02 20:35:12 +01:00
|
|
|
#ifndef LIMITEDQUEUE_H
|
|
|
|
#define LIMITEDQUEUE_H
|
|
|
|
|
|
|
|
#include "messages/limitedqueuesnapshot.h"
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <mutex>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace chatterino {
|
|
|
|
namespace messages {
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
class LimitedQueue
|
|
|
|
{
|
|
|
|
public:
|
2017-02-03 19:31:51 +01:00
|
|
|
LimitedQueue(int limit = 100, int buffer = 25)
|
2017-02-07 20:40:43 +01:00
|
|
|
: mutex()
|
2017-02-02 20:35:12 +01:00
|
|
|
, offset(0)
|
|
|
|
, limit(limit)
|
|
|
|
, buffer(buffer)
|
|
|
|
{
|
2017-02-07 20:40:43 +01:00
|
|
|
vector = std::make_shared<std::vector<T>>();
|
|
|
|
vector->reserve(this->limit + this->buffer);
|
2017-02-02 22:15:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
clear()
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> lock(this->mutex);
|
|
|
|
|
2017-02-07 20:40:43 +01:00
|
|
|
this->vector = std::make_shared<std::vector<T>>();
|
|
|
|
this->vector->reserve(this->limit + this->buffer);
|
2017-02-02 22:15:09 +01:00
|
|
|
|
|
|
|
this->offset = 0;
|
2017-02-02 20:35:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
|
2017-02-07 20:40:43 +01:00
|
|
|
if (this->vector->size() >= this->limit) {
|
2017-02-02 20:35:12 +01:00
|
|
|
// vector is full
|
|
|
|
if (this->offset == this->buffer) {
|
|
|
|
deleted = this->vector->at(this->offset);
|
|
|
|
|
|
|
|
// create new vector
|
2017-02-07 20:40:43 +01:00
|
|
|
auto newVector = std::make_shared<std::vector<T>>();
|
|
|
|
newVector->reserve(this->limit + this->buffer);
|
2017-02-02 20:35:12 +01:00
|
|
|
|
2017-02-07 20:40:43 +01:00
|
|
|
for (unsigned int i = 0; i < this->limit - 1; i++) {
|
|
|
|
newVector->push_back(this->vector->at(i + this->offset));
|
2017-02-02 20:35:12 +01:00
|
|
|
}
|
2017-02-07 20:40:43 +01:00
|
|
|
newVector->push_back(item);
|
2017-02-02 20:35:12 +01:00
|
|
|
|
|
|
|
this->offset = 0;
|
2017-02-07 20:40:43 +01:00
|
|
|
this->vector = newVector;
|
2017-02-02 20:35:12 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
deleted = this->vector->at(this->offset);
|
|
|
|
|
2017-02-07 20:40:43 +01:00
|
|
|
//append item and increment offset("deleting" first element)
|
|
|
|
this->vector->push_back(item);
|
2017-02-02 20:35:12 +01:00
|
|
|
this->offset++;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// append item
|
2017-02-07 20:40:43 +01:00
|
|
|
this->vector->push_back(item);
|
2017-02-02 20:35:12 +01:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
messages::LimitedQueueSnapshot<T>
|
|
|
|
getSnapshot()
|
|
|
|
{
|
2017-02-07 20:40:43 +01:00
|
|
|
std::lock_guard<std::mutex> lock(this->mutex);
|
2017-02-02 20:35:12 +01:00
|
|
|
|
2017-02-07 20:40:43 +01:00
|
|
|
if(vector->size() < limit) {
|
|
|
|
return LimitedQueueSnapshot<T>(this->vector, this->offset, this->vector->size());
|
|
|
|
} else {
|
|
|
|
return LimitedQueueSnapshot<T>(this->vector, this->offset, this->limit);
|
|
|
|
}
|
2017-02-02 20:35:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2017-02-07 20:40:43 +01:00
|
|
|
std::shared_ptr<std::vector<T>> vector;
|
2017-02-02 20:35:12 +01:00
|
|
|
|
|
|
|
std::mutex mutex;
|
|
|
|
|
2017-02-07 20:40:43 +01:00
|
|
|
unsigned int offset;
|
|
|
|
unsigned int limit;
|
|
|
|
unsigned int buffer;
|
2017-02-02 20:35:12 +01:00
|
|
|
};
|
2017-02-06 11:38:26 +01:00
|
|
|
|
|
|
|
} // namespace messages
|
|
|
|
} // namespace chatterino
|
2017-02-02 20:35:12 +01:00
|
|
|
|
|
|
|
#endif // LIMITEDQUEUE_H
|