Clean up CompletionModel (#4240)

* Refactor CompletionModel

Do some clang-tidy cleanup

* Use a shared mutex for CompletionModel's items mutex
This commit is contained in:
pajlada
2022-12-18 13:51:36 +01:00
committed by GitHub
parent 0e72cd62e3
commit 77852f0e29
2 changed files with 43 additions and 32 deletions
+34 -24
View File
@@ -2,10 +2,8 @@
#include "Application.hpp" #include "Application.hpp"
#include "common/ChatterSet.hpp" #include "common/ChatterSet.hpp"
#include "common/Common.hpp"
#include "controllers/accounts/AccountController.hpp" #include "controllers/accounts/AccountController.hpp"
#include "controllers/commands/CommandController.hpp" #include "controllers/commands/CommandController.hpp"
#include "debug/Benchmark.hpp"
#include "providers/twitch/TwitchChannel.hpp" #include "providers/twitch/TwitchChannel.hpp"
#include "providers/twitch/TwitchCommon.hpp" #include "providers/twitch/TwitchCommon.hpp"
#include "providers/twitch/TwitchIrcServer.hpp" #include "providers/twitch/TwitchIrcServer.hpp"
@@ -24,8 +22,8 @@ namespace chatterino {
// TaggedString // TaggedString
// //
CompletionModel::TaggedString::TaggedString(const QString &_string, Type _type) CompletionModel::TaggedString::TaggedString(QString _string, Type _type)
: string(_string) : string(std::move(_string))
, type(_type) , type(_type)
{ {
} }
@@ -53,30 +51,37 @@ CompletionModel::CompletionModel(Channel &channel)
{ {
} }
int CompletionModel::columnCount(const QModelIndex &) const int CompletionModel::columnCount(const QModelIndex &parent) const
{ {
(void)parent; // unused
return 1; return 1;
} }
QVariant CompletionModel::data(const QModelIndex &index, int) const QVariant CompletionModel::data(const QModelIndex &index, int role) const
{ {
std::lock_guard<std::mutex> lock(this->itemsMutex_); (void)role; // unused
std::shared_lock lock(this->itemsMutex_);
auto it = this->items_.begin(); auto it = this->items_.begin();
std::advance(it, index.row()); std::advance(it, index.row());
return QVariant(it->string); return {it->string};
} }
int CompletionModel::rowCount(const QModelIndex &) const int CompletionModel::rowCount(const QModelIndex &parent) const
{ {
std::lock_guard<std::mutex> lock(this->itemsMutex_); (void)parent; // unused
std::shared_lock lock(this->itemsMutex_);
return this->items_.size(); return this->items_.size();
} }
void CompletionModel::refresh(const QString &prefix, bool isFirstWord) void CompletionModel::refresh(const QString &prefix, bool isFirstWord)
{ {
std::lock_guard<std::mutex> guard(this->itemsMutex_); std::unique_lock lock(this->itemsMutex_);
this->items_.clear(); this->items_.clear();
if (prefix.length() < 2 || !this->channel_.isTwitchChannel()) if (prefix.length() < 2 || !this->channel_.isTwitchChannel())
@@ -85,7 +90,7 @@ void CompletionModel::refresh(const QString &prefix, bool isFirstWord)
} }
// Twitch channel // Twitch channel
auto tc = dynamic_cast<TwitchChannel *>(&this->channel_); auto *tc = dynamic_cast<TwitchChannel *>(&this->channel_);
auto addString = [=](const QString &str, TaggedString::Type type) { auto addString = [=](const QString &str, TaggedString::Type type) {
// Special case for handling default Twitch commands // Special case for handling default Twitch commands
@@ -132,7 +137,8 @@ void CompletionModel::refresh(const QString &prefix, bool isFirstWord)
// Twitch Emotes available locally // Twitch Emotes available locally
auto localEmoteData = account->accessLocalEmotes(); auto localEmoteData = account->accessLocalEmotes();
if (tc && localEmoteData->find(tc->roomId()) != localEmoteData->end()) if (tc != nullptr &&
localEmoteData->find(tc->roomId()) != localEmoteData->end())
{ {
for (const auto &emote : localEmoteData->at(tc->roomId())) for (const auto &emote : localEmoteData->at(tc->roomId()))
{ {
@@ -143,18 +149,19 @@ void CompletionModel::refresh(const QString &prefix, bool isFirstWord)
} }
// 7TV Global // 7TV Global
for (auto &emote : *getApp()->twitch->getSeventvEmotes().globalEmotes()) for (const auto &emote :
*getApp()->twitch->getSeventvEmotes().globalEmotes())
{ {
addString(emote.first.string, TaggedString::Type::SeventvGlobalEmote); addString(emote.first.string, TaggedString::Type::SeventvGlobalEmote);
} }
// Bttv Global // Bttv Global
for (auto &emote : *getApp()->twitch->getBttvEmotes().emotes()) for (const auto &emote : *getApp()->twitch->getBttvEmotes().emotes())
{ {
addString(emote.first.string, TaggedString::Type::BTTVChannelEmote); addString(emote.first.string, TaggedString::Type::BTTVChannelEmote);
} }
// Ffz Global // Ffz Global
for (auto &emote : *getApp()->twitch->getFfzEmotes().emotes()) for (const auto &emote : *getApp()->twitch->getFfzEmotes().emotes())
{ {
addString(emote.first.string, TaggedString::Type::FFZChannelEmote); addString(emote.first.string, TaggedString::Type::FFZChannelEmote);
} }
@@ -163,7 +170,7 @@ void CompletionModel::refresh(const QString &prefix, bool isFirstWord)
if (prefix.startsWith(":")) if (prefix.startsWith(":"))
{ {
const auto &emojiShortCodes = getApp()->emotes->emojis.shortCodes; const auto &emojiShortCodes = getApp()->emotes->emojis.shortCodes;
for (auto &m : emojiShortCodes) for (const auto &m : emojiShortCodes)
{ {
addString(QString(":%1:").arg(m), TaggedString::Type::Emoji); addString(QString(":%1:").arg(m), TaggedString::Type::Emoji);
} }
@@ -171,7 +178,7 @@ void CompletionModel::refresh(const QString &prefix, bool isFirstWord)
// //
// Stuff below is available only in regular Twitch channels // Stuff below is available only in regular Twitch channels
if (!tc) if (tc == nullptr)
{ {
return; return;
} }
@@ -205,36 +212,37 @@ void CompletionModel::refresh(const QString &prefix, bool isFirstWord)
} }
// 7TV Channel // 7TV Channel
for (auto &emote : *tc->seventvEmotes()) for (const auto &emote : *tc->seventvEmotes())
{ {
addString(emote.first.string, TaggedString::Type::SeventvChannelEmote); addString(emote.first.string, TaggedString::Type::SeventvChannelEmote);
} }
// Bttv Channel // Bttv Channel
for (auto &emote : *tc->bttvEmotes()) for (const auto &emote : *tc->bttvEmotes())
{ {
addString(emote.first.string, TaggedString::Type::BTTVGlobalEmote); addString(emote.first.string, TaggedString::Type::BTTVGlobalEmote);
} }
// Ffz Channel // Ffz Channel
for (auto &emote : *tc->ffzEmotes()) for (const auto &emote : *tc->ffzEmotes())
{ {
addString(emote.first.string, TaggedString::Type::BTTVGlobalEmote); addString(emote.first.string, TaggedString::Type::BTTVGlobalEmote);
} }
// Custom Chatterino commands // Custom Chatterino commands
for (auto &command : getApp()->commands->items) for (const auto &command : getApp()->commands->items)
{ {
addString(command.name, TaggedString::CustomCommand); addString(command.name, TaggedString::CustomCommand);
} }
// Default Chatterino commands // Default Chatterino commands
for (auto &command : getApp()->commands->getDefaultChatterinoCommandList()) for (const auto &command :
getApp()->commands->getDefaultChatterinoCommandList())
{ {
addString(command, TaggedString::ChatterinoCommand); addString(command, TaggedString::ChatterinoCommand);
} }
// Default Twitch commands // Default Twitch commands
for (auto &command : TWITCH_DEFAULT_COMMANDS) for (const auto &command : TWITCH_DEFAULT_COMMANDS)
{ {
addString(command, TaggedString::TwitchCommand); addString(command, TaggedString::TwitchCommand);
} }
@@ -246,7 +254,9 @@ bool CompletionModel::compareStrings(const QString &a, const QString &b)
// (fixes order of LuL and LUL) // (fixes order of LuL and LUL)
int k = QString::compare(a, b, Qt::CaseInsensitive); int k = QString::compare(a, b, Qt::CaseInsensitive);
if (k == 0) if (k == 0)
{
return a > b; return a > b;
}
return k < 0; return k < 0;
} }
+9 -8
View File
@@ -3,8 +3,8 @@
#include <QAbstractListModel> #include <QAbstractListModel>
#include <chrono> #include <chrono>
#include <mutex>
#include <set> #include <set>
#include <shared_mutex>
namespace chatterino { namespace chatterino {
@@ -36,29 +36,30 @@ class CompletionModel : public QAbstractListModel
TwitchCommand, TwitchCommand,
}; };
TaggedString(const QString &string, Type type); TaggedString(QString _string, Type type);
bool isEmote() const; bool isEmote() const;
bool operator<(const TaggedString &that) const; bool operator<(const TaggedString &that) const;
QString string; const QString string;
Type type; const Type type;
}; };
public: public:
CompletionModel(Channel &channel); CompletionModel(Channel &channel);
virtual int columnCount(const QModelIndex &) const override; int columnCount(const QModelIndex &parent) const override;
virtual QVariant data(const QModelIndex &index, int) const override; QVariant data(const QModelIndex &index, int role) const override;
virtual int rowCount(const QModelIndex &) const override; int rowCount(const QModelIndex &parent) const override;
void refresh(const QString &prefix, bool isFirstWord = false); void refresh(const QString &prefix, bool isFirstWord = false);
static bool compareStrings(const QString &a, const QString &b); static bool compareStrings(const QString &a, const QString &b);
private: private:
mutable std::shared_mutex itemsMutex_;
std::set<TaggedString> items_; std::set<TaggedString> items_;
mutable std::mutex itemsMutex_;
Channel &channel_; Channel &channel_;
}; };