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

Unified Diff: bench/ResultsWriter.cpp

Issue 329993008: Make SKP bench JSON ouput better (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix initializer style Created 6 years, 6 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
Index: bench/ResultsWriter.cpp
diff --git a/bench/ResultsWriter.cpp b/bench/ResultsWriter.cpp
index 08f11c190fbff926fd27f334dde10370b4cff665..251d099e855bedcc29b916f33b105249d78aef31 100644
--- a/bench/ResultsWriter.cpp
+++ b/bench/ResultsWriter.cpp
@@ -8,6 +8,8 @@
*/
#include "ResultsWriter.h"
+#include "SkString.h"
+#include "SkTArray.h"
Json::Value* SkFindNamedNode(Json::Value* root, const char name[]) {
Json::Value* search_results = NULL;
@@ -28,3 +30,29 @@ Json::Value* SkFindNamedNode(Json::Value* root, const char name[]) {
}
}
+Json::Value makeBuilderJSON(SkString buildername) {
robertphillips 2014/06/24 20:49:51 kNumKeys ? kKeys ? This should probably be: static
kelvinly 2014/06/24 22:25:19 Done.
+ static const int numKeys = 6;
+ static const char keys[6][32] = {
+ "role", "os", "model", "gpu", "arch", "configuration"};
+ Json::Value builderData;
+
robertphillips 2014/06/24 20:49:51 space after if ?
kelvinly 2014/06/24 22:25:19 Done.
+ if(buildername.size() > 0) {
+ SkTArray<SkString> splitBuilder;
+ SkStrSplit(buildername.c_str(), "-", &splitBuilder);
+ for(int i = 0; i < numKeys && i < splitBuilder.count(); i++) {
+ builderData[keys[i]] = splitBuilder[i].c_str();
+ }
+ builderData["builderName"] = buildername.c_str();
robertphillips 2014/06/24 20:49:51 space after if ?
kelvinly 2014/06/24 22:25:19 Done.
+ if(numKeys < splitBuilder.count()) {
+ SkString extras;
robertphillips 2014/06/24 20:49:51 space after for ?
kelvinly 2014/06/24 22:25:19 Done.
+ for(int i = numKeys; i < splitBuilder.count(); i++) {
+ extras.append(splitBuilder[i]);
+ if(i != splitBuilder.count() - 1) {
+ extras.append("-");
+ }
+ }
+ builderData["badParams"] = extras.c_str();
+ }
+ }
+ return builderData;
+}
« no previous file with comments | « bench/ResultsWriter.h ('k') | tools/PictureBenchmark.cpp » ('j') | tools/PictureRenderer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698