/* Sample for DataPath Copyright (C) 2019 Michael Fabian Dirks This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ #include #include #include #include class measurer : std::enable_shared_from_this { std::map timings; std::mutex lock; public: class instance { std::shared_ptr parent; std::chrono::high_resolution_clock::time_point start; public: instance(std::shared_ptr parent); ~instance(); void cancel(); void reparent(std::shared_ptr parent); }; public: measurer(); ~measurer(); std::shared_ptr track(); void track(std::chrono::nanoseconds duration); uint64_t count(); std::chrono::nanoseconds total_duration(); double_t average_duration(); std::chrono::nanoseconds percentile(double_t percentile, bool by_time = false); };