aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/ResultsWriter.h
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2014-10-14 08:40:43 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-10-14 08:40:43 -0700
commite070c2bf54c451f0126d4ffb3a48bffe1fbfa437 (patch)
treecf7fc2fe14f08726e2f7b8819ab40b752dd4733e /bench/ResultsWriter.h
parentb2d77e4d7458145ef4825c28323d9fbbb6b003ac (diff)
nanobench: flush after recording every Nth data point.
Got to keep our precious data in event of a crash. With --flushEvery 10 I'm not seeing this cost any wall time. BUG=skia: Review URL: https://codereview.chromium.org/653083003
Diffstat (limited to 'bench/ResultsWriter.h')
-rw-r--r--bench/ResultsWriter.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/bench/ResultsWriter.h b/bench/ResultsWriter.h
index f17bce3d93..b8d97075a1 100644
--- a/bench/ResultsWriter.h
+++ b/bench/ResultsWriter.h
@@ -45,6 +45,9 @@ public:
// Record a single test metric.
virtual void timer(const char name[], double ms) {}
+
+ // Flush to storage now please.
+ virtual void flush() {}
};
/**
@@ -79,9 +82,7 @@ public:
, fConfig(NULL) {}
~NanoJSONResultsWriter() {
- SkFILEWStream stream(fFilename.c_str());
- stream.writeText(Json::StyledWriter().write(fRoot).c_str());
- stream.flush();
+ this->flush();
}
// Added under "key".
@@ -113,6 +114,13 @@ public:
(*fConfig)[name] = ms;
}
+ // Flush to storage now please.
+ virtual void flush() {
+ SkFILEWStream stream(fFilename.c_str());
+ stream.writeText(Json::StyledWriter().write(fRoot).c_str());
+ stream.flush();
+ }
+
private:
SkString fFilename;
Json::Value fRoot;