mirror-chatterino2/src/util/DebugCount.hpp

60 lines
1.2 KiB
C++
Raw Normal View History

2018-04-06 16:37:30 +02:00
#pragma once
#include <mutex>
#include <typeinfo>
#include <QMap>
#include <QString>
namespace chatterino {
class DebugCount
{
public:
static void increase(const QString &name)
{
2018-07-06 19:23:47 +02:00
std::lock_guard<std::mutex> lock(mut_);
2018-04-06 16:37:30 +02:00
2018-07-06 19:23:47 +02:00
auto it = counts_.find(name);
if (it == counts_.end()) {
counts_.insert(name, 1);
2018-04-06 16:37:30 +02:00
} else {
reinterpret_cast<int64_t &>(it.value())++;
}
}
static void decrease(const QString &name)
{
2018-07-06 19:23:47 +02:00
std::lock_guard<std::mutex> lock(mut_);
2018-04-06 16:37:30 +02:00
2018-07-06 19:23:47 +02:00
auto it = counts_.find(name);
if (it == counts_.end()) {
counts_.insert(name, -1);
2018-04-06 16:37:30 +02:00
} else {
reinterpret_cast<int64_t &>(it.value())--;
}
}
static QString getDebugText()
{
2018-07-06 19:23:47 +02:00
std::lock_guard<std::mutex> lock(mut_);
2018-04-06 16:37:30 +02:00
QString text;
2018-07-06 19:23:47 +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 QMap<QString, int64_t> counts_;
static std::mutex mut_;
2018-04-06 16:37:30 +02:00
};
} // namespace chatterino