2011-05-30 23:15:43 +02:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-05-30 23:15:43 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2011-05-30 23:15:43 +02:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-06-05 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-05-30 23:15:43 +02:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-05-30 23:15:43 +02:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2011-05-30 23:15:43 +02:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "irrlichttypes.h"
|
2017-08-18 19:25:07 +02:00
|
|
|
#include <cassert>
|
2011-05-30 23:15:43 +02:00
|
|
|
#include <string>
|
2014-06-29 16:57:50 +02:00
|
|
|
#include <map>
|
2017-08-18 19:25:07 +02:00
|
|
|
#include <ostream>
|
2014-06-29 16:57:50 +02:00
|
|
|
|
2015-04-07 12:13:12 +02:00
|
|
|
#include "threading/mutex_auto_lock.h"
|
2012-06-17 01:40:36 +02:00
|
|
|
#include "util/timetaker.h"
|
2015-04-01 15:01:28 +02:00
|
|
|
#include "util/numeric.h" // paging()
|
2011-05-30 23:15:43 +02:00
|
|
|
|
2015-04-01 15:01:28 +02:00
|
|
|
// Global profiler
|
|
|
|
class Profiler;
|
|
|
|
extern Profiler *g_profiler;
|
|
|
|
|
2011-05-30 23:15:43 +02:00
|
|
|
/*
|
|
|
|
Time profiler
|
|
|
|
*/
|
|
|
|
|
|
|
|
class Profiler
|
|
|
|
{
|
|
|
|
public:
|
2019-08-13 19:56:55 +02:00
|
|
|
Profiler();
|
2011-05-30 23:15:43 +02:00
|
|
|
|
2019-08-13 19:56:55 +02:00
|
|
|
void add(const std::string &name, float value);
|
|
|
|
void avg(const std::string &name, float value);
|
|
|
|
void clear();
|
2011-10-16 20:16:44 +02:00
|
|
|
|
2019-08-13 19:56:55 +02:00
|
|
|
float getValue(const std::string &name) const;
|
|
|
|
int getAvgCount(const std::string &name) const;
|
|
|
|
u64 getElapsedMs() const;
|
2015-01-21 14:25:06 +01:00
|
|
|
|
2019-08-13 19:56:55 +02:00
|
|
|
typedef std::map<std::string, float> GraphValues;
|
2012-02-01 00:56:30 +01:00
|
|
|
|
2019-08-13 19:56:55 +02:00
|
|
|
// Returns the line count
|
|
|
|
int print(std::ostream &o, u32 page = 1, u32 pagecount = 1);
|
|
|
|
void getPage(GraphValues &o, u32 page, u32 pagecount);
|
2011-05-30 23:15:43 +02:00
|
|
|
|
2012-03-21 02:33:02 +01:00
|
|
|
|
|
|
|
void graphAdd(const std::string &id, float value)
|
|
|
|
{
|
2015-04-07 12:13:12 +02:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2012-03-21 02:33:02 +01:00
|
|
|
std::map<std::string, float>::iterator i =
|
|
|
|
m_graphvalues.find(id);
|
|
|
|
if(i == m_graphvalues.end())
|
|
|
|
m_graphvalues[id] = value;
|
|
|
|
else
|
|
|
|
i->second += value;
|
|
|
|
}
|
|
|
|
void graphGet(GraphValues &result)
|
|
|
|
{
|
2015-04-07 12:13:12 +02:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2012-03-21 02:33:02 +01:00
|
|
|
result = m_graphvalues;
|
|
|
|
m_graphvalues.clear();
|
|
|
|
}
|
|
|
|
|
2014-01-06 15:21:22 +01:00
|
|
|
void remove(const std::string& name)
|
|
|
|
{
|
2015-04-07 12:13:12 +02:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2014-01-06 15:21:22 +01:00
|
|
|
m_avgcounts.erase(name);
|
|
|
|
m_data.erase(name);
|
|
|
|
}
|
|
|
|
|
2011-05-30 23:15:43 +02:00
|
|
|
private:
|
2017-06-06 16:29:28 +02:00
|
|
|
std::mutex m_mutex;
|
2012-12-20 18:19:49 +01:00
|
|
|
std::map<std::string, float> m_data;
|
|
|
|
std::map<std::string, int> m_avgcounts;
|
2012-03-21 02:33:02 +01:00
|
|
|
std::map<std::string, float> m_graphvalues;
|
2019-08-13 19:56:55 +02:00
|
|
|
u64 m_start_time;
|
2011-10-16 20:16:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enum ScopeProfilerType{
|
|
|
|
SPT_ADD,
|
2012-03-21 14:38:24 +01:00
|
|
|
SPT_AVG,
|
|
|
|
SPT_GRAPH_ADD
|
2011-05-30 23:15:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class ScopeProfiler
|
|
|
|
{
|
|
|
|
public:
|
2011-10-16 20:16:44 +02:00
|
|
|
ScopeProfiler(Profiler *profiler, const std::string &name,
|
2017-05-26 14:03:36 +02:00
|
|
|
ScopeProfilerType type = SPT_ADD);
|
|
|
|
~ScopeProfiler();
|
2011-05-30 23:15:43 +02:00
|
|
|
private:
|
2017-06-18 19:55:15 +02:00
|
|
|
Profiler *m_profiler = nullptr;
|
2011-05-30 23:15:43 +02:00
|
|
|
std::string m_name;
|
2017-06-18 19:55:15 +02:00
|
|
|
TimeTaker *m_timer = nullptr;
|
2011-10-16 20:16:44 +02:00
|
|
|
enum ScopeProfilerType m_type;
|
2011-05-30 23:15:43 +02:00
|
|
|
};
|