blob: 5b99a4c2149a008287b5912ec5761865835c7e9b [file] [log] [blame]
jcgregorio3b27ade2014-11-13 08:06:40 -08001#include "CrashHandler.h"
mtklein748ca3b2015-01-15 10:56:12 -08002#include "DMJsonWriter.h"
3#include "DMSrcSink.h"
4#include "OverwriteLine.h"
5#include "ProcStats.h"
6#include "SkBBHFactory.h"
mtklein62bd1a62015-01-27 14:46:26 -08007#include "SkChecksum.h"
caryclark17f0b6d2014-07-22 10:15:34 -07008#include "SkCommonFlags.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +00009#include "SkForceLinking.h"
10#include "SkGraphics.h"
mtklein748ca3b2015-01-15 10:56:12 -080011#include "SkMD5.h"
mtklein1d0f1642014-09-08 08:05:18 -070012#include "SkOSFile.h"
mtklein62bd1a62015-01-27 14:46:26 -080013#include "SkTDynamicHash.h"
mtklein406654b2014-09-03 15:34:37 -070014#include "SkTaskGroup.h"
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +000015#include "Test.h"
mtklein748ca3b2015-01-15 10:56:12 -080016#include "Timer.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000017
mtklein748ca3b2015-01-15 10:56:12 -080018DEFINE_string(images, "resources", "Images to decode.");
mtklein6c5fed22015-01-20 13:47:23 -080019DEFINE_string(src, "tests gm skp image", "Source types to test.");
mtklein748ca3b2015-01-15 10:56:12 -080020DEFINE_bool(nameByHash, false,
21 "If true, write to FLAGS_writePath[0]/<hash>.png instead of "
22 "to FLAGS_writePath[0]/<config>/<sourceType>/<name>.png");
23DEFINE_bool2(pathOpsExtended, x, false, "Run extended pathOps tests.");
24DEFINE_string(matrix, "1 0 0 0 1 0 0 0 1",
25 "Matrix to apply when using 'matrix' in config.");
mtklein82d28432015-01-15 12:46:02 -080026DEFINE_bool(gpu_threading, false, "Allow GPU work to run on multiple threads?");
mtklein@google.comd36522d2013-10-16 13:02:15 +000027
mtkleina2ef6422015-01-15 13:44:22 -080028DEFINE_string(blacklist, "",
29 "Space-separated config/src/name triples to blacklist. '_' matches anything. E.g. \n"
30 "'--blacklist gpu skp _' will blacklist all SKPs drawn into the gpu config.\n"
31 "'--blacklist gpu skp _ 8888 gm aarects' will also blacklist the aarects GM on 8888.");
32
mtklein62bd1a62015-01-27 14:46:26 -080033DEFINE_string2(readPath, r, "", "If set check for equality with golden results in this directory.");
34
mtklein@google.comd36522d2013-10-16 13:02:15 +000035__SK_FORCE_IMAGE_DECODER_LINKING;
mtklein748ca3b2015-01-15 10:56:12 -080036using namespace DM;
mtklein@google.comd36522d2013-10-16 13:02:15 +000037
mtklein748ca3b2015-01-15 10:56:12 -080038/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
39
40SK_DECLARE_STATIC_MUTEX(gFailuresMutex);
41static SkTArray<SkString> gFailures;
42
43static void fail(ImplicitString err) {
44 SkAutoMutexAcquire lock(gFailuresMutex);
45 SkDebugf("\n\nFAILURE: %s\n\n", err.c_str());
46 gFailures.push_back(err);
halcanary9e398f72015-01-10 11:18:04 -080047}
48
mtklein748ca3b2015-01-15 10:56:12 -080049static int32_t gPending = 0; // Atomic.
50
51static void done(double ms, ImplicitString config, ImplicitString src, ImplicitString name) {
mtkleina17241b2015-01-23 05:48:00 -080052 int32_t pending = sk_atomic_dec(&gPending)-1;
mtklein748ca3b2015-01-15 10:56:12 -080053 SkDebugf("%s(%4dMB %5d) %s\t%s %s %s ", FLAGS_verbose ? "\n" : kSkOverwriteLine
54 , sk_tools::getMaxResidentSetSizeMB()
mtkleina17241b2015-01-23 05:48:00 -080055 , pending
mtklein748ca3b2015-01-15 10:56:12 -080056 , HumanizeMs(ms).c_str()
57 , config.c_str()
58 , src.c_str()
59 , name.c_str());
mtkleina17241b2015-01-23 05:48:00 -080060 // We write our dm.json file every once in a while in case we crash.
61 // Notice this also handles the final dm.json when pending == 0.
62 if (pending % 500 == 0) {
63 JsonWriter::DumpJson();
64 }
mtklein@google.comd36522d2013-10-16 13:02:15 +000065}
66
mtklein748ca3b2015-01-15 10:56:12 -080067/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
mtklein114c3cd2015-01-15 10:15:02 -080068
mtklein62bd1a62015-01-27 14:46:26 -080069struct Gold : public SkString {
70 Gold(ImplicitString sink, ImplicitString src, ImplicitString name, ImplicitString md5)
71 : SkString("") {
72 this->append(sink);
73 this->append(src);
74 this->append(name);
75 this->append(md5);
76 while (this->size() % 4) {
77 this->append("!"); // Pad out if needed so we can pass this to Murmur3.
78 }
79 }
80 static const Gold& GetKey(const Gold& g) { return g; }
81 static uint32_t Hash(const Gold& g) {
82 return SkChecksum::Murmur3((const uint32_t*)g.c_str(), g.size());
83 }
84};
85static SkTDynamicHash<Gold, Gold> gGold;
86
87static void add_gold(JsonWriter::BitmapResult r) {
88 gGold.add(new Gold(r.config, r.sourceType, r.name, r.md5)); // We'll let these leak. Lazybones.
89}
90
91static void gather_gold() {
92 if (!FLAGS_readPath.isEmpty()) {
93 SkString path(FLAGS_readPath[0]);
94 path.append("/dm.json");
95 if (!JsonWriter::ReadJson(path.c_str(), add_gold)) {
96 fail(SkStringPrintf("Couldn't read %s for golden results.", path.c_str()));
97 }
98 }
99}
100
101/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
102
mtklein748ca3b2015-01-15 10:56:12 -0800103template <typename T>
104struct Tagged : public SkAutoTDelete<T> { const char* tag; };
105
106static const bool kMemcpyOK = true;
107
108static SkTArray<Tagged<Src>, kMemcpyOK> gSrcs;
109static SkTArray<Tagged<Sink>, kMemcpyOK> gSinks;
110
111static void push_src(const char* tag, Src* s) {
112 SkAutoTDelete<Src> src(s);
113 if (FLAGS_src.contains(tag) &&
114 !SkCommandLineFlags::ShouldSkip(FLAGS_match, src->name().c_str())) {
115 Tagged<Src>& s = gSrcs.push_back();
116 s.reset(src.detach());
117 s.tag = tag;
mtklein114c3cd2015-01-15 10:15:02 -0800118 }
mtklein748ca3b2015-01-15 10:56:12 -0800119}
mtklein114c3cd2015-01-15 10:15:02 -0800120
mtklein748ca3b2015-01-15 10:56:12 -0800121static void gather_srcs() {
122 for (const skiagm::GMRegistry* r = skiagm::GMRegistry::Head(); r; r = r->next()) {
123 push_src("gm", new GMSrc(r->factory()));
124 }
125 if (!FLAGS_skps.isEmpty()) {
126 SkOSFile::Iter it(FLAGS_skps[0], "skp");
127 for (SkString file; it.next(&file); ) {
128 push_src("skp", new SKPSrc(SkOSPath::Join(FLAGS_skps[0], file.c_str())));
mtklein114c3cd2015-01-15 10:15:02 -0800129 }
130 }
mtklein748ca3b2015-01-15 10:56:12 -0800131 if (!FLAGS_images.isEmpty()) {
132 const char* exts[] = {
133 "bmp", "gif", "jpg", "jpeg", "png", "webp", "ktx", "astc", "wbmp", "ico",
134 "BMP", "GIF", "JPG", "JPEG", "PNG", "WEBP", "KTX", "ASTC", "WBMP", "ICO",
135 };
136 for (size_t i = 0; i < SK_ARRAY_COUNT(exts); i++) {
137 SkOSFile::Iter it(FLAGS_images[0], exts[i]);
138 for (SkString file; it.next(&file); ) {
139 SkString path = SkOSPath::Join(FLAGS_images[0], file.c_str());
mtklein9264a952015-01-20 10:11:53 -0800140 push_src("image", new ImageSrc(path)); // Decode entire image.
141 push_src("image", new ImageSrc(path, 5)); // Decode 5 random subsets.
mtklein114c3cd2015-01-15 10:15:02 -0800142 }
mtklein709d2c32015-01-15 08:30:25 -0800143 }
mtklein709d2c32015-01-15 08:30:25 -0800144 }
145}
146
mtklein748ca3b2015-01-15 10:56:12 -0800147static GrGLStandard get_gpu_api() {
148 if (FLAGS_gpuAPI.contains("gl")) { return kGL_GrGLStandard; }
149 if (FLAGS_gpuAPI.contains("gles")) { return kGLES_GrGLStandard; }
150 return kNone_GrGLStandard;
mtklein709d2c32015-01-15 08:30:25 -0800151}
152
mtklein748ca3b2015-01-15 10:56:12 -0800153static void push_sink(const char* tag, Sink* s) {
154 SkAutoTDelete<Sink> sink(s);
155 if (!FLAGS_config.contains(tag)) {
156 return;
mtklein114c3cd2015-01-15 10:15:02 -0800157 }
mtklein748ca3b2015-01-15 10:56:12 -0800158 // Try a noop Src as a canary. If it fails, skip this sink.
159 struct : public Src {
160 Error draw(SkCanvas*) const SK_OVERRIDE { return ""; }
161 SkISize size() const SK_OVERRIDE { return SkISize::Make(16, 16); }
162 Name name() const SK_OVERRIDE { return "noop"; }
163 } noop;
mtklein114c3cd2015-01-15 10:15:02 -0800164
mtklein748ca3b2015-01-15 10:56:12 -0800165 SkBitmap bitmap;
166 SkDynamicMemoryWStream stream;
167 Error err = sink->draw(noop, &bitmap, &stream);
168 if (!err.isEmpty()) {
169 SkDebugf("Skipping %s: %s\n", tag, err.c_str());
mtklein114c3cd2015-01-15 10:15:02 -0800170 return;
171 }
172
mtklein748ca3b2015-01-15 10:56:12 -0800173 Tagged<Sink>& ts = gSinks.push_back();
174 ts.reset(sink.detach());
175 ts.tag = tag;
176}
177
178static bool gpu_supported() {
179#if SK_SUPPORT_GPU
180 return FLAGS_gpu;
181#else
182 return false;
183#endif
184}
185
186static Sink* create_sink(const char* tag) {
187#define SINK(t, sink, ...) if (0 == strcmp(t, tag)) { return new sink(__VA_ARGS__); }
188 if (gpu_supported()) {
mtklein82d28432015-01-15 12:46:02 -0800189 typedef GrContextFactory Gr;
mtklein748ca3b2015-01-15 10:56:12 -0800190 const GrGLStandard api = get_gpu_api();
mtklein82d28432015-01-15 12:46:02 -0800191 SINK("gpunull", GPUSink, Gr::kNull_GLContextType, api, 0, false, FLAGS_gpu_threading);
192 SINK("gpudebug", GPUSink, Gr::kDebug_GLContextType, api, 0, false, FLAGS_gpu_threading);
193 SINK("gpu", GPUSink, Gr::kNative_GLContextType, api, 0, false, FLAGS_gpu_threading);
194 SINK("gpudft", GPUSink, Gr::kNative_GLContextType, api, 0, true, FLAGS_gpu_threading);
195 SINK("msaa4", GPUSink, Gr::kNative_GLContextType, api, 4, false, FLAGS_gpu_threading);
196 SINK("msaa16", GPUSink, Gr::kNative_GLContextType, api, 16, false, FLAGS_gpu_threading);
197 SINK("nvprmsaa4", GPUSink, Gr::kNVPR_GLContextType, api, 4, false, FLAGS_gpu_threading);
198 SINK("nvprmsaa16", GPUSink, Gr::kNVPR_GLContextType, api, 16, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800199 #if SK_ANGLE
mtklein82d28432015-01-15 12:46:02 -0800200 SINK("angle", GPUSink, Gr::kANGLE_GLContextType, api, 0, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800201 #endif
202 #if SK_MESA
mtklein82d28432015-01-15 12:46:02 -0800203 SINK("mesa", GPUSink, Gr::kMESA_GLContextType, api, 0, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800204 #endif
mtklein114c3cd2015-01-15 10:15:02 -0800205 }
mtklein748ca3b2015-01-15 10:56:12 -0800206
207 if (FLAGS_cpu) {
208 SINK("565", RasterSink, kRGB_565_SkColorType);
209 SINK("8888", RasterSink, kN32_SkColorType);
mtklein19f30602015-01-20 13:34:39 -0800210 SINK("pdf", PDFSink);
mtklein748ca3b2015-01-15 10:56:12 -0800211 }
212#undef SINK
213 return NULL;
mtklein114c3cd2015-01-15 10:15:02 -0800214}
215
mtklein748ca3b2015-01-15 10:56:12 -0800216static Sink* create_via(const char* tag, Sink* wrapped) {
217#define VIA(t, via, ...) if (0 == strcmp(t, tag)) { return new via(__VA_ARGS__); }
mtklein7edca212015-01-21 13:18:51 -0800218 VIA("pipe", ViaPipe, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800219 VIA("serialize", ViaSerialization, wrapped);
mtklein7edca212015-01-21 13:18:51 -0800220 VIA("tiles", ViaTiles, 256, 256, NULL, wrapped);
221 VIA("tiles_rt", ViaTiles, 256, 256, new SkRTreeFactory, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800222
223 if (FLAGS_matrix.count() == 9) {
224 SkMatrix m;
225 for (int i = 0; i < 9; i++) {
226 m[i] = (SkScalar)atof(FLAGS_matrix[i]);
227 }
228 VIA("matrix", ViaMatrix, m, wrapped);
229 }
230#undef VIA
231 return NULL;
mtklein114c3cd2015-01-15 10:15:02 -0800232}
233
mtklein748ca3b2015-01-15 10:56:12 -0800234static void gather_sinks() {
235 for (int i = 0; i < FLAGS_config.count(); i++) {
236 const char* config = FLAGS_config[i];
237 SkTArray<SkString> parts;
238 SkStrSplit(config, "-", &parts);
239
240 Sink* sink = NULL;
241 for (int i = parts.count(); i-- > 0;) {
242 const char* part = parts[i].c_str();
243 Sink* next = (sink == NULL) ? create_sink(part) : create_via(part, sink);
244 if (next == NULL) {
245 SkDebugf("Skipping %s: Don't understand '%s'.\n", config, part);
246 delete sink;
247 sink = NULL;
248 break;
249 }
250 sink = next;
251 }
252 if (sink) {
253 push_sink(config, sink);
mtklein114c3cd2015-01-15 10:15:02 -0800254 }
255 }
256}
mtklein709d2c32015-01-15 08:30:25 -0800257
mtkleina2ef6422015-01-15 13:44:22 -0800258static bool match(const char* needle, const char* haystack) {
259 return 0 == strcmp("_", needle) || NULL != strstr(haystack, needle);
260}
261
262static ImplicitString is_blacklisted(const char* sink, const char* src, const char* name) {
263 for (int i = 0; i < FLAGS_blacklist.count() - 2; i += 3) {
264 if (match(FLAGS_blacklist[i+0], sink) &&
265 match(FLAGS_blacklist[i+1], src) &&
266 match(FLAGS_blacklist[i+2], name)) {
267 return SkStringPrintf("%s %s %s",
268 FLAGS_blacklist[i+0], FLAGS_blacklist[i+1], FLAGS_blacklist[i+2]);
269 }
270 }
271 return "";
272}
273
mtklein748ca3b2015-01-15 10:56:12 -0800274// The finest-grained unit of work we can run: draw a single Src into a single Sink,
275// report any errors, and perhaps write out the output: a .png of the bitmap, or a raw stream.
276struct Task {
277 Task(const Tagged<Src>& src, const Tagged<Sink>& sink) : src(src), sink(sink) {}
278 const Tagged<Src>& src;
279 const Tagged<Sink>& sink;
280
281 static void Run(Task* task) {
mtkleina2ef6422015-01-15 13:44:22 -0800282 SkString name = task->src->name();
283 SkString whyBlacklisted = is_blacklisted(task->sink.tag, task->src.tag, name.c_str());
mtklein748ca3b2015-01-15 10:56:12 -0800284 WallTimer timer;
285 timer.start();
mtkleina2ef6422015-01-15 13:44:22 -0800286 if (!FLAGS_dryRun && whyBlacklisted.isEmpty()) {
mtklein748ca3b2015-01-15 10:56:12 -0800287 SkBitmap bitmap;
288 SkDynamicMemoryWStream stream;
289 Error err = task->sink->draw(*task->src, &bitmap, &stream);
290 if (!err.isEmpty()) {
291 fail(SkStringPrintf("%s %s %s: %s",
292 task->sink.tag,
293 task->src.tag,
mtkleina2ef6422015-01-15 13:44:22 -0800294 name.c_str(),
mtklein748ca3b2015-01-15 10:56:12 -0800295 err.c_str()));
296 }
mtklein62bd1a62015-01-27 14:46:26 -0800297 SkAutoTDelete<SkStreamAsset> data(stream.detachAsStream());
298
299 SkString md5;
300 if (!FLAGS_writePath.isEmpty() || !FLAGS_readPath.isEmpty()) {
301 SkMD5 hash;
302 if (data->getLength()) {
303 hash.writeStream(data, data->getLength());
304 data->rewind();
305 } else {
306 hash.write(bitmap.getPixels(), bitmap.getSize());
307 }
308 SkMD5::Digest digest;
309 hash.finish(digest);
310 for (int i = 0; i < 16; i++) {
311 md5.appendf("%02x", digest.data[i]);
312 }
313 }
314
315 if (!FLAGS_readPath.isEmpty() &&
316 !gGold.find(Gold(task->sink.tag, task->src.tag, name, md5))) {
317 fail(SkStringPrintf("%s not found for %s %s %s in %s",
318 md5.c_str(),
319 task->sink.tag,
320 task->src.tag,
321 name.c_str(),
322 FLAGS_readPath[0]));
323 }
324
mtklein748ca3b2015-01-15 10:56:12 -0800325 if (!FLAGS_writePath.isEmpty()) {
326 const char* ext = task->sink->fileExtension();
mtklein62bd1a62015-01-27 14:46:26 -0800327 if (data->getLength()) {
328 WriteToDisk(*task, md5, ext, data, data->getLength(), NULL);
mtklein748ca3b2015-01-15 10:56:12 -0800329 } else {
mtklein62bd1a62015-01-27 14:46:26 -0800330 WriteToDisk(*task, md5, ext, NULL, 0, &bitmap);
mtklein748ca3b2015-01-15 10:56:12 -0800331 }
332 }
333 }
334 timer.end();
mtkleina2ef6422015-01-15 13:44:22 -0800335 if (!whyBlacklisted.isEmpty()) {
336 name.appendf(" (--blacklist, %s)", whyBlacklisted.c_str());
337 }
338 done(timer.fWall, task->sink.tag, task->src.tag, name);
mtklein748ca3b2015-01-15 10:56:12 -0800339 }
340
341 static void WriteToDisk(const Task& task,
mtklein62bd1a62015-01-27 14:46:26 -0800342 SkString md5,
343 const char* ext,
mtklein748ca3b2015-01-15 10:56:12 -0800344 SkStream* data, size_t len,
mtklein62bd1a62015-01-27 14:46:26 -0800345 const SkBitmap* bitmap) {
mtklein748ca3b2015-01-15 10:56:12 -0800346 JsonWriter::BitmapResult result;
347 result.name = task.src->name();
348 result.config = task.sink.tag;
349 result.sourceType = task.src.tag;
350 result.ext = ext;
mtklein62bd1a62015-01-27 14:46:26 -0800351 result.md5 = md5;
mtklein748ca3b2015-01-15 10:56:12 -0800352 JsonWriter::AddBitmapResult(result);
353
354 const char* dir = FLAGS_writePath[0];
355 if (0 == strcmp(dir, "@")) { // Needed for iOS.
356 dir = FLAGS_resourcePath[0];
357 }
358 sk_mkdir(dir);
359
360 SkString path;
361 if (FLAGS_nameByHash) {
362 path = SkOSPath::Join(dir, result.md5.c_str());
363 path.append(".");
364 path.append(ext);
365 if (sk_exists(path.c_str())) {
366 return; // Content-addressed. If it exists already, we're done.
367 }
368 } else {
369 path = SkOSPath::Join(dir, task.sink.tag);
370 sk_mkdir(path.c_str());
371 path = SkOSPath::Join(path.c_str(), task.src.tag);
372 sk_mkdir(path.c_str());
373 path = SkOSPath::Join(path.c_str(), task.src->name().c_str());
374 path.append(".");
375 path.append(ext);
376 }
377
378 SkFILEWStream file(path.c_str());
379 if (!file.isValid()) {
380 fail(SkStringPrintf("Can't open %s for writing.\n", path.c_str()));
381 return;
382 }
383
mtklein748ca3b2015-01-15 10:56:12 -0800384 if (bitmap) {
385 // We can't encode A8 bitmaps as PNGs. Convert them to 8888 first.
386 SkBitmap converted;
387 if (bitmap->info().colorType() == kAlpha_8_SkColorType) {
388 if (!bitmap->copyTo(&converted, kN32_SkColorType)) {
389 fail("Can't convert A8 to 8888.\n");
390 return;
391 }
392 bitmap = &converted;
393 }
394 if (!SkImageEncoder::EncodeStream(&file, *bitmap, SkImageEncoder::kPNG_Type, 100)) {
395 fail(SkStringPrintf("Can't encode PNG to %s.\n", path.c_str()));
396 return;
397 }
398 } else {
399 if (!file.writeStream(data, len)) {
400 fail(SkStringPrintf("Can't write to %s.\n", path.c_str()));
401 return;
402 }
403 }
404 }
405};
406
407// Run all tasks in the same enclave serially on the same thread.
408// They can't possibly run concurrently with each other.
409static void run_enclave(SkTArray<Task>* tasks) {
410 for (int i = 0; i < tasks->count(); i++) {
411 Task::Run(tasks->begin() + i);
412 }
413}
414
415/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
416
417// Unit tests don't fit so well into the Src/Sink model, so we give them special treatment.
418
mtklein55e88b22015-01-21 15:50:13 -0800419static SkTDArray<skiatest::Test> gThreadedTests, gGPUTests;
mtklein748ca3b2015-01-15 10:56:12 -0800420
421static void gather_tests() {
mtklein6c5fed22015-01-20 13:47:23 -0800422 if (!FLAGS_src.contains("tests")) {
mtklein748ca3b2015-01-15 10:56:12 -0800423 return;
424 }
halcanary87f3ba42015-01-20 09:30:20 -0800425 for (const skiatest::TestRegistry* r = skiatest::TestRegistry::Head(); r;
426 r = r->next()) {
427 // Despite its name, factory() is returning a reference to
428 // link-time static const POD data.
429 const skiatest::Test& test = r->factory();
430 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, test.name)) {
mtklein748ca3b2015-01-15 10:56:12 -0800431 continue;
432 }
halcanary87f3ba42015-01-20 09:30:20 -0800433 if (test.needsGpu && gpu_supported()) {
mtklein55e88b22015-01-21 15:50:13 -0800434 (FLAGS_gpu_threading ? gThreadedTests : gGPUTests).push(test);
halcanary87f3ba42015-01-20 09:30:20 -0800435 } else if (!test.needsGpu && FLAGS_cpu) {
mtklein55e88b22015-01-21 15:50:13 -0800436 gThreadedTests.push(test);
mtklein82d28432015-01-15 12:46:02 -0800437 }
mtklein748ca3b2015-01-15 10:56:12 -0800438 }
439}
440
halcanary87f3ba42015-01-20 09:30:20 -0800441static void run_test(skiatest::Test* test) {
442 struct : public skiatest::Reporter {
443 void reportFailed(const skiatest::Failure& failure) SK_OVERRIDE {
444 fail(failure.toString());
445 JsonWriter::AddTestFailure(failure);
446 }
447 bool allowExtendedTest() const SK_OVERRIDE {
448 return FLAGS_pathOpsExtended;
449 }
450 bool verbose() const SK_OVERRIDE { return FLAGS_veryVerbose; }
451 } reporter;
mtklein748ca3b2015-01-15 10:56:12 -0800452 WallTimer timer;
453 timer.start();
mtklein748ca3b2015-01-15 10:56:12 -0800454 if (!FLAGS_dryRun) {
mtklein55e88b22015-01-21 15:50:13 -0800455 GrContextFactory factory;
456 test->proc(&reporter, &factory);
mtklein748ca3b2015-01-15 10:56:12 -0800457 }
458 timer.end();
halcanary87f3ba42015-01-20 09:30:20 -0800459 done(timer.fWall, "unit", "test", test->name);
mtklein748ca3b2015-01-15 10:56:12 -0800460}
461
462/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
463
mtklein55e88b22015-01-21 15:50:13 -0800464// If we're isolating all GPU-bound work to one thread (the default), this function runs all that.
465static void run_enclave_and_gpu_tests(SkTArray<Task>* tasks) {
466 run_enclave(tasks);
467 for (int i = 0; i < gGPUTests.count(); i++) {
468 run_test(&gGPUTests[i]);
469 }
470}
471
jcgregorio3b27ade2014-11-13 08:06:40 -0800472int dm_main();
caryclark17f0b6d2014-07-22 10:15:34 -0700473int dm_main() {
jcgregorio3b27ade2014-11-13 08:06:40 -0800474 SetupCrashHandler();
commit-bot@chromium.org39e8d932014-05-29 20:14:48 +0000475 SkAutoGraphics ag;
mtklein406654b2014-09-03 15:34:37 -0700476 SkTaskGroup::Enabler enabled(FLAGS_threads);
commit-bot@chromium.orga65e2fd2014-05-30 17:23:31 +0000477
mtklein62bd1a62015-01-27 14:46:26 -0800478 gather_gold();
479
mtklein748ca3b2015-01-15 10:56:12 -0800480 gather_srcs();
481 gather_sinks();
482 gather_tests();
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +0000483
mtklein55e88b22015-01-21 15:50:13 -0800484 gPending = gSrcs.count() * gSinks.count() + gThreadedTests.count() + gGPUTests.count();
mtklein748ca3b2015-01-15 10:56:12 -0800485 SkDebugf("%d srcs * %d sinks + %d tests == %d tasks\n",
mtklein55e88b22015-01-21 15:50:13 -0800486 gSrcs.count(), gSinks.count(), gThreadedTests.count() + gGPUTests.count(), gPending);
mtklein748ca3b2015-01-15 10:56:12 -0800487
488 // We try to exploit as much parallelism as is safe. Most Src/Sink pairs run on any thread,
489 // but Sinks that identify as part of a particular enclave run serially on a single thread.
mtklein82d28432015-01-15 12:46:02 -0800490 // CPU tests run on any thread. GPU tests depend on --gpu_threading.
mtklein748ca3b2015-01-15 10:56:12 -0800491 SkTArray<Task> enclaves[kNumEnclaves];
492 for (int j = 0; j < gSinks.count(); j++) {
493 SkTArray<Task>& tasks = enclaves[gSinks[j]->enclave()];
494 for (int i = 0; i < gSrcs.count(); i++) {
495 tasks.push_back(Task(gSrcs[i], gSinks[j]));
496 }
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +0000497 }
498
mtklein748ca3b2015-01-15 10:56:12 -0800499 SkTaskGroup tg;
mtklein55e88b22015-01-21 15:50:13 -0800500 tg.batch(run_test, gThreadedTests.begin(), gThreadedTests.count());
501 for (int i = 0; i < kNumEnclaves; i++) {
502 switch(i) {
503 case kAnyThread_Enclave:
504 tg.batch(Task::Run, enclaves[i].begin(), enclaves[i].count());
505 break;
506 case kGPU_Enclave:
507 tg.add(run_enclave_and_gpu_tests, &enclaves[i]);
508 break;
509 default:
510 tg.add(run_enclave, &enclaves[i]);
511 break;
mtklein82d28432015-01-15 12:46:02 -0800512 }
mtklein55e88b22015-01-21 15:50:13 -0800513 }
mtklein748ca3b2015-01-15 10:56:12 -0800514 tg.wait();
mtklein748ca3b2015-01-15 10:56:12 -0800515 // At this point we're back in single-threaded land.
mtklein@google.comd36522d2013-10-16 13:02:15 +0000516
mtklein2f64eec2015-01-15 14:20:41 -0800517 SkDebugf("\n");
mtklein748ca3b2015-01-15 10:56:12 -0800518 if (gFailures.count() > 0) {
519 SkDebugf("Failures:\n");
520 for (int i = 0; i < gFailures.count(); i++) {
mtklein9dc09102015-01-15 15:47:33 -0800521 SkDebugf("\t%s\n", gFailures[i].c_str());
mtklein748ca3b2015-01-15 10:56:12 -0800522 }
523 SkDebugf("%d failures\n", gFailures.count());
524 return 1;
mtklein114c3cd2015-01-15 10:15:02 -0800525 }
mtklein748ca3b2015-01-15 10:56:12 -0800526 if (gPending > 0) {
527 SkDebugf("Hrm, we didn't seem to run everything we intended to! Please file a bug.\n");
528 return 1;
mtklein114c3cd2015-01-15 10:15:02 -0800529 }
mtklein748ca3b2015-01-15 10:56:12 -0800530 return 0;
mtklein@google.comd36522d2013-10-16 13:02:15 +0000531}
jcgregorio3b27ade2014-11-13 08:06:40 -0800532
533#if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL)
534int main(int argc, char** argv) {
535 SkCommandLineFlags::Parse(argc, argv);
536 return dm_main();
537}
538#endif