mirror-chatterino2/src/util/DebugCount.hpp

68 lines
1.3 KiB
C++
Raw Normal View History

2018-04-06 16:37:30 +02:00
#pragma once
#include <common/UniqueAccess.hpp>
2018-04-06 16:37:30 +02:00
#include <mutex>
#include <typeinfo>
#include <QMap>
#include <QString>
namespace chatterino {
class DebugCount
{
public:
static void increase(const QString &name)
{
auto counts = counts_.access();
2018-04-06 16:37:30 +02:00
auto it = counts->find(name);
2018-10-21 13:43:02 +02:00
if (it == counts->end())
{
counts->insert(name, 1);
2018-10-21 13:43:02 +02:00
}
else
{
2018-04-06 16:37:30 +02:00
reinterpret_cast<int64_t &>(it.value())++;
}
}
static void decrease(const QString &name)
{
auto counts = counts_.access();
2018-04-06 16:37:30 +02:00
auto it = counts->find(name);
2018-10-21 13:43:02 +02:00
if (it == counts->end())
{
counts->insert(name, -1);
2018-10-21 13:43:02 +02:00
}
else
{
2018-04-06 16:37:30 +02:00
reinterpret_cast<int64_t &>(it.value())--;
}
}
static QString getDebugText()
{
auto counts = counts_.access();
2018-04-06 16:37:30 +02:00
QString text;
2018-10-21 13:43:02 +02:00
for (auto it = counts->begin(); it != counts->end(); it++)
{
2018-04-06 16:37:30 +02:00
text += it.key() + ": " + QString::number(it.value()) + "\n";
}
return text;
}
QString toString()
{
return "";
2018-04-06 16:37:30 +02:00
}
2018-07-06 19:23:47 +02:00
private:
static UniqueAccess<QMap<QString, int64_t>> counts_;
2018-04-06 16:37:30 +02:00
};
} // namespace chatterino