1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-11 17:51:04 +00:00
luanti/src/profiler.h

127 lines
2.6 KiB
C
Raw Normal View History

// Luanti
// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
#pragma once
#include "irrlichttypes.h"
#include <cassert>
#include <string>
2014-06-29 16:57:50 +02:00
#include <map>
#include <ostream>
2014-06-29 16:57:50 +02:00
#include "threading/mutex_auto_lock.h"
#include "util/timetaker.h"
#include "util/numeric.h" // paging()
/* FIXME: ^ move this to the .cpp file, it's not needed here */
#include "util/basic_macros.h"
// Global profiler
class Profiler;
extern Profiler *g_profiler;
/*
Time profiler
*/
class Profiler
{
public:
Profiler();
void add(const std::string &name, float value);
void avg(const std::string &name, float value);
2023-04-09 07:44:43 -10:00
void max(const std::string &name, float value);
void clear();
float getValue(const std::string &name) const;
int getAvgCount(const std::string &name) const;
u64 getElapsedMs() const;
2015-01-22 00:25:06 +11:00
typedef std::map<std::string, float> GraphValues;
// Returns the line count
int print(std::ostream &o, u32 page = 1, u32 pagecount = 1);
void getPage(GraphValues &o, u32 page, u32 pagecount);
2012-03-21 03:33:02 +02:00
2024-04-10 23:56:34 +02:00
void graphSet(const std::string &id, float value)
{
MutexAutoLock lock(m_mutex);
m_graphvalues[id] = value;
}
2012-03-21 03:33:02 +02:00
void graphAdd(const std::string &id, float value)
{
MutexAutoLock lock(m_mutex);
2024-04-10 23:56:34 +02:00
auto it = m_graphvalues.find(id);
if (it == m_graphvalues.end())
m_graphvalues.emplace(id, value);
2012-03-21 03:33:02 +02:00
else
2024-04-10 23:56:34 +02:00
it->second += value;
2012-03-21 03:33:02 +02:00
}
2024-04-10 23:56:34 +02:00
void graphPop(GraphValues &result)
2012-03-21 03:33:02 +02:00
{
MutexAutoLock lock(m_mutex);
2024-04-10 23:56:34 +02:00
assert(result.empty());
std::swap(result, m_graphvalues);
2012-03-21 03:33:02 +02:00
}
void remove(const std::string& name)
{
MutexAutoLock lock(m_mutex);
m_data.erase(name);
}
private:
2024-04-10 23:56:34 +02:00
struct DataPair {
float value = 0;
int avgcount = 0;
2024-04-20 14:32:35 +02:00
inline void reset() {
value = 0;
// negative values are used for type checking, so leave them alone
if (avgcount >= 1)
avgcount = 0;
}
2024-04-10 23:56:34 +02:00
inline float getValue() const {
return avgcount >= 1 ? (value / avgcount) : value;
}
};
std::mutex m_mutex;
2024-04-10 23:56:34 +02:00
std::map<std::string, DataPair> m_data;
2012-03-21 03:33:02 +02:00
std::map<std::string, float> m_graphvalues;
u64 m_start_time;
};
2024-04-10 23:56:34 +02:00
enum ScopeProfilerType : u8
{
SPT_ADD = 1,
2012-03-21 15:38:24 +02:00
SPT_AVG,
2023-04-09 07:44:43 -10:00
SPT_GRAPH_ADD,
SPT_MAX
};
2024-04-10 23:56:34 +02:00
// Note: this class should be kept lightweight.
class ScopeProfiler
{
public:
ScopeProfiler(Profiler *profiler, const std::string &name,
2024-04-10 23:56:34 +02:00
ScopeProfilerType type = SPT_ADD,
TimePrecision precision = PRECISION_MILLI);
inline ~ScopeProfiler() { stop(); }
// End profiled scope early
void stop() noexcept;
DISABLE_CLASS_COPY(ScopeProfiler)
2024-04-10 23:56:34 +02:00
private:
Profiler *m_profiler = nullptr;
std::string m_name;
2024-04-10 23:56:34 +02:00
u64 m_time1;
ScopeProfilerType m_type;
TimePrecision m_precision;
};