summaryrefslogtreecommitdiff
path: root/src/lib/timer.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-07-24 20:26:40 +0100
committerCarl Hetherington <cth@carlh.net>2019-07-24 20:36:11 +0100
commit697d21c3f9bc6243151372f988936662b9993510 (patch)
tree2060699cc3c6cc074d988d3225c8ed6a6657519a /src/lib/timer.cc
parent95ddf2cc72b800967b9917f75917cfdde325d2e5 (diff)
Improve formatting of StateTimer output.
Diffstat (limited to 'src/lib/timer.cc')
-rw-r--r--src/lib/timer.cc31
1 files changed, 27 insertions, 4 deletions
diff --git a/src/lib/timer.cc b/src/lib/timer.cc
index 2e138aabf..e4e7bdfdc 100644
--- a/src/lib/timer.cc
+++ b/src/lib/timer.cc
@@ -22,10 +22,11 @@
* @brief Some timing classes for debugging and profiling.
*/
-#include <iostream>
-#include <sys/time.h>
#include "timer.h"
#include "util.h"
+#include "compose.hpp"
+#include <iostream>
+#include <sys/time.h>
#include "i18n.h"
@@ -97,6 +98,11 @@ StateTimer::unset ()
set_internal (optional<string>());
}
+bool compare (pair<double, string> a, pair<double, string> b)
+{
+ return a.first > b.first;
+}
+
/** Destroy StateTimer and generate a summary of the state timings on cout */
StateTimer::~StateTimer ()
{
@@ -106,8 +112,25 @@ StateTimer::~StateTimer ()
unset ();
- cout << _name << N_(":\n");
+ int longest = 0;
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");
+ longest = max (longest, int(i->first.length()));
+ }
+
+ list<pair<double, string> > sorted;
+
+ for (map<string, Counts>::iterator i = _counts.begin(); i != _counts.end(); ++i) {
+ string name = i->first + string(longest + 1 - i->first.size(), ' ');
+ char buffer[64];
+ snprintf (buffer, 64, "%.4f", i->second.total_time);
+ string total_time (buffer);
+ sorted.push_back (make_pair(i->second.total_time, String::compose("\t%1%2 %3 %4", name, total_time, i->second.number, (i->second.total_time / i->second.number))));
+ }
+
+ sorted.sort (compare);
+
+ cout << _name << N_(":\n");
+ for (list<pair<double, string> >::iterator i = sorted.begin(); i != sorted.end(); ++i) {
+ cout << N_("\t") << i->second << "\n";
}
}