#pragma once #include #include #include #include namespace chatterino { namespace util { class DebugCount { static QMap counts; static std::mutex mut; public: static void increase(const QString &name) { std::lock_guard lock(mut); auto it = counts.find(name); if (it == counts.end()) { counts.insert(name, 1); } else { reinterpret_cast(it.value())++; } } static void decrease(const QString &name) { std::lock_guard lock(mut); auto it = counts.find(name); if (it == counts.end()) { counts.insert(name, -1); } else { reinterpret_cast(it.value())--; } } static QString getDebugText() { std::lock_guard lock(mut); QString text; for (auto it = counts.begin(); it != counts.end(); it++) { text += it.key() + ": " + QString::number(it.value()) + "\n"; } return text; } QString toString() { } }; } // namespace util } // namespace chatterino