blob: 2a71500605bef7ddbc7fafa9f45b8f4bd014dfc6 [file] [log] [blame]
scroggo478652e2015-03-25 07:11:02 -07001/*
2 * Copyright 2013 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
jcgregorio3b27ade2014-11-13 08:06:40 -08008#include "CrashHandler.h"
mtklein748ca3b2015-01-15 10:56:12 -08009#include "DMJsonWriter.h"
10#include "DMSrcSink.h"
tomhudsoneebc39a2015-02-23 12:18:05 -080011#include "DMSrcSinkAndroid.h"
mtklein748ca3b2015-01-15 10:56:12 -080012#include "OverwriteLine.h"
13#include "ProcStats.h"
14#include "SkBBHFactory.h"
mtklein62bd1a62015-01-27 14:46:26 -080015#include "SkChecksum.h"
caryclark17f0b6d2014-07-22 10:15:34 -070016#include "SkCommonFlags.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000017#include "SkForceLinking.h"
18#include "SkGraphics.h"
mtkleine67164d2015-02-02 13:24:37 -080019#include "SkInstCnt.h"
mtklein748ca3b2015-01-15 10:56:12 -080020#include "SkMD5.h"
mtklein1d0f1642014-09-08 08:05:18 -070021#include "SkOSFile.h"
mtkleina82f5622015-02-20 12:30:19 -080022#include "SkTHash.h"
mtklein406654b2014-09-03 15:34:37 -070023#include "SkTaskGroup.h"
mtkleinde6fc2b2015-03-12 06:28:54 -070024#include "SkThreadUtils.h"
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +000025#include "Test.h"
mtklein748ca3b2015-01-15 10:56:12 -080026#include "Timer.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000027
djsollen54416de2015-04-03 07:24:48 -070028DEFINE_string(src, "tests gm skp image", "Source types to test.");
mtklein748ca3b2015-01-15 10:56:12 -080029DEFINE_bool(nameByHash, false,
30 "If true, write to FLAGS_writePath[0]/<hash>.png instead of "
djsollen54416de2015-04-03 07:24:48 -070031 "to FLAGS_writePath[0]/<config>/<sourceType>/<sourceOptions>/<name>.png");
mtklein748ca3b2015-01-15 10:56:12 -080032DEFINE_bool2(pathOpsExtended, x, false, "Run extended pathOps tests.");
mtkleind603b222015-02-17 11:13:33 -080033DEFINE_string(matrix, "1 0 0 1",
34 "2x2 scale+skew matrix to apply or upright when using "
35 "'matrix' or 'upright' in config.");
mtklein82d28432015-01-15 12:46:02 -080036DEFINE_bool(gpu_threading, false, "Allow GPU work to run on multiple threads?");
mtklein@google.comd36522d2013-10-16 13:02:15 +000037
mtkleina2ef6422015-01-15 13:44:22 -080038DEFINE_string(blacklist, "",
djsollen54416de2015-04-03 07:24:48 -070039 "Space-separated config/src/srcOptions/name quadruples to blacklist. '_' matches anything. E.g. \n"
40 "'--blacklist gpu skp _ _' will blacklist all SKPs drawn into the gpu config.\n"
41 "'--blacklist gpu skp _ _ 8888 gm _ aarects' will also blacklist the aarects GM on 8888.");
mtkleina2ef6422015-01-15 13:44:22 -080042
mtklein62bd1a62015-01-27 14:46:26 -080043DEFINE_string2(readPath, r, "", "If set check for equality with golden results in this directory.");
44
borenet09ed4802015-04-03 14:15:33 -070045DEFINE_string(uninterestingHashesFile, "",
46 "File containing a list of uninteresting hashes. If a result hashes to something in "
47 "this list, no image is written for that result.");
48
mtklein@google.comd36522d2013-10-16 13:02:15 +000049__SK_FORCE_IMAGE_DECODER_LINKING;
mtklein748ca3b2015-01-15 10:56:12 -080050using namespace DM;
mtklein@google.comd36522d2013-10-16 13:02:15 +000051
mtklein748ca3b2015-01-15 10:56:12 -080052/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
53
54SK_DECLARE_STATIC_MUTEX(gFailuresMutex);
55static SkTArray<SkString> gFailures;
56
57static void fail(ImplicitString err) {
58 SkAutoMutexAcquire lock(gFailuresMutex);
59 SkDebugf("\n\nFAILURE: %s\n\n", err.c_str());
60 gFailures.push_back(err);
halcanary9e398f72015-01-10 11:18:04 -080061}
62
mtkleinb37cb412015-03-18 05:27:14 -070063static int32_t gPending = 0; // Atomic. Total number of running and queued tasks.
64
65SK_DECLARE_STATIC_MUTEX(gRunningMutex);
66static SkTArray<SkString> gRunning;
mtklein748ca3b2015-01-15 10:56:12 -080067
mtkleinb9eb4ac2015-02-02 18:26:03 -080068static void done(double ms,
djsollen54416de2015-04-03 07:24:48 -070069 ImplicitString config, ImplicitString src, ImplicitString srcOptions,
70 ImplicitString name, ImplicitString note, ImplicitString log) {
71 SkString id = SkStringPrintf("%s %s %s %s", config.c_str(), src.c_str(),
72 srcOptions.c_str(), name.c_str());
mtkleinb37cb412015-03-18 05:27:14 -070073 {
74 SkAutoMutexAcquire lock(gRunningMutex);
75 for (int i = 0; i < gRunning.count(); i++) {
76 if (gRunning[i] == id) {
77 gRunning.removeShuffle(i);
78 break;
79 }
80 }
81 }
82 if (!FLAGS_verbose) {
83 note = "";
84 }
mtkleinb9eb4ac2015-02-02 18:26:03 -080085 if (!log.isEmpty()) {
86 log.prepend("\n");
87 }
mtklein6dee2ad2015-02-05 09:53:44 -080088 auto pending = sk_atomic_dec(&gPending)-1;
mtkleinb37cb412015-03-18 05:27:14 -070089 SkDebugf("%s(%4dMB %5d) %s\t%s%s%s", FLAGS_verbose ? "\n" : kSkOverwriteLine
90 , sk_tools::getBestResidentSetSizeMB()
91 , pending
92 , HumanizeMs(ms).c_str()
93 , id.c_str()
94 , note.c_str()
95 , log.c_str());
mtkleina17241b2015-01-23 05:48:00 -080096 // We write our dm.json file every once in a while in case we crash.
97 // Notice this also handles the final dm.json when pending == 0.
98 if (pending % 500 == 0) {
99 JsonWriter::DumpJson();
100 }
mtklein@google.comd36522d2013-10-16 13:02:15 +0000101}
102
djsollen54416de2015-04-03 07:24:48 -0700103static void start(ImplicitString config, ImplicitString src,
104 ImplicitString srcOptions, ImplicitString name) {
105 SkString id = SkStringPrintf("%s %s %s %s", config.c_str(), src.c_str(),
106 srcOptions.c_str(), name.c_str());
mtkleinb37cb412015-03-18 05:27:14 -0700107 SkAutoMutexAcquire lock(gRunningMutex);
108 gRunning.push_back(id);
109}
110
mtklein748ca3b2015-01-15 10:56:12 -0800111/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
mtklein114c3cd2015-01-15 10:15:02 -0800112
mtklein62bd1a62015-01-27 14:46:26 -0800113struct Gold : public SkString {
mtkleina82f5622015-02-20 12:30:19 -0800114 Gold() : SkString("") {}
djsollen54416de2015-04-03 07:24:48 -0700115 Gold(ImplicitString sink, ImplicitString src, ImplicitString srcOptions,
116 ImplicitString name, ImplicitString md5)
mtklein62bd1a62015-01-27 14:46:26 -0800117 : SkString("") {
118 this->append(sink);
119 this->append(src);
djsollen54416de2015-04-03 07:24:48 -0700120 this->append(srcOptions);
mtklein62bd1a62015-01-27 14:46:26 -0800121 this->append(name);
122 this->append(md5);
mtklein62bd1a62015-01-27 14:46:26 -0800123 }
mtklein02f46cf2015-03-20 13:48:42 -0700124 static uint32_t Hash(const Gold& g) { return SkGoodHash((const SkString&)g); }
mtklein62bd1a62015-01-27 14:46:26 -0800125};
mtkleina82f5622015-02-20 12:30:19 -0800126static SkTHashSet<Gold, Gold::Hash> gGold;
mtklein62bd1a62015-01-27 14:46:26 -0800127
128static void add_gold(JsonWriter::BitmapResult r) {
djsollen54416de2015-04-03 07:24:48 -0700129 gGold.add(Gold(r.config, r.sourceType, r.sourceOptions, r.name, r.md5));
mtklein62bd1a62015-01-27 14:46:26 -0800130}
131
132static void gather_gold() {
133 if (!FLAGS_readPath.isEmpty()) {
134 SkString path(FLAGS_readPath[0]);
135 path.append("/dm.json");
136 if (!JsonWriter::ReadJson(path.c_str(), add_gold)) {
137 fail(SkStringPrintf("Couldn't read %s for golden results.", path.c_str()));
138 }
139 }
140}
141
142/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
143
borenet09ed4802015-04-03 14:15:33 -0700144static SkTHashSet<SkString> gUninterestingHashes;
145
146static void gather_uninteresting_hashes() {
147 if (!FLAGS_uninterestingHashesFile.isEmpty()) {
148 SkAutoTUnref<SkData> data(SkData::NewFromFileName(FLAGS_uninterestingHashesFile[0]));
149 SkTArray<SkString> hashes;
150 SkStrSplit((const char*)data->data(), "\n", &hashes);
151 for (const SkString& hash : hashes) {
152 gUninterestingHashes.add(hash);
153 }
154 }
155}
156
157/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
158
mtklein748ca3b2015-01-15 10:56:12 -0800159template <typename T>
djsollen54416de2015-04-03 07:24:48 -0700160struct Tagged : public SkAutoTDelete<T> {
161 const char* tag;
162 const char* options;
163};
mtklein748ca3b2015-01-15 10:56:12 -0800164
165static const bool kMemcpyOK = true;
166
167static SkTArray<Tagged<Src>, kMemcpyOK> gSrcs;
168static SkTArray<Tagged<Sink>, kMemcpyOK> gSinks;
169
djsollen54416de2015-04-03 07:24:48 -0700170static void push_src(const char* tag, const char* options, Src* s) {
mtklein748ca3b2015-01-15 10:56:12 -0800171 SkAutoTDelete<Src> src(s);
172 if (FLAGS_src.contains(tag) &&
173 !SkCommandLineFlags::ShouldSkip(FLAGS_match, src->name().c_str())) {
174 Tagged<Src>& s = gSrcs.push_back();
175 s.reset(src.detach());
176 s.tag = tag;
djsollen54416de2015-04-03 07:24:48 -0700177 s.options = options;
mtklein114c3cd2015-01-15 10:15:02 -0800178 }
mtklein748ca3b2015-01-15 10:56:12 -0800179}
mtklein114c3cd2015-01-15 10:15:02 -0800180
msarett438b2ad2015-04-09 12:43:10 -0700181static void push_codec_srcs(Path path) {
182 SkAutoTUnref<SkData> encoded(SkData::NewFromFileName(path.c_str()));
183 if (!encoded) {
184 SkDebugf("Couldn't read %s.", path.c_str());
185 return;
186 }
187 SkAutoTDelete<SkCodec> codec(SkCodec::NewFromData(encoded));
188 if (NULL == codec.get()) {
189 SkDebugf("Couldn't create codec for %s.", path.c_str());
190 return;
191 }
192
193 // Build additional test cases for images that decode natively to non-canvas types
194 switch(codec->getInfo().colorType()) {
195 case kGray_8_SkColorType:
196 push_src("image", "codec kGray8", new CodecSrc(path, CodecSrc::kNormal_Mode,
197 CodecSrc::kGrayscale_Always_DstColorType));
198 push_src("image", "scanline kGray8", new CodecSrc(path, CodecSrc::kScanline_Mode,
199 CodecSrc::kGrayscale_Always_DstColorType));
200 // Intentional fall through
201 // FIXME: Is this a long term solution for testing wbmps decodes to kIndex8?
202 // Further discussion on this topic is at skbug.com/3683
203 case kIndex_8_SkColorType:
204 push_src("image", "codec kIndex8", new CodecSrc(path, CodecSrc::kNormal_Mode,
205 CodecSrc::kIndex8_Always_DstColorType));
206 push_src("image", "scanline kIndex8", new CodecSrc(path, CodecSrc::kScanline_Mode,
207 CodecSrc::kIndex8_Always_DstColorType));
208 break;
209 default:
210 // Do nothing
211 break;
212 }
213
214 // Decode all images to the canvas color type
215 push_src("image", "codec", new CodecSrc(path, CodecSrc::kNormal_Mode,
216 CodecSrc::kGetFromCanvas_DstColorType));
217 push_src("image", "scanline", new CodecSrc(path, CodecSrc::kScanline_Mode,
218 CodecSrc::kGetFromCanvas_DstColorType));
219}
220
scroggo9b77ddd2015-03-19 06:03:39 -0700221static bool codec_supported(const char* ext) {
222 // FIXME: Once other versions of SkCodec are available, we can add them to this
223 // list (and eventually we can remove this check once they are all supported).
msarett8c8f22a2015-04-01 06:58:48 -0700224 static const char* const exts[] = {
225 "bmp", "gif", "png", "ico", "wbmp",
226 "BMP", "GIF", "PNG", "ICO", "WBMP"
227 };
228
229 for (uint32_t i = 0; i < SK_ARRAY_COUNT(exts); i++) {
230 if (0 == strcmp(exts[i], ext)) {
231 return true;
232 }
233 }
234 return false;
scroggo9b77ddd2015-03-19 06:03:39 -0700235}
236
mtklein748ca3b2015-01-15 10:56:12 -0800237static void gather_srcs() {
238 for (const skiagm::GMRegistry* r = skiagm::GMRegistry::Head(); r; r = r->next()) {
djsollen54416de2015-04-03 07:24:48 -0700239 push_src("gm", "", new GMSrc(r->factory()));
mtklein748ca3b2015-01-15 10:56:12 -0800240 }
halcanaryfc37ad12015-01-30 07:31:19 -0800241 for (int i = 0; i < FLAGS_skps.count(); i++) {
242 const char* path = FLAGS_skps[i];
243 if (sk_isdir(path)) {
244 SkOSFile::Iter it(path, "skp");
245 for (SkString file; it.next(&file); ) {
djsollen54416de2015-04-03 07:24:48 -0700246 push_src("skp", "", new SKPSrc(SkOSPath::Join(path, file.c_str())));
halcanaryfc37ad12015-01-30 07:31:19 -0800247 }
248 } else {
djsollen54416de2015-04-03 07:24:48 -0700249 push_src("skp", "", new SKPSrc(path));
mtklein114c3cd2015-01-15 10:15:02 -0800250 }
251 }
halcanary23b03c32015-01-30 09:58:58 -0800252 static const char* const exts[] = {
253 "bmp", "gif", "jpg", "jpeg", "png", "webp", "ktx", "astc", "wbmp", "ico",
254 "BMP", "GIF", "JPG", "JPEG", "PNG", "WEBP", "KTX", "ASTC", "WBMP", "ICO",
255 };
256 for (int i = 0; i < FLAGS_images.count(); i++) {
257 const char* flag = FLAGS_images[i];
258 if (sk_isdir(flag)) {
259 for (size_t j = 0; j < SK_ARRAY_COUNT(exts); j++) {
260 SkOSFile::Iter it(flag, exts[j]);
261 for (SkString file; it.next(&file); ) {
262 SkString path = SkOSPath::Join(flag, file.c_str());
djsollen54416de2015-04-03 07:24:48 -0700263 push_src("image", "decode", new ImageSrc(path)); // Decode entire image
264 push_src("image", "subset", new ImageSrc(path, 2)); // Decode into 2x2 subsets
scroggo9b77ddd2015-03-19 06:03:39 -0700265 if (codec_supported(exts[j])) {
msarett438b2ad2015-04-09 12:43:10 -0700266 push_codec_srcs(path);
scroggo9b77ddd2015-03-19 06:03:39 -0700267 }
halcanary23b03c32015-01-30 09:58:58 -0800268 }
mtklein114c3cd2015-01-15 10:15:02 -0800269 }
halcanary23b03c32015-01-30 09:58:58 -0800270 } else if (sk_exists(flag)) {
271 // assume that FLAGS_images[i] is a valid image if it is a file.
djsollen54416de2015-04-03 07:24:48 -0700272 push_src("image", "decode", new ImageSrc(flag)); // Decode entire image.
273 push_src("image", "subset", new ImageSrc(flag, 2)); // Decode into 2 x 2 subsets
msarett438b2ad2015-04-09 12:43:10 -0700274 push_codec_srcs(flag);
mtklein709d2c32015-01-15 08:30:25 -0800275 }
mtklein709d2c32015-01-15 08:30:25 -0800276 }
277}
278
mtklein748ca3b2015-01-15 10:56:12 -0800279static GrGLStandard get_gpu_api() {
280 if (FLAGS_gpuAPI.contains("gl")) { return kGL_GrGLStandard; }
281 if (FLAGS_gpuAPI.contains("gles")) { return kGLES_GrGLStandard; }
282 return kNone_GrGLStandard;
mtklein709d2c32015-01-15 08:30:25 -0800283}
284
mtklein748ca3b2015-01-15 10:56:12 -0800285static void push_sink(const char* tag, Sink* s) {
286 SkAutoTDelete<Sink> sink(s);
287 if (!FLAGS_config.contains(tag)) {
288 return;
mtklein114c3cd2015-01-15 10:15:02 -0800289 }
mtklein748ca3b2015-01-15 10:56:12 -0800290 // Try a noop Src as a canary. If it fails, skip this sink.
291 struct : public Src {
mtklein36352bf2015-03-25 18:17:31 -0700292 Error draw(SkCanvas*) const override { return ""; }
293 SkISize size() const override { return SkISize::Make(16, 16); }
294 Name name() const override { return "noop"; }
mtklein748ca3b2015-01-15 10:56:12 -0800295 } noop;
mtklein114c3cd2015-01-15 10:15:02 -0800296
mtklein748ca3b2015-01-15 10:56:12 -0800297 SkBitmap bitmap;
298 SkDynamicMemoryWStream stream;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800299 SkString log;
300 Error err = sink->draw(noop, &bitmap, &stream, &log);
mtklein4089ef72015-03-05 08:40:28 -0800301 if (err.isFatal()) {
mtklein748ca3b2015-01-15 10:56:12 -0800302 SkDebugf("Skipping %s: %s\n", tag, err.c_str());
mtklein114c3cd2015-01-15 10:15:02 -0800303 return;
304 }
305
mtklein748ca3b2015-01-15 10:56:12 -0800306 Tagged<Sink>& ts = gSinks.push_back();
307 ts.reset(sink.detach());
308 ts.tag = tag;
309}
310
311static bool gpu_supported() {
312#if SK_SUPPORT_GPU
313 return FLAGS_gpu;
314#else
315 return false;
316#endif
317}
318
319static Sink* create_sink(const char* tag) {
320#define SINK(t, sink, ...) if (0 == strcmp(t, tag)) { return new sink(__VA_ARGS__); }
321 if (gpu_supported()) {
mtklein82d28432015-01-15 12:46:02 -0800322 typedef GrContextFactory Gr;
mtklein748ca3b2015-01-15 10:56:12 -0800323 const GrGLStandard api = get_gpu_api();
mtklein82d28432015-01-15 12:46:02 -0800324 SINK("gpunull", GPUSink, Gr::kNull_GLContextType, api, 0, false, FLAGS_gpu_threading);
325 SINK("gpudebug", GPUSink, Gr::kDebug_GLContextType, api, 0, false, FLAGS_gpu_threading);
326 SINK("gpu", GPUSink, Gr::kNative_GLContextType, api, 0, false, FLAGS_gpu_threading);
327 SINK("gpudft", GPUSink, Gr::kNative_GLContextType, api, 0, true, FLAGS_gpu_threading);
328 SINK("msaa4", GPUSink, Gr::kNative_GLContextType, api, 4, false, FLAGS_gpu_threading);
329 SINK("msaa16", GPUSink, Gr::kNative_GLContextType, api, 16, false, FLAGS_gpu_threading);
330 SINK("nvprmsaa4", GPUSink, Gr::kNVPR_GLContextType, api, 4, false, FLAGS_gpu_threading);
331 SINK("nvprmsaa16", GPUSink, Gr::kNVPR_GLContextType, api, 16, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800332 #if SK_ANGLE
mtklein82d28432015-01-15 12:46:02 -0800333 SINK("angle", GPUSink, Gr::kANGLE_GLContextType, api, 0, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800334 #endif
335 #if SK_MESA
mtklein82d28432015-01-15 12:46:02 -0800336 SINK("mesa", GPUSink, Gr::kMESA_GLContextType, api, 0, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800337 #endif
mtklein114c3cd2015-01-15 10:15:02 -0800338 }
mtklein748ca3b2015-01-15 10:56:12 -0800339
tomhudsoneebc39a2015-02-23 12:18:05 -0800340#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
341 SINK("hwui", HWUISink);
342#endif
343
mtklein748ca3b2015-01-15 10:56:12 -0800344 if (FLAGS_cpu) {
345 SINK("565", RasterSink, kRGB_565_SkColorType);
346 SINK("8888", RasterSink, kN32_SkColorType);
mtklein19f30602015-01-20 13:34:39 -0800347 SINK("pdf", PDFSink);
mtklein9c3f17d2015-01-28 11:35:18 -0800348 SINK("skp", SKPSink);
mtklein8a4527e2015-01-31 20:00:58 -0800349 SINK("svg", SVGSink);
350 SINK("null", NullSink);
halcanary47ef4d52015-03-03 09:13:09 -0800351 SINK("xps", XPSSink);
mtklein748ca3b2015-01-15 10:56:12 -0800352 }
353#undef SINK
354 return NULL;
mtklein114c3cd2015-01-15 10:15:02 -0800355}
356
mtklein748ca3b2015-01-15 10:56:12 -0800357static Sink* create_via(const char* tag, Sink* wrapped) {
358#define VIA(t, via, ...) if (0 == strcmp(t, tag)) { return new via(__VA_ARGS__); }
mtklein7edca212015-01-21 13:18:51 -0800359 VIA("pipe", ViaPipe, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800360 VIA("serialize", ViaSerialization, wrapped);
mtkleinb7e8d692015-04-07 08:30:32 -0700361 VIA("2ndpic", ViaSecondPicture, wrapped);
mtklein7edca212015-01-21 13:18:51 -0800362 VIA("tiles", ViaTiles, 256, 256, NULL, wrapped);
363 VIA("tiles_rt", ViaTiles, 256, 256, new SkRTreeFactory, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800364
mtkleind603b222015-02-17 11:13:33 -0800365 if (FLAGS_matrix.count() == 4) {
mtklein748ca3b2015-01-15 10:56:12 -0800366 SkMatrix m;
mtkleind603b222015-02-17 11:13:33 -0800367 m.reset();
368 m.setScaleX((SkScalar)atof(FLAGS_matrix[0]));
369 m.setSkewX ((SkScalar)atof(FLAGS_matrix[1]));
370 m.setSkewY ((SkScalar)atof(FLAGS_matrix[2]));
371 m.setScaleY((SkScalar)atof(FLAGS_matrix[3]));
372 VIA("matrix", ViaMatrix, m, wrapped);
373 VIA("upright", ViaUpright, m, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800374 }
tomhudson64de1e12015-03-05 08:01:07 -0800375
376#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
377 VIA("androidsdk", ViaAndroidSDK, wrapped);
378#endif
379
mtklein748ca3b2015-01-15 10:56:12 -0800380#undef VIA
381 return NULL;
mtklein114c3cd2015-01-15 10:15:02 -0800382}
383
mtklein748ca3b2015-01-15 10:56:12 -0800384static void gather_sinks() {
385 for (int i = 0; i < FLAGS_config.count(); i++) {
386 const char* config = FLAGS_config[i];
387 SkTArray<SkString> parts;
388 SkStrSplit(config, "-", &parts);
389
390 Sink* sink = NULL;
391 for (int i = parts.count(); i-- > 0;) {
392 const char* part = parts[i].c_str();
393 Sink* next = (sink == NULL) ? create_sink(part) : create_via(part, sink);
394 if (next == NULL) {
395 SkDebugf("Skipping %s: Don't understand '%s'.\n", config, part);
396 delete sink;
397 sink = NULL;
398 break;
399 }
400 sink = next;
401 }
402 if (sink) {
403 push_sink(config, sink);
mtklein114c3cd2015-01-15 10:15:02 -0800404 }
405 }
406}
mtklein709d2c32015-01-15 08:30:25 -0800407
mtkleina2ef6422015-01-15 13:44:22 -0800408static bool match(const char* needle, const char* haystack) {
409 return 0 == strcmp("_", needle) || NULL != strstr(haystack, needle);
410}
411
djsollen54416de2015-04-03 07:24:48 -0700412static ImplicitString is_blacklisted(const char* sink, const char* src,
413 const char* srcOptions, const char* name) {
mtklein0d243ff2015-04-03 07:51:00 -0700414 for (int i = 0; i < FLAGS_blacklist.count() - 3; i += 4) {
mtkleina2ef6422015-01-15 13:44:22 -0800415 if (match(FLAGS_blacklist[i+0], sink) &&
djsollen54416de2015-04-03 07:24:48 -0700416 match(FLAGS_blacklist[i+1], src) &&
417 match(FLAGS_blacklist[i+2], srcOptions) &&
418 match(FLAGS_blacklist[i+3], name)) {
419 return SkStringPrintf("%s %s %s %s",
420 FLAGS_blacklist[i+0], FLAGS_blacklist[i+1],
421 FLAGS_blacklist[i+2], FLAGS_blacklist[i+3]);
mtkleina2ef6422015-01-15 13:44:22 -0800422 }
423 }
424 return "";
425}
426
mtklein748ca3b2015-01-15 10:56:12 -0800427// The finest-grained unit of work we can run: draw a single Src into a single Sink,
428// report any errors, and perhaps write out the output: a .png of the bitmap, or a raw stream.
429struct Task {
430 Task(const Tagged<Src>& src, const Tagged<Sink>& sink) : src(src), sink(sink) {}
431 const Tagged<Src>& src;
432 const Tagged<Sink>& sink;
433
434 static void Run(Task* task) {
mtkleina2ef6422015-01-15 13:44:22 -0800435 SkString name = task->src->name();
mtkleinb37cb412015-03-18 05:27:14 -0700436 SkString note;
djsollen54416de2015-04-03 07:24:48 -0700437 SkString whyBlacklisted = is_blacklisted(task->sink.tag, task->src.tag,
438 task->src.options, name.c_str());
mtkleinb37cb412015-03-18 05:27:14 -0700439 if (!whyBlacklisted.isEmpty()) {
440 note.appendf(" (--blacklist %s)", whyBlacklisted.c_str());
441 }
mtkleinb9eb4ac2015-02-02 18:26:03 -0800442 SkString log;
mtklein748ca3b2015-01-15 10:56:12 -0800443 WallTimer timer;
444 timer.start();
mtkleina2ef6422015-01-15 13:44:22 -0800445 if (!FLAGS_dryRun && whyBlacklisted.isEmpty()) {
mtklein748ca3b2015-01-15 10:56:12 -0800446 SkBitmap bitmap;
447 SkDynamicMemoryWStream stream;
djsollen54416de2015-04-03 07:24:48 -0700448 start(task->sink.tag, task->src.tag, task->src.options, name.c_str());
mtkleinb9eb4ac2015-02-02 18:26:03 -0800449 Error err = task->sink->draw(*task->src, &bitmap, &stream, &log);
mtklein748ca3b2015-01-15 10:56:12 -0800450 if (!err.isEmpty()) {
mtklein4089ef72015-03-05 08:40:28 -0800451 timer.end();
452 if (err.isFatal()) {
djsollen54416de2015-04-03 07:24:48 -0700453 fail(SkStringPrintf("%s %s %s %s: %s",
mtklein4089ef72015-03-05 08:40:28 -0800454 task->sink.tag,
455 task->src.tag,
djsollen54416de2015-04-03 07:24:48 -0700456 task->src.options,
mtklein4089ef72015-03-05 08:40:28 -0800457 name.c_str(),
458 err.c_str()));
mtkleinb37cb412015-03-18 05:27:14 -0700459 } else {
460 note.appendf(" (skipped: %s)", err.c_str());
mtklein4089ef72015-03-05 08:40:28 -0800461 }
djsollen54416de2015-04-03 07:24:48 -0700462 done(timer.fWall, task->sink.tag, task->src.tag, task->src.options,
463 name, note, log);
mtklein4089ef72015-03-05 08:40:28 -0800464 return;
mtklein748ca3b2015-01-15 10:56:12 -0800465 }
mtklein62bd1a62015-01-27 14:46:26 -0800466 SkAutoTDelete<SkStreamAsset> data(stream.detachAsStream());
467
468 SkString md5;
469 if (!FLAGS_writePath.isEmpty() || !FLAGS_readPath.isEmpty()) {
470 SkMD5 hash;
471 if (data->getLength()) {
472 hash.writeStream(data, data->getLength());
473 data->rewind();
474 } else {
475 hash.write(bitmap.getPixels(), bitmap.getSize());
476 }
477 SkMD5::Digest digest;
478 hash.finish(digest);
479 for (int i = 0; i < 16; i++) {
480 md5.appendf("%02x", digest.data[i]);
481 }
482 }
483
484 if (!FLAGS_readPath.isEmpty() &&
djsollen54416de2015-04-03 07:24:48 -0700485 !gGold.contains(Gold(task->sink.tag, task->src.tag,
486 task->src.options, name, md5))) {
487 fail(SkStringPrintf("%s not found for %s %s %s %s in %s",
mtklein62bd1a62015-01-27 14:46:26 -0800488 md5.c_str(),
489 task->sink.tag,
490 task->src.tag,
djsollen54416de2015-04-03 07:24:48 -0700491 task->src.options,
mtklein62bd1a62015-01-27 14:46:26 -0800492 name.c_str(),
493 FLAGS_readPath[0]));
494 }
495
mtkleinb0531a72015-04-07 13:38:48 -0700496 if (!FLAGS_writePath.isEmpty()) {
mtklein748ca3b2015-01-15 10:56:12 -0800497 const char* ext = task->sink->fileExtension();
mtklein62bd1a62015-01-27 14:46:26 -0800498 if (data->getLength()) {
499 WriteToDisk(*task, md5, ext, data, data->getLength(), NULL);
halcanary022afb82015-01-30 11:00:12 -0800500 SkASSERT(bitmap.drawsNothing());
501 } else if (!bitmap.drawsNothing()) {
mtklein62bd1a62015-01-27 14:46:26 -0800502 WriteToDisk(*task, md5, ext, NULL, 0, &bitmap);
mtklein748ca3b2015-01-15 10:56:12 -0800503 }
504 }
505 }
506 timer.end();
djsollen54416de2015-04-03 07:24:48 -0700507 done(timer.fWall, task->sink.tag, task->src.tag, task->src.options, name, note, log);
mtklein748ca3b2015-01-15 10:56:12 -0800508 }
509
510 static void WriteToDisk(const Task& task,
mtklein62bd1a62015-01-27 14:46:26 -0800511 SkString md5,
512 const char* ext,
mtklein748ca3b2015-01-15 10:56:12 -0800513 SkStream* data, size_t len,
mtklein62bd1a62015-01-27 14:46:26 -0800514 const SkBitmap* bitmap) {
mtklein748ca3b2015-01-15 10:56:12 -0800515 JsonWriter::BitmapResult result;
djsollen54416de2015-04-03 07:24:48 -0700516 result.name = task.src->name();
517 result.config = task.sink.tag;
518 result.sourceType = task.src.tag;
519 result.sourceOptions = task.src.options;
520 result.ext = ext;
521 result.md5 = md5;
mtklein748ca3b2015-01-15 10:56:12 -0800522 JsonWriter::AddBitmapResult(result);
523
mtkleinb0531a72015-04-07 13:38:48 -0700524 // If an MD5 is uninteresting, we want it noted in the JSON file,
525 // but don't want to dump it out as a .png (or whatever ext is).
526 if (gUninterestingHashes.contains(md5)) {
527 return;
528 }
529
mtklein748ca3b2015-01-15 10:56:12 -0800530 const char* dir = FLAGS_writePath[0];
531 if (0 == strcmp(dir, "@")) { // Needed for iOS.
532 dir = FLAGS_resourcePath[0];
533 }
534 sk_mkdir(dir);
535
536 SkString path;
537 if (FLAGS_nameByHash) {
538 path = SkOSPath::Join(dir, result.md5.c_str());
539 path.append(".");
540 path.append(ext);
541 if (sk_exists(path.c_str())) {
542 return; // Content-addressed. If it exists already, we're done.
543 }
544 } else {
545 path = SkOSPath::Join(dir, task.sink.tag);
546 sk_mkdir(path.c_str());
547 path = SkOSPath::Join(path.c_str(), task.src.tag);
548 sk_mkdir(path.c_str());
djsollen54416de2015-04-03 07:24:48 -0700549 if (strcmp(task.src.options, "") != 0) {
550 path = SkOSPath::Join(path.c_str(), task.src.options);
551 sk_mkdir(path.c_str());
552 }
mtklein748ca3b2015-01-15 10:56:12 -0800553 path = SkOSPath::Join(path.c_str(), task.src->name().c_str());
554 path.append(".");
555 path.append(ext);
556 }
557
558 SkFILEWStream file(path.c_str());
559 if (!file.isValid()) {
560 fail(SkStringPrintf("Can't open %s for writing.\n", path.c_str()));
561 return;
562 }
563
mtklein748ca3b2015-01-15 10:56:12 -0800564 if (bitmap) {
565 // We can't encode A8 bitmaps as PNGs. Convert them to 8888 first.
566 SkBitmap converted;
567 if (bitmap->info().colorType() == kAlpha_8_SkColorType) {
568 if (!bitmap->copyTo(&converted, kN32_SkColorType)) {
569 fail("Can't convert A8 to 8888.\n");
570 return;
571 }
572 bitmap = &converted;
573 }
574 if (!SkImageEncoder::EncodeStream(&file, *bitmap, SkImageEncoder::kPNG_Type, 100)) {
575 fail(SkStringPrintf("Can't encode PNG to %s.\n", path.c_str()));
576 return;
577 }
578 } else {
579 if (!file.writeStream(data, len)) {
580 fail(SkStringPrintf("Can't write to %s.\n", path.c_str()));
581 return;
582 }
583 }
584 }
585};
586
587// Run all tasks in the same enclave serially on the same thread.
588// They can't possibly run concurrently with each other.
589static void run_enclave(SkTArray<Task>* tasks) {
590 for (int i = 0; i < tasks->count(); i++) {
591 Task::Run(tasks->begin() + i);
592 }
593}
594
595/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
596
597// Unit tests don't fit so well into the Src/Sink model, so we give them special treatment.
598
mtklein55e88b22015-01-21 15:50:13 -0800599static SkTDArray<skiatest::Test> gThreadedTests, gGPUTests;
mtklein748ca3b2015-01-15 10:56:12 -0800600
601static void gather_tests() {
mtklein6c5fed22015-01-20 13:47:23 -0800602 if (!FLAGS_src.contains("tests")) {
mtklein748ca3b2015-01-15 10:56:12 -0800603 return;
604 }
halcanary87f3ba42015-01-20 09:30:20 -0800605 for (const skiatest::TestRegistry* r = skiatest::TestRegistry::Head(); r;
606 r = r->next()) {
607 // Despite its name, factory() is returning a reference to
608 // link-time static const POD data.
609 const skiatest::Test& test = r->factory();
610 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, test.name)) {
mtklein748ca3b2015-01-15 10:56:12 -0800611 continue;
612 }
halcanary87f3ba42015-01-20 09:30:20 -0800613 if (test.needsGpu && gpu_supported()) {
mtklein55e88b22015-01-21 15:50:13 -0800614 (FLAGS_gpu_threading ? gThreadedTests : gGPUTests).push(test);
halcanary87f3ba42015-01-20 09:30:20 -0800615 } else if (!test.needsGpu && FLAGS_cpu) {
mtklein55e88b22015-01-21 15:50:13 -0800616 gThreadedTests.push(test);
mtklein82d28432015-01-15 12:46:02 -0800617 }
mtklein748ca3b2015-01-15 10:56:12 -0800618 }
619}
620
halcanary87f3ba42015-01-20 09:30:20 -0800621static void run_test(skiatest::Test* test) {
622 struct : public skiatest::Reporter {
mtklein36352bf2015-03-25 18:17:31 -0700623 void reportFailed(const skiatest::Failure& failure) override {
halcanary87f3ba42015-01-20 09:30:20 -0800624 fail(failure.toString());
625 JsonWriter::AddTestFailure(failure);
626 }
mtklein36352bf2015-03-25 18:17:31 -0700627 bool allowExtendedTest() const override {
halcanary87f3ba42015-01-20 09:30:20 -0800628 return FLAGS_pathOpsExtended;
629 }
mtklein36352bf2015-03-25 18:17:31 -0700630 bool verbose() const override { return FLAGS_veryVerbose; }
halcanary87f3ba42015-01-20 09:30:20 -0800631 } reporter;
mtklein748ca3b2015-01-15 10:56:12 -0800632 WallTimer timer;
633 timer.start();
mtklein748ca3b2015-01-15 10:56:12 -0800634 if (!FLAGS_dryRun) {
djsollen54416de2015-04-03 07:24:48 -0700635 start("unit", "test", "", test->name);
mtklein55e88b22015-01-21 15:50:13 -0800636 GrContextFactory factory;
637 test->proc(&reporter, &factory);
mtklein748ca3b2015-01-15 10:56:12 -0800638 }
639 timer.end();
djsollen54416de2015-04-03 07:24:48 -0700640 done(timer.fWall, "unit", "test", "", test->name, "", "");
mtklein748ca3b2015-01-15 10:56:12 -0800641}
642
643/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
644
mtklein55e88b22015-01-21 15:50:13 -0800645// If we're isolating all GPU-bound work to one thread (the default), this function runs all that.
646static void run_enclave_and_gpu_tests(SkTArray<Task>* tasks) {
647 run_enclave(tasks);
648 for (int i = 0; i < gGPUTests.count(); i++) {
649 run_test(&gGPUTests[i]);
650 }
651}
652
mtkleinde6fc2b2015-03-12 06:28:54 -0700653// Some runs (mostly, Valgrind) are so slow that the bot framework thinks we've hung.
654// This prints something every once in a while so that it knows we're still working.
mtklein2e1c47e2015-03-12 07:16:56 -0700655static void start_keepalive() {
656 struct Loop {
657 static void forever(void*) {
658 for (;;) {
659 static const int kSec = 300;
660 #if defined(SK_BUILD_FOR_WIN)
661 Sleep(kSec * 1000);
662 #else
663 sleep(kSec);
664 #endif
mtkleinb37cb412015-03-18 05:27:14 -0700665 SkString running;
666 {
667 SkAutoMutexAcquire lock(gRunningMutex);
668 for (int i = 0; i < gRunning.count(); i++) {
669 running.appendf("\n\t%s", gRunning[i].c_str());
670 }
671 }
672 SkDebugf("\nCurrently running:%s\n", running.c_str());
mtklein2e1c47e2015-03-12 07:16:56 -0700673 }
674 }
675 };
676 static SkThread* intentionallyLeaked = new SkThread(Loop::forever);
677 intentionallyLeaked->start();
mtkleinde6fc2b2015-03-12 06:28:54 -0700678}
679
jcgregorio3b27ade2014-11-13 08:06:40 -0800680int dm_main();
caryclark17f0b6d2014-07-22 10:15:34 -0700681int dm_main() {
jcgregorio3b27ade2014-11-13 08:06:40 -0800682 SetupCrashHandler();
commit-bot@chromium.org39e8d932014-05-29 20:14:48 +0000683 SkAutoGraphics ag;
mtklein406654b2014-09-03 15:34:37 -0700684 SkTaskGroup::Enabler enabled(FLAGS_threads);
mtkleine67164d2015-02-02 13:24:37 -0800685 if (FLAGS_leaks) {
686 SkInstCountPrintLeaksOnExit();
687 }
commit-bot@chromium.orga65e2fd2014-05-30 17:23:31 +0000688
mtklein2e1c47e2015-03-12 07:16:56 -0700689 start_keepalive();
mtkleinde6fc2b2015-03-12 06:28:54 -0700690
mtklein62bd1a62015-01-27 14:46:26 -0800691 gather_gold();
borenet09ed4802015-04-03 14:15:33 -0700692 gather_uninteresting_hashes();
mtklein62bd1a62015-01-27 14:46:26 -0800693
mtklein748ca3b2015-01-15 10:56:12 -0800694 gather_srcs();
695 gather_sinks();
696 gather_tests();
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +0000697
mtklein55e88b22015-01-21 15:50:13 -0800698 gPending = gSrcs.count() * gSinks.count() + gThreadedTests.count() + gGPUTests.count();
mtklein748ca3b2015-01-15 10:56:12 -0800699 SkDebugf("%d srcs * %d sinks + %d tests == %d tasks\n",
mtklein55e88b22015-01-21 15:50:13 -0800700 gSrcs.count(), gSinks.count(), gThreadedTests.count() + gGPUTests.count(), gPending);
mtklein748ca3b2015-01-15 10:56:12 -0800701
702 // We try to exploit as much parallelism as is safe. Most Src/Sink pairs run on any thread,
703 // but Sinks that identify as part of a particular enclave run serially on a single thread.
mtklein82d28432015-01-15 12:46:02 -0800704 // CPU tests run on any thread. GPU tests depend on --gpu_threading.
mtklein748ca3b2015-01-15 10:56:12 -0800705 SkTArray<Task> enclaves[kNumEnclaves];
706 for (int j = 0; j < gSinks.count(); j++) {
707 SkTArray<Task>& tasks = enclaves[gSinks[j]->enclave()];
708 for (int i = 0; i < gSrcs.count(); i++) {
709 tasks.push_back(Task(gSrcs[i], gSinks[j]));
710 }
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +0000711 }
712
mtklein748ca3b2015-01-15 10:56:12 -0800713 SkTaskGroup tg;
mtklein55e88b22015-01-21 15:50:13 -0800714 tg.batch(run_test, gThreadedTests.begin(), gThreadedTests.count());
715 for (int i = 0; i < kNumEnclaves; i++) {
716 switch(i) {
717 case kAnyThread_Enclave:
718 tg.batch(Task::Run, enclaves[i].begin(), enclaves[i].count());
719 break;
720 case kGPU_Enclave:
721 tg.add(run_enclave_and_gpu_tests, &enclaves[i]);
722 break;
723 default:
724 tg.add(run_enclave, &enclaves[i]);
725 break;
mtklein82d28432015-01-15 12:46:02 -0800726 }
mtklein55e88b22015-01-21 15:50:13 -0800727 }
mtklein748ca3b2015-01-15 10:56:12 -0800728 tg.wait();
mtklein748ca3b2015-01-15 10:56:12 -0800729 // At this point we're back in single-threaded land.
mtklein@google.comd36522d2013-10-16 13:02:15 +0000730
mtklein2f64eec2015-01-15 14:20:41 -0800731 SkDebugf("\n");
mtklein748ca3b2015-01-15 10:56:12 -0800732 if (gFailures.count() > 0) {
733 SkDebugf("Failures:\n");
734 for (int i = 0; i < gFailures.count(); i++) {
mtklein9dc09102015-01-15 15:47:33 -0800735 SkDebugf("\t%s\n", gFailures[i].c_str());
mtklein748ca3b2015-01-15 10:56:12 -0800736 }
737 SkDebugf("%d failures\n", gFailures.count());
738 return 1;
mtklein114c3cd2015-01-15 10:15:02 -0800739 }
mtklein748ca3b2015-01-15 10:56:12 -0800740 if (gPending > 0) {
741 SkDebugf("Hrm, we didn't seem to run everything we intended to! Please file a bug.\n");
742 return 1;
mtklein114c3cd2015-01-15 10:15:02 -0800743 }
mtklein748ca3b2015-01-15 10:56:12 -0800744 return 0;
mtklein@google.comd36522d2013-10-16 13:02:15 +0000745}
jcgregorio3b27ade2014-11-13 08:06:40 -0800746
borenet48087572015-04-02 12:16:36 -0700747#if !defined(SK_BUILD_FOR_IOS)
jcgregorio3b27ade2014-11-13 08:06:40 -0800748int main(int argc, char** argv) {
749 SkCommandLineFlags::Parse(argc, argv);
750 return dm_main();
751}
752#endif