Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Unified Diff: dm/DMReporter.h

Issue 22839016: Skeleton of DM (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: one last sync Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dm/DMReplayTask.cpp ('k') | dm/DMReporter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dm/DMReporter.h
diff --git a/dm/DMReporter.h b/dm/DMReporter.h
new file mode 100644
index 0000000000000000000000000000000000000000..4f4ad432d5186db441b28401f88af11b12c59834
--- /dev/null
+++ b/dm/DMReporter.h
@@ -0,0 +1,39 @@
+#ifndef DMReporter_DEFINED
+#define DMReporter_DEFINED
+
+#include "SkString.h"
+#include "SkTArray.h"
+#include "SkThread.h"
+#include "SkTypes.h"
+
+// Used to report status changes including failures. All public methods are threadsafe.
+
+namespace DM {
+
+class Reporter : SkNoncopyable {
+public:
+ Reporter() : fStarted(0), fFinished(0) {}
+
+ void start() { sk_atomic_inc(&fStarted); }
+ void finish() { sk_atomic_inc(&fFinished); }
+ void fail(SkString name);
+
+ int32_t started() const { return fStarted; }
+ int32_t finished() const { return fFinished; }
+ int32_t failed() const;
+
+ void updateStatusLine() const;
+
+ void getFailures(SkTArray<SkString>*) const;
+
+private:
+ int32_t fStarted, fFinished;
+
+ mutable SkMutex fMutex; // Guards fFailures.
+ SkTArray<SkString> fFailures;
+};
+
+
+} // namespace DM
+
+#endif // DMReporter_DEFINED
« no previous file with comments | « dm/DMReplayTask.cpp ('k') | dm/DMReporter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698