2017-12-31 00:50:07 +01:00
|
|
|
#pragma once
|
|
|
|
|
2018-06-26 15:33:51 +02:00
|
|
|
#include "common/Common.hpp"
|
2018-03-24 12:02:07 +01:00
|
|
|
|
2017-12-31 00:50:07 +01:00
|
|
|
#include <QAbstractListModel>
|
|
|
|
|
2018-03-30 13:50:43 +02:00
|
|
|
#include <chrono>
|
|
|
|
#include <mutex>
|
2018-03-24 12:02:07 +01:00
|
|
|
#include <set>
|
2017-12-31 00:50:07 +01:00
|
|
|
|
|
|
|
namespace chatterino {
|
2018-03-24 12:02:07 +01:00
|
|
|
|
2017-12-31 00:50:07 +01:00
|
|
|
class CompletionModel : public QAbstractListModel
|
|
|
|
{
|
2018-03-30 12:06:02 +02:00
|
|
|
struct TaggedString {
|
|
|
|
enum Type {
|
|
|
|
Username,
|
2017-12-31 00:50:07 +01:00
|
|
|
|
2018-03-30 12:06:02 +02:00
|
|
|
// Emotes
|
|
|
|
FFZGlobalEmote = 20,
|
|
|
|
FFZChannelEmote,
|
|
|
|
BTTVGlobalEmote,
|
|
|
|
BTTVChannelEmote,
|
|
|
|
TwitchGlobalEmote,
|
|
|
|
TwitchSubscriberEmote,
|
|
|
|
Emoji,
|
2018-06-24 11:24:21 +02:00
|
|
|
Command,
|
2018-03-30 13:50:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
TaggedString(const QString &_str, Type _type)
|
|
|
|
: str(_str)
|
|
|
|
, type(_type)
|
|
|
|
, timeAdded(std::chrono::steady_clock::now())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QString str;
|
|
|
|
|
|
|
|
// Type will help decide the lifetime of the tagged strings
|
|
|
|
Type type;
|
|
|
|
|
2018-03-30 15:58:05 +02:00
|
|
|
mutable std::chrono::steady_clock::time_point timeAdded;
|
2018-03-30 13:50:43 +02:00
|
|
|
|
|
|
|
bool HasExpired(const std::chrono::steady_clock::time_point &now) const
|
|
|
|
{
|
|
|
|
switch (this->type) {
|
|
|
|
case Type::Username: {
|
|
|
|
static std::chrono::minutes expirationTimer(10);
|
|
|
|
|
|
|
|
return (this->timeAdded + expirationTimer < now);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
default: {
|
|
|
|
return false;
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2017-12-31 00:50:07 +01:00
|
|
|
|
2018-03-30 12:06:02 +02:00
|
|
|
bool IsEmote() const
|
|
|
|
{
|
|
|
|
return this->type >= 20;
|
|
|
|
}
|
2018-03-24 11:12:24 +01:00
|
|
|
|
|
|
|
bool operator<(const TaggedString &that) const
|
|
|
|
{
|
2018-03-30 12:06:02 +02:00
|
|
|
if (this->IsEmote()) {
|
|
|
|
if (that.IsEmote()) {
|
2018-03-24 11:12:24 +01:00
|
|
|
int k = QString::compare(this->str, that.str, Qt::CaseInsensitive);
|
2018-03-24 12:02:07 +01:00
|
|
|
if (k == 0) {
|
|
|
|
return this->str > that.str;
|
|
|
|
}
|
2018-03-30 13:50:43 +02:00
|
|
|
|
|
|
|
return k < 0;
|
2018-03-24 11:12:24 +01:00
|
|
|
}
|
2018-03-30 13:50:43 +02:00
|
|
|
|
|
|
|
return true;
|
2018-03-24 11:12:24 +01:00
|
|
|
}
|
2018-03-30 13:50:43 +02:00
|
|
|
|
|
|
|
if (that.IsEmote()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int k = QString::compare(this->str, that.str, Qt::CaseInsensitive);
|
|
|
|
if (k == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return k < 0;
|
2018-03-24 11:12:24 +01:00
|
|
|
}
|
|
|
|
};
|
2018-03-30 12:06:02 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
CompletionModel(const QString &_channelName);
|
|
|
|
|
2018-03-30 13:50:43 +02:00
|
|
|
int columnCount(const QModelIndex &) const override
|
2018-03-24 11:12:24 +01:00
|
|
|
{
|
2018-03-30 12:06:02 +02:00
|
|
|
return 1;
|
2018-03-24 11:12:24 +01:00
|
|
|
}
|
2018-03-30 12:06:02 +02:00
|
|
|
|
2018-03-30 13:50:43 +02:00
|
|
|
QVariant data(const QModelIndex &index, int) const override
|
2018-03-24 11:12:24 +01:00
|
|
|
{
|
2018-03-30 13:50:43 +02:00
|
|
|
std::lock_guard<std::mutex> lock(this->emotesMutex);
|
|
|
|
|
2018-03-30 12:06:02 +02:00
|
|
|
// TODO: Implement more safely
|
|
|
|
auto it = this->emotes.begin();
|
|
|
|
std::advance(it, index.row());
|
|
|
|
return QVariant(it->str);
|
2018-03-24 11:12:24 +01:00
|
|
|
}
|
2018-03-30 12:06:02 +02:00
|
|
|
|
2018-03-30 13:50:43 +02:00
|
|
|
int rowCount(const QModelIndex &) const override
|
2018-03-30 12:06:02 +02:00
|
|
|
{
|
2018-03-30 13:50:43 +02:00
|
|
|
std::lock_guard<std::mutex> lock(this->emotesMutex);
|
|
|
|
|
2018-03-30 12:06:02 +02:00
|
|
|
return this->emotes.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
void refresh();
|
|
|
|
void addString(const QString &str, TaggedString::Type type);
|
|
|
|
|
|
|
|
void addUser(const QString &str);
|
|
|
|
|
2018-03-30 13:50:43 +02:00
|
|
|
void ClearExpiredStrings();
|
|
|
|
|
2018-03-30 12:06:02 +02:00
|
|
|
private:
|
2018-03-24 11:12:24 +01:00
|
|
|
TaggedString createUser(const QString &str)
|
|
|
|
{
|
2018-03-30 12:06:02 +02:00
|
|
|
return TaggedString{str, TaggedString::Type::Username};
|
2018-03-24 11:12:24 +01:00
|
|
|
}
|
2018-03-30 12:06:02 +02:00
|
|
|
|
2018-03-30 13:50:43 +02:00
|
|
|
mutable std::mutex emotesMutex;
|
2018-03-24 11:12:24 +01:00
|
|
|
std::set<TaggedString> emotes;
|
2017-12-31 00:50:07 +01:00
|
|
|
|
|
|
|
QString channelName;
|
|
|
|
};
|
2018-03-24 12:02:07 +01:00
|
|
|
|
2018-03-24 11:12:24 +01:00
|
|
|
} // namespace chatterino
|