blob: 796051a91b82186249a0ad4620aa5084a96dfc3b [file] [log] [blame]
scroggo7a10fb62014-11-04 07:21:10 -08001/*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef DMJsonWriter_DEFINED
9#define DMJsonWriter_DEFINED
10
11#include "SkString.h"
scroggo0ee26272014-11-07 06:07:32 -080012#include "Test.h"
scroggo7a10fb62014-11-04 07:21:10 -080013
14namespace DM {
15
16/**
17 * Class for collecting results from DM and writing to a json file.
18 * All methods are thread-safe.
19 */
20class JsonWriter {
21public:
22 /**
23 * Info describing a single run.
24 */
25 struct BitmapResult {
mtklein748ca3b2015-01-15 10:56:12 -080026 SkString name; // E.g. "ninepatch-stretch", "desk_gws.skp"
27 SkString config; // "gpu", "8888", "serialize", "pipe"
28 SkString sourceType; // "gm", "skp", "image"
djsollen54416de2015-04-03 07:24:48 -070029 SkString sourceOptions; // "image", "codec", "subset", "scanline"
scroggo7a10fb62014-11-04 07:21:10 -080030 SkString md5; // In ASCII, so 32 bytes long.
mtklein748ca3b2015-01-15 10:56:12 -080031 SkString ext; // Extension of file we wrote: "png", "pdf", ...
Mike Klein66f09a72019-02-12 13:03:54 -050032 SkString gamut;
33 SkString transferFn;
Mike Klein0abbaca2019-03-06 09:57:49 -060034 SkString colorType;
35 SkString alphaType;
scroggo7a10fb62014-11-04 07:21:10 -080036 };
37
38 /**
39 * Add a result to the end of the list of results.
40 */
41 static void AddBitmapResult(const BitmapResult&);
42
43 /**
scroggo0ee26272014-11-07 06:07:32 -080044 * Add a Failure from a Test.
45 */
46 static void AddTestFailure(const skiatest::Failure&);
47
48 /**
scroggo7a10fb62014-11-04 07:21:10 -080049 * Write all collected results to the file FLAGS_writePath[0]/dm.json.
50 */
51 static void DumpJson();
Brian Osman57796b32019-01-25 18:02:59 +000052
53 /**
54 * Read JSON file at path written by DumpJson, calling callback for each
55 * BitmapResult recorded in the file. Return success.
56 */
57 static bool ReadJson(const char* path, void(*callback)(BitmapResult));
scroggo7a10fb62014-11-04 07:21:10 -080058};
59
mtklein62bd1a62015-01-27 14:46:26 -080060
scroggo7a10fb62014-11-04 07:21:10 -080061} // namespace DM
62#endif // DMJsonWriter_DEFINED