blob: 577897030786f7e1709fd1fc361ebbd5e4d48449 [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
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "dm/DMJsonWriter.h"
9#include "dm/DMSrcSink.h"
10#include "include/codec/SkCodec.h"
11#include "include/core/SkBBHFactory.h"
12#include "include/core/SkColorPriv.h"
13#include "include/core/SkColorSpace.h"
14#include "include/core/SkData.h"
15#include "include/core/SkDocument.h"
16#include "include/core/SkFontMgr.h"
17#include "include/core/SkGraphics.h"
18#include "include/ports/SkTypeface_win.h"
19#include "include/private/SkChecksum.h"
20#include "include/private/SkHalf.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050021#include "include/private/SkSpinlock.h"
22#include "include/private/SkTHash.h"
23#include "src/core/SkColorSpacePriv.h"
Ben Wagnerab6eefe2019-05-20 11:02:49 -040024#include "src/core/SkLeanWindows.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050025#include "src/core/SkMD5.h"
26#include "src/core/SkOSFile.h"
27#include "src/core/SkTaskGroup.h"
28#include "src/utils/SkOSPath.h"
29#include "tests/Test.h"
Jim Van Verth8a9a3712019-05-31 10:49:12 -040030#include "tools/AutoreleasePool.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050031#include "tools/HashAndEncode.h"
32#include "tools/ProcStats.h"
33#include "tools/Resources.h"
34#include "tools/ToolUtils.h"
35#include "tools/flags/CommonFlags.h"
36#include "tools/flags/CommonFlagsConfig.h"
37#include "tools/ios_utils.h"
38#include "tools/trace/ChromeTracingTracer.h"
39#include "tools/trace/EventTracingPriv.h"
40#include "tools/trace/SkDebugfTracer.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000041
scroggo19b91532016-10-24 09:03:26 -070042#include <vector>
43
bungeman60e0fee2015-08-26 05:15:46 -070044#include <stdlib.h>
45
Mike Klein8f11d4d2018-01-24 12:42:55 -050046#ifndef SK_BUILD_FOR_WIN
scroggo27a58342015-10-28 08:56:41 -070047 #include <unistd.h>
48#endif
49
Dongwon Kang0c7861f2018-02-16 10:55:21 -080050#if defined(SK_BUILD_FOR_ANDROID_FRAMEWORK) && defined(SK_HAS_HEIF_LIBRARY)
51#include <binder/IPCThreadState.h>
52#endif
53
Mike Reed7c26ca72017-07-05 15:45:52 -040054extern bool gSkForceRasterPipelineBlitter;
55
Mike Klein84836b72019-03-21 11:31:36 -050056static DEFINE_string(src, "tests gm skp image", "Source types to test.");
57static DEFINE_bool(nameByHash, false,
58 "If true, write to FLAGS_writePath[0]/<hash>.png instead of "
59 "to FLAGS_writePath[0]/<config>/<sourceType>/<sourceOptions>/<name>.png");
60static DEFINE_bool2(pathOpsExtended, x, false, "Run extended pathOps tests.");
61static DEFINE_string(matrix, "1 0 0 1",
62 "2x2 scale+skew matrix to apply or upright when using "
63 "'matrix' or 'upright' in config.");
64static DEFINE_bool(gpu_threading, false, "Allow GPU work to run on multiple threads?");
mtklein@google.comd36522d2013-10-16 13:02:15 +000065
Mike Klein84836b72019-03-21 11:31:36 -050066static DEFINE_string(blacklist, "",
Chris Daltonecf78ac2017-08-15 15:43:08 -060067 "Space-separated config/src/srcOptions/name quadruples to blacklist. "
68 "'_' matches anything. '~' negates the match. E.g. \n"
djsollen54416de2015-04-03 07:24:48 -070069 "'--blacklist gpu skp _ _' will blacklist all SKPs drawn into the gpu config.\n"
Chris Daltonecf78ac2017-08-15 15:43:08 -060070 "'--blacklist gpu skp _ _ 8888 gm _ aarects' will also blacklist the aarects GM on 8888.\n"
71 "'--blacklist ~8888 svg _ svgparse_' blocks non-8888 SVGs that contain \"svgparse_\" in "
72 "the name.");
mtkleina2ef6422015-01-15 13:44:22 -080073
Mike Klein84836b72019-03-21 11:31:36 -050074static DEFINE_string2(readPath, r, "",
75 "If set check for equality with golden results in this directory.");
Mike Kleinc6142d82019-03-25 10:54:59 -050076DEFINE_string2(writePath, w, "", "If set, write bitmaps here as .pngs.");
77
Brian Osman57796b32019-01-25 18:02:59 +000078
Mike Klein84836b72019-03-21 11:31:36 -050079static DEFINE_string(uninterestingHashesFile, "",
borenet09ed4802015-04-03 14:15:33 -070080 "File containing a list of uninteresting hashes. If a result hashes to something in "
81 "this list, no image is written for that result.");
82
Mike Klein5b3f3432019-03-21 11:42:21 -050083static DEFINE_int(shards, 1, "We're splitting source data into this many shards.");
84static DEFINE_int(shard, 0, "Which shard do I run?");
mtklein6393c062015-04-27 08:45:01 -070085
Mike Klein84836b72019-03-21 11:31:36 -050086static DEFINE_string(mskps, "", "Directory to read mskps from, or a single mskp file.");
87static DEFINE_bool(forceRasterPipeline, false, "sets gSkForceRasterPipelineBlitter");
halcanary45420a92016-06-02 12:41:14 -070088
Mike Klein84836b72019-03-21 11:31:36 -050089static DEFINE_string(bisect, "",
Chris Dalton184c37e2018-09-28 11:27:39 -060090 "Pair of: SKP file to bisect, followed by an l/r bisect trail string (e.g., 'lrll'). The "
91 "l/r trail specifies which half to keep at each step of a binary search through the SKP's "
92 "paths. An empty string performs no bisect. Only the SkPaths are bisected; all other draws "
93 "are thrown out. This is useful for finding a reduced repo case for path drawing bugs.");
94
Mike Klein84836b72019-03-21 11:31:36 -050095static DEFINE_bool(ignoreSigInt, false, "ignore SIGINT signals during test execution");
Derek Sollenbergeredfe3df2017-07-19 15:25:24 -040096
Mike Klein84836b72019-03-21 11:31:36 -050097static DEFINE_string(dont_write, "", "File extensions to skip writing to --writePath."); // See skia:6821
Mike Klein97d6a7a2017-07-24 10:37:19 -040098
Mike Klein84836b72019-03-21 11:31:36 -050099static DEFINE_bool(checkF16, false, "Ensure that F16Norm pixels are clamped.");
Brian Osman582f6862019-03-11 11:20:55 -0400100
Mike Klein19fb3972019-03-21 13:08:08 -0500101static DEFINE_string(colorImages, "",
102 "List of images and/or directories to decode with color correction. "
103 "A directory with no images is treated as a fatal error.");
104
Mike Kleind0f321b2019-03-22 13:15:11 -0500105static DEFINE_bool2(veryVerbose, V, false, "tell individual tests to be verbose.");
106
Mike Klein629f5fc2019-03-22 14:55:19 -0500107static DEFINE_bool(cpu, true, "master switch for running CPU-bound work.");
108static DEFINE_bool(gpu, true, "master switch for running GPU-bound work.");
109
110static DEFINE_bool(dryRun, false,
111 "just print the tests that would be run, without actually running them.");
112
113static DEFINE_string(images, "",
114 "List of images and/or directories to decode. A directory with no images"
115 " is treated as a fatal error.");
116
117static DEFINE_bool(simpleCodec, false,
118 "Runs of a subset of the codec tests, "
119 "with no scaling or subsetting, always using the canvas color type.");
Mike Klein19fb3972019-03-21 13:08:08 -0500120
Mike Kleinc6142d82019-03-25 10:54:59 -0500121static DEFINE_string2(match, m, nullptr,
122 "[~][^]substring[$] [...] of name to run.\n"
123 "Multiple matches may be separated by spaces.\n"
124 "~ causes a matching name to always be skipped\n"
125 "^ requires the start of the name to match\n"
126 "$ requires the end of the name to match\n"
127 "^ and $ requires an exact match\n"
128 "If a name does not match any list entry,\n"
129 "it is skipped unless some list entry starts with ~");
130
131static DEFINE_bool2(quiet, q, false, "if true, don't print status updates.");
132static DEFINE_bool2(verbose, v, false, "enable verbose output from the test driver.");
133
134static DEFINE_string(skps, "skps", "Directory to read skps from.");
135static DEFINE_string(lotties, "lotties", "Directory to read (Bodymovin) jsons from.");
136static DEFINE_string(svgs, "", "Directory to read SVGs from, or a single SVG file.");
137
138static DEFINE_int_2(threads, j, -1,
139 "Run threadsafe tests on a threadpool with this many extra threads, "
140 "defaulting to one extra thread per core.");
141
142static DEFINE_string(key, "",
143 "Space-separated key/value pairs to add to JSON identifying this builder.");
144static DEFINE_string(properties, "",
145 "Space-separated key/value pairs to add to JSON identifying this run.");
146
147
Brian Osman1c1208e2019-06-24 13:36:05 -0400148#if defined(__MSVC_RUNTIME_CHECKS)
149#include <rtcapi.h>
150int RuntimeCheckErrorFunc(int errorType, const char* filename, int linenumber,
151 const char* moduleName, const char* fmt, ...) {
152 va_list args;
153 va_start(args, fmt);
154 vfprintf(stderr, fmt, args);
155 va_end(args);
156
157 SkDebugf("Line #%d\nFile: %s\nModule: %s\n",
158 linenumber, filename ? filename : "Unknown", moduleName ? moduleName : "Unknwon");
159 return 1;
160}
161#endif
162
mtklein748ca3b2015-01-15 10:56:12 -0800163using namespace DM;
bsalomon3724e572016-03-30 18:56:19 -0700164using sk_gpu_test::GrContextFactory;
bsalomon273c0f52016-03-31 10:59:06 -0700165using sk_gpu_test::GLTestContext;
bsalomonf2f1c172016-04-05 12:59:06 -0700166using sk_gpu_test::ContextInfo;
mtklein@google.comd36522d2013-10-16 13:02:15 +0000167
mtklein748ca3b2015-01-15 10:56:12 -0800168/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
169
Mike Kleine1271702019-03-07 11:46:59 -0600170static sk_sp<SkColorSpace> rec2020() {
Hal Canarybe67a172019-05-24 10:13:36 -0400171 return SkColorSpace::MakeRGB(SkNamedTransferFn::kRec2020, SkNamedGamut::kRec2020);
Mike Kleine1271702019-03-07 11:46:59 -0600172}
173
174/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
175
mtkleinc41fd922016-03-08 09:01:39 -0800176static FILE* gVLog;
177
178template <typename... Args>
179static void vlog(const char* fmt, Args&&... args) {
180 if (gVLog) {
mtkleinc41fd922016-03-08 09:01:39 -0800181 fprintf(gVLog, fmt, args...);
182 fflush(gVLog);
183 }
184}
185
186template <typename... Args>
187static void info(const char* fmt, Args&&... args) {
188 vlog(fmt, args...);
189 if (!FLAGS_quiet) {
190 printf(fmt, args...);
191 }
192}
193static void info(const char* fmt) {
194 if (!FLAGS_quiet) {
195 printf("%s", fmt); // Clang warns printf(fmt) is insecure.
196 }
197}
198
mtklein748ca3b2015-01-15 10:56:12 -0800199static SkTArray<SkString> gFailures;
200
mtklein3eed7dd2016-02-24 19:07:07 -0800201static void fail(const SkString& err) {
Herb Derby9c71e7b2019-06-17 14:40:42 -0400202 static SkSpinlock mutex;
203 SkAutoSpinlock lock(mutex);
mtklein748ca3b2015-01-15 10:56:12 -0800204 SkDebugf("\n\nFAILURE: %s\n\n", err.c_str());
205 gFailures.push_back(err);
halcanary9e398f72015-01-10 11:18:04 -0800206}
207
mtklein0f7748a2016-07-25 15:27:29 -0700208struct Running {
209 SkString id;
210 SkThreadID thread;
211
212 void dump() const {
213 info("\t%s\n", id.c_str());
214 }
215};
mtkleinb37cb412015-03-18 05:27:14 -0700216
Mike Kleinc6142d82019-03-25 10:54:59 -0500217static void dump_json() {
218 if (!FLAGS_writePath.isEmpty()) {
219 JsonWriter::DumpJson(FLAGS_writePath[0], FLAGS_key, FLAGS_properties);
220 }
221}
222
mtklein246ba3a2016-02-23 10:39:36 -0800223// We use a spinlock to make locking this in a signal handler _somewhat_ safe.
Mike Klein03a95ad2017-06-23 12:36:32 -0400224static SkSpinlock gMutex;
225static int gPending;
mtklein0f7748a2016-07-25 15:27:29 -0700226static SkTArray<Running> gRunning;
mtklein748ca3b2015-01-15 10:56:12 -0800227
mtklein3eed7dd2016-02-24 19:07:07 -0800228static void done(const char* config, const char* src, const char* srcOptions, const char* name) {
229 SkString id = SkStringPrintf("%s %s %s %s", config, src, srcOptions, name);
mtkleinc41fd922016-03-08 09:01:39 -0800230 vlog("done %s\n", id.c_str());
mtkleinafae30a2016-02-24 12:28:32 -0800231 int pending;
mtkleinb37cb412015-03-18 05:27:14 -0700232 {
Herb Derbya1b7be62019-05-09 16:59:18 -0400233 SkAutoSpinlock lock(gMutex);
mtkleinb37cb412015-03-18 05:27:14 -0700234 for (int i = 0; i < gRunning.count(); i++) {
mtklein0f7748a2016-07-25 15:27:29 -0700235 if (gRunning[i].id == id) {
mtkleinb37cb412015-03-18 05:27:14 -0700236 gRunning.removeShuffle(i);
237 break;
238 }
239 }
mtkleinafae30a2016-02-24 12:28:32 -0800240 pending = --gPending;
reed50bc0512015-05-19 14:13:31 -0700241 }
Mike Klein03a95ad2017-06-23 12:36:32 -0400242
243 // We write out dm.json file and print out a progress update every once in a while.
244 // Notice this also handles the final dm.json and progress update when pending == 0.
mtkleina17241b2015-01-23 05:48:00 -0800245 if (pending % 500 == 0) {
Mike Kleinc6142d82019-03-25 10:54:59 -0500246 dump_json();
Mike Klein03a95ad2017-06-23 12:36:32 -0400247
248 int curr = sk_tools::getCurrResidentSetSizeMB(),
249 peak = sk_tools::getMaxResidentSetSizeMB();
Mike Klein03a95ad2017-06-23 12:36:32 -0400250
Herb Derbya1b7be62019-05-09 16:59:18 -0400251 SkAutoSpinlock lock(gMutex);
Mike Klein21ba7722018-10-02 13:57:44 +0000252 info("\n%dMB RAM, %dMB peak, %d queued, %d active:\n",
253 curr, peak, gPending - gRunning.count(), gRunning.count());
Mike Klein03a95ad2017-06-23 12:36:32 -0400254 for (auto& task : gRunning) {
255 task.dump();
256 }
mtkleina17241b2015-01-23 05:48:00 -0800257 }
mtklein@google.comd36522d2013-10-16 13:02:15 +0000258}
259
mtklein3eed7dd2016-02-24 19:07:07 -0800260static void start(const char* config, const char* src, const char* srcOptions, const char* name) {
261 SkString id = SkStringPrintf("%s %s %s %s", config, src, srcOptions, name);
mtkleinc41fd922016-03-08 09:01:39 -0800262 vlog("start %s\n", id.c_str());
Herb Derbya1b7be62019-05-09 16:59:18 -0400263 SkAutoSpinlock lock(gMutex);
mtklein0f7748a2016-07-25 15:27:29 -0700264 gRunning.push_back({id,SkGetThreadID()});
mtkleinb37cb412015-03-18 05:27:14 -0700265}
266
Mike Klein3cc2d202016-10-24 11:39:43 -0400267static void find_culprit() {
268 // Assumes gMutex is locked.
269 SkThreadID thisThread = SkGetThreadID();
270 for (auto& task : gRunning) {
271 if (task.thread == thisThread) {
272 info("Likely culprit:\n");
273 task.dump();
mtklein0f7748a2016-07-25 15:27:29 -0700274 }
275 }
Mike Klein3cc2d202016-10-24 11:39:43 -0400276}
mtklein0f7748a2016-07-25 15:27:29 -0700277
Mike Klein8f11d4d2018-01-24 12:42:55 -0500278#if defined(SK_BUILD_FOR_WIN)
mtklein5b64dab2016-06-09 08:59:48 -0700279 static LONG WINAPI crash_handler(EXCEPTION_POINTERS* e) {
mtkleinf8557292016-02-29 06:35:28 -0800280 static const struct {
281 const char* name;
robertphillips75467862016-03-01 14:10:23 -0800282 DWORD code;
mtkleinf8557292016-02-29 06:35:28 -0800283 } kExceptions[] = {
284 #define _(E) {#E, E}
285 _(EXCEPTION_ACCESS_VIOLATION),
286 _(EXCEPTION_BREAKPOINT),
287 _(EXCEPTION_INT_DIVIDE_BY_ZERO),
288 _(EXCEPTION_STACK_OVERFLOW),
289 // TODO: more?
290 #undef _
291 };
292
Herb Derbya1b7be62019-05-09 16:59:18 -0400293 SkAutoSpinlock lock(gMutex);
mtklein5b64dab2016-06-09 08:59:48 -0700294
295 const DWORD code = e->ExceptionRecord->ExceptionCode;
296 info("\nCaught exception %u", code);
297 for (const auto& exception : kExceptions) {
298 if (exception.code == code) {
299 info(" %s", exception.name);
mtkleinf8557292016-02-29 06:35:28 -0800300 }
mtkleinf8557292016-02-29 06:35:28 -0800301 }
mtklein5b64dab2016-06-09 08:59:48 -0700302 info(", was running:\n");
303 for (auto& task : gRunning) {
mtklein0f7748a2016-07-25 15:27:29 -0700304 task.dump();
mtklein5b64dab2016-06-09 08:59:48 -0700305 }
mtklein0f7748a2016-07-25 15:27:29 -0700306 find_culprit();
mtklein5b64dab2016-06-09 08:59:48 -0700307 fflush(stdout);
308
mtkleinf8557292016-02-29 06:35:28 -0800309 // Execute default exception handler... hopefully, exit.
310 return EXCEPTION_EXECUTE_HANDLER;
mtklein246ba3a2016-02-23 10:39:36 -0800311 }
312
Mike Klein3cc2d202016-10-24 11:39:43 -0400313 static void setup_crash_handler() {
314 SetUnhandledExceptionFilter(crash_handler);
315 }
316#else
mtklein246ba3a2016-02-23 10:39:36 -0800317 #include <signal.h>
Mike Klein3cc2d202016-10-24 11:39:43 -0400318 #if !defined(SK_BUILD_FOR_ANDROID)
319 #include <execinfo.h>
Brian Salomondcbb9d92017-07-19 10:53:20 -0400320
321#endif
Mike Klein3cc2d202016-10-24 11:39:43 -0400322
323 static constexpr int max_of() { return 0; }
324 template <typename... Rest>
325 static constexpr int max_of(int x, Rest... rest) {
326 return x > max_of(rest...) ? x : max_of(rest...);
327 }
328
Mike Kleinc7278ad2018-02-15 09:26:54 -0500329 static void (*previous_handler[max_of(SIGABRT,SIGBUS,SIGFPE,SIGILL,SIGSEGV,SIGTERM)+1])(int);
mtkleinf8557292016-02-29 06:35:28 -0800330
mtklein5b64dab2016-06-09 08:59:48 -0700331 static void crash_handler(int sig) {
Herb Derbya1b7be62019-05-09 16:59:18 -0400332 SkAutoSpinlock lock(gMutex);
mtklein5b64dab2016-06-09 08:59:48 -0700333
Mike Klein701a3582018-06-28 14:08:19 +0000334 info("\nCaught signal %d [%s] (%dMB RAM, peak %dMB), was running:\n",
335 sig, strsignal(sig),
336 sk_tools::getCurrResidentSetSizeMB(), sk_tools::getMaxResidentSetSizeMB());
337
mtklein5b64dab2016-06-09 08:59:48 -0700338 for (auto& task : gRunning) {
mtklein0f7748a2016-07-25 15:27:29 -0700339 task.dump();
mtklein5b64dab2016-06-09 08:59:48 -0700340 }
mtklein0f7748a2016-07-25 15:27:29 -0700341 find_culprit();
mtklein5b64dab2016-06-09 08:59:48 -0700342
Mike Klein3cc2d202016-10-24 11:39:43 -0400343 #if !defined(SK_BUILD_FOR_ANDROID)
mtklein5b64dab2016-06-09 08:59:48 -0700344 void* stack[64];
345 int count = backtrace(stack, SK_ARRAY_COUNT(stack));
346 char** symbols = backtrace_symbols(stack, count);
347 info("\nStack trace:\n");
348 for (int i = 0; i < count; i++) {
349 info(" %s\n", symbols[i]);
350 }
Mike Klein3cc2d202016-10-24 11:39:43 -0400351 #endif
mtklein5b64dab2016-06-09 08:59:48 -0700352 fflush(stdout);
353
Mike Kleinca8087f2019-03-18 09:01:39 -0500354 if (sig == SIGINT && FLAGS_ignoreSigInt) {
355 info("Ignoring signal %d because of --ignoreSigInt.\n"
356 "This is probably a sign the bot is overloaded with work.\n", sig);
357 } else {
358 signal(sig, previous_handler[sig]);
359 raise(sig);
360 }
mtklein5b64dab2016-06-09 08:59:48 -0700361 }
362
mtklein246ba3a2016-02-23 10:39:36 -0800363 static void setup_crash_handler() {
Mike Klein701a3582018-06-28 14:08:19 +0000364 const int kSignals[] = { SIGABRT, SIGBUS, SIGFPE, SIGILL, SIGINT, SIGSEGV, SIGTERM };
mtklein246ba3a2016-02-23 10:39:36 -0800365 for (int sig : kSignals) {
Mike Klein3cc2d202016-10-24 11:39:43 -0400366 previous_handler[sig] = signal(sig, crash_handler);
mtklein246ba3a2016-02-23 10:39:36 -0800367 }
368 }
369#endif
370
mtklein748ca3b2015-01-15 10:56:12 -0800371/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
mtklein114c3cd2015-01-15 10:15:02 -0800372
Brian Osman57796b32019-01-25 18:02:59 +0000373struct Gold : public SkString {
374 Gold() : SkString("") {}
375 Gold(const SkString& sink, const SkString& src,
376 const SkString& srcOptions, const SkString& name,
377 const SkString& md5)
378 : SkString("") {
379 this->append(sink);
380 this->append(src);
381 this->append(srcOptions);
382 this->append(name);
383 this->append(md5);
384 }
385 struct Hash {
386 uint32_t operator()(const Gold& g) const {
387 return SkGoodHash()((const SkString&)g);
388 }
389 };
390};
391static SkTHashSet<Gold, Gold::Hash> gGold;
392
393static void add_gold(JsonWriter::BitmapResult r) {
394 gGold.add(Gold(r.config, r.sourceType, r.sourceOptions, r.name, r.md5));
395}
396
397static void gather_gold() {
398 if (!FLAGS_readPath.isEmpty()) {
399 SkString path(FLAGS_readPath[0]);
400 path.append("/dm.json");
401 if (!JsonWriter::ReadJson(path.c_str(), add_gold)) {
402 fail(SkStringPrintf("Couldn't read %s for golden results.", path.c_str()));
403 }
404 }
405}
406
407/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
408
Mike Klein8f11d4d2018-01-24 12:42:55 -0500409#if defined(SK_BUILD_FOR_WIN)
mtklein935f1b12016-03-16 08:37:19 -0700410 static const char* kNewline = "\r\n";
411#else
412 static const char* kNewline = "\n";
413#endif
414
borenet09ed4802015-04-03 14:15:33 -0700415static SkTHashSet<SkString> gUninterestingHashes;
416
417static void gather_uninteresting_hashes() {
418 if (!FLAGS_uninterestingHashesFile.isEmpty()) {
bungeman38d909e2016-08-02 14:40:46 -0700419 sk_sp<SkData> data(SkData::MakeFromFileName(FLAGS_uninterestingHashesFile[0]));
mtkleincc334b32015-09-22 11:43:53 -0700420 if (!data) {
mtkleinc41fd922016-03-08 09:01:39 -0800421 info("WARNING: unable to read uninteresting hashes from %s\n",
422 FLAGS_uninterestingHashesFile[0]);
mtkleincc334b32015-09-22 11:43:53 -0700423 return;
424 }
Mike Klein45dcc0c2017-04-05 18:04:31 -0400425
426 // Copy to a string to make sure SkStrSplit has a terminating \0 to find.
427 SkString contents((const char*)data->data(), data->size());
428
borenet09ed4802015-04-03 14:15:33 -0700429 SkTArray<SkString> hashes;
Mike Klein45dcc0c2017-04-05 18:04:31 -0400430 SkStrSplit(contents.c_str(), kNewline, &hashes);
borenet09ed4802015-04-03 14:15:33 -0700431 for (const SkString& hash : hashes) {
432 gUninterestingHashes.add(hash);
433 }
mtkleinc41fd922016-03-08 09:01:39 -0800434 info("FYI: loaded %d distinct uninteresting hashes from %d lines\n",
435 gUninterestingHashes.count(), hashes.count());
borenet09ed4802015-04-03 14:15:33 -0700436 }
437}
438
439/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
440
Ben Wagner145dbcd2016-11-03 14:40:50 -0400441struct TaggedSrc : public std::unique_ptr<Src> {
mtklein3eed7dd2016-02-24 19:07:07 -0800442 SkString tag;
443 SkString options;
mtkleine0effd62015-07-29 06:37:28 -0700444};
445
Ben Wagner145dbcd2016-11-03 14:40:50 -0400446struct TaggedSink : public std::unique_ptr<Sink> {
kkinnunen3e980c32015-12-23 01:33:00 -0800447 SkString tag;
djsollen54416de2015-04-03 07:24:48 -0700448};
mtklein748ca3b2015-01-15 10:56:12 -0800449
450static const bool kMemcpyOK = true;
451
mtkleine0effd62015-07-29 06:37:28 -0700452static SkTArray<TaggedSrc, kMemcpyOK> gSrcs;
453static SkTArray<TaggedSink, kMemcpyOK> gSinks;
mtklein748ca3b2015-01-15 10:56:12 -0800454
mtklein6393c062015-04-27 08:45:01 -0700455static bool in_shard() {
456 static int N = 0;
457 return N++ % FLAGS_shards == FLAGS_shard;
458}
459
mtklein3eed7dd2016-02-24 19:07:07 -0800460static void push_src(const char* tag, ImplicitString options, Src* s) {
Ben Wagner145dbcd2016-11-03 14:40:50 -0400461 std::unique_ptr<Src> src(s);
Mike Klein88544fb2019-03-20 10:50:33 -0500462 if (in_shard() && FLAGS_src.contains(tag) &&
463 !CommandLineFlags::ShouldSkip(FLAGS_match, src->name().c_str())) {
mtkleine0effd62015-07-29 06:37:28 -0700464 TaggedSrc& s = gSrcs.push_back();
mtklein18300a32016-03-16 13:53:35 -0700465 s.reset(src.release());
mtklein748ca3b2015-01-15 10:56:12 -0800466 s.tag = tag;
djsollen54416de2015-04-03 07:24:48 -0700467 s.options = options;
mtklein114c3cd2015-01-15 10:15:02 -0800468 }
mtklein748ca3b2015-01-15 10:56:12 -0800469}
mtklein114c3cd2015-01-15 10:15:02 -0800470
msarett9e707a02015-09-01 14:57:57 -0700471static void push_codec_src(Path path, CodecSrc::Mode mode, CodecSrc::DstColorType dstColorType,
scroggoc5560be2016-02-03 09:42:42 -0800472 SkAlphaType dstAlphaType, float scale) {
scroggoe4499842016-02-25 11:03:47 -0800473 if (FLAGS_simpleCodec) {
scroggo19b91532016-10-24 09:03:26 -0700474 const bool simple = CodecSrc::kCodec_Mode == mode || CodecSrc::kAnimated_Mode == mode;
475 if (!simple || dstColorType != CodecSrc::kGetFromCanvas_DstColorType || scale != 1.0f) {
scroggoe4499842016-02-25 11:03:47 -0800476 // Only decode in the simple case.
477 return;
scroggo19b91532016-10-24 09:03:26 -0700478 }
scroggoe4499842016-02-25 11:03:47 -0800479 }
msarett9e707a02015-09-01 14:57:57 -0700480 SkString folder;
481 switch (mode) {
482 case CodecSrc::kCodec_Mode:
483 folder.append("codec");
484 break;
msarettbb25b532016-01-13 09:31:39 -0800485 case CodecSrc::kCodecZeroInit_Mode:
486 folder.append("codec_zero_init");
487 break;
msarett9e707a02015-09-01 14:57:57 -0700488 case CodecSrc::kScanline_Mode:
489 folder.append("scanline");
490 break;
msarett9e707a02015-09-01 14:57:57 -0700491 case CodecSrc::kStripe_Mode:
492 folder.append("stripe");
493 break;
msarett91c22b22016-02-22 12:27:46 -0800494 case CodecSrc::kCroppedScanline_Mode:
495 folder.append("crop");
496 break;
msarett9e707a02015-09-01 14:57:57 -0700497 case CodecSrc::kSubset_Mode:
msarett36c37962015-09-02 13:20:52 -0700498 folder.append("codec_subset");
msarett9e707a02015-09-01 14:57:57 -0700499 break;
scroggo19b91532016-10-24 09:03:26 -0700500 case CodecSrc::kAnimated_Mode:
501 folder.append("codec_animated");
502 break;
msarett9e707a02015-09-01 14:57:57 -0700503 }
504
505 switch (dstColorType) {
506 case CodecSrc::kGrayscale_Always_DstColorType:
507 folder.append("_kGray8");
508 break;
msarett34e0ec42016-04-22 16:27:24 -0700509 case CodecSrc::kNonNative8888_Always_DstColorType:
510 folder.append("_kNonNative");
511 break;
msarett9e707a02015-09-01 14:57:57 -0700512 default:
513 break;
514 }
515
scroggoc5560be2016-02-03 09:42:42 -0800516 switch (dstAlphaType) {
scroggoc5560be2016-02-03 09:42:42 -0800517 case kPremul_SkAlphaType:
518 folder.append("_premul");
519 break;
520 case kUnpremul_SkAlphaType:
521 folder.append("_unpremul");
522 break;
523 default:
524 break;
525 }
526
msarett9e707a02015-09-01 14:57:57 -0700527 if (1.0f != scale) {
528 folder.appendf("_%.3f", scale);
529 }
530
scroggoc5560be2016-02-03 09:42:42 -0800531 CodecSrc* src = new CodecSrc(path, mode, dstColorType, dstAlphaType, scale);
msarett9e707a02015-09-01 14:57:57 -0700532 push_src("image", folder, src);
533}
534
scroggof8dc9df2016-05-16 09:04:13 -0700535static void push_android_codec_src(Path path, CodecSrc::DstColorType dstColorType,
536 SkAlphaType dstAlphaType, int sampleSize) {
msarett3d9d7a72015-10-21 10:27:10 -0700537 SkString folder;
scroggof8dc9df2016-05-16 09:04:13 -0700538 folder.append("scaled_codec");
msarett3d9d7a72015-10-21 10:27:10 -0700539
540 switch (dstColorType) {
541 case CodecSrc::kGrayscale_Always_DstColorType:
542 folder.append("_kGray8");
543 break;
msarett34e0ec42016-04-22 16:27:24 -0700544 case CodecSrc::kNonNative8888_Always_DstColorType:
545 folder.append("_kNonNative");
546 break;
msarett3d9d7a72015-10-21 10:27:10 -0700547 default:
548 break;
549 }
550
scroggoc5560be2016-02-03 09:42:42 -0800551 switch (dstAlphaType) {
scroggoc5560be2016-02-03 09:42:42 -0800552 case kPremul_SkAlphaType:
553 folder.append("_premul");
554 break;
msarett9e9444c2016-02-03 12:39:10 -0800555 case kUnpremul_SkAlphaType:
556 folder.append("_unpremul");
557 break;
scroggoc5560be2016-02-03 09:42:42 -0800558 default:
559 break;
560 }
561
msarett3d9d7a72015-10-21 10:27:10 -0700562 if (1 != sampleSize) {
msarett4b0778e2015-11-13 09:59:11 -0800563 folder.appendf("_%.3f", 1.0f / (float) sampleSize);
msarett3d9d7a72015-10-21 10:27:10 -0700564 }
565
scroggof8dc9df2016-05-16 09:04:13 -0700566 AndroidCodecSrc* src = new AndroidCodecSrc(path, dstColorType, dstAlphaType, sampleSize);
msarett3d9d7a72015-10-21 10:27:10 -0700567 push_src("image", folder, src);
568}
569
msarett18976312016-03-09 14:20:58 -0800570static void push_image_gen_src(Path path, ImageGenSrc::Mode mode, SkAlphaType alphaType, bool isGpu)
571{
572 SkString folder;
573 switch (mode) {
574 case ImageGenSrc::kCodec_Mode:
575 folder.append("gen_codec");
576 break;
577 case ImageGenSrc::kPlatform_Mode:
578 folder.append("gen_platform");
579 break;
580 }
581
582 if (isGpu) {
583 folder.append("_gpu");
584 } else {
585 switch (alphaType) {
586 case kOpaque_SkAlphaType:
587 folder.append("_opaque");
588 break;
589 case kPremul_SkAlphaType:
590 folder.append("_premul");
591 break;
592 case kUnpremul_SkAlphaType:
593 folder.append("_unpremul");
594 break;
595 default:
596 break;
597 }
598 }
599
600 ImageGenSrc* src = new ImageGenSrc(path, mode, alphaType, isGpu);
601 push_src("image", folder, src);
602}
603
Leon Scroggins III07418182017-08-15 12:24:02 -0400604static void push_brd_src(Path path, CodecSrc::DstColorType dstColorType, BRDSrc::Mode mode,
605 uint32_t sampleSize) {
606 SkString folder("brd_android_codec");
607 switch (mode) {
608 case BRDSrc::kFullImage_Mode:
609 break;
610 case BRDSrc::kDivisor_Mode:
611 folder.append("_divisor");
612 break;
613 default:
614 SkASSERT(false);
615 return;
616 }
617
618 switch (dstColorType) {
619 case CodecSrc::kGetFromCanvas_DstColorType:
620 break;
621 case CodecSrc::kGrayscale_Always_DstColorType:
622 folder.append("_kGray");
623 break;
624 default:
625 SkASSERT(false);
626 return;
627 }
628
629 if (1 != sampleSize) {
630 folder.appendf("_%.3f", 1.0f / (float) sampleSize);
631 }
632
633 BRDSrc* src = new BRDSrc(path, mode, dstColorType, sampleSize);
634 push_src("image", folder, src);
635}
636
637static void push_brd_srcs(Path path, bool gray) {
638 if (gray) {
639 // Only run grayscale to one sampleSize and Mode. Though interesting
640 // to test grayscale, it should not reveal anything across various
641 // sampleSizes and Modes
642 // Arbitrarily choose Mode and sampleSize.
643 push_brd_src(path, CodecSrc::kGrayscale_Always_DstColorType,
644 BRDSrc::kFullImage_Mode, 2);
645 }
646
647 // Test on a variety of sampleSizes, making sure to include:
648 // - 2, 4, and 8, which are natively supported by jpeg
649 // - multiples of 2 which are not divisible by 4 (analogous for 4)
650 // - larger powers of two, since BRD clients generally use powers of 2
651 // We will only produce output for the larger sizes on large images.
652 const uint32_t sampleSizes[] = { 1, 2, 3, 4, 5, 6, 7, 8, 12, 16, 24, 32, 64 };
653
654 const BRDSrc::Mode modes[] = { BRDSrc::kFullImage_Mode, BRDSrc::kDivisor_Mode, };
655
656 for (uint32_t sampleSize : sampleSizes) {
657 for (BRDSrc::Mode mode : modes) {
658 push_brd_src(path, CodecSrc::kGetFromCanvas_DstColorType, mode, sampleSize);
659 }
660 }
661}
662
msarett438b2ad2015-04-09 12:43:10 -0700663static void push_codec_srcs(Path path) {
bungeman38d909e2016-08-02 14:40:46 -0700664 sk_sp<SkData> encoded(SkData::MakeFromFileName(path.c_str()));
msarett438b2ad2015-04-09 12:43:10 -0700665 if (!encoded) {
mtkleinc41fd922016-03-08 09:01:39 -0800666 info("Couldn't read %s.", path.c_str());
msarett438b2ad2015-04-09 12:43:10 -0700667 return;
668 }
Mike Reedede7bac2017-07-23 15:30:02 -0400669 std::unique_ptr<SkCodec> codec = SkCodec::MakeFromData(encoded);
halcanary96fcdcc2015-08-27 07:41:13 -0700670 if (nullptr == codec.get()) {
mtkleinc41fd922016-03-08 09:01:39 -0800671 info("Couldn't create codec for %s.", path.c_str());
msarett438b2ad2015-04-09 12:43:10 -0700672 return;
673 }
674
scroggo9366aff2016-05-20 08:38:54 -0700675 // native scaling is only supported by WEBP and JPEG
676 bool supportsNativeScaling = false;
msarett438b2ad2015-04-09 12:43:10 -0700677
msarett91c22b22016-02-22 12:27:46 -0800678 SkTArray<CodecSrc::Mode> nativeModes;
679 nativeModes.push_back(CodecSrc::kCodec_Mode);
680 nativeModes.push_back(CodecSrc::kCodecZeroInit_Mode);
msarett91c22b22016-02-22 12:27:46 -0800681 switch (codec->getEncodedFormat()) {
Hal Canarydb683012016-11-23 08:55:18 -0700682 case SkEncodedImageFormat::kJPEG:
msarett91c22b22016-02-22 12:27:46 -0800683 nativeModes.push_back(CodecSrc::kScanline_Mode);
684 nativeModes.push_back(CodecSrc::kStripe_Mode);
685 nativeModes.push_back(CodecSrc::kCroppedScanline_Mode);
scroggo9366aff2016-05-20 08:38:54 -0700686 supportsNativeScaling = true;
msarett91c22b22016-02-22 12:27:46 -0800687 break;
Hal Canarydb683012016-11-23 08:55:18 -0700688 case SkEncodedImageFormat::kWEBP:
msarett91c22b22016-02-22 12:27:46 -0800689 nativeModes.push_back(CodecSrc::kSubset_Mode);
scroggo9366aff2016-05-20 08:38:54 -0700690 supportsNativeScaling = true;
msarett91c22b22016-02-22 12:27:46 -0800691 break;
Hal Canarydb683012016-11-23 08:55:18 -0700692 case SkEncodedImageFormat::kDNG:
msarettb65e6042016-02-23 05:37:25 -0800693 break;
msarett91c22b22016-02-22 12:27:46 -0800694 default:
695 nativeModes.push_back(CodecSrc::kScanline_Mode);
msarett91c22b22016-02-22 12:27:46 -0800696 break;
697 }
msarett9e707a02015-09-01 14:57:57 -0700698
msarett91c22b22016-02-22 12:27:46 -0800699 SkTArray<CodecSrc::DstColorType> colorTypes;
700 colorTypes.push_back(CodecSrc::kGetFromCanvas_DstColorType);
msarett34e0ec42016-04-22 16:27:24 -0700701 colorTypes.push_back(CodecSrc::kNonNative8888_Always_DstColorType);
msarett36c37962015-09-02 13:20:52 -0700702 switch (codec->getInfo().colorType()) {
703 case kGray_8_SkColorType:
msarett91c22b22016-02-22 12:27:46 -0800704 colorTypes.push_back(CodecSrc::kGrayscale_Always_DstColorType);
msarett36c37962015-09-02 13:20:52 -0700705 break;
706 default:
msarett36c37962015-09-02 13:20:52 -0700707 break;
708 }
msarett9e707a02015-09-01 14:57:57 -0700709
scroggoc5560be2016-02-03 09:42:42 -0800710 SkTArray<SkAlphaType> alphaModes;
711 alphaModes.push_back(kPremul_SkAlphaType);
scroggof2c96a22016-05-20 11:08:27 -0700712 if (codec->getInfo().alphaType() != kOpaque_SkAlphaType) {
713 alphaModes.push_back(kUnpremul_SkAlphaType);
scroggoc5560be2016-02-03 09:42:42 -0800714 }
msarettb714fb02016-01-22 14:46:42 -0800715
716 for (CodecSrc::Mode mode : nativeModes) {
scroggo9366aff2016-05-20 08:38:54 -0700717 for (CodecSrc::DstColorType colorType : colorTypes) {
718 for (SkAlphaType alphaType : alphaModes) {
scroggof2c96a22016-05-20 11:08:27 -0700719 // Only test kCroppedScanline_Mode when the alpha type is premul. The test is
scroggo9366aff2016-05-20 08:38:54 -0700720 // slow and won't be interestingly different with different alpha types.
721 if (CodecSrc::kCroppedScanline_Mode == mode &&
scroggof2c96a22016-05-20 11:08:27 -0700722 kPremul_SkAlphaType != alphaType) {
scroggo9366aff2016-05-20 08:38:54 -0700723 continue;
724 }
msarett91c22b22016-02-22 12:27:46 -0800725
scroggo9366aff2016-05-20 08:38:54 -0700726 push_codec_src(path, mode, colorType, alphaType, 1.0f);
msarettf3dc1882016-04-26 13:06:38 -0700727
scroggo9366aff2016-05-20 08:38:54 -0700728 // Skip kNonNative on different native scales. It won't be interestingly
729 // different.
730 if (supportsNativeScaling &&
731 CodecSrc::kNonNative8888_Always_DstColorType == colorType) {
732 // Native Scales
733 // SkJpegCodec natively supports scaling to the following:
734 for (auto scale : { 0.125f, 0.25f, 0.375f, 0.5f, 0.625f, 0.750f, 0.875f }) {
735 push_codec_src(path, mode, colorType, alphaType, scale);
736 }
scroggoc5560be2016-02-03 09:42:42 -0800737 }
msarett9e707a02015-09-01 14:57:57 -0700738 }
739 }
msarett0a242972015-06-11 14:27:27 -0700740 }
msarett36c37962015-09-02 13:20:52 -0700741
scroggo19b91532016-10-24 09:03:26 -0700742 {
743 std::vector<SkCodec::FrameInfo> frameInfos = codec->getFrameInfo();
744 if (frameInfos.size() > 1) {
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400745 for (auto dstCT : { CodecSrc::kNonNative8888_Always_DstColorType,
746 CodecSrc::kGetFromCanvas_DstColorType }) {
747 for (auto at : { kUnpremul_SkAlphaType, kPremul_SkAlphaType }) {
748 push_codec_src(path, CodecSrc::kAnimated_Mode, dstCT, at, 1.0f);
749 }
750 }
scroggo19b91532016-10-24 09:03:26 -0700751 }
752
753 }
754
scroggoe4499842016-02-25 11:03:47 -0800755 if (FLAGS_simpleCodec) {
756 return;
757 }
758
msarett3d9d7a72015-10-21 10:27:10 -0700759 const int sampleSizes[] = { 1, 2, 3, 4, 5, 6, 7, 8 };
msarett36c37962015-09-02 13:20:52 -0700760
msarett3d9d7a72015-10-21 10:27:10 -0700761 for (int sampleSize : sampleSizes) {
msarett91c22b22016-02-22 12:27:46 -0800762 for (CodecSrc::DstColorType colorType : colorTypes) {
scroggoc5560be2016-02-03 09:42:42 -0800763 for (SkAlphaType alphaType : alphaModes) {
msarettf3dc1882016-04-26 13:06:38 -0700764 // We can exercise all of the kNonNative support code in the swizzler with just a
765 // few sample sizes. Skip the rest.
766 if (CodecSrc::kNonNative8888_Always_DstColorType == colorType && sampleSize > 3) {
767 continue;
768 }
769
scroggof8dc9df2016-05-16 09:04:13 -0700770 push_android_codec_src(path, colorType, alphaType, sampleSize);
msarett3d9d7a72015-10-21 10:27:10 -0700771 }
msarett36c37962015-09-02 13:20:52 -0700772 }
773 }
msarett18976312016-03-09 14:20:58 -0800774
Leon Scroggins III07418182017-08-15 12:24:02 -0400775 const char* ext = strrchr(path.c_str(), '.');
776 if (ext) {
777 ext++;
msarett18976312016-03-09 14:20:58 -0800778
Leon Scroggins III07418182017-08-15 12:24:02 -0400779 static const char* const rawExts[] = {
780 "arw", "cr2", "dng", "nef", "nrw", "orf", "raf", "rw2", "pef", "srw",
781 "ARW", "CR2", "DNG", "NEF", "NRW", "ORF", "RAF", "RW2", "PEF", "SRW",
782 };
783 for (const char* rawExt : rawExts) {
784 if (0 == strcmp(rawExt, ext)) {
785 // RAW is not supported by image generator (skbug.com/5079) or BRD.
786 return;
787 }
788 }
789
790 static const char* const brdExts[] = {
791 "jpg", "jpeg", "png", "webp",
792 "JPG", "JPEG", "PNG", "WEBP",
793 };
794 for (const char* brdExt : brdExts) {
795 if (0 == strcmp(brdExt, ext)) {
Leon Scroggins IIIc8037dc2017-12-05 13:55:24 -0500796 bool gray = codec->getInfo().colorType() == kGray_8_SkColorType;
Leon Scroggins III07418182017-08-15 12:24:02 -0400797 push_brd_srcs(path, gray);
798 break;
799 }
msarett18976312016-03-09 14:20:58 -0800800 }
801 }
802
803 // Push image generator GPU test.
brianosmanc9ced392016-03-24 07:27:43 -0700804 push_image_gen_src(path, ImageGenSrc::kCodec_Mode, codec->getInfo().alphaType(), true);
msarett18976312016-03-09 14:20:58 -0800805
806 // Push image generator CPU tests.
807 for (SkAlphaType alphaType : alphaModes) {
808 push_image_gen_src(path, ImageGenSrc::kCodec_Mode, alphaType, false);
809
810#if defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_IOS)
Hal Canarydb683012016-11-23 08:55:18 -0700811 if (SkEncodedImageFormat::kWEBP != codec->getEncodedFormat() &&
812 SkEncodedImageFormat::kWBMP != codec->getEncodedFormat() &&
msarett18976312016-03-09 14:20:58 -0800813 kUnpremul_SkAlphaType != alphaType)
814 {
815 push_image_gen_src(path, ImageGenSrc::kPlatform_Mode, alphaType, false);
816 }
msarettfc0b6d12016-03-17 13:50:17 -0700817#elif defined(SK_BUILD_FOR_WIN)
Hal Canarydb683012016-11-23 08:55:18 -0700818 if (SkEncodedImageFormat::kWEBP != codec->getEncodedFormat() &&
819 SkEncodedImageFormat::kWBMP != codec->getEncodedFormat())
msarettfc0b6d12016-03-17 13:50:17 -0700820 {
821 push_image_gen_src(path, ImageGenSrc::kPlatform_Mode, alphaType, false);
822 }
msarett18976312016-03-09 14:20:58 -0800823#endif
824 }
msarett438b2ad2015-04-09 12:43:10 -0700825}
826
fmalitaa2b9fdf2016-08-03 19:53:36 -0700827template <typename T>
Mike Klein88544fb2019-03-20 10:50:33 -0500828void gather_file_srcs(const CommandLineFlags::StringArray& flags,
829 const char* ext,
830 const char* src_name = nullptr) {
Florin Malitaf1ba3ae2018-07-19 15:09:11 -0400831 if (!src_name) {
832 // With the exception of Lottie files, the source name is the extension.
833 src_name = ext;
834 }
835
fmalitaa2b9fdf2016-08-03 19:53:36 -0700836 for (int i = 0; i < flags.count(); i++) {
837 const char* path = flags[i];
838 if (sk_isdir(path)) {
839 SkOSFile::Iter it(path, ext);
840 for (SkString file; it.next(&file); ) {
Florin Malitaf1ba3ae2018-07-19 15:09:11 -0400841 push_src(src_name, "", new T(SkOSPath::Join(path, file.c_str())));
fmalitaa2b9fdf2016-08-03 19:53:36 -0700842 }
843 } else {
Florin Malitaf1ba3ae2018-07-19 15:09:11 -0400844 push_src(src_name, "", new T(path));
fmalitaa2b9fdf2016-08-03 19:53:36 -0700845 }
846 }
847}
848
scroggo86737142016-02-03 12:19:11 -0800849static bool gather_srcs() {
Hal Canary972eba32018-07-30 17:07:07 -0400850 for (skiagm::GMFactory f : skiagm::GMRegistry::Range()) {
851 push_src("gm", "", new GMSrc(f));
mtklein748ca3b2015-01-15 10:56:12 -0800852 }
scroggo86737142016-02-03 12:19:11 -0800853
Robert Phillipse47f0a02018-03-27 17:01:16 -0400854 gather_file_srcs<SKPSrc>(FLAGS_skps, "skp");
fmalitaa2b9fdf2016-08-03 19:53:36 -0700855 gather_file_srcs<MSKPSrc>(FLAGS_mskps, "mskp");
Florin Malita87ccf332018-05-04 12:23:24 -0400856#if defined(SK_ENABLE_SKOTTIE)
Florin Malitaf1ba3ae2018-07-19 15:09:11 -0400857 gather_file_srcs<SkottieSrc>(FLAGS_lotties, "json", "lottie");
Florin Malita124d5af2017-12-31 17:02:26 -0500858#endif
fmalitaa2b9fdf2016-08-03 19:53:36 -0700859#if defined(SK_XML)
860 gather_file_srcs<SVGSrc>(FLAGS_svgs, "svg");
861#endif
Chris Dalton184c37e2018-09-28 11:27:39 -0600862 if (!FLAGS_bisect.isEmpty()) {
863 // An empty l/r trail string will draw all the paths.
864 push_src("bisect", "",
865 new BisectSrc(FLAGS_bisect[0], FLAGS_bisect.count() > 1 ? FLAGS_bisect[1] : ""));
866 }
halcanary45420a92016-06-02 12:41:14 -0700867
scroggo86737142016-02-03 12:19:11 -0800868 SkTArray<SkString> images;
msarett69deca82016-04-29 09:38:40 -0700869 if (!CollectImages(FLAGS_images, &images)) {
scroggo86737142016-02-03 12:19:11 -0800870 return false;
871 }
872
873 for (auto image : images) {
874 push_codec_srcs(image);
mtklein709d2c32015-01-15 08:30:25 -0800875 }
scroggo86737142016-02-03 12:19:11 -0800876
msarett69deca82016-04-29 09:38:40 -0700877 SkTArray<SkString> colorImages;
878 if (!CollectImages(FLAGS_colorImages, &colorImages)) {
879 return false;
880 }
881
882 for (auto colorImage : colorImages) {
Mike Klein0d5d1422019-03-06 10:56:04 -0600883 push_src("colorImage", "decode_native", new ColorCodecSrc(colorImage, false));
884 push_src("colorImage", "decode_to_dst", new ColorCodecSrc(colorImage, true));
msarett69deca82016-04-29 09:38:40 -0700885 }
886
scroggo86737142016-02-03 12:19:11 -0800887 return true;
mtklein709d2c32015-01-15 08:30:25 -0800888}
889
kkinnunen3e980c32015-12-23 01:33:00 -0800890static void push_sink(const SkCommandLineConfig& config, Sink* s) {
Ben Wagner145dbcd2016-11-03 14:40:50 -0400891 std::unique_ptr<Sink> sink(s);
kkinnunen3e980c32015-12-23 01:33:00 -0800892
mtkleine0effd62015-07-29 06:37:28 -0700893 // Try a simple Src as a canary. If it fails, skip this sink.
mtklein748ca3b2015-01-15 10:56:12 -0800894 struct : public Src {
mtkleine0effd62015-07-29 06:37:28 -0700895 Error draw(SkCanvas* c) const override {
896 c->drawRect(SkRect::MakeWH(1,1), SkPaint());
897 return "";
898 }
mtklein36352bf2015-03-25 18:17:31 -0700899 SkISize size() const override { return SkISize::Make(16, 16); }
mtkleine0effd62015-07-29 06:37:28 -0700900 Name name() const override { return "justOneRect"; }
901 } justOneRect;
mtklein114c3cd2015-01-15 10:15:02 -0800902
mtklein748ca3b2015-01-15 10:56:12 -0800903 SkBitmap bitmap;
904 SkDynamicMemoryWStream stream;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800905 SkString log;
mtkleine0effd62015-07-29 06:37:28 -0700906 Error err = sink->draw(justOneRect, &bitmap, &stream, &log);
mtklein4089ef72015-03-05 08:40:28 -0800907 if (err.isFatal()) {
mtkleinc41fd922016-03-08 09:01:39 -0800908 info("Could not run %s: %s\n", config.getTag().c_str(), err.c_str());
mtklein05641a52015-04-21 10:49:13 -0700909 exit(1);
mtklein114c3cd2015-01-15 10:15:02 -0800910 }
911
mtkleine0effd62015-07-29 06:37:28 -0700912 TaggedSink& ts = gSinks.push_back();
mtklein18300a32016-03-16 13:53:35 -0700913 ts.reset(sink.release());
kkinnunen3e980c32015-12-23 01:33:00 -0800914 ts.tag = config.getTag();
mtklein748ca3b2015-01-15 10:56:12 -0800915}
916
Mike Kleinc7a09162019-02-19 06:14:39 -0500917static sk_sp<SkColorSpace> rgb_to_gbr() {
918 return SkColorSpace::MakeSRGB()->makeColorSpin();
919}
920
csmartdalton008b9d82017-02-22 12:00:42 -0700921static Sink* create_sink(const GrContextOptions& grCtxOptions, const SkCommandLineConfig* config) {
Brian Osmanc7ad40f2018-05-31 14:27:17 -0400922 if (FLAGS_gpu) {
kkinnunen3e980c32015-12-23 01:33:00 -0800923 if (const SkCommandLineConfigGpu* gpuConfig = config->asConfigGpu()) {
bsalomon85b4b532016-04-05 11:06:27 -0700924 GrContextFactory::ContextType contextType = gpuConfig->getContextType();
csmartdaltone812d492017-02-21 12:36:05 -0700925 GrContextFactory::ContextOverrides contextOverrides = gpuConfig->getContextOverrides();
csmartdalton008b9d82017-02-22 12:00:42 -0700926 GrContextFactory testFactory(grCtxOptions);
csmartdaltone812d492017-02-21 12:36:05 -0700927 if (!testFactory.get(contextType, contextOverrides)) {
mtkleinc41fd922016-03-08 09:01:39 -0800928 info("WARNING: can not create GPU context for config '%s'. "
929 "GM tests will be skipped.\n", gpuConfig->getTag().c_str());
kkinnunen3e980c32015-12-23 01:33:00 -0800930 return nullptr;
931 }
Brian Osmanf9810662017-08-30 10:02:10 -0400932 if (gpuConfig->getTestThreading()) {
Brian Salomon00a5eb82018-07-11 15:32:05 -0400933 SkASSERT(!gpuConfig->getTestPersistentCache());
Brian Salomonf865b052018-03-09 09:01:53 -0500934 return new GPUThreadTestingSink(
935 contextType, contextOverrides, gpuConfig->getSurfType(),
936 gpuConfig->getSamples(), gpuConfig->getUseDIText(),
937 gpuConfig->getColorType(), gpuConfig->getAlphaType(),
938 sk_ref_sp(gpuConfig->getColorSpace()), FLAGS_gpu_threading, grCtxOptions);
Brian Salomon00a5eb82018-07-11 15:32:05 -0400939 } else if (gpuConfig->getTestPersistentCache()) {
940 return new GPUPersistentCacheTestingSink(
941 contextType, contextOverrides, gpuConfig->getSurfType(),
942 gpuConfig->getSamples(), gpuConfig->getUseDIText(),
943 gpuConfig->getColorType(), gpuConfig->getAlphaType(),
Brian Osmanf71b0702019-04-03 13:04:16 -0400944 sk_ref_sp(gpuConfig->getColorSpace()), FLAGS_gpu_threading, grCtxOptions,
945 gpuConfig->getTestPersistentCache());
Brian Osmanf9810662017-08-30 10:02:10 -0400946 } else {
Brian Salomonf865b052018-03-09 09:01:53 -0500947 return new GPUSink(contextType, contextOverrides, gpuConfig->getSurfType(),
948 gpuConfig->getSamples(), gpuConfig->getUseDIText(),
949 gpuConfig->getColorType(), gpuConfig->getAlphaType(),
950 sk_ref_sp(gpuConfig->getColorSpace()), FLAGS_gpu_threading,
951 grCtxOptions);
Brian Osmanf9810662017-08-30 10:02:10 -0400952 }
kkinnunen3e980c32015-12-23 01:33:00 -0800953 }
954 }
Bryce Thomas95a7b762018-03-02 13:54:21 -0800955 if (const SkCommandLineConfigSvg* svgConfig = config->asConfigSvg()) {
956 int pageIndex = svgConfig->getPageIndex();
957 return new SVGSink(pageIndex);
958 }
kkinnunen3e980c32015-12-23 01:33:00 -0800959
Brian Salomon23356442018-11-30 15:33:19 -0500960#define SINK(t, sink, ...) if (config->getBackend().equals(t)) return new sink(__VA_ARGS__)
kkinnunen3e980c32015-12-23 01:33:00 -0800961
mtklein748ca3b2015-01-15 10:56:12 -0800962 if (FLAGS_cpu) {
Mike Klein515bda62018-01-09 11:21:58 -0500963 SINK("g8", RasterSink, kGray_8_SkColorType);
Matt Sarettd2228302017-03-02 08:53:46 -0500964 SINK("565", RasterSink, kRGB_565_SkColorType);
Mike Klein5340b3f2018-01-24 13:42:05 -0500965 SINK("4444", RasterSink, kARGB_4444_SkColorType);
Matt Sarettd2228302017-03-02 08:53:46 -0500966 SINK("8888", RasterSink, kN32_SkColorType);
Mike Kleinac568a92018-01-25 09:09:32 -0500967 SINK("rgba", RasterSink, kRGBA_8888_SkColorType);
968 SINK("bgra", RasterSink, kBGRA_8888_SkColorType);
969 SINK("rgbx", RasterSink, kRGB_888x_SkColorType);
970 SINK("1010102", RasterSink, kRGBA_1010102_SkColorType);
971 SINK("101010x", RasterSink, kRGB_101010x_SkColorType);
Hal Canaryc7d295e2017-07-20 15:36:00 -0400972 SINK("pdf", PDFSink, false, SK_ScalarDefaultRasterDPI);
Matt Sarettd2228302017-03-02 08:53:46 -0500973 SINK("skp", SKPSink);
Matt Sarettd2228302017-03-02 08:53:46 -0500974 SINK("svg", SVGSink);
975 SINK("null", NullSink);
976 SINK("xps", XPSSink);
Hal Canaryc7d295e2017-07-20 15:36:00 -0400977 SINK("pdfa", PDFSink, true, SK_ScalarDefaultRasterDPI);
978 SINK("pdf300", PDFSink, false, 300);
Hal Canary85c7fe82016-10-25 10:33:27 -0400979 SINK("jsdebug", DebugSink);
Mike Klein0e4041f2018-06-19 16:00:40 -0400980
981 // Configs relevant to color management testing (and 8888 for reference).
982
983 // 'narrow' has a gamut narrower than sRGB, and different transfer function.
Brian Osman82ebe042019-01-04 17:03:00 -0500984 auto narrow = SkColorSpace::MakeRGB(SkNamedTransferFn::k2Dot2, gNarrow_toXYZD50),
Mike Klein0e4041f2018-06-19 16:00:40 -0400985 srgb = SkColorSpace::MakeSRGB(),
Mike Klein4de05072018-08-16 09:09:14 -0400986 srgbLinear = SkColorSpace::MakeSRGBLinear(),
Brian Osman82ebe042019-01-04 17:03:00 -0500987 p3 = SkColorSpace::MakeRGB(SkNamedTransferFn::kSRGB, SkNamedGamut::kDCIP3);
Mike Klein0e4041f2018-06-19 16:00:40 -0400988
Mike Kleinff6a73c2018-08-17 16:19:24 -0400989 SINK( "f16", RasterSink, kRGBA_F16_SkColorType, srgbLinear);
990 SINK( "srgb", RasterSink, kRGBA_8888_SkColorType, srgb );
991 SINK( "esrgb", RasterSink, kRGBA_F16_SkColorType, srgb );
Mike Kleinc7a09162019-02-19 06:14:39 -0500992 SINK( "esgbr", RasterSink, kRGBA_F16_SkColorType, rgb_to_gbr());
Mike Kleinff6a73c2018-08-17 16:19:24 -0400993 SINK( "narrow", RasterSink, kRGBA_8888_SkColorType, narrow );
994 SINK( "enarrow", RasterSink, kRGBA_F16_SkColorType, narrow );
995 SINK( "p3", RasterSink, kRGBA_8888_SkColorType, p3 );
996 SINK( "ep3", RasterSink, kRGBA_F16_SkColorType, p3 );
Mike Kleinae4b1f42018-09-13 11:13:15 -0400997 SINK( "rec2020", RasterSink, kRGBA_8888_SkColorType, rec2020() );
998 SINK("erec2020", RasterSink, kRGBA_F16_SkColorType, rec2020() );
Mike Klein37854712018-06-26 11:43:06 -0400999
Mike Kleinb70990e2019-02-28 10:03:27 -06001000 SINK("f16norm", RasterSink, kRGBA_F16Norm_SkColorType, srgb);
1001
Mike Klein37854712018-06-26 11:43:06 -04001002 SINK( "f32", RasterSink, kRGBA_F32_SkColorType, srgbLinear);
mtklein748ca3b2015-01-15 10:56:12 -08001003 }
1004#undef SINK
halcanary96fcdcc2015-08-27 07:41:13 -07001005 return nullptr;
mtklein114c3cd2015-01-15 10:15:02 -08001006}
1007
kkinnunen3e980c32015-12-23 01:33:00 -08001008static Sink* create_via(const SkString& tag, Sink* wrapped) {
Brian Salomon23356442018-11-30 15:33:19 -05001009#define VIA(t, via, ...) if (tag.equals(t)) return new via(__VA_ARGS__)
Mike Reedbae888e2017-02-18 16:50:45 -05001010#ifdef TEST_VIA_SVG
Mike Reedf67c4592017-02-17 17:06:11 -05001011 VIA("svg", ViaSVG, wrapped);
Mike Reedbae888e2017-02-18 16:50:45 -05001012#endif
halcanary96fcdcc2015-08-27 07:41:13 -07001013 VIA("serialize", ViaSerialization, wrapped);
mtklein4a34ecb2016-01-08 10:19:35 -08001014 VIA("pic", ViaPicture, wrapped);
halcanary96fcdcc2015-08-27 07:41:13 -07001015 VIA("tiles", ViaTiles, 256, 256, nullptr, wrapped);
mtklein7edca212015-01-21 13:18:51 -08001016 VIA("tiles_rt", ViaTiles, 256, 256, new SkRTreeFactory, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -08001017
Brian Salomon57904202018-12-17 14:45:00 -05001018 VIA("ddl", ViaDDL, 1, 3, wrapped);
1019 VIA("ddl2", ViaDDL, 2, 3, wrapped);
Robert Phillips33f02ed2018-03-27 08:06:57 -04001020
mtkleind603b222015-02-17 11:13:33 -08001021 if (FLAGS_matrix.count() == 4) {
mtklein748ca3b2015-01-15 10:56:12 -08001022 SkMatrix m;
mtkleind603b222015-02-17 11:13:33 -08001023 m.reset();
1024 m.setScaleX((SkScalar)atof(FLAGS_matrix[0]));
1025 m.setSkewX ((SkScalar)atof(FLAGS_matrix[1]));
1026 m.setSkewY ((SkScalar)atof(FLAGS_matrix[2]));
1027 m.setScaleY((SkScalar)atof(FLAGS_matrix[3]));
1028 VIA("matrix", ViaMatrix, m, wrapped);
1029 VIA("upright", ViaUpright, m, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -08001030 }
tomhudson64de1e12015-03-05 08:01:07 -08001031
mtklein748ca3b2015-01-15 10:56:12 -08001032#undef VIA
halcanary96fcdcc2015-08-27 07:41:13 -07001033 return nullptr;
mtklein114c3cd2015-01-15 10:15:02 -08001034}
1035
Ben Wagnerf28d4722017-08-11 17:33:22 -04001036static bool gather_sinks(const GrContextOptions& grCtxOptions, bool defaultConfigs) {
kkinnunen3e980c32015-12-23 01:33:00 -08001037 SkCommandLineConfigArray configs;
1038 ParseConfigs(FLAGS_config, &configs);
Jim Van Verth8a9a3712019-05-31 10:49:12 -04001039 AutoreleasePool pool;
kkinnunen3e980c32015-12-23 01:33:00 -08001040 for (int i = 0; i < configs.count(); i++) {
1041 const SkCommandLineConfig& config = *configs[i];
csmartdalton008b9d82017-02-22 12:00:42 -07001042 Sink* sink = create_sink(grCtxOptions, &config);
kkinnunen3e980c32015-12-23 01:33:00 -08001043 if (sink == nullptr) {
mtkleinc41fd922016-03-08 09:01:39 -08001044 info("Skipping config %s: Don't understand '%s'.\n", config.getTag().c_str(),
1045 config.getTag().c_str());
kkinnunen3e980c32015-12-23 01:33:00 -08001046 continue;
1047 }
mtklein748ca3b2015-01-15 10:56:12 -08001048
kkinnunen3e980c32015-12-23 01:33:00 -08001049 const SkTArray<SkString>& parts = config.getViaParts();
1050 for (int j = parts.count(); j-- > 0;) {
1051 const SkString& part = parts[j];
1052 Sink* next = create_via(part, sink);
halcanary96fcdcc2015-08-27 07:41:13 -07001053 if (next == nullptr) {
mtkleinc41fd922016-03-08 09:01:39 -08001054 info("Skipping config %s: Don't understand '%s'.\n", config.getTag().c_str(),
1055 part.c_str());
mtklein748ca3b2015-01-15 10:56:12 -08001056 delete sink;
halcanary96fcdcc2015-08-27 07:41:13 -07001057 sink = nullptr;
mtklein748ca3b2015-01-15 10:56:12 -08001058 break;
1059 }
1060 sink = next;
1061 }
1062 if (sink) {
1063 push_sink(config, sink);
mtklein114c3cd2015-01-15 10:15:02 -08001064 }
1065 }
brianosman05c987c2016-05-09 13:42:16 -07001066
1067 // If no configs were requested (just running tests, perhaps?), then we're okay.
Ben Wagnerf28d4722017-08-11 17:33:22 -04001068 if (configs.count() == 0 ||
1069 // If we're using the default configs, we're okay.
1070 defaultConfigs ||
Ben Wagner32fa5102017-08-10 21:25:55 -04001071 // Otherwise, make sure that all specified configs have become sinks.
1072 configs.count() == gSinks.count()) {
1073 return true;
1074 }
Ben Wagner32fa5102017-08-10 21:25:55 -04001075 return false;
mtklein114c3cd2015-01-15 10:15:02 -08001076}
mtklein709d2c32015-01-15 08:30:25 -08001077
mtkleina2ef6422015-01-15 13:44:22 -08001078static bool match(const char* needle, const char* haystack) {
Chris Daltonecf78ac2017-08-15 15:43:08 -06001079 if ('~' == needle[0]) {
1080 return !match(needle + 1, haystack);
1081 }
1082 if (0 == strcmp("_", needle)) {
1083 return true;
1084 }
1085 return nullptr != strstr(haystack, needle);
mtkleina2ef6422015-01-15 13:44:22 -08001086}
1087
mtklein3eed7dd2016-02-24 19:07:07 -08001088static bool is_blacklisted(const char* sink, const char* src,
1089 const char* srcOptions, const char* name) {
mtklein0d243ff2015-04-03 07:51:00 -07001090 for (int i = 0; i < FLAGS_blacklist.count() - 3; i += 4) {
mtkleina2ef6422015-01-15 13:44:22 -08001091 if (match(FLAGS_blacklist[i+0], sink) &&
djsollen54416de2015-04-03 07:24:48 -07001092 match(FLAGS_blacklist[i+1], src) &&
1093 match(FLAGS_blacklist[i+2], srcOptions) &&
1094 match(FLAGS_blacklist[i+3], name)) {
mtklein3eed7dd2016-02-24 19:07:07 -08001095 return true;
mtkleina2ef6422015-01-15 13:44:22 -08001096 }
1097 }
mtklein3eed7dd2016-02-24 19:07:07 -08001098 return false;
mtkleina2ef6422015-01-15 13:44:22 -08001099}
1100
mtkleincd50bca2016-01-05 06:20:20 -08001101// Even when a Task Sink reports to be non-threadsafe (e.g. GPU), we know things like
1102// .png encoding are definitely thread safe. This lets us offload that work to CPU threads.
1103static SkTaskGroup gDefinitelyThreadSafeWork;
1104
mtklein748ca3b2015-01-15 10:56:12 -08001105// The finest-grained unit of work we can run: draw a single Src into a single Sink,
1106// report any errors, and perhaps write out the output: a .png of the bitmap, or a raw stream.
1107struct Task {
mtkleine0effd62015-07-29 06:37:28 -07001108 Task(const TaggedSrc& src, const TaggedSink& sink) : src(src), sink(sink) {}
1109 const TaggedSrc& src;
1110 const TaggedSink& sink;
mtklein748ca3b2015-01-15 10:56:12 -08001111
mtklein21eaf3b2016-02-08 12:39:59 -08001112 static void Run(const Task& task) {
Jim Van Verth8a9a3712019-05-31 10:49:12 -04001113 AutoreleasePool pool;
mtklein21eaf3b2016-02-08 12:39:59 -08001114 SkString name = task.src->name();
mtkleine0effd62015-07-29 06:37:28 -07001115
mtkleinb9eb4ac2015-02-02 18:26:03 -08001116 SkString log;
mtklein3eed7dd2016-02-24 19:07:07 -08001117 if (!FLAGS_dryRun) {
mtklein748ca3b2015-01-15 10:56:12 -08001118 SkBitmap bitmap;
1119 SkDynamicMemoryWStream stream;
mtklein3eed7dd2016-02-24 19:07:07 -08001120 start(task.sink.tag.c_str(), task.src.tag.c_str(),
1121 task.src.options.c_str(), name.c_str());
mtklein21eaf3b2016-02-08 12:39:59 -08001122 Error err = task.sink->draw(*task.src, &bitmap, &stream, &log);
mtkleinb3b13b72016-03-07 13:20:52 -08001123 if (!log.isEmpty()) {
mtkleinc41fd922016-03-08 09:01:39 -08001124 info("%s %s %s %s:\n%s\n", task.sink.tag.c_str()
1125 , task.src.tag.c_str()
1126 , task.src.options.c_str()
1127 , name.c_str()
1128 , log.c_str());
mtkleinb3b13b72016-03-07 13:20:52 -08001129 }
mtklein748ca3b2015-01-15 10:56:12 -08001130 if (!err.isEmpty()) {
mtklein4089ef72015-03-05 08:40:28 -08001131 if (err.isFatal()) {
djsollen54416de2015-04-03 07:24:48 -07001132 fail(SkStringPrintf("%s %s %s %s: %s",
mtklein21eaf3b2016-02-08 12:39:59 -08001133 task.sink.tag.c_str(),
1134 task.src.tag.c_str(),
1135 task.src.options.c_str(),
mtklein4089ef72015-03-05 08:40:28 -08001136 name.c_str(),
1137 err.c_str()));
mtkleinb37cb412015-03-18 05:27:14 -07001138 } else {
mtklein3eed7dd2016-02-24 19:07:07 -08001139 done(task.sink.tag.c_str(), task.src.tag.c_str(),
1140 task.src.options.c_str(), name.c_str());
mtkleinba6ada72016-01-21 09:39:35 -08001141 return;
mtklein4089ef72015-03-05 08:40:28 -08001142 }
mtklein748ca3b2015-01-15 10:56:12 -08001143 }
mtklein62bd1a62015-01-27 14:46:26 -08001144
mtkleincd50bca2016-01-05 06:20:20 -08001145 // We're likely switching threads here, so we must capture by value, [=] or [foo,bar].
Hal Canary0b833192017-03-14 14:35:02 -04001146 SkStreamAsset* data = stream.detachAsStream().release();
mtkleincd50bca2016-01-05 06:20:20 -08001147 gDefinitelyThreadSafeWork.add([task,name,bitmap,data]{
Ben Wagner145dbcd2016-11-03 14:40:50 -04001148 std::unique_ptr<SkStreamAsset> ownedData(data);
mtkleincd50bca2016-01-05 06:20:20 -08001149
Mike Kleine1271702019-03-07 11:46:59 -06001150 std::unique_ptr<HashAndEncode> hashAndEncode;
1151
mtkleincd50bca2016-01-05 06:20:20 -08001152 SkString md5;
Brian Osman57796b32019-01-25 18:02:59 +00001153 if (!FLAGS_writePath.isEmpty() || !FLAGS_readPath.isEmpty()) {
mtkleincd50bca2016-01-05 06:20:20 -08001154 SkMD5 hash;
1155 if (data->getLength()) {
1156 hash.writeStream(data, data->getLength());
1157 data->rewind();
mtklein38408462015-07-08 07:25:27 -07001158 } else {
Mike Kleine1271702019-03-07 11:46:59 -06001159 hashAndEncode.reset(new HashAndEncode(bitmap));
1160 hashAndEncode->write(&hash);
mtkleincd50bca2016-01-05 06:20:20 -08001161 }
Hal Canary0f2f5222019-04-03 10:13:45 -04001162 SkMD5::Digest digest = hash.finish();
mtkleincd50bca2016-01-05 06:20:20 -08001163 for (int i = 0; i < 16; i++) {
1164 md5.appendf("%02x", digest.data[i]);
mtklein38408462015-07-08 07:25:27 -07001165 }
mtklein62bd1a62015-01-27 14:46:26 -08001166 }
mtklein62bd1a62015-01-27 14:46:26 -08001167
Brian Osman57796b32019-01-25 18:02:59 +00001168 if (!FLAGS_readPath.isEmpty() &&
1169 !gGold.contains(Gold(task.sink.tag, task.src.tag,
1170 task.src.options, name, md5))) {
1171 fail(SkStringPrintf("%s not found for %s %s %s %s in %s",
1172 md5.c_str(),
1173 task.sink.tag.c_str(),
1174 task.src.tag.c_str(),
1175 task.src.options.c_str(),
1176 name.c_str(),
1177 FLAGS_readPath[0]));
1178 }
1179
mtkleincd50bca2016-01-05 06:20:20 -08001180 if (!FLAGS_writePath.isEmpty()) {
mtklein21eaf3b2016-02-08 12:39:59 -08001181 const char* ext = task.sink->fileExtension();
Brian Osmanf1942de2017-08-30 14:50:22 -04001182 if (ext && !FLAGS_dont_write.contains(ext)) {
Mike Klein97d6a7a2017-07-24 10:37:19 -04001183 if (data->getLength()) {
Mike Kleine1271702019-03-07 11:46:59 -06001184 WriteToDisk(task, md5, ext, data, data->getLength(), nullptr, nullptr);
Mike Klein97d6a7a2017-07-24 10:37:19 -04001185 SkASSERT(bitmap.drawsNothing());
1186 } else if (!bitmap.drawsNothing()) {
Mike Kleine1271702019-03-07 11:46:59 -06001187 WriteToDisk(task, md5, ext, nullptr, 0, &bitmap, hashAndEncode.get());
Mike Klein97d6a7a2017-07-24 10:37:19 -04001188 }
mtkleincd50bca2016-01-05 06:20:20 -08001189 }
1190 }
Brian Osman582f6862019-03-11 11:20:55 -04001191
1192 SkPixmap pm;
1193 if (FLAGS_checkF16 && bitmap.colorType() == kRGBA_F16Norm_SkColorType &&
1194 bitmap.peekPixels(&pm)) {
1195 bool unclamped = false;
1196 for (int y = 0; y < pm.height() && !unclamped; ++y)
1197 for (int x = 0; x < pm.width() && !unclamped; ++x) {
1198 Sk4f rgba = SkHalfToFloat_finite_ftz(*pm.addr64(x, y));
1199 float a = rgba[3];
1200 if (a > 1.0f || (rgba < 0.0f).anyTrue() || (rgba > a).anyTrue()) {
Brian Osmanb73e6072019-03-15 10:02:16 -04001201 SkDebugf("[%s] F16Norm pixel [%d, %d] unclamped: (%g, %g, %g, %g)\n",
1202 name.c_str(), x, y, rgba[0], rgba[1], rgba[2], rgba[3]);
Brian Osman582f6862019-03-11 11:20:55 -04001203 unclamped = true;
1204 }
1205 }
1206 }
mtkleincd50bca2016-01-05 06:20:20 -08001207 });
mtklein748ca3b2015-01-15 10:56:12 -08001208 }
mtklein3eed7dd2016-02-24 19:07:07 -08001209 done(task.sink.tag.c_str(), task.src.tag.c_str(), task.src.options.c_str(), name.c_str());
mtklein748ca3b2015-01-15 10:56:12 -08001210 }
1211
Mike Klein66f09a72019-02-12 13:03:54 -05001212 static SkString identify_gamut(SkColorSpace* cs) {
1213 if (!cs) {
1214 return SkString("untagged");
1215 }
1216
1217 skcms_Matrix3x3 gamut;
1218 if (cs->toXYZD50(&gamut)) {
1219 auto eq = [](skcms_Matrix3x3 x, skcms_Matrix3x3 y) {
1220 for (int i = 0; i < 3; i++)
1221 for (int j = 0; j < 3; j++) {
1222 if (x.vals[i][j] != y.vals[i][j]) { return false; }
1223 }
1224 return true;
1225 };
1226
1227 if (eq(gamut, SkNamedGamut::kSRGB )) { return SkString("sRGB"); }
1228 if (eq(gamut, SkNamedGamut::kAdobeRGB)) { return SkString("Adobe"); }
1229 if (eq(gamut, SkNamedGamut::kDCIP3 )) { return SkString("P3"); }
1230 if (eq(gamut, SkNamedGamut::kRec2020 )) { return SkString("2020"); }
1231 if (eq(gamut, SkNamedGamut::kXYZ )) { return SkString("XYZ"); }
1232 if (eq(gamut, gNarrow_toXYZD50 )) { return SkString("narrow"); }
1233 return SkString("other");
1234 }
1235 return SkString("non-XYZ");
1236 }
1237
1238 static SkString identify_transfer_fn(SkColorSpace* cs) {
1239 if (!cs) {
1240 return SkString("untagged");
1241 }
1242
1243 skcms_TransferFunction tf;
1244 if (cs->isNumericalTransferFn(&tf)) {
1245 auto eq = [](skcms_TransferFunction x, skcms_TransferFunction y) {
1246 return x.g == y.g
1247 && x.a == y.a
1248 && x.b == y.b
1249 && x.c == y.c
1250 && x.d == y.d
1251 && x.e == y.e
1252 && x.f == y.f;
1253 };
1254
1255 if (tf.a == 1 && tf.b == 0 && tf.c == 0 && tf.d == 0 && tf.e == 0 && tf.f == 0) {
1256 return SkStringPrintf("gamma %.3g", tf.g);
1257 }
Hal Canarybe67a172019-05-24 10:13:36 -04001258 if (eq(tf, SkNamedTransferFn::kSRGB )) { return SkString("sRGB"); }
1259 if (eq(tf, SkNamedTransferFn::kRec2020)) { return SkString("2020"); }
Mike Klein66f09a72019-02-12 13:03:54 -05001260 return SkStringPrintf("%.3g %.3g %.3g %.3g %.3g %.3g %.3g",
1261 tf.g, tf.a, tf.b, tf.c, tf.d, tf.e, tf.f);
1262 }
1263 return SkString("non-numeric");
1264 }
1265
mtklein748ca3b2015-01-15 10:56:12 -08001266 static void WriteToDisk(const Task& task,
mtklein62bd1a62015-01-27 14:46:26 -08001267 SkString md5,
1268 const char* ext,
mtklein748ca3b2015-01-15 10:56:12 -08001269 SkStream* data, size_t len,
Mike Kleine1271702019-03-07 11:46:59 -06001270 const SkBitmap* bitmap,
1271 const HashAndEncode* hashAndEncode) {
mtklein409d4702016-02-29 07:38:01 -08001272
mtklein748ca3b2015-01-15 10:56:12 -08001273 JsonWriter::BitmapResult result;
djsollen54416de2015-04-03 07:24:48 -07001274 result.name = task.src->name();
mtklein3eed7dd2016-02-24 19:07:07 -08001275 result.config = task.sink.tag;
djsollen54416de2015-04-03 07:24:48 -07001276 result.sourceType = task.src.tag;
1277 result.sourceOptions = task.src.options;
1278 result.ext = ext;
1279 result.md5 = md5;
Mike Klein0abbaca2019-03-06 09:57:49 -06001280 if (bitmap) {
Mike Klein98168782019-04-09 13:45:02 -05001281 result.gamut = identify_gamut (bitmap->colorSpace());
1282 result.transferFn = identify_transfer_fn (bitmap->colorSpace());
1283 result.colorType = ToolUtils::colortype_name (bitmap->colorType());
1284 result.alphaType = ToolUtils::alphatype_name (bitmap->alphaType());
1285 result.colorDepth = ToolUtils::colortype_depth(bitmap->colorType());
Mike Klein0abbaca2019-03-06 09:57:49 -06001286 }
mtklein748ca3b2015-01-15 10:56:12 -08001287 JsonWriter::AddBitmapResult(result);
1288
mtkleinb0531a72015-04-07 13:38:48 -07001289 // If an MD5 is uninteresting, we want it noted in the JSON file,
1290 // but don't want to dump it out as a .png (or whatever ext is).
1291 if (gUninterestingHashes.contains(md5)) {
1292 return;
1293 }
1294
mtklein748ca3b2015-01-15 10:56:12 -08001295 const char* dir = FLAGS_writePath[0];
Mike Kleinc6142d82019-03-25 10:54:59 -05001296 SkString resources = GetResourcePath();
mtklein748ca3b2015-01-15 10:56:12 -08001297 if (0 == strcmp(dir, "@")) { // Needed for iOS.
Mike Kleinc6142d82019-03-25 10:54:59 -05001298 dir = resources.c_str();
mtklein748ca3b2015-01-15 10:56:12 -08001299 }
1300 sk_mkdir(dir);
1301
1302 SkString path;
1303 if (FLAGS_nameByHash) {
1304 path = SkOSPath::Join(dir, result.md5.c_str());
1305 path.append(".");
1306 path.append(ext);
1307 if (sk_exists(path.c_str())) {
1308 return; // Content-addressed. If it exists already, we're done.
1309 }
1310 } else {
kkinnunen3e980c32015-12-23 01:33:00 -08001311 path = SkOSPath::Join(dir, task.sink.tag.c_str());
mtklein748ca3b2015-01-15 10:56:12 -08001312 sk_mkdir(path.c_str());
msarett9e707a02015-09-01 14:57:57 -07001313 path = SkOSPath::Join(path.c_str(), task.src.tag.c_str());
mtklein748ca3b2015-01-15 10:56:12 -08001314 sk_mkdir(path.c_str());
msarett9e707a02015-09-01 14:57:57 -07001315 if (strcmp(task.src.options.c_str(), "") != 0) {
1316 path = SkOSPath::Join(path.c_str(), task.src.options.c_str());
djsollen54416de2015-04-03 07:24:48 -07001317 sk_mkdir(path.c_str());
1318 }
mtklein748ca3b2015-01-15 10:56:12 -08001319 path = SkOSPath::Join(path.c_str(), task.src->name().c_str());
1320 path.append(".");
1321 path.append(ext);
1322 }
1323
mtklein748ca3b2015-01-15 10:56:12 -08001324 if (bitmap) {
Mike Kleine1271702019-03-07 11:46:59 -06001325 SkASSERT(hashAndEncode);
Mike Klein735c7ba2019-03-25 12:57:58 -05001326 if (!hashAndEncode->writePngTo(path.c_str(),
1327 result.md5.c_str(),
1328 FLAGS_key,
1329 FLAGS_properties)) {
mtklein748ca3b2015-01-15 10:56:12 -08001330 fail(SkStringPrintf("Can't encode PNG to %s.\n", path.c_str()));
1331 return;
1332 }
1333 } else {
mtkleina5114d72015-08-24 13:27:01 -07001334 SkFILEWStream file(path.c_str());
1335 if (!file.isValid()) {
1336 fail(SkStringPrintf("Can't open %s for writing.\n", path.c_str()));
1337 return;
1338 }
mtklein748ca3b2015-01-15 10:56:12 -08001339 if (!file.writeStream(data, len)) {
1340 fail(SkStringPrintf("Can't write to %s.\n", path.c_str()));
1341 return;
1342 }
1343 }
1344 }
1345};
1346
mtklein748ca3b2015-01-15 10:56:12 -08001347/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
1348
1349// Unit tests don't fit so well into the Src/Sink model, so we give them special treatment.
1350
mtklein21eaf3b2016-02-08 12:39:59 -08001351static SkTDArray<skiatest::Test> gParallelTests, gSerialTests;
mtklein748ca3b2015-01-15 10:56:12 -08001352
1353static void gather_tests() {
mtklein6c5fed22015-01-20 13:47:23 -08001354 if (!FLAGS_src.contains("tests")) {
mtklein748ca3b2015-01-15 10:56:12 -08001355 return;
1356 }
Hal Canary972eba32018-07-30 17:07:07 -04001357 for (const skiatest::Test& test : skiatest::TestRegistry::Range()) {
mtklein6393c062015-04-27 08:45:01 -07001358 if (!in_shard()) {
1359 continue;
1360 }
Mike Klein88544fb2019-03-20 10:50:33 -05001361 if (CommandLineFlags::ShouldSkip(FLAGS_match, test.name)) {
mtklein748ca3b2015-01-15 10:56:12 -08001362 continue;
1363 }
Brian Osmanc7ad40f2018-05-31 14:27:17 -04001364 if (test.needsGpu && FLAGS_gpu) {
Mike Reed5edcd312018-08-08 11:23:41 -04001365 (FLAGS_gpu_threading ? gParallelTests : gSerialTests).push_back(test);
halcanary87f3ba42015-01-20 09:30:20 -08001366 } else if (!test.needsGpu && FLAGS_cpu) {
Mike Reed5edcd312018-08-08 11:23:41 -04001367 gParallelTests.push_back(test);
mtklein82d28432015-01-15 12:46:02 -08001368 }
mtklein748ca3b2015-01-15 10:56:12 -08001369 }
1370}
1371
csmartdalton008b9d82017-02-22 12:00:42 -07001372static void run_test(skiatest::Test test, const GrContextOptions& grCtxOptions) {
halcanary87f3ba42015-01-20 09:30:20 -08001373 struct : public skiatest::Reporter {
mtklein36352bf2015-03-25 18:17:31 -07001374 void reportFailed(const skiatest::Failure& failure) override {
halcanary87f3ba42015-01-20 09:30:20 -08001375 fail(failure.toString());
halcanary87f3ba42015-01-20 09:30:20 -08001376 }
mtklein36352bf2015-03-25 18:17:31 -07001377 bool allowExtendedTest() const override {
halcanary87f3ba42015-01-20 09:30:20 -08001378 return FLAGS_pathOpsExtended;
1379 }
mtklein36352bf2015-03-25 18:17:31 -07001380 bool verbose() const override { return FLAGS_veryVerbose; }
halcanary87f3ba42015-01-20 09:30:20 -08001381 } reporter;
djsollen824996a2015-06-12 12:06:22 -07001382
mtklein3eed7dd2016-02-24 19:07:07 -08001383 if (!FLAGS_dryRun && !is_blacklisted("_", "tests", "_", test.name)) {
Jim Van Verth8a9a3712019-05-31 10:49:12 -04001384 AutoreleasePool pool;
Robert Phillipsec325342017-10-30 18:02:48 +00001385 GrContextOptions options = grCtxOptions;
1386 test.modifyGrContextOptions(&options);
1387
Brian Osmancdf31742019-03-13 10:13:46 -04001388 skiatest::ReporterContext ctx(&reporter, SkString(test.name));
mtklein21eaf3b2016-02-08 12:39:59 -08001389 start("unit", "test", "", test.name);
Brian Salomondcfca432017-11-15 15:48:03 -05001390 test.run(&reporter, options);
mtklein748ca3b2015-01-15 10:56:12 -08001391 }
mtklein3eed7dd2016-02-24 19:07:07 -08001392 done("unit", "test", "", test.name);
mtklein748ca3b2015-01-15 10:56:12 -08001393}
1394
1395/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
1396
Mike Kleinbe28ee22017-02-06 12:46:20 -05001397int main(int argc, char** argv) {
Brian Osman1c1208e2019-06-24 13:36:05 -04001398#if defined(__MSVC_RUNTIME_CHECKS)
1399 _RTC_SetErrorFunc(RuntimeCheckErrorFunc);
1400#endif
Dongwon Kang0c7861f2018-02-16 10:55:21 -08001401#if defined(SK_BUILD_FOR_ANDROID_FRAMEWORK) && defined(SK_HAS_HEIF_LIBRARY)
1402 android::ProcessState::self()->startThreadPool();
1403#endif
Mike Klein88544fb2019-03-20 10:50:33 -05001404 CommandLineFlags::Parse(argc, argv);
Brian Osman53136aa2017-07-20 15:43:35 -04001405
Brian Osmanbc8150f2017-07-24 11:38:01 -04001406 initializeEventTracingForTools();
Brian Osman53136aa2017-07-20 15:43:35 -04001407
Mike Klein6613cc52017-12-19 09:09:33 -05001408#if !defined(SK_BUILD_FOR_GOOGLE3) && defined(SK_BUILD_FOR_IOS)
Mike Kleinadacaef2017-02-06 09:26:14 -05001409 cd_Documents();
1410#endif
bsalomon71de3532016-04-26 14:27:21 -07001411 setbuf(stdout, nullptr);
mtklein246ba3a2016-02-23 10:39:36 -08001412 setup_crash_handler();
mtkleinafae30a2016-02-24 12:28:32 -08001413
Mike Klein19cc0f62019-03-22 15:30:07 -05001414 ToolUtils::SetDefaultFontMgr();
Mike Klein03fa5d42019-03-22 11:39:09 -05001415 SetAnalyticAAFromCommonFlags();
liyuqian38911a72016-10-04 11:23:22 -07001416
Mike Reed7c26ca72017-07-05 15:45:52 -04001417 if (FLAGS_forceRasterPipeline) {
1418 gSkForceRasterPipelineBlitter = true;
1419 }
Yuqian Li550148b2017-01-13 10:13:13 -05001420
Mike Kleine9f187b2017-06-26 13:23:12 -04001421 // The bots like having a verbose.log to upload, so always touch the file even if --verbose.
1422 if (!FLAGS_writePath.isEmpty()) {
mtklein51c8cfc2016-03-11 12:59:09 -08001423 sk_mkdir(FLAGS_writePath[0]);
mtkleina1ce2162016-07-22 12:23:46 -07001424 gVLog = fopen(SkOSPath::Join(FLAGS_writePath[0], "verbose.log").c_str(), "w");
mtkleinc41fd922016-03-08 09:01:39 -08001425 }
Mike Kleine9f187b2017-06-26 13:23:12 -04001426 if (FLAGS_verbose) {
1427 gVLog = stderr;
1428 }
mtkleinc41fd922016-03-08 09:01:39 -08001429
csmartdalton008b9d82017-02-22 12:00:42 -07001430 GrContextOptions grCtxOptions;
Chris Dalton040238b2017-12-18 14:22:34 -07001431 SetCtxOptionsFromCommonFlags(&grCtxOptions);
csmartdalton008b9d82017-02-22 12:00:42 -07001432
Mike Kleinc6142d82019-03-25 10:54:59 -05001433 dump_json(); // It's handy for the bots to assume this is ~never missing.
1434
commit-bot@chromium.org39e8d932014-05-29 20:14:48 +00001435 SkAutoGraphics ag;
mtklein406654b2014-09-03 15:34:37 -07001436 SkTaskGroup::Enabler enabled(FLAGS_threads);
commit-bot@chromium.orga65e2fd2014-05-30 17:23:31 +00001437
Mike Reed0933bc92017-12-09 01:27:41 +00001438 if (nullptr == GetResourceAsData("images/color_wheel.png")) {
1439 info("Some resources are missing. Do you need to set --resourcePath?\n");
halcanary7d571242016-02-24 17:59:16 -08001440 }
Brian Osman57796b32019-01-25 18:02:59 +00001441 gather_gold();
borenet09ed4802015-04-03 14:15:33 -07001442 gather_uninteresting_hashes();
mtklein62bd1a62015-01-27 14:46:26 -08001443
scroggo86737142016-02-03 12:19:11 -08001444 if (!gather_srcs()) {
1445 return 1;
1446 }
Ben Wagnerf28d4722017-08-11 17:33:22 -04001447 // TODO(dogben): This is a bit ugly. Find a cleaner way to do this.
1448 bool defaultConfigs = true;
1449 for (int i = 0; i < argc; i++) {
1450 static const char* kConfigArg = "--config";
1451 if (strcmp(argv[i], kConfigArg) == 0) {
1452 defaultConfigs = false;
1453 break;
1454 }
1455 }
1456 if (!gather_sinks(grCtxOptions, defaultConfigs)) {
brianosman05c987c2016-05-09 13:42:16 -07001457 return 1;
1458 }
mtklein748ca3b2015-01-15 10:56:12 -08001459 gather_tests();
mtklein21eaf3b2016-02-08 12:39:59 -08001460 gPending = gSrcs.count() * gSinks.count() + gParallelTests.count() + gSerialTests.count();
Brian Osmand0677bc2017-08-03 12:13:47 -04001461 info("%d srcs * %d sinks + %d tests == %d tasks\n",
mtkleinc41fd922016-03-08 09:01:39 -08001462 gSrcs.count(), gSinks.count(), gParallelTests.count() + gSerialTests.count(), gPending);
mtklein748ca3b2015-01-15 10:56:12 -08001463
mtklein21eaf3b2016-02-08 12:39:59 -08001464 // Kick off as much parallel work as we can, making note of any serial work we'll need to do.
1465 SkTaskGroup parallel;
1466 SkTArray<Task> serial;
1467
1468 for (auto& sink : gSinks)
1469 for (auto& src : gSrcs) {
mtklein3eed7dd2016-02-24 19:07:07 -08001470 if (src->veto(sink->flags()) ||
1471 is_blacklisted(sink.tag.c_str(), src.tag.c_str(),
1472 src.options.c_str(), src->name().c_str())) {
Herb Derbya1b7be62019-05-09 16:59:18 -04001473 SkAutoSpinlock lock(gMutex);
mtklein3eed7dd2016-02-24 19:07:07 -08001474 gPending--;
1475 continue;
1476 }
1477
mtklein21eaf3b2016-02-08 12:39:59 -08001478 Task task(src, sink);
1479 if (src->serial() || sink->serial()) {
1480 serial.push_back(task);
1481 } else {
1482 parallel.add([task] { Task::Run(task); });
mtklein748ca3b2015-01-15 10:56:12 -08001483 }
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +00001484 }
mtklein21eaf3b2016-02-08 12:39:59 -08001485 for (auto test : gParallelTests) {
csmartdalton008b9d82017-02-22 12:00:42 -07001486 parallel.add([test, grCtxOptions] { run_test(test, grCtxOptions); });
mtklein55e88b22015-01-21 15:50:13 -08001487 }
mtklein21eaf3b2016-02-08 12:39:59 -08001488
1489 // With the parallel work running, run serial tasks and tests here on main thread.
1490 for (auto task : serial) { Task::Run(task); }
csmartdalton008b9d82017-02-22 12:00:42 -07001491 for (auto test : gSerialTests) { run_test(test, grCtxOptions); }
mtklein21eaf3b2016-02-08 12:39:59 -08001492
1493 // Wait for any remaining parallel work to complete (including any spun off of serial tasks).
1494 parallel.wait();
mtkleincd50bca2016-01-05 06:20:20 -08001495 gDefinitelyThreadSafeWork.wait();
1496
Ben Wagner83c6b962018-07-10 19:40:15 -04001497 // At this point we're back in single-threaded land.
1498
mtkleinda884c42016-02-24 18:00:23 -08001499 // We'd better have run everything.
1500 SkASSERT(gPending == 0);
mtkleine027f172016-02-26 15:53:06 -08001501 // Make sure we've flushed all our results to disk.
Mike Kleinc6142d82019-03-25 10:54:59 -05001502 dump_json();
mtkleinda884c42016-02-24 18:00:23 -08001503
mtklein748ca3b2015-01-15 10:56:12 -08001504 if (gFailures.count() > 0) {
mtkleinc41fd922016-03-08 09:01:39 -08001505 info("Failures:\n");
mtklein748ca3b2015-01-15 10:56:12 -08001506 for (int i = 0; i < gFailures.count(); i++) {
mtkleinc41fd922016-03-08 09:01:39 -08001507 info("\t%s\n", gFailures[i].c_str());
mtklein748ca3b2015-01-15 10:56:12 -08001508 }
mtkleinc41fd922016-03-08 09:01:39 -08001509 info("%d failures\n", gFailures.count());
Kevin Lubick805c4e82019-03-20 09:46:09 -04001510 // A non-zero return code does not make it to Swarming
1511 // An abort does.
1512#ifdef SK_BUILD_FOR_IOS
Kevin Lubickc4fec062019-05-31 12:31:09 +00001513 SK_ABORT("There were failures!");
Kevin Lubick805c4e82019-03-20 09:46:09 -04001514#endif
mtklein748ca3b2015-01-15 10:56:12 -08001515 return 1;
mtklein114c3cd2015-01-15 10:15:02 -08001516 }
mtkleinafae30a2016-02-24 12:28:32 -08001517
Herb Derby5a523fe2017-01-26 16:48:28 -05001518 SkGraphics::PurgeAllCaches();
mtkleinc41fd922016-03-08 09:01:39 -08001519 info("Finished!\n");
Brian Osman53136aa2017-07-20 15:43:35 -04001520
mtklein748ca3b2015-01-15 10:56:12 -08001521 return 0;
mtklein@google.comd36522d2013-10-16 13:02:15 +00001522}