blob: 0ee436c7f468a72c34645ac23f3a1020d13d5467 [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
mtklein748ca3b2015-01-15 10:56:12 -08008#include "DMJsonWriter.h"
9#include "DMSrcSink.h"
mtklein748ca3b2015-01-15 10:56:12 -080010#include "ProcStats.h"
halcanary7d571242016-02-24 17:59:16 -080011#include "Resources.h"
mtklein748ca3b2015-01-15 10:56:12 -080012#include "SkBBHFactory.h"
mtklein62bd1a62015-01-27 14:46:26 -080013#include "SkChecksum.h"
Brian Osman53136aa2017-07-20 15:43:35 -040014#include "SkChromeTracingTracer.h"
scroggocc2feb12015-08-14 08:32:46 -070015#include "SkCodec.h"
mtklein27c3fdd2016-02-26 14:43:21 -080016#include "SkColorPriv.h"
msarett888dc162016-05-23 10:21:17 -070017#include "SkColorSpace.h"
Mike Klein919cc452017-03-18 15:36:52 +000018#include "SkColorSpacePriv.h"
caryclark17f0b6d2014-07-22 10:15:34 -070019#include "SkCommonFlags.h"
kkinnunen3e980c32015-12-23 01:33:00 -080020#include "SkCommonFlagsConfig.h"
Chris Dalton040238b2017-12-18 14:22:34 -070021#include "SkCommonFlagsGpu.h"
brianosman3c579dc2016-04-19 09:18:11 -070022#include "SkData.h"
Brian Salomondcbb9d92017-07-19 10:53:20 -040023#include "SkDebugfTracer.h"
Hal Canaryd7b38452017-12-11 17:46:26 -050024#include "SkDocument.h"
Brian Osman53136aa2017-07-20 15:43:35 -040025#include "SkEventTracingPriv.h"
caryclark83ca6282015-06-10 09:31:09 -070026#include "SkFontMgr.h"
Hal Canaryd7b38452017-12-11 17:46:26 -050027#include "SkFontMgrPriv.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000028#include "SkGraphics.h"
mtklein27c3fdd2016-02-26 14:43:21 -080029#include "SkHalf.h"
halcanary4dbbd042016-06-07 17:21:10 -070030#include "SkLeanWindows.h"
mtklein748ca3b2015-01-15 10:56:12 -080031#include "SkMD5.h"
mtklein1b249332015-07-07 12:21:21 -070032#include "SkMutex.h"
mtklein1d0f1642014-09-08 08:05:18 -070033#include "SkOSFile.h"
Ben Wagnerbf111d72016-11-07 18:05:29 -050034#include "SkOSPath.h"
mtklein27c3fdd2016-02-26 14:43:21 -080035#include "SkPM4fPriv.h"
Mike Klein13b6afd2017-06-12 12:45:41 -040036#include "SkPngEncoder.h"
Brian Salomondcbb9d92017-07-19 10:53:20 -040037#include "SkScan.h"
mtklein246ba3a2016-02-23 10:39:36 -080038#include "SkSpinlock.h"
Hal Canaryf4abda52018-08-06 19:29:43 +000039#include "SkTestFontMgr.h"
mtkleina82f5622015-02-20 12:30:19 -080040#include "SkTHash.h"
mtklein406654b2014-09-03 15:34:37 -070041#include "SkTaskGroup.h"
Mike Klein0c5fdcb2017-11-13 12:40:46 -050042#include "SkTypeface_win.h"
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +000043#include "Test.h"
mtklein748ca3b2015-01-15 10:56:12 -080044#include "Timer.h"
Mike Kleinadacaef2017-02-06 09:26:14 -050045#include "ios_utils.h"
brianosman3c579dc2016-04-19 09:18:11 -070046#include "picture_utils.h"
caryclark83ca6282015-06-10 09:31:09 -070047#include "sk_tool_utils.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000048
scroggo19b91532016-10-24 09:03:26 -070049#include <vector>
50
halcanary7a14b312015-10-01 07:28:13 -070051#ifdef SK_PDF_IMAGE_STATS
52extern void SkPDFImageDumpStats();
53#endif
54
mtkleina5114d72015-08-24 13:27:01 -070055#include "png.h"
56
bungeman60e0fee2015-08-26 05:15:46 -070057#include <stdlib.h>
58
Mike Klein8f11d4d2018-01-24 12:42:55 -050059#ifndef SK_BUILD_FOR_WIN
scroggo27a58342015-10-28 08:56:41 -070060 #include <unistd.h>
61#endif
62
Dongwon Kang0c7861f2018-02-16 10:55:21 -080063#if defined(SK_BUILD_FOR_ANDROID_FRAMEWORK) && defined(SK_HAS_HEIF_LIBRARY)
64#include <binder/IPCThreadState.h>
65#endif
66
Mike Reed7c26ca72017-07-05 15:45:52 -040067extern bool gSkForceRasterPipelineBlitter;
68
Ben Wagner32fa5102017-08-10 21:25:55 -040069DECLARE_bool(undefok);
djsollen54416de2015-04-03 07:24:48 -070070DEFINE_string(src, "tests gm skp image", "Source types to test.");
mtklein748ca3b2015-01-15 10:56:12 -080071DEFINE_bool(nameByHash, false,
72 "If true, write to FLAGS_writePath[0]/<hash>.png instead of "
djsollen54416de2015-04-03 07:24:48 -070073 "to FLAGS_writePath[0]/<config>/<sourceType>/<sourceOptions>/<name>.png");
mtklein748ca3b2015-01-15 10:56:12 -080074DEFINE_bool2(pathOpsExtended, x, false, "Run extended pathOps tests.");
mtkleind603b222015-02-17 11:13:33 -080075DEFINE_string(matrix, "1 0 0 1",
76 "2x2 scale+skew matrix to apply or upright when using "
77 "'matrix' or 'upright' in config.");
mtklein82d28432015-01-15 12:46:02 -080078DEFINE_bool(gpu_threading, false, "Allow GPU work to run on multiple threads?");
mtklein@google.comd36522d2013-10-16 13:02:15 +000079
mtkleina2ef6422015-01-15 13:44:22 -080080DEFINE_string(blacklist, "",
Chris Daltonecf78ac2017-08-15 15:43:08 -060081 "Space-separated config/src/srcOptions/name quadruples to blacklist. "
82 "'_' matches anything. '~' negates the match. E.g. \n"
djsollen54416de2015-04-03 07:24:48 -070083 "'--blacklist gpu skp _ _' will blacklist all SKPs drawn into the gpu config.\n"
Chris Daltonecf78ac2017-08-15 15:43:08 -060084 "'--blacklist gpu skp _ _ 8888 gm _ aarects' will also blacklist the aarects GM on 8888.\n"
85 "'--blacklist ~8888 svg _ svgparse_' blocks non-8888 SVGs that contain \"svgparse_\" in "
86 "the name.");
mtkleina2ef6422015-01-15 13:44:22 -080087
mtklein62bd1a62015-01-27 14:46:26 -080088DEFINE_string2(readPath, r, "", "If set check for equality with golden results in this directory.");
89
borenet09ed4802015-04-03 14:15:33 -070090DEFINE_string(uninterestingHashesFile, "",
91 "File containing a list of uninteresting hashes. If a result hashes to something in "
92 "this list, no image is written for that result.");
93
mtklein6393c062015-04-27 08:45:01 -070094DEFINE_int32(shards, 1, "We're splitting source data into this many shards.");
95DEFINE_int32(shard, 0, "Which shard do I run?");
96
halcanary45420a92016-06-02 12:41:14 -070097DEFINE_string(mskps, "", "Directory to read mskps from, or a single mskp file.");
Mike Reed7c26ca72017-07-05 15:45:52 -040098DEFINE_bool(forceRasterPipeline, false, "sets gSkForceRasterPipelineBlitter");
halcanary45420a92016-06-02 12:41:14 -070099
Derek Sollenbergeredfe3df2017-07-19 15:25:24 -0400100DEFINE_bool(ignoreSigInt, false, "ignore SIGINT signals during test execution");
101
Mike Klein97d6a7a2017-07-24 10:37:19 -0400102DEFINE_string(dont_write, "", "File extensions to skip writing to --writePath."); // See skia:6821
103
Mike Klein0c5fdcb2017-11-13 12:40:46 -0500104DEFINE_bool(gdi, false, "On Windows, use GDI instead of DirectWrite for font rendering.");
Mike Klein31868212017-11-06 12:02:47 -0500105
mtklein748ca3b2015-01-15 10:56:12 -0800106using namespace DM;
bsalomon3724e572016-03-30 18:56:19 -0700107using sk_gpu_test::GrContextFactory;
bsalomon273c0f52016-03-31 10:59:06 -0700108using sk_gpu_test::GLTestContext;
bsalomonf2f1c172016-04-05 12:59:06 -0700109using sk_gpu_test::ContextInfo;
mtklein@google.comd36522d2013-10-16 13:02:15 +0000110
mtklein748ca3b2015-01-15 10:56:12 -0800111/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
112
benjaminwagnerec4d4d72016-03-25 12:59:53 -0700113static const double kStartMs = SkTime::GetMSecs();
mtkleinc41fd922016-03-08 09:01:39 -0800114
115static FILE* gVLog;
116
117template <typename... Args>
118static void vlog(const char* fmt, Args&&... args) {
119 if (gVLog) {
Jim Van Verth32bbf372017-09-20 12:53:00 -0400120 char s[64];
121 HumanizeMs(s, 64, SkTime::GetMSecs() - kStartMs);
122 fprintf(gVLog, "%s\t", s);
mtkleinc41fd922016-03-08 09:01:39 -0800123 fprintf(gVLog, fmt, args...);
124 fflush(gVLog);
125 }
126}
127
128template <typename... Args>
129static void info(const char* fmt, Args&&... args) {
130 vlog(fmt, args...);
131 if (!FLAGS_quiet) {
132 printf(fmt, args...);
133 }
134}
135static void info(const char* fmt) {
136 if (!FLAGS_quiet) {
137 printf("%s", fmt); // Clang warns printf(fmt) is insecure.
138 }
139}
140
reed086eea92016-05-04 17:12:46 -0700141SK_DECLARE_STATIC_MUTEX(gFailuresMutex);
mtklein748ca3b2015-01-15 10:56:12 -0800142static SkTArray<SkString> gFailures;
143
mtklein3eed7dd2016-02-24 19:07:07 -0800144static void fail(const SkString& err) {
mtklein748ca3b2015-01-15 10:56:12 -0800145 SkAutoMutexAcquire lock(gFailuresMutex);
146 SkDebugf("\n\nFAILURE: %s\n\n", err.c_str());
147 gFailures.push_back(err);
halcanary9e398f72015-01-10 11:18:04 -0800148}
149
mtklein0f7748a2016-07-25 15:27:29 -0700150struct Running {
151 SkString id;
152 SkThreadID thread;
153
154 void dump() const {
155 info("\t%s\n", id.c_str());
156 }
157};
mtkleinb37cb412015-03-18 05:27:14 -0700158
mtklein246ba3a2016-02-23 10:39:36 -0800159// We use a spinlock to make locking this in a signal handler _somewhat_ safe.
Mike Klein03a95ad2017-06-23 12:36:32 -0400160static SkSpinlock gMutex;
161static int gPending;
mtklein0f7748a2016-07-25 15:27:29 -0700162static SkTArray<Running> gRunning;
mtklein748ca3b2015-01-15 10:56:12 -0800163
mtklein3eed7dd2016-02-24 19:07:07 -0800164static void done(const char* config, const char* src, const char* srcOptions, const char* name) {
165 SkString id = SkStringPrintf("%s %s %s %s", config, src, srcOptions, name);
mtkleinc41fd922016-03-08 09:01:39 -0800166 vlog("done %s\n", id.c_str());
mtkleinafae30a2016-02-24 12:28:32 -0800167 int pending;
mtkleinb37cb412015-03-18 05:27:14 -0700168 {
mtkleinf10637f2016-06-10 13:56:35 -0700169 SkAutoMutexAcquire lock(gMutex);
mtkleinb37cb412015-03-18 05:27:14 -0700170 for (int i = 0; i < gRunning.count(); i++) {
mtklein0f7748a2016-07-25 15:27:29 -0700171 if (gRunning[i].id == id) {
mtkleinb37cb412015-03-18 05:27:14 -0700172 gRunning.removeShuffle(i);
173 break;
174 }
175 }
mtkleinafae30a2016-02-24 12:28:32 -0800176 pending = --gPending;
reed50bc0512015-05-19 14:13:31 -0700177 }
Mike Klein03a95ad2017-06-23 12:36:32 -0400178
179 // We write out dm.json file and print out a progress update every once in a while.
180 // Notice this also handles the final dm.json and progress update when pending == 0.
mtkleina17241b2015-01-23 05:48:00 -0800181 if (pending % 500 == 0) {
182 JsonWriter::DumpJson();
Mike Klein03a95ad2017-06-23 12:36:32 -0400183
184 int curr = sk_tools::getCurrResidentSetSizeMB(),
185 peak = sk_tools::getMaxResidentSetSizeMB();
186 SkString elapsed = HumanizeMs(SkTime::GetMSecs() - kStartMs);
187
188 SkAutoMutexAcquire lock(gMutex);
189 info("\n%dMB RAM, %dMB peak, %s elapsed, %d queued, %d active:\n",
190 curr, peak, elapsed.c_str(), gPending - gRunning.count(), gRunning.count());
191 for (auto& task : gRunning) {
192 task.dump();
193 }
mtkleina17241b2015-01-23 05:48:00 -0800194 }
mtklein@google.comd36522d2013-10-16 13:02:15 +0000195}
196
mtklein3eed7dd2016-02-24 19:07:07 -0800197static void start(const char* config, const char* src, const char* srcOptions, const char* name) {
198 SkString id = SkStringPrintf("%s %s %s %s", config, src, srcOptions, name);
mtkleinc41fd922016-03-08 09:01:39 -0800199 vlog("start %s\n", id.c_str());
mtkleinf10637f2016-06-10 13:56:35 -0700200 SkAutoMutexAcquire lock(gMutex);
mtklein0f7748a2016-07-25 15:27:29 -0700201 gRunning.push_back({id,SkGetThreadID()});
mtkleinb37cb412015-03-18 05:27:14 -0700202}
203
Mike Klein3cc2d202016-10-24 11:39:43 -0400204static void find_culprit() {
205 // Assumes gMutex is locked.
206 SkThreadID thisThread = SkGetThreadID();
207 for (auto& task : gRunning) {
208 if (task.thread == thisThread) {
209 info("Likely culprit:\n");
210 task.dump();
mtklein0f7748a2016-07-25 15:27:29 -0700211 }
212 }
Mike Klein3cc2d202016-10-24 11:39:43 -0400213}
mtklein0f7748a2016-07-25 15:27:29 -0700214
Mike Klein8f11d4d2018-01-24 12:42:55 -0500215#if defined(SK_BUILD_FOR_WIN)
mtklein5b64dab2016-06-09 08:59:48 -0700216 static LONG WINAPI crash_handler(EXCEPTION_POINTERS* e) {
mtkleinf8557292016-02-29 06:35:28 -0800217 static const struct {
218 const char* name;
robertphillips75467862016-03-01 14:10:23 -0800219 DWORD code;
mtkleinf8557292016-02-29 06:35:28 -0800220 } kExceptions[] = {
221 #define _(E) {#E, E}
222 _(EXCEPTION_ACCESS_VIOLATION),
223 _(EXCEPTION_BREAKPOINT),
224 _(EXCEPTION_INT_DIVIDE_BY_ZERO),
225 _(EXCEPTION_STACK_OVERFLOW),
226 // TODO: more?
227 #undef _
228 };
229
mtkleinf10637f2016-06-10 13:56:35 -0700230 SkAutoMutexAcquire lock(gMutex);
mtklein5b64dab2016-06-09 08:59:48 -0700231
232 const DWORD code = e->ExceptionRecord->ExceptionCode;
233 info("\nCaught exception %u", code);
234 for (const auto& exception : kExceptions) {
235 if (exception.code == code) {
236 info(" %s", exception.name);
mtkleinf8557292016-02-29 06:35:28 -0800237 }
mtkleinf8557292016-02-29 06:35:28 -0800238 }
mtklein5b64dab2016-06-09 08:59:48 -0700239 info(", was running:\n");
240 for (auto& task : gRunning) {
mtklein0f7748a2016-07-25 15:27:29 -0700241 task.dump();
mtklein5b64dab2016-06-09 08:59:48 -0700242 }
mtklein0f7748a2016-07-25 15:27:29 -0700243 find_culprit();
mtklein5b64dab2016-06-09 08:59:48 -0700244 fflush(stdout);
245
mtkleinf8557292016-02-29 06:35:28 -0800246 // Execute default exception handler... hopefully, exit.
247 return EXCEPTION_EXECUTE_HANDLER;
mtklein246ba3a2016-02-23 10:39:36 -0800248 }
249
Mike Klein3cc2d202016-10-24 11:39:43 -0400250 static void setup_crash_handler() {
251 SetUnhandledExceptionFilter(crash_handler);
252 }
253#else
mtklein246ba3a2016-02-23 10:39:36 -0800254 #include <signal.h>
Mike Klein3cc2d202016-10-24 11:39:43 -0400255 #if !defined(SK_BUILD_FOR_ANDROID)
256 #include <execinfo.h>
Brian Salomondcbb9d92017-07-19 10:53:20 -0400257
258#endif
Mike Klein3cc2d202016-10-24 11:39:43 -0400259
260 static constexpr int max_of() { return 0; }
261 template <typename... Rest>
262 static constexpr int max_of(int x, Rest... rest) {
263 return x > max_of(rest...) ? x : max_of(rest...);
264 }
265
Mike Kleinc7278ad2018-02-15 09:26:54 -0500266 static void (*previous_handler[max_of(SIGABRT,SIGBUS,SIGFPE,SIGILL,SIGSEGV,SIGTERM)+1])(int);
mtkleinf8557292016-02-29 06:35:28 -0800267
mtklein5b64dab2016-06-09 08:59:48 -0700268 static void crash_handler(int sig) {
mtkleinf10637f2016-06-10 13:56:35 -0700269 SkAutoMutexAcquire lock(gMutex);
mtklein5b64dab2016-06-09 08:59:48 -0700270
Mike Klein701a3582018-06-28 14:08:19 +0000271 info("\nCaught signal %d [%s] (%dMB RAM, peak %dMB), was running:\n",
272 sig, strsignal(sig),
273 sk_tools::getCurrResidentSetSizeMB(), sk_tools::getMaxResidentSetSizeMB());
274
mtklein5b64dab2016-06-09 08:59:48 -0700275 for (auto& task : gRunning) {
mtklein0f7748a2016-07-25 15:27:29 -0700276 task.dump();
mtklein5b64dab2016-06-09 08:59:48 -0700277 }
mtklein0f7748a2016-07-25 15:27:29 -0700278 find_culprit();
mtklein5b64dab2016-06-09 08:59:48 -0700279
Mike Klein3cc2d202016-10-24 11:39:43 -0400280 #if !defined(SK_BUILD_FOR_ANDROID)
mtklein5b64dab2016-06-09 08:59:48 -0700281 void* stack[64];
282 int count = backtrace(stack, SK_ARRAY_COUNT(stack));
283 char** symbols = backtrace_symbols(stack, count);
284 info("\nStack trace:\n");
285 for (int i = 0; i < count; i++) {
286 info(" %s\n", symbols[i]);
287 }
Mike Klein3cc2d202016-10-24 11:39:43 -0400288 #endif
mtklein5b64dab2016-06-09 08:59:48 -0700289 fflush(stdout);
290
Mike Klein3cc2d202016-10-24 11:39:43 -0400291 signal(sig, previous_handler[sig]);
292 raise(sig);
mtklein5b64dab2016-06-09 08:59:48 -0700293 }
294
mtklein246ba3a2016-02-23 10:39:36 -0800295 static void setup_crash_handler() {
Mike Klein701a3582018-06-28 14:08:19 +0000296 const int kSignals[] = { SIGABRT, SIGBUS, SIGFPE, SIGILL, SIGINT, SIGSEGV, SIGTERM };
mtklein246ba3a2016-02-23 10:39:36 -0800297 for (int sig : kSignals) {
Mike Klein3cc2d202016-10-24 11:39:43 -0400298 previous_handler[sig] = signal(sig, crash_handler);
mtklein246ba3a2016-02-23 10:39:36 -0800299 }
Derek Sollenbergeredfe3df2017-07-19 15:25:24 -0400300
301 if (FLAGS_ignoreSigInt) {
302 signal(SIGINT, SIG_IGN);
303 }
mtklein246ba3a2016-02-23 10:39:36 -0800304 }
305#endif
306
mtklein748ca3b2015-01-15 10:56:12 -0800307/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
mtklein114c3cd2015-01-15 10:15:02 -0800308
mtklein62bd1a62015-01-27 14:46:26 -0800309struct Gold : public SkString {
mtkleina82f5622015-02-20 12:30:19 -0800310 Gold() : SkString("") {}
mtklein3eed7dd2016-02-24 19:07:07 -0800311 Gold(const SkString& sink, const SkString& src,
312 const SkString& srcOptions, const SkString& name,
313 const SkString& md5)
mtklein62bd1a62015-01-27 14:46:26 -0800314 : SkString("") {
315 this->append(sink);
316 this->append(src);
djsollen54416de2015-04-03 07:24:48 -0700317 this->append(srcOptions);
mtklein62bd1a62015-01-27 14:46:26 -0800318 this->append(name);
319 this->append(md5);
mtklein62bd1a62015-01-27 14:46:26 -0800320 }
mtkleinc8d1dd42015-10-15 12:23:01 -0700321 struct Hash {
322 uint32_t operator()(const Gold& g) const {
323 return SkGoodHash()((const SkString&)g);
324 }
325 };
mtklein62bd1a62015-01-27 14:46:26 -0800326};
mtkleina82f5622015-02-20 12:30:19 -0800327static SkTHashSet<Gold, Gold::Hash> gGold;
mtklein62bd1a62015-01-27 14:46:26 -0800328
329static void add_gold(JsonWriter::BitmapResult r) {
djsollen54416de2015-04-03 07:24:48 -0700330 gGold.add(Gold(r.config, r.sourceType, r.sourceOptions, r.name, r.md5));
mtklein62bd1a62015-01-27 14:46:26 -0800331}
332
333static void gather_gold() {
334 if (!FLAGS_readPath.isEmpty()) {
335 SkString path(FLAGS_readPath[0]);
336 path.append("/dm.json");
337 if (!JsonWriter::ReadJson(path.c_str(), add_gold)) {
338 fail(SkStringPrintf("Couldn't read %s for golden results.", path.c_str()));
339 }
340 }
341}
342
343/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
344
Mike Klein8f11d4d2018-01-24 12:42:55 -0500345#if defined(SK_BUILD_FOR_WIN)
mtklein935f1b12016-03-16 08:37:19 -0700346 static const char* kNewline = "\r\n";
347#else
348 static const char* kNewline = "\n";
349#endif
350
borenet09ed4802015-04-03 14:15:33 -0700351static SkTHashSet<SkString> gUninterestingHashes;
352
353static void gather_uninteresting_hashes() {
354 if (!FLAGS_uninterestingHashesFile.isEmpty()) {
bungeman38d909e2016-08-02 14:40:46 -0700355 sk_sp<SkData> data(SkData::MakeFromFileName(FLAGS_uninterestingHashesFile[0]));
mtkleincc334b32015-09-22 11:43:53 -0700356 if (!data) {
mtkleinc41fd922016-03-08 09:01:39 -0800357 info("WARNING: unable to read uninteresting hashes from %s\n",
358 FLAGS_uninterestingHashesFile[0]);
mtkleincc334b32015-09-22 11:43:53 -0700359 return;
360 }
Mike Klein45dcc0c2017-04-05 18:04:31 -0400361
362 // Copy to a string to make sure SkStrSplit has a terminating \0 to find.
363 SkString contents((const char*)data->data(), data->size());
364
borenet09ed4802015-04-03 14:15:33 -0700365 SkTArray<SkString> hashes;
Mike Klein45dcc0c2017-04-05 18:04:31 -0400366 SkStrSplit(contents.c_str(), kNewline, &hashes);
borenet09ed4802015-04-03 14:15:33 -0700367 for (const SkString& hash : hashes) {
368 gUninterestingHashes.add(hash);
369 }
mtkleinc41fd922016-03-08 09:01:39 -0800370 info("FYI: loaded %d distinct uninteresting hashes from %d lines\n",
371 gUninterestingHashes.count(), hashes.count());
borenet09ed4802015-04-03 14:15:33 -0700372 }
373}
374
375/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
376
Ben Wagner145dbcd2016-11-03 14:40:50 -0400377struct TaggedSrc : public std::unique_ptr<Src> {
mtklein3eed7dd2016-02-24 19:07:07 -0800378 SkString tag;
379 SkString options;
mtkleine0effd62015-07-29 06:37:28 -0700380};
381
Ben Wagner145dbcd2016-11-03 14:40:50 -0400382struct TaggedSink : public std::unique_ptr<Sink> {
kkinnunen3e980c32015-12-23 01:33:00 -0800383 SkString tag;
djsollen54416de2015-04-03 07:24:48 -0700384};
mtklein748ca3b2015-01-15 10:56:12 -0800385
386static const bool kMemcpyOK = true;
387
mtkleine0effd62015-07-29 06:37:28 -0700388static SkTArray<TaggedSrc, kMemcpyOK> gSrcs;
389static SkTArray<TaggedSink, kMemcpyOK> gSinks;
mtklein748ca3b2015-01-15 10:56:12 -0800390
mtklein6393c062015-04-27 08:45:01 -0700391static bool in_shard() {
392 static int N = 0;
393 return N++ % FLAGS_shards == FLAGS_shard;
394}
395
mtklein3eed7dd2016-02-24 19:07:07 -0800396static void push_src(const char* tag, ImplicitString options, Src* s) {
Ben Wagner145dbcd2016-11-03 14:40:50 -0400397 std::unique_ptr<Src> src(s);
mtklein6393c062015-04-27 08:45:01 -0700398 if (in_shard() &&
mtklein3eed7dd2016-02-24 19:07:07 -0800399 FLAGS_src.contains(tag) &&
mtklein748ca3b2015-01-15 10:56:12 -0800400 !SkCommandLineFlags::ShouldSkip(FLAGS_match, src->name().c_str())) {
mtkleine0effd62015-07-29 06:37:28 -0700401 TaggedSrc& s = gSrcs.push_back();
mtklein18300a32016-03-16 13:53:35 -0700402 s.reset(src.release());
mtklein748ca3b2015-01-15 10:56:12 -0800403 s.tag = tag;
djsollen54416de2015-04-03 07:24:48 -0700404 s.options = options;
mtklein114c3cd2015-01-15 10:15:02 -0800405 }
mtklein748ca3b2015-01-15 10:56:12 -0800406}
mtklein114c3cd2015-01-15 10:15:02 -0800407
msarett9e707a02015-09-01 14:57:57 -0700408static void push_codec_src(Path path, CodecSrc::Mode mode, CodecSrc::DstColorType dstColorType,
scroggoc5560be2016-02-03 09:42:42 -0800409 SkAlphaType dstAlphaType, float scale) {
scroggoe4499842016-02-25 11:03:47 -0800410 if (FLAGS_simpleCodec) {
scroggo19b91532016-10-24 09:03:26 -0700411 const bool simple = CodecSrc::kCodec_Mode == mode || CodecSrc::kAnimated_Mode == mode;
412 if (!simple || dstColorType != CodecSrc::kGetFromCanvas_DstColorType || scale != 1.0f) {
scroggoe4499842016-02-25 11:03:47 -0800413 // Only decode in the simple case.
414 return;
scroggo19b91532016-10-24 09:03:26 -0700415 }
scroggoe4499842016-02-25 11:03:47 -0800416 }
msarett9e707a02015-09-01 14:57:57 -0700417 SkString folder;
418 switch (mode) {
419 case CodecSrc::kCodec_Mode:
420 folder.append("codec");
421 break;
msarettbb25b532016-01-13 09:31:39 -0800422 case CodecSrc::kCodecZeroInit_Mode:
423 folder.append("codec_zero_init");
424 break;
msarett9e707a02015-09-01 14:57:57 -0700425 case CodecSrc::kScanline_Mode:
426 folder.append("scanline");
427 break;
msarett9e707a02015-09-01 14:57:57 -0700428 case CodecSrc::kStripe_Mode:
429 folder.append("stripe");
430 break;
msarett91c22b22016-02-22 12:27:46 -0800431 case CodecSrc::kCroppedScanline_Mode:
432 folder.append("crop");
433 break;
msarett9e707a02015-09-01 14:57:57 -0700434 case CodecSrc::kSubset_Mode:
msarett36c37962015-09-02 13:20:52 -0700435 folder.append("codec_subset");
msarett9e707a02015-09-01 14:57:57 -0700436 break;
scroggo19b91532016-10-24 09:03:26 -0700437 case CodecSrc::kAnimated_Mode:
438 folder.append("codec_animated");
439 break;
msarett9e707a02015-09-01 14:57:57 -0700440 }
441
442 switch (dstColorType) {
443 case CodecSrc::kGrayscale_Always_DstColorType:
444 folder.append("_kGray8");
445 break;
msarett34e0ec42016-04-22 16:27:24 -0700446 case CodecSrc::kNonNative8888_Always_DstColorType:
447 folder.append("_kNonNative");
448 break;
msarett9e707a02015-09-01 14:57:57 -0700449 default:
450 break;
451 }
452
scroggoc5560be2016-02-03 09:42:42 -0800453 switch (dstAlphaType) {
scroggoc5560be2016-02-03 09:42:42 -0800454 case kPremul_SkAlphaType:
455 folder.append("_premul");
456 break;
457 case kUnpremul_SkAlphaType:
458 folder.append("_unpremul");
459 break;
460 default:
461 break;
462 }
463
msarett9e707a02015-09-01 14:57:57 -0700464 if (1.0f != scale) {
465 folder.appendf("_%.3f", scale);
466 }
467
scroggoc5560be2016-02-03 09:42:42 -0800468 CodecSrc* src = new CodecSrc(path, mode, dstColorType, dstAlphaType, scale);
msarett9e707a02015-09-01 14:57:57 -0700469 push_src("image", folder, src);
470}
471
scroggof8dc9df2016-05-16 09:04:13 -0700472static void push_android_codec_src(Path path, CodecSrc::DstColorType dstColorType,
473 SkAlphaType dstAlphaType, int sampleSize) {
msarett3d9d7a72015-10-21 10:27:10 -0700474 SkString folder;
scroggof8dc9df2016-05-16 09:04:13 -0700475 folder.append("scaled_codec");
msarett3d9d7a72015-10-21 10:27:10 -0700476
477 switch (dstColorType) {
478 case CodecSrc::kGrayscale_Always_DstColorType:
479 folder.append("_kGray8");
480 break;
msarett34e0ec42016-04-22 16:27:24 -0700481 case CodecSrc::kNonNative8888_Always_DstColorType:
482 folder.append("_kNonNative");
483 break;
msarett3d9d7a72015-10-21 10:27:10 -0700484 default:
485 break;
486 }
487
scroggoc5560be2016-02-03 09:42:42 -0800488 switch (dstAlphaType) {
scroggoc5560be2016-02-03 09:42:42 -0800489 case kPremul_SkAlphaType:
490 folder.append("_premul");
491 break;
msarett9e9444c2016-02-03 12:39:10 -0800492 case kUnpremul_SkAlphaType:
493 folder.append("_unpremul");
494 break;
scroggoc5560be2016-02-03 09:42:42 -0800495 default:
496 break;
497 }
498
msarett3d9d7a72015-10-21 10:27:10 -0700499 if (1 != sampleSize) {
msarett4b0778e2015-11-13 09:59:11 -0800500 folder.appendf("_%.3f", 1.0f / (float) sampleSize);
msarett3d9d7a72015-10-21 10:27:10 -0700501 }
502
scroggof8dc9df2016-05-16 09:04:13 -0700503 AndroidCodecSrc* src = new AndroidCodecSrc(path, dstColorType, dstAlphaType, sampleSize);
msarett3d9d7a72015-10-21 10:27:10 -0700504 push_src("image", folder, src);
505}
506
msarett18976312016-03-09 14:20:58 -0800507static void push_image_gen_src(Path path, ImageGenSrc::Mode mode, SkAlphaType alphaType, bool isGpu)
508{
509 SkString folder;
510 switch (mode) {
511 case ImageGenSrc::kCodec_Mode:
512 folder.append("gen_codec");
513 break;
514 case ImageGenSrc::kPlatform_Mode:
515 folder.append("gen_platform");
516 break;
517 }
518
519 if (isGpu) {
520 folder.append("_gpu");
521 } else {
522 switch (alphaType) {
523 case kOpaque_SkAlphaType:
524 folder.append("_opaque");
525 break;
526 case kPremul_SkAlphaType:
527 folder.append("_premul");
528 break;
529 case kUnpremul_SkAlphaType:
530 folder.append("_unpremul");
531 break;
532 default:
533 break;
534 }
535 }
536
537 ImageGenSrc* src = new ImageGenSrc(path, mode, alphaType, isGpu);
538 push_src("image", folder, src);
539}
540
Leon Scroggins III07418182017-08-15 12:24:02 -0400541static void push_brd_src(Path path, CodecSrc::DstColorType dstColorType, BRDSrc::Mode mode,
542 uint32_t sampleSize) {
543 SkString folder("brd_android_codec");
544 switch (mode) {
545 case BRDSrc::kFullImage_Mode:
546 break;
547 case BRDSrc::kDivisor_Mode:
548 folder.append("_divisor");
549 break;
550 default:
551 SkASSERT(false);
552 return;
553 }
554
555 switch (dstColorType) {
556 case CodecSrc::kGetFromCanvas_DstColorType:
557 break;
558 case CodecSrc::kGrayscale_Always_DstColorType:
559 folder.append("_kGray");
560 break;
561 default:
562 SkASSERT(false);
563 return;
564 }
565
566 if (1 != sampleSize) {
567 folder.appendf("_%.3f", 1.0f / (float) sampleSize);
568 }
569
570 BRDSrc* src = new BRDSrc(path, mode, dstColorType, sampleSize);
571 push_src("image", folder, src);
572}
573
574static void push_brd_srcs(Path path, bool gray) {
575 if (gray) {
576 // Only run grayscale to one sampleSize and Mode. Though interesting
577 // to test grayscale, it should not reveal anything across various
578 // sampleSizes and Modes
579 // Arbitrarily choose Mode and sampleSize.
580 push_brd_src(path, CodecSrc::kGrayscale_Always_DstColorType,
581 BRDSrc::kFullImage_Mode, 2);
582 }
583
584 // Test on a variety of sampleSizes, making sure to include:
585 // - 2, 4, and 8, which are natively supported by jpeg
586 // - multiples of 2 which are not divisible by 4 (analogous for 4)
587 // - larger powers of two, since BRD clients generally use powers of 2
588 // We will only produce output for the larger sizes on large images.
589 const uint32_t sampleSizes[] = { 1, 2, 3, 4, 5, 6, 7, 8, 12, 16, 24, 32, 64 };
590
591 const BRDSrc::Mode modes[] = { BRDSrc::kFullImage_Mode, BRDSrc::kDivisor_Mode, };
592
593 for (uint32_t sampleSize : sampleSizes) {
594 for (BRDSrc::Mode mode : modes) {
595 push_brd_src(path, CodecSrc::kGetFromCanvas_DstColorType, mode, sampleSize);
596 }
597 }
598}
599
msarett438b2ad2015-04-09 12:43:10 -0700600static void push_codec_srcs(Path path) {
bungeman38d909e2016-08-02 14:40:46 -0700601 sk_sp<SkData> encoded(SkData::MakeFromFileName(path.c_str()));
msarett438b2ad2015-04-09 12:43:10 -0700602 if (!encoded) {
mtkleinc41fd922016-03-08 09:01:39 -0800603 info("Couldn't read %s.", path.c_str());
msarett438b2ad2015-04-09 12:43:10 -0700604 return;
605 }
Mike Reedede7bac2017-07-23 15:30:02 -0400606 std::unique_ptr<SkCodec> codec = SkCodec::MakeFromData(encoded);
halcanary96fcdcc2015-08-27 07:41:13 -0700607 if (nullptr == codec.get()) {
mtkleinc41fd922016-03-08 09:01:39 -0800608 info("Couldn't create codec for %s.", path.c_str());
msarett438b2ad2015-04-09 12:43:10 -0700609 return;
610 }
611
scroggo9366aff2016-05-20 08:38:54 -0700612 // native scaling is only supported by WEBP and JPEG
613 bool supportsNativeScaling = false;
msarett438b2ad2015-04-09 12:43:10 -0700614
msarett91c22b22016-02-22 12:27:46 -0800615 SkTArray<CodecSrc::Mode> nativeModes;
616 nativeModes.push_back(CodecSrc::kCodec_Mode);
617 nativeModes.push_back(CodecSrc::kCodecZeroInit_Mode);
msarett91c22b22016-02-22 12:27:46 -0800618 switch (codec->getEncodedFormat()) {
Hal Canarydb683012016-11-23 08:55:18 -0700619 case SkEncodedImageFormat::kJPEG:
msarett91c22b22016-02-22 12:27:46 -0800620 nativeModes.push_back(CodecSrc::kScanline_Mode);
621 nativeModes.push_back(CodecSrc::kStripe_Mode);
622 nativeModes.push_back(CodecSrc::kCroppedScanline_Mode);
scroggo9366aff2016-05-20 08:38:54 -0700623 supportsNativeScaling = true;
msarett91c22b22016-02-22 12:27:46 -0800624 break;
Hal Canarydb683012016-11-23 08:55:18 -0700625 case SkEncodedImageFormat::kWEBP:
msarett91c22b22016-02-22 12:27:46 -0800626 nativeModes.push_back(CodecSrc::kSubset_Mode);
scroggo9366aff2016-05-20 08:38:54 -0700627 supportsNativeScaling = true;
msarett91c22b22016-02-22 12:27:46 -0800628 break;
Hal Canarydb683012016-11-23 08:55:18 -0700629 case SkEncodedImageFormat::kDNG:
msarettb65e6042016-02-23 05:37:25 -0800630 break;
msarett91c22b22016-02-22 12:27:46 -0800631 default:
632 nativeModes.push_back(CodecSrc::kScanline_Mode);
msarett91c22b22016-02-22 12:27:46 -0800633 break;
634 }
msarett9e707a02015-09-01 14:57:57 -0700635
msarett91c22b22016-02-22 12:27:46 -0800636 SkTArray<CodecSrc::DstColorType> colorTypes;
637 colorTypes.push_back(CodecSrc::kGetFromCanvas_DstColorType);
msarett34e0ec42016-04-22 16:27:24 -0700638 colorTypes.push_back(CodecSrc::kNonNative8888_Always_DstColorType);
msarett36c37962015-09-02 13:20:52 -0700639 switch (codec->getInfo().colorType()) {
640 case kGray_8_SkColorType:
msarett91c22b22016-02-22 12:27:46 -0800641 colorTypes.push_back(CodecSrc::kGrayscale_Always_DstColorType);
msarett36c37962015-09-02 13:20:52 -0700642 break;
643 default:
msarett36c37962015-09-02 13:20:52 -0700644 break;
645 }
msarett9e707a02015-09-01 14:57:57 -0700646
scroggoc5560be2016-02-03 09:42:42 -0800647 SkTArray<SkAlphaType> alphaModes;
648 alphaModes.push_back(kPremul_SkAlphaType);
scroggof2c96a22016-05-20 11:08:27 -0700649 if (codec->getInfo().alphaType() != kOpaque_SkAlphaType) {
650 alphaModes.push_back(kUnpremul_SkAlphaType);
scroggoc5560be2016-02-03 09:42:42 -0800651 }
msarettb714fb02016-01-22 14:46:42 -0800652
653 for (CodecSrc::Mode mode : nativeModes) {
scroggo9366aff2016-05-20 08:38:54 -0700654 for (CodecSrc::DstColorType colorType : colorTypes) {
655 for (SkAlphaType alphaType : alphaModes) {
scroggof2c96a22016-05-20 11:08:27 -0700656 // Only test kCroppedScanline_Mode when the alpha type is premul. The test is
scroggo9366aff2016-05-20 08:38:54 -0700657 // slow and won't be interestingly different with different alpha types.
658 if (CodecSrc::kCroppedScanline_Mode == mode &&
scroggof2c96a22016-05-20 11:08:27 -0700659 kPremul_SkAlphaType != alphaType) {
scroggo9366aff2016-05-20 08:38:54 -0700660 continue;
661 }
msarett91c22b22016-02-22 12:27:46 -0800662
scroggo9366aff2016-05-20 08:38:54 -0700663 push_codec_src(path, mode, colorType, alphaType, 1.0f);
msarettf3dc1882016-04-26 13:06:38 -0700664
scroggo9366aff2016-05-20 08:38:54 -0700665 // Skip kNonNative on different native scales. It won't be interestingly
666 // different.
667 if (supportsNativeScaling &&
668 CodecSrc::kNonNative8888_Always_DstColorType == colorType) {
669 // Native Scales
670 // SkJpegCodec natively supports scaling to the following:
671 for (auto scale : { 0.125f, 0.25f, 0.375f, 0.5f, 0.625f, 0.750f, 0.875f }) {
672 push_codec_src(path, mode, colorType, alphaType, scale);
673 }
scroggoc5560be2016-02-03 09:42:42 -0800674 }
msarett9e707a02015-09-01 14:57:57 -0700675 }
676 }
msarett0a242972015-06-11 14:27:27 -0700677 }
msarett36c37962015-09-02 13:20:52 -0700678
scroggo19b91532016-10-24 09:03:26 -0700679 {
680 std::vector<SkCodec::FrameInfo> frameInfos = codec->getFrameInfo();
681 if (frameInfos.size() > 1) {
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400682 for (auto dstCT : { CodecSrc::kNonNative8888_Always_DstColorType,
683 CodecSrc::kGetFromCanvas_DstColorType }) {
684 for (auto at : { kUnpremul_SkAlphaType, kPremul_SkAlphaType }) {
685 push_codec_src(path, CodecSrc::kAnimated_Mode, dstCT, at, 1.0f);
686 }
687 }
scroggo19b91532016-10-24 09:03:26 -0700688 }
689
690 }
691
scroggoe4499842016-02-25 11:03:47 -0800692 if (FLAGS_simpleCodec) {
693 return;
694 }
695
msarett3d9d7a72015-10-21 10:27:10 -0700696 const int sampleSizes[] = { 1, 2, 3, 4, 5, 6, 7, 8 };
msarett36c37962015-09-02 13:20:52 -0700697
msarett3d9d7a72015-10-21 10:27:10 -0700698 for (int sampleSize : sampleSizes) {
msarett91c22b22016-02-22 12:27:46 -0800699 for (CodecSrc::DstColorType colorType : colorTypes) {
scroggoc5560be2016-02-03 09:42:42 -0800700 for (SkAlphaType alphaType : alphaModes) {
msarettf3dc1882016-04-26 13:06:38 -0700701 // We can exercise all of the kNonNative support code in the swizzler with just a
702 // few sample sizes. Skip the rest.
703 if (CodecSrc::kNonNative8888_Always_DstColorType == colorType && sampleSize > 3) {
704 continue;
705 }
706
scroggof8dc9df2016-05-16 09:04:13 -0700707 push_android_codec_src(path, colorType, alphaType, sampleSize);
msarett3d9d7a72015-10-21 10:27:10 -0700708 }
msarett36c37962015-09-02 13:20:52 -0700709 }
710 }
msarett18976312016-03-09 14:20:58 -0800711
Leon Scroggins III07418182017-08-15 12:24:02 -0400712 const char* ext = strrchr(path.c_str(), '.');
713 if (ext) {
714 ext++;
msarett18976312016-03-09 14:20:58 -0800715
Leon Scroggins III07418182017-08-15 12:24:02 -0400716 static const char* const rawExts[] = {
717 "arw", "cr2", "dng", "nef", "nrw", "orf", "raf", "rw2", "pef", "srw",
718 "ARW", "CR2", "DNG", "NEF", "NRW", "ORF", "RAF", "RW2", "PEF", "SRW",
719 };
720 for (const char* rawExt : rawExts) {
721 if (0 == strcmp(rawExt, ext)) {
722 // RAW is not supported by image generator (skbug.com/5079) or BRD.
723 return;
724 }
725 }
726
727 static const char* const brdExts[] = {
728 "jpg", "jpeg", "png", "webp",
729 "JPG", "JPEG", "PNG", "WEBP",
730 };
731 for (const char* brdExt : brdExts) {
732 if (0 == strcmp(brdExt, ext)) {
Leon Scroggins IIIc8037dc2017-12-05 13:55:24 -0500733 bool gray = codec->getInfo().colorType() == kGray_8_SkColorType;
Leon Scroggins III07418182017-08-15 12:24:02 -0400734 push_brd_srcs(path, gray);
735 break;
736 }
msarett18976312016-03-09 14:20:58 -0800737 }
738 }
739
740 // Push image generator GPU test.
brianosmanc9ced392016-03-24 07:27:43 -0700741 push_image_gen_src(path, ImageGenSrc::kCodec_Mode, codec->getInfo().alphaType(), true);
msarett18976312016-03-09 14:20:58 -0800742
743 // Push image generator CPU tests.
744 for (SkAlphaType alphaType : alphaModes) {
745 push_image_gen_src(path, ImageGenSrc::kCodec_Mode, alphaType, false);
746
747#if defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_IOS)
Hal Canarydb683012016-11-23 08:55:18 -0700748 if (SkEncodedImageFormat::kWEBP != codec->getEncodedFormat() &&
749 SkEncodedImageFormat::kWBMP != codec->getEncodedFormat() &&
msarett18976312016-03-09 14:20:58 -0800750 kUnpremul_SkAlphaType != alphaType)
751 {
752 push_image_gen_src(path, ImageGenSrc::kPlatform_Mode, alphaType, false);
753 }
msarettfc0b6d12016-03-17 13:50:17 -0700754#elif defined(SK_BUILD_FOR_WIN)
Hal Canarydb683012016-11-23 08:55:18 -0700755 if (SkEncodedImageFormat::kWEBP != codec->getEncodedFormat() &&
756 SkEncodedImageFormat::kWBMP != codec->getEncodedFormat())
msarettfc0b6d12016-03-17 13:50:17 -0700757 {
758 push_image_gen_src(path, ImageGenSrc::kPlatform_Mode, alphaType, false);
759 }
msarett18976312016-03-09 14:20:58 -0800760#endif
761 }
msarett438b2ad2015-04-09 12:43:10 -0700762}
763
fmalitaa2b9fdf2016-08-03 19:53:36 -0700764template <typename T>
Florin Malitaf1ba3ae2018-07-19 15:09:11 -0400765void gather_file_srcs(const SkCommandLineFlags::StringArray& flags, const char* ext,
766 const char* src_name = nullptr) {
767 if (!src_name) {
768 // With the exception of Lottie files, the source name is the extension.
769 src_name = ext;
770 }
771
fmalitaa2b9fdf2016-08-03 19:53:36 -0700772 for (int i = 0; i < flags.count(); i++) {
773 const char* path = flags[i];
774 if (sk_isdir(path)) {
775 SkOSFile::Iter it(path, ext);
776 for (SkString file; it.next(&file); ) {
Florin Malitaf1ba3ae2018-07-19 15:09:11 -0400777 push_src(src_name, "", new T(SkOSPath::Join(path, file.c_str())));
fmalitaa2b9fdf2016-08-03 19:53:36 -0700778 }
779 } else {
Florin Malitaf1ba3ae2018-07-19 15:09:11 -0400780 push_src(src_name, "", new T(path));
fmalitaa2b9fdf2016-08-03 19:53:36 -0700781 }
782 }
783}
784
scroggo86737142016-02-03 12:19:11 -0800785static bool gather_srcs() {
Hal Canary972eba32018-07-30 17:07:07 -0400786 for (skiagm::GMFactory f : skiagm::GMRegistry::Range()) {
787 push_src("gm", "", new GMSrc(f));
mtklein748ca3b2015-01-15 10:56:12 -0800788 }
scroggo86737142016-02-03 12:19:11 -0800789
Robert Phillipse47f0a02018-03-27 17:01:16 -0400790 gather_file_srcs<SKPSrc>(FLAGS_skps, "skp");
fmalitaa2b9fdf2016-08-03 19:53:36 -0700791 gather_file_srcs<MSKPSrc>(FLAGS_mskps, "mskp");
Florin Malita87ccf332018-05-04 12:23:24 -0400792#if defined(SK_ENABLE_SKOTTIE)
Florin Malitaf1ba3ae2018-07-19 15:09:11 -0400793 gather_file_srcs<SkottieSrc>(FLAGS_lotties, "json", "lottie");
Florin Malita124d5af2017-12-31 17:02:26 -0500794#endif
fmalitaa2b9fdf2016-08-03 19:53:36 -0700795#if defined(SK_XML)
796 gather_file_srcs<SVGSrc>(FLAGS_svgs, "svg");
797#endif
halcanary45420a92016-06-02 12:41:14 -0700798
scroggo86737142016-02-03 12:19:11 -0800799 SkTArray<SkString> images;
msarett69deca82016-04-29 09:38:40 -0700800 if (!CollectImages(FLAGS_images, &images)) {
scroggo86737142016-02-03 12:19:11 -0800801 return false;
802 }
803
804 for (auto image : images) {
805 push_codec_srcs(image);
mtklein709d2c32015-01-15 08:30:25 -0800806 }
scroggo86737142016-02-03 12:19:11 -0800807
msarett69deca82016-04-29 09:38:40 -0700808 SkTArray<SkString> colorImages;
809 if (!CollectImages(FLAGS_colorImages, &colorImages)) {
810 return false;
811 }
812
813 for (auto colorImage : colorImages) {
msarett9ce3a542016-07-15 13:54:38 -0700814 ColorCodecSrc* src = new ColorCodecSrc(colorImage, ColorCodecSrc::kBaseline_Mode,
815 kN32_SkColorType);
msarettb8d1aac2016-08-04 12:22:06 -0700816 push_src("colorImage", "color_codec_baseline", src);
msarett888dc162016-05-23 10:21:17 -0700817
msarett9ce3a542016-07-15 13:54:38 -0700818 src = new ColorCodecSrc(colorImage, ColorCodecSrc::kDst_HPZR30w_Mode, kN32_SkColorType);
msarettb8d1aac2016-08-04 12:22:06 -0700819 push_src("colorImage", "color_codec_HPZR30w", src);
msarett9ce3a542016-07-15 13:54:38 -0700820 // TODO (msarett):
821 // Should we test this Dst in F16 mode (even though the Dst gamma is 2.2 instead of sRGB)?
msarett9876ac52016-06-01 14:47:18 -0700822
msarett9ce3a542016-07-15 13:54:38 -0700823 src = new ColorCodecSrc(colorImage, ColorCodecSrc::kDst_sRGB_Mode, kN32_SkColorType);
msarettb8d1aac2016-08-04 12:22:06 -0700824 push_src("colorImage", "color_codec_sRGB_kN32", src);
msarett9ce3a542016-07-15 13:54:38 -0700825 src = new ColorCodecSrc(colorImage, ColorCodecSrc::kDst_sRGB_Mode, kRGBA_F16_SkColorType);
msarettb8d1aac2016-08-04 12:22:06 -0700826 push_src("colorImage", "color_codec_sRGB_kF16", src);
msarett69deca82016-04-29 09:38:40 -0700827 }
828
scroggo86737142016-02-03 12:19:11 -0800829 return true;
mtklein709d2c32015-01-15 08:30:25 -0800830}
831
kkinnunen3e980c32015-12-23 01:33:00 -0800832static void push_sink(const SkCommandLineConfig& config, Sink* s) {
Ben Wagner145dbcd2016-11-03 14:40:50 -0400833 std::unique_ptr<Sink> sink(s);
kkinnunen3e980c32015-12-23 01:33:00 -0800834
mtkleine0effd62015-07-29 06:37:28 -0700835 // Try a simple Src as a canary. If it fails, skip this sink.
mtklein748ca3b2015-01-15 10:56:12 -0800836 struct : public Src {
mtkleine0effd62015-07-29 06:37:28 -0700837 Error draw(SkCanvas* c) const override {
838 c->drawRect(SkRect::MakeWH(1,1), SkPaint());
839 return "";
840 }
mtklein36352bf2015-03-25 18:17:31 -0700841 SkISize size() const override { return SkISize::Make(16, 16); }
mtkleine0effd62015-07-29 06:37:28 -0700842 Name name() const override { return "justOneRect"; }
843 } justOneRect;
mtklein114c3cd2015-01-15 10:15:02 -0800844
mtklein748ca3b2015-01-15 10:56:12 -0800845 SkBitmap bitmap;
846 SkDynamicMemoryWStream stream;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800847 SkString log;
mtkleine0effd62015-07-29 06:37:28 -0700848 Error err = sink->draw(justOneRect, &bitmap, &stream, &log);
mtklein4089ef72015-03-05 08:40:28 -0800849 if (err.isFatal()) {
mtkleinc41fd922016-03-08 09:01:39 -0800850 info("Could not run %s: %s\n", config.getTag().c_str(), err.c_str());
mtklein05641a52015-04-21 10:49:13 -0700851 exit(1);
mtklein114c3cd2015-01-15 10:15:02 -0800852 }
853
mtkleine0effd62015-07-29 06:37:28 -0700854 TaggedSink& ts = gSinks.push_back();
mtklein18300a32016-03-16 13:53:35 -0700855 ts.reset(sink.release());
kkinnunen3e980c32015-12-23 01:33:00 -0800856 ts.tag = config.getTag();
mtklein748ca3b2015-01-15 10:56:12 -0800857}
858
csmartdalton008b9d82017-02-22 12:00:42 -0700859static Sink* create_sink(const GrContextOptions& grCtxOptions, const SkCommandLineConfig* config) {
Brian Osmanc7ad40f2018-05-31 14:27:17 -0400860 if (FLAGS_gpu) {
kkinnunen3e980c32015-12-23 01:33:00 -0800861 if (const SkCommandLineConfigGpu* gpuConfig = config->asConfigGpu()) {
bsalomon85b4b532016-04-05 11:06:27 -0700862 GrContextFactory::ContextType contextType = gpuConfig->getContextType();
csmartdaltone812d492017-02-21 12:36:05 -0700863 GrContextFactory::ContextOverrides contextOverrides = gpuConfig->getContextOverrides();
csmartdalton008b9d82017-02-22 12:00:42 -0700864 GrContextFactory testFactory(grCtxOptions);
csmartdaltone812d492017-02-21 12:36:05 -0700865 if (!testFactory.get(contextType, contextOverrides)) {
mtkleinc41fd922016-03-08 09:01:39 -0800866 info("WARNING: can not create GPU context for config '%s'. "
867 "GM tests will be skipped.\n", gpuConfig->getTag().c_str());
kkinnunen3e980c32015-12-23 01:33:00 -0800868 return nullptr;
869 }
Brian Osmanf9810662017-08-30 10:02:10 -0400870 if (gpuConfig->getTestThreading()) {
Brian Salomon00a5eb82018-07-11 15:32:05 -0400871 SkASSERT(!gpuConfig->getTestPersistentCache());
Brian Salomonf865b052018-03-09 09:01:53 -0500872 return new GPUThreadTestingSink(
873 contextType, contextOverrides, gpuConfig->getSurfType(),
874 gpuConfig->getSamples(), gpuConfig->getUseDIText(),
875 gpuConfig->getColorType(), gpuConfig->getAlphaType(),
876 sk_ref_sp(gpuConfig->getColorSpace()), FLAGS_gpu_threading, grCtxOptions);
Brian Salomon00a5eb82018-07-11 15:32:05 -0400877 } else if (gpuConfig->getTestPersistentCache()) {
878 return new GPUPersistentCacheTestingSink(
879 contextType, contextOverrides, gpuConfig->getSurfType(),
880 gpuConfig->getSamples(), gpuConfig->getUseDIText(),
881 gpuConfig->getColorType(), gpuConfig->getAlphaType(),
882 sk_ref_sp(gpuConfig->getColorSpace()), FLAGS_gpu_threading, grCtxOptions);
Brian Osmanf9810662017-08-30 10:02:10 -0400883 } else {
Brian Salomonf865b052018-03-09 09:01:53 -0500884 return new GPUSink(contextType, contextOverrides, gpuConfig->getSurfType(),
885 gpuConfig->getSamples(), gpuConfig->getUseDIText(),
886 gpuConfig->getColorType(), gpuConfig->getAlphaType(),
887 sk_ref_sp(gpuConfig->getColorSpace()), FLAGS_gpu_threading,
888 grCtxOptions);
Brian Osmanf9810662017-08-30 10:02:10 -0400889 }
kkinnunen3e980c32015-12-23 01:33:00 -0800890 }
891 }
Bryce Thomas95a7b762018-03-02 13:54:21 -0800892 if (const SkCommandLineConfigSvg* svgConfig = config->asConfigSvg()) {
893 int pageIndex = svgConfig->getPageIndex();
894 return new SVGSink(pageIndex);
895 }
kkinnunen3e980c32015-12-23 01:33:00 -0800896
897#define SINK(t, sink, ...) if (config->getBackend().equals(t)) { return new sink(__VA_ARGS__); }
898
mtklein748ca3b2015-01-15 10:56:12 -0800899 if (FLAGS_cpu) {
Mike Klein515bda62018-01-09 11:21:58 -0500900 SINK("g8", RasterSink, kGray_8_SkColorType);
Matt Sarettd2228302017-03-02 08:53:46 -0500901 SINK("565", RasterSink, kRGB_565_SkColorType);
Mike Klein5340b3f2018-01-24 13:42:05 -0500902 SINK("4444", RasterSink, kARGB_4444_SkColorType);
Matt Sarettd2228302017-03-02 08:53:46 -0500903 SINK("8888", RasterSink, kN32_SkColorType);
Mike Kleinac568a92018-01-25 09:09:32 -0500904 SINK("rgba", RasterSink, kRGBA_8888_SkColorType);
905 SINK("bgra", RasterSink, kBGRA_8888_SkColorType);
906 SINK("rgbx", RasterSink, kRGB_888x_SkColorType);
907 SINK("1010102", RasterSink, kRGBA_1010102_SkColorType);
908 SINK("101010x", RasterSink, kRGB_101010x_SkColorType);
Hal Canaryc7d295e2017-07-20 15:36:00 -0400909 SINK("pdf", PDFSink, false, SK_ScalarDefaultRasterDPI);
Matt Sarettd2228302017-03-02 08:53:46 -0500910 SINK("skp", SKPSink);
911 SINK("pipe", PipeSink);
912 SINK("svg", SVGSink);
913 SINK("null", NullSink);
914 SINK("xps", XPSSink);
Hal Canaryc7d295e2017-07-20 15:36:00 -0400915 SINK("pdfa", PDFSink, true, SK_ScalarDefaultRasterDPI);
916 SINK("pdf300", PDFSink, false, 300);
Hal Canary85c7fe82016-10-25 10:33:27 -0400917 SINK("jsdebug", DebugSink);
Mike Klein0e4041f2018-06-19 16:00:40 -0400918
919 // Configs relevant to color management testing (and 8888 for reference).
920
921 // 'narrow' has a gamut narrower than sRGB, and different transfer function.
922 SkMatrix44 narrow_gamut(SkMatrix44::kUninitialized_Constructor);
923 narrow_gamut.set3x3RowMajorf(gNarrow_toXYZD50);
924
925 auto narrow = SkColorSpace::MakeRGB(k2Dot2Curve_SkGammaNamed, narrow_gamut),
926 srgb = SkColorSpace::MakeSRGB(),
927 srgbLinear = SkColorSpace::MakeSRGBLinear();
928
929 SINK( "f16", RasterSink, kRGBA_F16_SkColorType, srgbLinear);
930 SINK( "srgb", RasterSink, kRGBA_8888_SkColorType, srgb );
931 SINK( "esrgb", RasterSink, kRGBA_F16_SkColorType, srgb );
932 SINK( "narrow", RasterSink, kRGBA_8888_SkColorType, narrow );
933 SINK("enarrow", RasterSink, kRGBA_F16_SkColorType, narrow );
Mike Klein37854712018-06-26 11:43:06 -0400934
935 SINK( "f32", RasterSink, kRGBA_F32_SkColorType, srgbLinear);
mtklein748ca3b2015-01-15 10:56:12 -0800936 }
937#undef SINK
halcanary96fcdcc2015-08-27 07:41:13 -0700938 return nullptr;
mtklein114c3cd2015-01-15 10:15:02 -0800939}
940
Mike Kleinb7ea3da2017-10-31 17:42:08 +0000941static sk_sp<SkColorSpace> rgb_to_gbr() {
Brian Osman36703d92017-12-12 14:09:31 -0500942 return SkColorSpace::MakeSRGB()->makeColorSpin();
Mike Klein919cc452017-03-18 15:36:52 +0000943}
944
kkinnunen3e980c32015-12-23 01:33:00 -0800945static Sink* create_via(const SkString& tag, Sink* wrapped) {
946#define VIA(t, via, ...) if (tag.equals(t)) { return new via(__VA_ARGS__); }
Mike Kleinb7ea3da2017-10-31 17:42:08 +0000947 VIA("gbr", ViaCSXform, wrapped, rgb_to_gbr(), true);
Brian Osmana76b7a92018-07-18 14:36:43 -0400948 VIA("p3", ViaCSXform, wrapped,
949 SkColorSpace::MakeRGB(SkColorSpace::kSRGB_RenderTargetGamma,
950 SkColorSpace::kDCIP3_D65_Gamut), false);
mtklein9c5052f2016-08-06 12:51:51 -0700951 VIA("lite", ViaLite, wrapped);
reed54dc4872016-09-13 08:09:45 -0700952 VIA("pipe", ViaPipe, wrapped);
Mike Reedbae888e2017-02-18 16:50:45 -0500953#ifdef TEST_VIA_SVG
Mike Reedf67c4592017-02-17 17:06:11 -0500954 VIA("svg", ViaSVG, wrapped);
Mike Reedbae888e2017-02-18 16:50:45 -0500955#endif
halcanary96fcdcc2015-08-27 07:41:13 -0700956 VIA("serialize", ViaSerialization, wrapped);
mtklein4a34ecb2016-01-08 10:19:35 -0800957 VIA("pic", ViaPicture, wrapped);
halcanary96fcdcc2015-08-27 07:41:13 -0700958 VIA("tiles", ViaTiles, 256, 256, nullptr, wrapped);
mtklein7edca212015-01-21 13:18:51 -0800959 VIA("tiles_rt", ViaTiles, 256, 256, new SkRTreeFactory, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800960
Robert Phillips33f02ed2018-03-27 08:06:57 -0400961 VIA("ddl", ViaDDL, 3, wrapped);
962
mtkleind603b222015-02-17 11:13:33 -0800963 if (FLAGS_matrix.count() == 4) {
mtklein748ca3b2015-01-15 10:56:12 -0800964 SkMatrix m;
mtkleind603b222015-02-17 11:13:33 -0800965 m.reset();
966 m.setScaleX((SkScalar)atof(FLAGS_matrix[0]));
967 m.setSkewX ((SkScalar)atof(FLAGS_matrix[1]));
968 m.setSkewY ((SkScalar)atof(FLAGS_matrix[2]));
969 m.setScaleY((SkScalar)atof(FLAGS_matrix[3]));
970 VIA("matrix", ViaMatrix, m, wrapped);
971 VIA("upright", ViaUpright, m, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800972 }
tomhudson64de1e12015-03-05 08:01:07 -0800973
mtklein748ca3b2015-01-15 10:56:12 -0800974#undef VIA
halcanary96fcdcc2015-08-27 07:41:13 -0700975 return nullptr;
mtklein114c3cd2015-01-15 10:15:02 -0800976}
977
Ben Wagnerf28d4722017-08-11 17:33:22 -0400978static bool gather_sinks(const GrContextOptions& grCtxOptions, bool defaultConfigs) {
kkinnunen3e980c32015-12-23 01:33:00 -0800979 SkCommandLineConfigArray configs;
980 ParseConfigs(FLAGS_config, &configs);
981 for (int i = 0; i < configs.count(); i++) {
982 const SkCommandLineConfig& config = *configs[i];
csmartdalton008b9d82017-02-22 12:00:42 -0700983 Sink* sink = create_sink(grCtxOptions, &config);
kkinnunen3e980c32015-12-23 01:33:00 -0800984 if (sink == nullptr) {
mtkleinc41fd922016-03-08 09:01:39 -0800985 info("Skipping config %s: Don't understand '%s'.\n", config.getTag().c_str(),
986 config.getTag().c_str());
kkinnunen3e980c32015-12-23 01:33:00 -0800987 continue;
988 }
mtklein748ca3b2015-01-15 10:56:12 -0800989
kkinnunen3e980c32015-12-23 01:33:00 -0800990 const SkTArray<SkString>& parts = config.getViaParts();
991 for (int j = parts.count(); j-- > 0;) {
992 const SkString& part = parts[j];
993 Sink* next = create_via(part, sink);
halcanary96fcdcc2015-08-27 07:41:13 -0700994 if (next == nullptr) {
mtkleinc41fd922016-03-08 09:01:39 -0800995 info("Skipping config %s: Don't understand '%s'.\n", config.getTag().c_str(),
996 part.c_str());
mtklein748ca3b2015-01-15 10:56:12 -0800997 delete sink;
halcanary96fcdcc2015-08-27 07:41:13 -0700998 sink = nullptr;
mtklein748ca3b2015-01-15 10:56:12 -0800999 break;
1000 }
1001 sink = next;
1002 }
1003 if (sink) {
1004 push_sink(config, sink);
mtklein114c3cd2015-01-15 10:15:02 -08001005 }
1006 }
brianosman05c987c2016-05-09 13:42:16 -07001007
1008 // If no configs were requested (just running tests, perhaps?), then we're okay.
Ben Wagnerf28d4722017-08-11 17:33:22 -04001009 if (configs.count() == 0 ||
1010 // If we're using the default configs, we're okay.
1011 defaultConfigs ||
Ben Wagner32fa5102017-08-10 21:25:55 -04001012 // If we've been told to ignore undefined flags, we're okay.
1013 FLAGS_undefok ||
1014 // Otherwise, make sure that all specified configs have become sinks.
1015 configs.count() == gSinks.count()) {
1016 return true;
1017 }
1018 info("Invalid --config. Use --undefok to bypass this warning.\n");
1019 return false;
mtklein114c3cd2015-01-15 10:15:02 -08001020}
mtklein709d2c32015-01-15 08:30:25 -08001021
mtkleina5114d72015-08-24 13:27:01 -07001022static bool dump_png(SkBitmap bitmap, const char* path, const char* md5) {
Mike Klein13b6afd2017-06-12 12:45:41 -04001023 SkPixmap pm;
1024 if (!bitmap.peekPixels(&pm)) {
1025 return false; // Ought to never happen... we're already read-back at this point.
mtkleina5114d72015-08-24 13:27:01 -07001026 }
Mike Klein13b6afd2017-06-12 12:45:41 -04001027 SkFILEWStream dst{path};
mtkleina5114d72015-08-24 13:27:01 -07001028
mtkleind69ece62015-09-10 10:37:44 -07001029 SkString description;
1030 description.append("Key: ");
1031 for (int i = 0; i < FLAGS_key.count(); i++) {
1032 description.appendf("%s ", FLAGS_key[i]);
1033 }
1034 description.append("Properties: ");
1035 for (int i = 0; i < FLAGS_properties.count(); i++) {
1036 description.appendf("%s ", FLAGS_properties[i]);
1037 }
1038 description.appendf("MD5: %s", md5);
1039
Mike Klein13b6afd2017-06-12 12:45:41 -04001040 const char* comments[] = {
1041 "Author", "DM dump_png()",
1042 "Description", description.c_str(),
1043 };
1044 size_t lengths[] = {
1045 strlen(comments[0])+1, strlen(comments[1])+1,
1046 strlen(comments[2])+1, strlen(comments[3])+1,
1047 };
mtkleina5114d72015-08-24 13:27:01 -07001048
Mike Klein13b6afd2017-06-12 12:45:41 -04001049 SkPngEncoder::Options options;
1050 options.fComments = SkDataTable::MakeCopyArrays((const void**)comments, lengths, 4);
1051 options.fFilterFlags = SkPngEncoder::FilterFlag::kNone;
1052 options.fZLibLevel = 1;
Mike Klein13b6afd2017-06-12 12:45:41 -04001053 return SkPngEncoder::Encode(&dst, pm, options);
mtkleina5114d72015-08-24 13:27:01 -07001054}
1055
mtkleina2ef6422015-01-15 13:44:22 -08001056static bool match(const char* needle, const char* haystack) {
Chris Daltonecf78ac2017-08-15 15:43:08 -06001057 if ('~' == needle[0]) {
1058 return !match(needle + 1, haystack);
1059 }
1060 if (0 == strcmp("_", needle)) {
1061 return true;
1062 }
1063 return nullptr != strstr(haystack, needle);
mtkleina2ef6422015-01-15 13:44:22 -08001064}
1065
mtklein3eed7dd2016-02-24 19:07:07 -08001066static bool is_blacklisted(const char* sink, const char* src,
1067 const char* srcOptions, const char* name) {
mtklein0d243ff2015-04-03 07:51:00 -07001068 for (int i = 0; i < FLAGS_blacklist.count() - 3; i += 4) {
mtkleina2ef6422015-01-15 13:44:22 -08001069 if (match(FLAGS_blacklist[i+0], sink) &&
djsollen54416de2015-04-03 07:24:48 -07001070 match(FLAGS_blacklist[i+1], src) &&
1071 match(FLAGS_blacklist[i+2], srcOptions) &&
1072 match(FLAGS_blacklist[i+3], name)) {
mtklein3eed7dd2016-02-24 19:07:07 -08001073 return true;
mtkleina2ef6422015-01-15 13:44:22 -08001074 }
1075 }
mtklein3eed7dd2016-02-24 19:07:07 -08001076 return false;
mtkleina2ef6422015-01-15 13:44:22 -08001077}
1078
mtkleincd50bca2016-01-05 06:20:20 -08001079// Even when a Task Sink reports to be non-threadsafe (e.g. GPU), we know things like
1080// .png encoding are definitely thread safe. This lets us offload that work to CPU threads.
1081static SkTaskGroup gDefinitelyThreadSafeWork;
1082
mtklein748ca3b2015-01-15 10:56:12 -08001083// The finest-grained unit of work we can run: draw a single Src into a single Sink,
1084// report any errors, and perhaps write out the output: a .png of the bitmap, or a raw stream.
1085struct Task {
mtkleine0effd62015-07-29 06:37:28 -07001086 Task(const TaggedSrc& src, const TaggedSink& sink) : src(src), sink(sink) {}
1087 const TaggedSrc& src;
1088 const TaggedSink& sink;
mtklein748ca3b2015-01-15 10:56:12 -08001089
mtklein21eaf3b2016-02-08 12:39:59 -08001090 static void Run(const Task& task) {
1091 SkString name = task.src->name();
mtkleine0effd62015-07-29 06:37:28 -07001092
mtkleinb9eb4ac2015-02-02 18:26:03 -08001093 SkString log;
mtklein3eed7dd2016-02-24 19:07:07 -08001094 if (!FLAGS_dryRun) {
mtklein748ca3b2015-01-15 10:56:12 -08001095 SkBitmap bitmap;
1096 SkDynamicMemoryWStream stream;
mtklein3eed7dd2016-02-24 19:07:07 -08001097 start(task.sink.tag.c_str(), task.src.tag.c_str(),
1098 task.src.options.c_str(), name.c_str());
mtklein21eaf3b2016-02-08 12:39:59 -08001099 Error err = task.sink->draw(*task.src, &bitmap, &stream, &log);
mtkleinb3b13b72016-03-07 13:20:52 -08001100 if (!log.isEmpty()) {
mtkleinc41fd922016-03-08 09:01:39 -08001101 info("%s %s %s %s:\n%s\n", task.sink.tag.c_str()
1102 , task.src.tag.c_str()
1103 , task.src.options.c_str()
1104 , name.c_str()
1105 , log.c_str());
mtkleinb3b13b72016-03-07 13:20:52 -08001106 }
mtklein748ca3b2015-01-15 10:56:12 -08001107 if (!err.isEmpty()) {
mtklein4089ef72015-03-05 08:40:28 -08001108 if (err.isFatal()) {
djsollen54416de2015-04-03 07:24:48 -07001109 fail(SkStringPrintf("%s %s %s %s: %s",
mtklein21eaf3b2016-02-08 12:39:59 -08001110 task.sink.tag.c_str(),
1111 task.src.tag.c_str(),
1112 task.src.options.c_str(),
mtklein4089ef72015-03-05 08:40:28 -08001113 name.c_str(),
1114 err.c_str()));
mtkleinb37cb412015-03-18 05:27:14 -07001115 } else {
mtklein3eed7dd2016-02-24 19:07:07 -08001116 done(task.sink.tag.c_str(), task.src.tag.c_str(),
1117 task.src.options.c_str(), name.c_str());
mtkleinba6ada72016-01-21 09:39:35 -08001118 return;
mtklein4089ef72015-03-05 08:40:28 -08001119 }
mtklein748ca3b2015-01-15 10:56:12 -08001120 }
mtklein62bd1a62015-01-27 14:46:26 -08001121
mtkleincd50bca2016-01-05 06:20:20 -08001122 // We're likely switching threads here, so we must capture by value, [=] or [foo,bar].
Hal Canary0b833192017-03-14 14:35:02 -04001123 SkStreamAsset* data = stream.detachAsStream().release();
mtkleincd50bca2016-01-05 06:20:20 -08001124 gDefinitelyThreadSafeWork.add([task,name,bitmap,data]{
Ben Wagner145dbcd2016-11-03 14:40:50 -04001125 std::unique_ptr<SkStreamAsset> ownedData(data);
mtkleincd50bca2016-01-05 06:20:20 -08001126
mtkleincd50bca2016-01-05 06:20:20 -08001127 SkString md5;
1128 if (!FLAGS_writePath.isEmpty() || !FLAGS_readPath.isEmpty()) {
1129 SkMD5 hash;
1130 if (data->getLength()) {
1131 hash.writeStream(data, data->getLength());
1132 data->rewind();
mtklein38408462015-07-08 07:25:27 -07001133 } else {
mtkleincd50bca2016-01-05 06:20:20 -08001134 // If we're BGRA (Linux, Windows), swizzle over to RGBA (Mac, Android).
1135 // This helps eliminate multiple 0-pixel-diff hashes on gold.skia.org.
1136 // (Android's general slow speed breaks the tie arbitrarily in RGBA's favor.)
1137 // We might consider promoting 565 to RGBA too.
1138 if (bitmap.colorType() == kBGRA_8888_SkColorType) {
1139 SkBitmap swizzle;
Matt Sarett68b8e3d2017-04-28 11:15:22 -04001140 SkAssertResult(sk_tool_utils::copy_to(&swizzle, kRGBA_8888_SkColorType,
1141 bitmap));
Mike Reedf0ffb892017-10-03 14:47:21 -04001142 hash.write(swizzle.getPixels(), swizzle.computeByteSize());
mtkleincd50bca2016-01-05 06:20:20 -08001143 } else {
Mike Reedf0ffb892017-10-03 14:47:21 -04001144 hash.write(bitmap.getPixels(), bitmap.computeByteSize());
mtkleincd50bca2016-01-05 06:20:20 -08001145 }
1146 }
1147 SkMD5::Digest digest;
1148 hash.finish(digest);
1149 for (int i = 0; i < 16; i++) {
1150 md5.appendf("%02x", digest.data[i]);
mtklein38408462015-07-08 07:25:27 -07001151 }
mtklein62bd1a62015-01-27 14:46:26 -08001152 }
mtklein62bd1a62015-01-27 14:46:26 -08001153
mtkleincd50bca2016-01-05 06:20:20 -08001154 if (!FLAGS_readPath.isEmpty() &&
mtklein3eed7dd2016-02-24 19:07:07 -08001155 !gGold.contains(Gold(task.sink.tag, task.src.tag,
1156 task.src.options, name, md5))) {
mtkleincd50bca2016-01-05 06:20:20 -08001157 fail(SkStringPrintf("%s not found for %s %s %s %s in %s",
1158 md5.c_str(),
mtklein21eaf3b2016-02-08 12:39:59 -08001159 task.sink.tag.c_str(),
1160 task.src.tag.c_str(),
1161 task.src.options.c_str(),
mtkleincd50bca2016-01-05 06:20:20 -08001162 name.c_str(),
1163 FLAGS_readPath[0]));
mtklein748ca3b2015-01-15 10:56:12 -08001164 }
mtkleincd50bca2016-01-05 06:20:20 -08001165
1166 if (!FLAGS_writePath.isEmpty()) {
mtklein21eaf3b2016-02-08 12:39:59 -08001167 const char* ext = task.sink->fileExtension();
Brian Osmanf1942de2017-08-30 14:50:22 -04001168 if (ext && !FLAGS_dont_write.contains(ext)) {
Mike Klein97d6a7a2017-07-24 10:37:19 -04001169 if (data->getLength()) {
1170 WriteToDisk(task, md5, ext, data, data->getLength(), nullptr);
1171 SkASSERT(bitmap.drawsNothing());
1172 } else if (!bitmap.drawsNothing()) {
1173 WriteToDisk(task, md5, ext, nullptr, 0, &bitmap);
1174 }
mtkleincd50bca2016-01-05 06:20:20 -08001175 }
1176 }
1177 });
mtklein748ca3b2015-01-15 10:56:12 -08001178 }
mtklein3eed7dd2016-02-24 19:07:07 -08001179 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 -08001180 }
1181
1182 static void WriteToDisk(const Task& task,
mtklein62bd1a62015-01-27 14:46:26 -08001183 SkString md5,
1184 const char* ext,
mtklein748ca3b2015-01-15 10:56:12 -08001185 SkStream* data, size_t len,
mtklein62bd1a62015-01-27 14:46:26 -08001186 const SkBitmap* bitmap) {
Brian Osmana76b7a92018-07-18 14:36:43 -04001187 bool gammaCorrect = bitmap &&
1188 bitmap->info().colorSpace() &&
1189 bitmap->info().colorSpace()->gammaIsLinear();
mtklein409d4702016-02-29 07:38:01 -08001190
mtklein748ca3b2015-01-15 10:56:12 -08001191 JsonWriter::BitmapResult result;
djsollen54416de2015-04-03 07:24:48 -07001192 result.name = task.src->name();
mtklein3eed7dd2016-02-24 19:07:07 -08001193 result.config = task.sink.tag;
djsollen54416de2015-04-03 07:24:48 -07001194 result.sourceType = task.src.tag;
1195 result.sourceOptions = task.src.options;
1196 result.ext = ext;
mtklein409d4702016-02-29 07:38:01 -08001197 result.gammaCorrect = gammaCorrect;
djsollen54416de2015-04-03 07:24:48 -07001198 result.md5 = md5;
mtklein748ca3b2015-01-15 10:56:12 -08001199 JsonWriter::AddBitmapResult(result);
1200
mtkleinb0531a72015-04-07 13:38:48 -07001201 // If an MD5 is uninteresting, we want it noted in the JSON file,
1202 // but don't want to dump it out as a .png (or whatever ext is).
1203 if (gUninterestingHashes.contains(md5)) {
1204 return;
1205 }
1206
mtklein748ca3b2015-01-15 10:56:12 -08001207 const char* dir = FLAGS_writePath[0];
1208 if (0 == strcmp(dir, "@")) { // Needed for iOS.
1209 dir = FLAGS_resourcePath[0];
1210 }
1211 sk_mkdir(dir);
1212
1213 SkString path;
1214 if (FLAGS_nameByHash) {
1215 path = SkOSPath::Join(dir, result.md5.c_str());
1216 path.append(".");
1217 path.append(ext);
1218 if (sk_exists(path.c_str())) {
1219 return; // Content-addressed. If it exists already, we're done.
1220 }
1221 } else {
kkinnunen3e980c32015-12-23 01:33:00 -08001222 path = SkOSPath::Join(dir, task.sink.tag.c_str());
mtklein748ca3b2015-01-15 10:56:12 -08001223 sk_mkdir(path.c_str());
msarett9e707a02015-09-01 14:57:57 -07001224 path = SkOSPath::Join(path.c_str(), task.src.tag.c_str());
mtklein748ca3b2015-01-15 10:56:12 -08001225 sk_mkdir(path.c_str());
msarett9e707a02015-09-01 14:57:57 -07001226 if (strcmp(task.src.options.c_str(), "") != 0) {
1227 path = SkOSPath::Join(path.c_str(), task.src.options.c_str());
djsollen54416de2015-04-03 07:24:48 -07001228 sk_mkdir(path.c_str());
1229 }
mtklein748ca3b2015-01-15 10:56:12 -08001230 path = SkOSPath::Join(path.c_str(), task.src->name().c_str());
1231 path.append(".");
1232 path.append(ext);
1233 }
1234
mtklein748ca3b2015-01-15 10:56:12 -08001235 if (bitmap) {
mtkleina5114d72015-08-24 13:27:01 -07001236 if (!dump_png(*bitmap, path.c_str(), result.md5.c_str())) {
mtklein748ca3b2015-01-15 10:56:12 -08001237 fail(SkStringPrintf("Can't encode PNG to %s.\n", path.c_str()));
1238 return;
1239 }
1240 } else {
mtkleina5114d72015-08-24 13:27:01 -07001241 SkFILEWStream file(path.c_str());
1242 if (!file.isValid()) {
1243 fail(SkStringPrintf("Can't open %s for writing.\n", path.c_str()));
1244 return;
1245 }
mtklein748ca3b2015-01-15 10:56:12 -08001246 if (!file.writeStream(data, len)) {
1247 fail(SkStringPrintf("Can't write to %s.\n", path.c_str()));
1248 return;
1249 }
1250 }
1251 }
1252};
1253
mtklein748ca3b2015-01-15 10:56:12 -08001254/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
1255
1256// Unit tests don't fit so well into the Src/Sink model, so we give them special treatment.
1257
mtklein21eaf3b2016-02-08 12:39:59 -08001258static SkTDArray<skiatest::Test> gParallelTests, gSerialTests;
mtklein748ca3b2015-01-15 10:56:12 -08001259
1260static void gather_tests() {
mtklein6c5fed22015-01-20 13:47:23 -08001261 if (!FLAGS_src.contains("tests")) {
mtklein748ca3b2015-01-15 10:56:12 -08001262 return;
1263 }
Hal Canary972eba32018-07-30 17:07:07 -04001264 for (const skiatest::Test& test : skiatest::TestRegistry::Range()) {
mtklein6393c062015-04-27 08:45:01 -07001265 if (!in_shard()) {
1266 continue;
1267 }
halcanary87f3ba42015-01-20 09:30:20 -08001268 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, test.name)) {
mtklein748ca3b2015-01-15 10:56:12 -08001269 continue;
1270 }
Brian Osmanc7ad40f2018-05-31 14:27:17 -04001271 if (test.needsGpu && FLAGS_gpu) {
Mike Reed5edcd312018-08-08 11:23:41 -04001272 (FLAGS_gpu_threading ? gParallelTests : gSerialTests).push_back(test);
halcanary87f3ba42015-01-20 09:30:20 -08001273 } else if (!test.needsGpu && FLAGS_cpu) {
Mike Reed5edcd312018-08-08 11:23:41 -04001274 gParallelTests.push_back(test);
mtklein82d28432015-01-15 12:46:02 -08001275 }
mtklein748ca3b2015-01-15 10:56:12 -08001276 }
1277}
1278
csmartdalton008b9d82017-02-22 12:00:42 -07001279static void run_test(skiatest::Test test, const GrContextOptions& grCtxOptions) {
halcanary87f3ba42015-01-20 09:30:20 -08001280 struct : public skiatest::Reporter {
mtklein36352bf2015-03-25 18:17:31 -07001281 void reportFailed(const skiatest::Failure& failure) override {
halcanary87f3ba42015-01-20 09:30:20 -08001282 fail(failure.toString());
1283 JsonWriter::AddTestFailure(failure);
1284 }
mtklein36352bf2015-03-25 18:17:31 -07001285 bool allowExtendedTest() const override {
halcanary87f3ba42015-01-20 09:30:20 -08001286 return FLAGS_pathOpsExtended;
1287 }
mtklein36352bf2015-03-25 18:17:31 -07001288 bool verbose() const override { return FLAGS_veryVerbose; }
halcanary87f3ba42015-01-20 09:30:20 -08001289 } reporter;
djsollen824996a2015-06-12 12:06:22 -07001290
mtklein3eed7dd2016-02-24 19:07:07 -08001291 if (!FLAGS_dryRun && !is_blacklisted("_", "tests", "_", test.name)) {
Robert Phillipsec325342017-10-30 18:02:48 +00001292 GrContextOptions options = grCtxOptions;
1293 test.modifyGrContextOptions(&options);
1294
mtklein21eaf3b2016-02-08 12:39:59 -08001295 start("unit", "test", "", test.name);
Brian Salomondcfca432017-11-15 15:48:03 -05001296 test.run(&reporter, options);
mtklein748ca3b2015-01-15 10:56:12 -08001297 }
mtklein3eed7dd2016-02-24 19:07:07 -08001298 done("unit", "test", "", test.name);
mtklein748ca3b2015-01-15 10:56:12 -08001299}
1300
1301/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
1302
Mike Kleinbe28ee22017-02-06 12:46:20 -05001303int main(int argc, char** argv) {
Dongwon Kang0c7861f2018-02-16 10:55:21 -08001304#if defined(SK_BUILD_FOR_ANDROID_FRAMEWORK) && defined(SK_HAS_HEIF_LIBRARY)
1305 android::ProcessState::self()->startThreadPool();
1306#endif
Mike Kleinbe28ee22017-02-06 12:46:20 -05001307 SkCommandLineFlags::Parse(argc, argv);
Brian Osman53136aa2017-07-20 15:43:35 -04001308
Mike Klein31868212017-11-06 12:02:47 -05001309 if (!FLAGS_nativeFonts) {
Ben Wagner483c7722018-02-20 17:06:07 -05001310 gSkFontMgr_DefaultFactory = &sk_tool_utils::MakePortableFontMgr;
Mike Klein31868212017-11-06 12:02:47 -05001311 }
1312
Mike Klein0c5fdcb2017-11-13 12:40:46 -05001313#if defined(SK_BUILD_FOR_WIN)
1314 if (FLAGS_gdi) {
Hal Canaryccafca02017-11-14 10:34:48 -05001315 gSkFontMgr_DefaultFactory = &SkFontMgr_New_GDI;
Mike Klein0c5fdcb2017-11-13 12:40:46 -05001316 }
1317#endif
1318
Brian Osmanbc8150f2017-07-24 11:38:01 -04001319 initializeEventTracingForTools();
Brian Osman53136aa2017-07-20 15:43:35 -04001320
Mike Klein6613cc52017-12-19 09:09:33 -05001321#if !defined(SK_BUILD_FOR_GOOGLE3) && defined(SK_BUILD_FOR_IOS)
Mike Kleinadacaef2017-02-06 09:26:14 -05001322 cd_Documents();
1323#endif
bsalomon71de3532016-04-26 14:27:21 -07001324 setbuf(stdout, nullptr);
mtklein246ba3a2016-02-23 10:39:36 -08001325 setup_crash_handler();
mtkleinafae30a2016-02-24 12:28:32 -08001326
Yuqian Liba62b4a2016-12-14 13:46:53 -05001327 gSkUseAnalyticAA = FLAGS_analyticAA;
Yuqian Lidf60e362017-07-25 11:26:31 -04001328 gSkUseDeltaAA = FLAGS_deltaAA;
liyuqian38911a72016-10-04 11:23:22 -07001329
Yuqian Li550148b2017-01-13 10:13:13 -05001330 if (FLAGS_forceAnalyticAA) {
1331 gSkForceAnalyticAA = true;
1332 }
Yuqian Lia81b6262017-09-06 17:10:05 -04001333 if (FLAGS_forceDeltaAA) {
1334 gSkForceDeltaAA = true;
1335 }
Mike Reed7c26ca72017-07-05 15:45:52 -04001336 if (FLAGS_forceRasterPipeline) {
1337 gSkForceRasterPipelineBlitter = true;
1338 }
Yuqian Li550148b2017-01-13 10:13:13 -05001339
Mike Kleine9f187b2017-06-26 13:23:12 -04001340 // The bots like having a verbose.log to upload, so always touch the file even if --verbose.
1341 if (!FLAGS_writePath.isEmpty()) {
mtklein51c8cfc2016-03-11 12:59:09 -08001342 sk_mkdir(FLAGS_writePath[0]);
mtkleina1ce2162016-07-22 12:23:46 -07001343 gVLog = fopen(SkOSPath::Join(FLAGS_writePath[0], "verbose.log").c_str(), "w");
mtkleinc41fd922016-03-08 09:01:39 -08001344 }
Mike Kleine9f187b2017-06-26 13:23:12 -04001345 if (FLAGS_verbose) {
1346 gVLog = stderr;
1347 }
mtkleinc41fd922016-03-08 09:01:39 -08001348
csmartdalton008b9d82017-02-22 12:00:42 -07001349 GrContextOptions grCtxOptions;
Chris Dalton040238b2017-12-18 14:22:34 -07001350 SetCtxOptionsFromCommonFlags(&grCtxOptions);
csmartdalton008b9d82017-02-22 12:00:42 -07001351
mtklein5286f022016-01-22 08:18:14 -08001352 JsonWriter::DumpJson(); // It's handy for the bots to assume this is ~never missing.
commit-bot@chromium.org39e8d932014-05-29 20:14:48 +00001353 SkAutoGraphics ag;
mtklein406654b2014-09-03 15:34:37 -07001354 SkTaskGroup::Enabler enabled(FLAGS_threads);
commit-bot@chromium.orga65e2fd2014-05-30 17:23:31 +00001355
Mike Reed0933bc92017-12-09 01:27:41 +00001356 if (nullptr == GetResourceAsData("images/color_wheel.png")) {
1357 info("Some resources are missing. Do you need to set --resourcePath?\n");
halcanary7d571242016-02-24 17:59:16 -08001358 }
mtklein62bd1a62015-01-27 14:46:26 -08001359 gather_gold();
borenet09ed4802015-04-03 14:15:33 -07001360 gather_uninteresting_hashes();
mtklein62bd1a62015-01-27 14:46:26 -08001361
scroggo86737142016-02-03 12:19:11 -08001362 if (!gather_srcs()) {
1363 return 1;
1364 }
Ben Wagnerf28d4722017-08-11 17:33:22 -04001365 // TODO(dogben): This is a bit ugly. Find a cleaner way to do this.
1366 bool defaultConfigs = true;
1367 for (int i = 0; i < argc; i++) {
1368 static const char* kConfigArg = "--config";
1369 if (strcmp(argv[i], kConfigArg) == 0) {
1370 defaultConfigs = false;
1371 break;
1372 }
1373 }
1374 if (!gather_sinks(grCtxOptions, defaultConfigs)) {
brianosman05c987c2016-05-09 13:42:16 -07001375 return 1;
1376 }
mtklein748ca3b2015-01-15 10:56:12 -08001377 gather_tests();
mtklein21eaf3b2016-02-08 12:39:59 -08001378 gPending = gSrcs.count() * gSinks.count() + gParallelTests.count() + gSerialTests.count();
Brian Osmand0677bc2017-08-03 12:13:47 -04001379 info("%d srcs * %d sinks + %d tests == %d tasks\n",
mtkleinc41fd922016-03-08 09:01:39 -08001380 gSrcs.count(), gSinks.count(), gParallelTests.count() + gSerialTests.count(), gPending);
mtklein748ca3b2015-01-15 10:56:12 -08001381
mtklein21eaf3b2016-02-08 12:39:59 -08001382 // Kick off as much parallel work as we can, making note of any serial work we'll need to do.
1383 SkTaskGroup parallel;
1384 SkTArray<Task> serial;
1385
1386 for (auto& sink : gSinks)
1387 for (auto& src : gSrcs) {
mtklein3eed7dd2016-02-24 19:07:07 -08001388 if (src->veto(sink->flags()) ||
1389 is_blacklisted(sink.tag.c_str(), src.tag.c_str(),
1390 src.options.c_str(), src->name().c_str())) {
mtkleinf10637f2016-06-10 13:56:35 -07001391 SkAutoMutexAcquire lock(gMutex);
mtklein3eed7dd2016-02-24 19:07:07 -08001392 gPending--;
1393 continue;
1394 }
1395
mtklein21eaf3b2016-02-08 12:39:59 -08001396 Task task(src, sink);
1397 if (src->serial() || sink->serial()) {
1398 serial.push_back(task);
1399 } else {
1400 parallel.add([task] { Task::Run(task); });
mtklein748ca3b2015-01-15 10:56:12 -08001401 }
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +00001402 }
mtklein21eaf3b2016-02-08 12:39:59 -08001403 for (auto test : gParallelTests) {
csmartdalton008b9d82017-02-22 12:00:42 -07001404 parallel.add([test, grCtxOptions] { run_test(test, grCtxOptions); });
mtklein55e88b22015-01-21 15:50:13 -08001405 }
mtklein21eaf3b2016-02-08 12:39:59 -08001406
1407 // With the parallel work running, run serial tasks and tests here on main thread.
1408 for (auto task : serial) { Task::Run(task); }
csmartdalton008b9d82017-02-22 12:00:42 -07001409 for (auto test : gSerialTests) { run_test(test, grCtxOptions); }
mtklein21eaf3b2016-02-08 12:39:59 -08001410
1411 // Wait for any remaining parallel work to complete (including any spun off of serial tasks).
1412 parallel.wait();
mtkleincd50bca2016-01-05 06:20:20 -08001413 gDefinitelyThreadSafeWork.wait();
1414
Ben Wagner83c6b962018-07-10 19:40:15 -04001415 // At this point we're back in single-threaded land.
1416
mtkleinda884c42016-02-24 18:00:23 -08001417 // We'd better have run everything.
1418 SkASSERT(gPending == 0);
mtkleine027f172016-02-26 15:53:06 -08001419 // Make sure we've flushed all our results to disk.
1420 JsonWriter::DumpJson();
mtkleinda884c42016-02-24 18:00:23 -08001421
mtklein748ca3b2015-01-15 10:56:12 -08001422 if (gFailures.count() > 0) {
mtkleinc41fd922016-03-08 09:01:39 -08001423 info("Failures:\n");
mtklein748ca3b2015-01-15 10:56:12 -08001424 for (int i = 0; i < gFailures.count(); i++) {
mtkleinc41fd922016-03-08 09:01:39 -08001425 info("\t%s\n", gFailures[i].c_str());
mtklein748ca3b2015-01-15 10:56:12 -08001426 }
mtkleinc41fd922016-03-08 09:01:39 -08001427 info("%d failures\n", gFailures.count());
mtklein748ca3b2015-01-15 10:56:12 -08001428 return 1;
mtklein114c3cd2015-01-15 10:15:02 -08001429 }
mtkleinafae30a2016-02-24 12:28:32 -08001430
1431#ifdef SK_PDF_IMAGE_STATS
halcanary7a14b312015-10-01 07:28:13 -07001432 SkPDFImageDumpStats();
mtkleinafae30a2016-02-24 12:28:32 -08001433#endif // SK_PDF_IMAGE_STATS
1434
Herb Derby5a523fe2017-01-26 16:48:28 -05001435 SkGraphics::PurgeAllCaches();
mtkleinc41fd922016-03-08 09:01:39 -08001436 info("Finished!\n");
Brian Osman53136aa2017-07-20 15:43:35 -04001437
mtklein748ca3b2015-01-15 10:56:12 -08001438 return 0;
mtklein@google.comd36522d2013-10-16 13:02:15 +00001439}