2020-03-26 13:57:24 +00:00
|
|
|
/*
|
|
|
|
* Modern effects for a modern Streamer
|
|
|
|
* Copyright (C) 2020 Michael Fabian Dirks
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (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
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2020-04-02 15:02:01 +00:00
|
|
|
#pragma once
|
|
|
|
#include "common.hpp"
|
2020-03-26 13:57:24 +00:00
|
|
|
#include <chrono>
|
|
|
|
#include <map>
|
|
|
|
#include <mutex>
|
|
|
|
|
|
|
|
namespace util {
|
|
|
|
class profiler : public std::enable_shared_from_this<util::profiler> {
|
|
|
|
std::map<std::chrono::nanoseconds, size_t> _timings;
|
|
|
|
std::mutex _timings_lock;
|
|
|
|
|
|
|
|
public:
|
|
|
|
class instance {
|
|
|
|
std::shared_ptr<profiler> _parent;
|
|
|
|
std::chrono::high_resolution_clock::time_point _start;
|
|
|
|
|
|
|
|
public:
|
|
|
|
instance(std::shared_ptr<profiler> parent);
|
|
|
|
|
|
|
|
~instance();
|
|
|
|
|
|
|
|
void cancel();
|
|
|
|
|
|
|
|
void reparent(std::shared_ptr<profiler> parent);
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
profiler();
|
|
|
|
|
|
|
|
public:
|
|
|
|
~profiler();
|
|
|
|
|
|
|
|
std::shared_ptr<class util::profiler::instance> track();
|
|
|
|
|
|
|
|
void track(std::chrono::nanoseconds duration);
|
|
|
|
|
2020-08-10 01:29:05 +00:00
|
|
|
uint64_t count();
|
2020-03-26 13:57:24 +00:00
|
|
|
|
|
|
|
std::chrono::nanoseconds total_duration();
|
|
|
|
|
|
|
|
double_t average_duration();
|
|
|
|
|
|
|
|
std::chrono::nanoseconds percentile(double_t percentile, bool by_time = false);
|
|
|
|
|
|
|
|
public:
|
|
|
|
static std::shared_ptr<util::profiler> create()
|
|
|
|
{
|
|
|
|
return std::shared_ptr<util::profiler>{new profiler()};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace util
|