diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-03-26 14:58:43 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-05-10 23:43:42 +0100 |
| commit | b7e546d9685c0a3304faa48e95516915d811ec5c (patch) | |
| tree | 678ca0c95d70e291d25216384cde942b4bbfca10 /src/lib/timer.cc | |
| parent | f9361d461d2137953a492a2d424ef9df757290d4 (diff) | |
Add some very basic timing of the player.
Diffstat (limited to 'src/lib/timer.cc')
| -rw-r--r-- | src/lib/timer.cc | 40 |
1 files changed, 31 insertions, 9 deletions
diff --git a/src/lib/timer.cc b/src/lib/timer.cc index e0cd93d7a..2e138aabf 100644 --- a/src/lib/timer.cc +++ b/src/lib/timer.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2019 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -30,6 +30,7 @@ #include "i18n.h" using namespace std; +using boost::optional; /** @param n Name to use when giving output */ PeriodTimer::PeriodTimer (string n) @@ -58,34 +59,55 @@ StateTimer::StateTimer (string n, string s) _state = s; } +StateTimer::StateTimer (string n) + : _name (n) +{ + +} + +void +StateTimer::set (string s) +{ + set_internal (s); +} + /** @param s New state that the caller is in */ void -StateTimer::set_state (string s) +StateTimer::set_internal (optional<string> s) { double const last = _time; struct timeval t; gettimeofday (&t, 0); _time = seconds (t); - if (_totals.find (s) == _totals.end ()) { - _totals[s] = 0; + if (s && _counts.find(*s) == _counts.end()) { + _counts[*s] = Counts(); } - _totals[_state] += _time - last; + if (_state) { + _counts[*_state].total_time += _time - last; + _counts[*_state].number++; + } _state = s; } +void +StateTimer::unset () +{ + set_internal (optional<string>()); +} + /** Destroy StateTimer and generate a summary of the state timings on cout */ StateTimer::~StateTimer () { - if (_state.empty ()) { + if (!_state) { return; } - set_state (N_("")); + unset (); cout << _name << N_(":\n"); - for (map<string, double>::iterator i = _totals.begin(); i != _totals.end(); ++i) { - cout << N_("\t") << i->first << " " << i->second << N_("\n"); + for (map<string, Counts>::iterator i = _counts.begin(); i != _counts.end(); ++i) { + cout << N_("\t") << i->first << " " << i->second.total_time << " " << i->second.number << " " << (i->second.total_time / i->second.number) << N_("\n"); } } |
