blob: f61f52150dbdb1b469c7223049d72d61f89e1441 [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 Klein31868212017-11-06 12:02:47 -05008#include "DMFontMgr.h"
mtklein748ca3b2015-01-15 10:56:12 -08009#include "DMJsonWriter.h"
10#include "DMSrcSink.h"
mtklein748ca3b2015-01-15 10:56:12 -080011#include "ProcStats.h"
halcanary7d571242016-02-24 17:59:16 -080012#include "Resources.h"
mtklein748ca3b2015-01-15 10:56:12 -080013#include "SkBBHFactory.h"
mtklein62bd1a62015-01-27 14:46:26 -080014#include "SkChecksum.h"
Brian Osman53136aa2017-07-20 15:43:35 -040015#include "SkChromeTracingTracer.h"
scroggocc2feb12015-08-14 08:32:46 -070016#include "SkCodec.h"
mtklein27c3fdd2016-02-26 14:43:21 -080017#include "SkColorPriv.h"
msarett888dc162016-05-23 10:21:17 -070018#include "SkColorSpace.h"
Mike Klein919cc452017-03-18 15:36:52 +000019#include "SkColorSpacePriv.h"
caryclark17f0b6d2014-07-22 10:15:34 -070020#include "SkCommonFlags.h"
kkinnunen3e980c32015-12-23 01:33:00 -080021#include "SkCommonFlagsConfig.h"
Chris Dalton040238b2017-12-18 14:22:34 -070022#include "SkCommonFlagsGpu.h"
brianosman3c579dc2016-04-19 09:18:11 -070023#include "SkData.h"
Brian Salomondcbb9d92017-07-19 10:53:20 -040024#include "SkDebugfTracer.h"
Hal Canaryd7b38452017-12-11 17:46:26 -050025#include "SkDocument.h"
Brian Osman53136aa2017-07-20 15:43:35 -040026#include "SkEventTracingPriv.h"
caryclark83ca6282015-06-10 09:31:09 -070027#include "SkFontMgr.h"
Hal Canaryd7b38452017-12-11 17:46:26 -050028#include "SkFontMgrPriv.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000029#include "SkGraphics.h"
mtklein27c3fdd2016-02-26 14:43:21 -080030#include "SkHalf.h"
halcanary4dbbd042016-06-07 17:21:10 -070031#include "SkLeanWindows.h"
mtklein748ca3b2015-01-15 10:56:12 -080032#include "SkMD5.h"
mtklein1b249332015-07-07 12:21:21 -070033#include "SkMutex.h"
mtklein1d0f1642014-09-08 08:05:18 -070034#include "SkOSFile.h"
Ben Wagnerbf111d72016-11-07 18:05:29 -050035#include "SkOSPath.h"
mtklein27c3fdd2016-02-26 14:43:21 -080036#include "SkPM4fPriv.h"
Mike Klein13b6afd2017-06-12 12:45:41 -040037#include "SkPngEncoder.h"
Brian Salomondcbb9d92017-07-19 10:53:20 -040038#include "SkScan.h"
mtklein246ba3a2016-02-23 10:39:36 -080039#include "SkSpinlock.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
Mike Reed7c26ca72017-07-05 15:45:52 -040063extern bool gSkForceRasterPipelineBlitter;
64
Ben Wagner32fa5102017-08-10 21:25:55 -040065DECLARE_bool(undefok);
djsollen54416de2015-04-03 07:24:48 -070066DEFINE_string(src, "tests gm skp image", "Source types to test.");
mtklein748ca3b2015-01-15 10:56:12 -080067DEFINE_bool(nameByHash, false,
68 "If true, write to FLAGS_writePath[0]/<hash>.png instead of "
djsollen54416de2015-04-03 07:24:48 -070069 "to FLAGS_writePath[0]/<config>/<sourceType>/<sourceOptions>/<name>.png");
mtklein748ca3b2015-01-15 10:56:12 -080070DEFINE_bool2(pathOpsExtended, x, false, "Run extended pathOps tests.");
mtkleind603b222015-02-17 11:13:33 -080071DEFINE_string(matrix, "1 0 0 1",
72 "2x2 scale+skew matrix to apply or upright when using "
73 "'matrix' or 'upright' in config.");
mtklein82d28432015-01-15 12:46:02 -080074DEFINE_bool(gpu_threading, false, "Allow GPU work to run on multiple threads?");
mtklein@google.comd36522d2013-10-16 13:02:15 +000075
mtkleina2ef6422015-01-15 13:44:22 -080076DEFINE_string(blacklist, "",
Chris Daltonecf78ac2017-08-15 15:43:08 -060077 "Space-separated config/src/srcOptions/name quadruples to blacklist. "
78 "'_' matches anything. '~' negates the match. E.g. \n"
djsollen54416de2015-04-03 07:24:48 -070079 "'--blacklist gpu skp _ _' will blacklist all SKPs drawn into the gpu config.\n"
Chris Daltonecf78ac2017-08-15 15:43:08 -060080 "'--blacklist gpu skp _ _ 8888 gm _ aarects' will also blacklist the aarects GM on 8888.\n"
81 "'--blacklist ~8888 svg _ svgparse_' blocks non-8888 SVGs that contain \"svgparse_\" in "
82 "the name.");
mtkleina2ef6422015-01-15 13:44:22 -080083
mtklein62bd1a62015-01-27 14:46:26 -080084DEFINE_string2(readPath, r, "", "If set check for equality with golden results in this directory.");
85
borenet09ed4802015-04-03 14:15:33 -070086DEFINE_string(uninterestingHashesFile, "",
87 "File containing a list of uninteresting hashes. If a result hashes to something in "
88 "this list, no image is written for that result.");
89
mtklein6393c062015-04-27 08:45:01 -070090DEFINE_int32(shards, 1, "We're splitting source data into this many shards.");
91DEFINE_int32(shard, 0, "Which shard do I run?");
92
halcanary45420a92016-06-02 12:41:14 -070093DEFINE_string(mskps, "", "Directory to read mskps from, or a single mskp file.");
Mike Reed7c26ca72017-07-05 15:45:52 -040094DEFINE_bool(forceRasterPipeline, false, "sets gSkForceRasterPipelineBlitter");
halcanary45420a92016-06-02 12:41:14 -070095
Robert Phillipsad8a43f2017-08-30 12:06:35 -040096DEFINE_bool(ddl, false, "If true, use DeferredDisplayLists for GPU SKP rendering.");
97
Derek Sollenbergeredfe3df2017-07-19 15:25:24 -040098DEFINE_bool(ignoreSigInt, false, "ignore SIGINT signals during test execution");
99
Mike Klein97d6a7a2017-07-24 10:37:19 -0400100DEFINE_string(dont_write, "", "File extensions to skip writing to --writePath."); // See skia:6821
101
Mike Klein31868212017-11-06 12:02:47 -0500102DEFINE_bool(nativeFonts, true, "If true, use native font manager and rendering. "
103 "If false, fonts will draw as portably as possible.");
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
266 static void (*previous_handler[max_of(SIGABRT,SIGBUS,SIGFPE,SIGILL,SIGSEGV)+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
271 info("\nCaught signal %d [%s], was running:\n", sig, strsignal(sig));
272 for (auto& task : gRunning) {
mtklein0f7748a2016-07-25 15:27:29 -0700273 task.dump();
mtklein5b64dab2016-06-09 08:59:48 -0700274 }
mtklein0f7748a2016-07-25 15:27:29 -0700275 find_culprit();
mtklein5b64dab2016-06-09 08:59:48 -0700276
Mike Klein3cc2d202016-10-24 11:39:43 -0400277 #if !defined(SK_BUILD_FOR_ANDROID)
mtklein5b64dab2016-06-09 08:59:48 -0700278 void* stack[64];
279 int count = backtrace(stack, SK_ARRAY_COUNT(stack));
280 char** symbols = backtrace_symbols(stack, count);
281 info("\nStack trace:\n");
282 for (int i = 0; i < count; i++) {
283 info(" %s\n", symbols[i]);
284 }
Mike Klein3cc2d202016-10-24 11:39:43 -0400285 #endif
mtklein5b64dab2016-06-09 08:59:48 -0700286 fflush(stdout);
287
Mike Klein3cc2d202016-10-24 11:39:43 -0400288 signal(sig, previous_handler[sig]);
289 raise(sig);
mtklein5b64dab2016-06-09 08:59:48 -0700290 }
291
mtklein246ba3a2016-02-23 10:39:36 -0800292 static void setup_crash_handler() {
293 const int kSignals[] = { SIGABRT, SIGBUS, SIGFPE, SIGILL, SIGSEGV };
294 for (int sig : kSignals) {
Mike Klein3cc2d202016-10-24 11:39:43 -0400295 previous_handler[sig] = signal(sig, crash_handler);
mtklein246ba3a2016-02-23 10:39:36 -0800296 }
Derek Sollenbergeredfe3df2017-07-19 15:25:24 -0400297
298 if (FLAGS_ignoreSigInt) {
299 signal(SIGINT, SIG_IGN);
300 }
mtklein246ba3a2016-02-23 10:39:36 -0800301 }
302#endif
303
mtklein748ca3b2015-01-15 10:56:12 -0800304/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
mtklein114c3cd2015-01-15 10:15:02 -0800305
mtklein62bd1a62015-01-27 14:46:26 -0800306struct Gold : public SkString {
mtkleina82f5622015-02-20 12:30:19 -0800307 Gold() : SkString("") {}
mtklein3eed7dd2016-02-24 19:07:07 -0800308 Gold(const SkString& sink, const SkString& src,
309 const SkString& srcOptions, const SkString& name,
310 const SkString& md5)
mtklein62bd1a62015-01-27 14:46:26 -0800311 : SkString("") {
312 this->append(sink);
313 this->append(src);
djsollen54416de2015-04-03 07:24:48 -0700314 this->append(srcOptions);
mtklein62bd1a62015-01-27 14:46:26 -0800315 this->append(name);
316 this->append(md5);
mtklein62bd1a62015-01-27 14:46:26 -0800317 }
mtkleinc8d1dd42015-10-15 12:23:01 -0700318 struct Hash {
319 uint32_t operator()(const Gold& g) const {
320 return SkGoodHash()((const SkString&)g);
321 }
322 };
mtklein62bd1a62015-01-27 14:46:26 -0800323};
mtkleina82f5622015-02-20 12:30:19 -0800324static SkTHashSet<Gold, Gold::Hash> gGold;
mtklein62bd1a62015-01-27 14:46:26 -0800325
326static void add_gold(JsonWriter::BitmapResult r) {
djsollen54416de2015-04-03 07:24:48 -0700327 gGold.add(Gold(r.config, r.sourceType, r.sourceOptions, r.name, r.md5));
mtklein62bd1a62015-01-27 14:46:26 -0800328}
329
330static void gather_gold() {
331 if (!FLAGS_readPath.isEmpty()) {
332 SkString path(FLAGS_readPath[0]);
333 path.append("/dm.json");
334 if (!JsonWriter::ReadJson(path.c_str(), add_gold)) {
335 fail(SkStringPrintf("Couldn't read %s for golden results.", path.c_str()));
336 }
337 }
338}
339
340/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
341
Mike Klein8f11d4d2018-01-24 12:42:55 -0500342#if defined(SK_BUILD_FOR_WIN)
mtklein935f1b12016-03-16 08:37:19 -0700343 static const char* kNewline = "\r\n";
344#else
345 static const char* kNewline = "\n";
346#endif
347
borenet09ed4802015-04-03 14:15:33 -0700348static SkTHashSet<SkString> gUninterestingHashes;
349
350static void gather_uninteresting_hashes() {
351 if (!FLAGS_uninterestingHashesFile.isEmpty()) {
bungeman38d909e2016-08-02 14:40:46 -0700352 sk_sp<SkData> data(SkData::MakeFromFileName(FLAGS_uninterestingHashesFile[0]));
mtkleincc334b32015-09-22 11:43:53 -0700353 if (!data) {
mtkleinc41fd922016-03-08 09:01:39 -0800354 info("WARNING: unable to read uninteresting hashes from %s\n",
355 FLAGS_uninterestingHashesFile[0]);
mtkleincc334b32015-09-22 11:43:53 -0700356 return;
357 }
Mike Klein45dcc0c2017-04-05 18:04:31 -0400358
359 // Copy to a string to make sure SkStrSplit has a terminating \0 to find.
360 SkString contents((const char*)data->data(), data->size());
361
borenet09ed4802015-04-03 14:15:33 -0700362 SkTArray<SkString> hashes;
Mike Klein45dcc0c2017-04-05 18:04:31 -0400363 SkStrSplit(contents.c_str(), kNewline, &hashes);
borenet09ed4802015-04-03 14:15:33 -0700364 for (const SkString& hash : hashes) {
365 gUninterestingHashes.add(hash);
366 }
mtkleinc41fd922016-03-08 09:01:39 -0800367 info("FYI: loaded %d distinct uninteresting hashes from %d lines\n",
368 gUninterestingHashes.count(), hashes.count());
borenet09ed4802015-04-03 14:15:33 -0700369 }
370}
371
372/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
373
Ben Wagner145dbcd2016-11-03 14:40:50 -0400374struct TaggedSrc : public std::unique_ptr<Src> {
mtklein3eed7dd2016-02-24 19:07:07 -0800375 SkString tag;
376 SkString options;
mtkleine0effd62015-07-29 06:37:28 -0700377};
378
Ben Wagner145dbcd2016-11-03 14:40:50 -0400379struct TaggedSink : public std::unique_ptr<Sink> {
kkinnunen3e980c32015-12-23 01:33:00 -0800380 SkString tag;
djsollen54416de2015-04-03 07:24:48 -0700381};
mtklein748ca3b2015-01-15 10:56:12 -0800382
383static const bool kMemcpyOK = true;
384
mtkleine0effd62015-07-29 06:37:28 -0700385static SkTArray<TaggedSrc, kMemcpyOK> gSrcs;
386static SkTArray<TaggedSink, kMemcpyOK> gSinks;
mtklein748ca3b2015-01-15 10:56:12 -0800387
mtklein6393c062015-04-27 08:45:01 -0700388static bool in_shard() {
389 static int N = 0;
390 return N++ % FLAGS_shards == FLAGS_shard;
391}
392
mtklein3eed7dd2016-02-24 19:07:07 -0800393static void push_src(const char* tag, ImplicitString options, Src* s) {
Ben Wagner145dbcd2016-11-03 14:40:50 -0400394 std::unique_ptr<Src> src(s);
mtklein6393c062015-04-27 08:45:01 -0700395 if (in_shard() &&
mtklein3eed7dd2016-02-24 19:07:07 -0800396 FLAGS_src.contains(tag) &&
mtklein748ca3b2015-01-15 10:56:12 -0800397 !SkCommandLineFlags::ShouldSkip(FLAGS_match, src->name().c_str())) {
mtkleine0effd62015-07-29 06:37:28 -0700398 TaggedSrc& s = gSrcs.push_back();
mtklein18300a32016-03-16 13:53:35 -0700399 s.reset(src.release());
mtklein748ca3b2015-01-15 10:56:12 -0800400 s.tag = tag;
djsollen54416de2015-04-03 07:24:48 -0700401 s.options = options;
mtklein114c3cd2015-01-15 10:15:02 -0800402 }
mtklein748ca3b2015-01-15 10:56:12 -0800403}
mtklein114c3cd2015-01-15 10:15:02 -0800404
msarett9e707a02015-09-01 14:57:57 -0700405static void push_codec_src(Path path, CodecSrc::Mode mode, CodecSrc::DstColorType dstColorType,
scroggoc5560be2016-02-03 09:42:42 -0800406 SkAlphaType dstAlphaType, float scale) {
scroggoe4499842016-02-25 11:03:47 -0800407 if (FLAGS_simpleCodec) {
scroggo19b91532016-10-24 09:03:26 -0700408 const bool simple = CodecSrc::kCodec_Mode == mode || CodecSrc::kAnimated_Mode == mode;
409 if (!simple || dstColorType != CodecSrc::kGetFromCanvas_DstColorType || scale != 1.0f) {
scroggoe4499842016-02-25 11:03:47 -0800410 // Only decode in the simple case.
411 return;
scroggo19b91532016-10-24 09:03:26 -0700412 }
scroggoe4499842016-02-25 11:03:47 -0800413 }
msarett9e707a02015-09-01 14:57:57 -0700414 SkString folder;
415 switch (mode) {
416 case CodecSrc::kCodec_Mode:
417 folder.append("codec");
418 break;
msarettbb25b532016-01-13 09:31:39 -0800419 case CodecSrc::kCodecZeroInit_Mode:
420 folder.append("codec_zero_init");
421 break;
msarett9e707a02015-09-01 14:57:57 -0700422 case CodecSrc::kScanline_Mode:
423 folder.append("scanline");
424 break;
msarett9e707a02015-09-01 14:57:57 -0700425 case CodecSrc::kStripe_Mode:
426 folder.append("stripe");
427 break;
msarett91c22b22016-02-22 12:27:46 -0800428 case CodecSrc::kCroppedScanline_Mode:
429 folder.append("crop");
430 break;
msarett9e707a02015-09-01 14:57:57 -0700431 case CodecSrc::kSubset_Mode:
msarett36c37962015-09-02 13:20:52 -0700432 folder.append("codec_subset");
msarett9e707a02015-09-01 14:57:57 -0700433 break;
scroggo19b91532016-10-24 09:03:26 -0700434 case CodecSrc::kAnimated_Mode:
435 folder.append("codec_animated");
436 break;
msarett9e707a02015-09-01 14:57:57 -0700437 }
438
439 switch (dstColorType) {
440 case CodecSrc::kGrayscale_Always_DstColorType:
441 folder.append("_kGray8");
442 break;
msarett34e0ec42016-04-22 16:27:24 -0700443 case CodecSrc::kNonNative8888_Always_DstColorType:
444 folder.append("_kNonNative");
445 break;
msarett9e707a02015-09-01 14:57:57 -0700446 default:
447 break;
448 }
449
scroggoc5560be2016-02-03 09:42:42 -0800450 switch (dstAlphaType) {
scroggoc5560be2016-02-03 09:42:42 -0800451 case kPremul_SkAlphaType:
452 folder.append("_premul");
453 break;
454 case kUnpremul_SkAlphaType:
455 folder.append("_unpremul");
456 break;
457 default:
458 break;
459 }
460
msarett9e707a02015-09-01 14:57:57 -0700461 if (1.0f != scale) {
462 folder.appendf("_%.3f", scale);
463 }
464
scroggoc5560be2016-02-03 09:42:42 -0800465 CodecSrc* src = new CodecSrc(path, mode, dstColorType, dstAlphaType, scale);
msarett9e707a02015-09-01 14:57:57 -0700466 push_src("image", folder, src);
467}
468
scroggof8dc9df2016-05-16 09:04:13 -0700469static void push_android_codec_src(Path path, CodecSrc::DstColorType dstColorType,
470 SkAlphaType dstAlphaType, int sampleSize) {
msarett3d9d7a72015-10-21 10:27:10 -0700471 SkString folder;
scroggof8dc9df2016-05-16 09:04:13 -0700472 folder.append("scaled_codec");
msarett3d9d7a72015-10-21 10:27:10 -0700473
474 switch (dstColorType) {
475 case CodecSrc::kGrayscale_Always_DstColorType:
476 folder.append("_kGray8");
477 break;
msarett34e0ec42016-04-22 16:27:24 -0700478 case CodecSrc::kNonNative8888_Always_DstColorType:
479 folder.append("_kNonNative");
480 break;
msarett3d9d7a72015-10-21 10:27:10 -0700481 default:
482 break;
483 }
484
scroggoc5560be2016-02-03 09:42:42 -0800485 switch (dstAlphaType) {
scroggoc5560be2016-02-03 09:42:42 -0800486 case kPremul_SkAlphaType:
487 folder.append("_premul");
488 break;
msarett9e9444c2016-02-03 12:39:10 -0800489 case kUnpremul_SkAlphaType:
490 folder.append("_unpremul");
491 break;
scroggoc5560be2016-02-03 09:42:42 -0800492 default:
493 break;
494 }
495
msarett3d9d7a72015-10-21 10:27:10 -0700496 if (1 != sampleSize) {
msarett4b0778e2015-11-13 09:59:11 -0800497 folder.appendf("_%.3f", 1.0f / (float) sampleSize);
msarett3d9d7a72015-10-21 10:27:10 -0700498 }
499
scroggof8dc9df2016-05-16 09:04:13 -0700500 AndroidCodecSrc* src = new AndroidCodecSrc(path, dstColorType, dstAlphaType, sampleSize);
msarett3d9d7a72015-10-21 10:27:10 -0700501 push_src("image", folder, src);
502}
503
msarett18976312016-03-09 14:20:58 -0800504static void push_image_gen_src(Path path, ImageGenSrc::Mode mode, SkAlphaType alphaType, bool isGpu)
505{
506 SkString folder;
507 switch (mode) {
508 case ImageGenSrc::kCodec_Mode:
509 folder.append("gen_codec");
510 break;
511 case ImageGenSrc::kPlatform_Mode:
512 folder.append("gen_platform");
513 break;
514 }
515
516 if (isGpu) {
517 folder.append("_gpu");
518 } else {
519 switch (alphaType) {
520 case kOpaque_SkAlphaType:
521 folder.append("_opaque");
522 break;
523 case kPremul_SkAlphaType:
524 folder.append("_premul");
525 break;
526 case kUnpremul_SkAlphaType:
527 folder.append("_unpremul");
528 break;
529 default:
530 break;
531 }
532 }
533
534 ImageGenSrc* src = new ImageGenSrc(path, mode, alphaType, isGpu);
535 push_src("image", folder, src);
536}
537
Leon Scroggins III07418182017-08-15 12:24:02 -0400538static void push_brd_src(Path path, CodecSrc::DstColorType dstColorType, BRDSrc::Mode mode,
539 uint32_t sampleSize) {
540 SkString folder("brd_android_codec");
541 switch (mode) {
542 case BRDSrc::kFullImage_Mode:
543 break;
544 case BRDSrc::kDivisor_Mode:
545 folder.append("_divisor");
546 break;
547 default:
548 SkASSERT(false);
549 return;
550 }
551
552 switch (dstColorType) {
553 case CodecSrc::kGetFromCanvas_DstColorType:
554 break;
555 case CodecSrc::kGrayscale_Always_DstColorType:
556 folder.append("_kGray");
557 break;
558 default:
559 SkASSERT(false);
560 return;
561 }
562
563 if (1 != sampleSize) {
564 folder.appendf("_%.3f", 1.0f / (float) sampleSize);
565 }
566
567 BRDSrc* src = new BRDSrc(path, mode, dstColorType, sampleSize);
568 push_src("image", folder, src);
569}
570
571static void push_brd_srcs(Path path, bool gray) {
572 if (gray) {
573 // Only run grayscale to one sampleSize and Mode. Though interesting
574 // to test grayscale, it should not reveal anything across various
575 // sampleSizes and Modes
576 // Arbitrarily choose Mode and sampleSize.
577 push_brd_src(path, CodecSrc::kGrayscale_Always_DstColorType,
578 BRDSrc::kFullImage_Mode, 2);
579 }
580
581 // Test on a variety of sampleSizes, making sure to include:
582 // - 2, 4, and 8, which are natively supported by jpeg
583 // - multiples of 2 which are not divisible by 4 (analogous for 4)
584 // - larger powers of two, since BRD clients generally use powers of 2
585 // We will only produce output for the larger sizes on large images.
586 const uint32_t sampleSizes[] = { 1, 2, 3, 4, 5, 6, 7, 8, 12, 16, 24, 32, 64 };
587
588 const BRDSrc::Mode modes[] = { BRDSrc::kFullImage_Mode, BRDSrc::kDivisor_Mode, };
589
590 for (uint32_t sampleSize : sampleSizes) {
591 for (BRDSrc::Mode mode : modes) {
592 push_brd_src(path, CodecSrc::kGetFromCanvas_DstColorType, mode, sampleSize);
593 }
594 }
595}
596
msarett438b2ad2015-04-09 12:43:10 -0700597static void push_codec_srcs(Path path) {
bungeman38d909e2016-08-02 14:40:46 -0700598 sk_sp<SkData> encoded(SkData::MakeFromFileName(path.c_str()));
msarett438b2ad2015-04-09 12:43:10 -0700599 if (!encoded) {
mtkleinc41fd922016-03-08 09:01:39 -0800600 info("Couldn't read %s.", path.c_str());
msarett438b2ad2015-04-09 12:43:10 -0700601 return;
602 }
Mike Reedede7bac2017-07-23 15:30:02 -0400603 std::unique_ptr<SkCodec> codec = SkCodec::MakeFromData(encoded);
halcanary96fcdcc2015-08-27 07:41:13 -0700604 if (nullptr == codec.get()) {
mtkleinc41fd922016-03-08 09:01:39 -0800605 info("Couldn't create codec for %s.", path.c_str());
msarett438b2ad2015-04-09 12:43:10 -0700606 return;
607 }
608
scroggo9366aff2016-05-20 08:38:54 -0700609 // native scaling is only supported by WEBP and JPEG
610 bool supportsNativeScaling = false;
msarett438b2ad2015-04-09 12:43:10 -0700611
msarett91c22b22016-02-22 12:27:46 -0800612 SkTArray<CodecSrc::Mode> nativeModes;
613 nativeModes.push_back(CodecSrc::kCodec_Mode);
614 nativeModes.push_back(CodecSrc::kCodecZeroInit_Mode);
msarett91c22b22016-02-22 12:27:46 -0800615 switch (codec->getEncodedFormat()) {
Hal Canarydb683012016-11-23 08:55:18 -0700616 case SkEncodedImageFormat::kJPEG:
msarett91c22b22016-02-22 12:27:46 -0800617 nativeModes.push_back(CodecSrc::kScanline_Mode);
618 nativeModes.push_back(CodecSrc::kStripe_Mode);
619 nativeModes.push_back(CodecSrc::kCroppedScanline_Mode);
scroggo9366aff2016-05-20 08:38:54 -0700620 supportsNativeScaling = true;
msarett91c22b22016-02-22 12:27:46 -0800621 break;
Hal Canarydb683012016-11-23 08:55:18 -0700622 case SkEncodedImageFormat::kWEBP:
msarett91c22b22016-02-22 12:27:46 -0800623 nativeModes.push_back(CodecSrc::kSubset_Mode);
scroggo9366aff2016-05-20 08:38:54 -0700624 supportsNativeScaling = true;
msarett91c22b22016-02-22 12:27:46 -0800625 break;
Hal Canarydb683012016-11-23 08:55:18 -0700626 case SkEncodedImageFormat::kDNG:
msarettb65e6042016-02-23 05:37:25 -0800627 break;
msarett91c22b22016-02-22 12:27:46 -0800628 default:
629 nativeModes.push_back(CodecSrc::kScanline_Mode);
msarett91c22b22016-02-22 12:27:46 -0800630 break;
631 }
msarett9e707a02015-09-01 14:57:57 -0700632
msarett91c22b22016-02-22 12:27:46 -0800633 SkTArray<CodecSrc::DstColorType> colorTypes;
634 colorTypes.push_back(CodecSrc::kGetFromCanvas_DstColorType);
msarett34e0ec42016-04-22 16:27:24 -0700635 colorTypes.push_back(CodecSrc::kNonNative8888_Always_DstColorType);
msarett36c37962015-09-02 13:20:52 -0700636 switch (codec->getInfo().colorType()) {
637 case kGray_8_SkColorType:
msarett91c22b22016-02-22 12:27:46 -0800638 colorTypes.push_back(CodecSrc::kGrayscale_Always_DstColorType);
msarett36c37962015-09-02 13:20:52 -0700639 break;
640 default:
msarett36c37962015-09-02 13:20:52 -0700641 break;
642 }
msarett9e707a02015-09-01 14:57:57 -0700643
scroggoc5560be2016-02-03 09:42:42 -0800644 SkTArray<SkAlphaType> alphaModes;
645 alphaModes.push_back(kPremul_SkAlphaType);
scroggof2c96a22016-05-20 11:08:27 -0700646 if (codec->getInfo().alphaType() != kOpaque_SkAlphaType) {
647 alphaModes.push_back(kUnpremul_SkAlphaType);
scroggoc5560be2016-02-03 09:42:42 -0800648 }
msarettb714fb02016-01-22 14:46:42 -0800649
650 for (CodecSrc::Mode mode : nativeModes) {
scroggo9366aff2016-05-20 08:38:54 -0700651 for (CodecSrc::DstColorType colorType : colorTypes) {
652 for (SkAlphaType alphaType : alphaModes) {
scroggof2c96a22016-05-20 11:08:27 -0700653 // Only test kCroppedScanline_Mode when the alpha type is premul. The test is
scroggo9366aff2016-05-20 08:38:54 -0700654 // slow and won't be interestingly different with different alpha types.
655 if (CodecSrc::kCroppedScanline_Mode == mode &&
scroggof2c96a22016-05-20 11:08:27 -0700656 kPremul_SkAlphaType != alphaType) {
scroggo9366aff2016-05-20 08:38:54 -0700657 continue;
658 }
msarett91c22b22016-02-22 12:27:46 -0800659
scroggo9366aff2016-05-20 08:38:54 -0700660 push_codec_src(path, mode, colorType, alphaType, 1.0f);
msarettf3dc1882016-04-26 13:06:38 -0700661
scroggo9366aff2016-05-20 08:38:54 -0700662 // Skip kNonNative on different native scales. It won't be interestingly
663 // different.
664 if (supportsNativeScaling &&
665 CodecSrc::kNonNative8888_Always_DstColorType == colorType) {
666 // Native Scales
667 // SkJpegCodec natively supports scaling to the following:
668 for (auto scale : { 0.125f, 0.25f, 0.375f, 0.5f, 0.625f, 0.750f, 0.875f }) {
669 push_codec_src(path, mode, colorType, alphaType, scale);
670 }
scroggoc5560be2016-02-03 09:42:42 -0800671 }
msarett9e707a02015-09-01 14:57:57 -0700672 }
673 }
msarett0a242972015-06-11 14:27:27 -0700674 }
msarett36c37962015-09-02 13:20:52 -0700675
scroggo19b91532016-10-24 09:03:26 -0700676 {
677 std::vector<SkCodec::FrameInfo> frameInfos = codec->getFrameInfo();
678 if (frameInfos.size() > 1) {
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400679 for (auto dstCT : { CodecSrc::kNonNative8888_Always_DstColorType,
680 CodecSrc::kGetFromCanvas_DstColorType }) {
681 for (auto at : { kUnpremul_SkAlphaType, kPremul_SkAlphaType }) {
682 push_codec_src(path, CodecSrc::kAnimated_Mode, dstCT, at, 1.0f);
683 }
684 }
scroggo19b91532016-10-24 09:03:26 -0700685 }
686
687 }
688
scroggoe4499842016-02-25 11:03:47 -0800689 if (FLAGS_simpleCodec) {
690 return;
691 }
692
msarett3d9d7a72015-10-21 10:27:10 -0700693 const int sampleSizes[] = { 1, 2, 3, 4, 5, 6, 7, 8 };
msarett36c37962015-09-02 13:20:52 -0700694
msarett3d9d7a72015-10-21 10:27:10 -0700695 for (int sampleSize : sampleSizes) {
msarett91c22b22016-02-22 12:27:46 -0800696 for (CodecSrc::DstColorType colorType : colorTypes) {
scroggoc5560be2016-02-03 09:42:42 -0800697 for (SkAlphaType alphaType : alphaModes) {
msarettf3dc1882016-04-26 13:06:38 -0700698 // We can exercise all of the kNonNative support code in the swizzler with just a
699 // few sample sizes. Skip the rest.
700 if (CodecSrc::kNonNative8888_Always_DstColorType == colorType && sampleSize > 3) {
701 continue;
702 }
703
scroggof8dc9df2016-05-16 09:04:13 -0700704 push_android_codec_src(path, colorType, alphaType, sampleSize);
msarett3d9d7a72015-10-21 10:27:10 -0700705 }
msarett36c37962015-09-02 13:20:52 -0700706 }
707 }
msarett18976312016-03-09 14:20:58 -0800708
Leon Scroggins III07418182017-08-15 12:24:02 -0400709 const char* ext = strrchr(path.c_str(), '.');
710 if (ext) {
711 ext++;
msarett18976312016-03-09 14:20:58 -0800712
Leon Scroggins III07418182017-08-15 12:24:02 -0400713 static const char* const rawExts[] = {
714 "arw", "cr2", "dng", "nef", "nrw", "orf", "raf", "rw2", "pef", "srw",
715 "ARW", "CR2", "DNG", "NEF", "NRW", "ORF", "RAF", "RW2", "PEF", "SRW",
716 };
717 for (const char* rawExt : rawExts) {
718 if (0 == strcmp(rawExt, ext)) {
719 // RAW is not supported by image generator (skbug.com/5079) or BRD.
720 return;
721 }
722 }
723
724 static const char* const brdExts[] = {
725 "jpg", "jpeg", "png", "webp",
726 "JPG", "JPEG", "PNG", "WEBP",
727 };
728 for (const char* brdExt : brdExts) {
729 if (0 == strcmp(brdExt, ext)) {
Leon Scroggins IIIc8037dc2017-12-05 13:55:24 -0500730 bool gray = codec->getInfo().colorType() == kGray_8_SkColorType;
Leon Scroggins III07418182017-08-15 12:24:02 -0400731 push_brd_srcs(path, gray);
732 break;
733 }
msarett18976312016-03-09 14:20:58 -0800734 }
735 }
736
737 // Push image generator GPU test.
brianosmanc9ced392016-03-24 07:27:43 -0700738 push_image_gen_src(path, ImageGenSrc::kCodec_Mode, codec->getInfo().alphaType(), true);
msarett18976312016-03-09 14:20:58 -0800739
740 // Push image generator CPU tests.
741 for (SkAlphaType alphaType : alphaModes) {
742 push_image_gen_src(path, ImageGenSrc::kCodec_Mode, alphaType, false);
743
744#if defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_IOS)
Hal Canarydb683012016-11-23 08:55:18 -0700745 if (SkEncodedImageFormat::kWEBP != codec->getEncodedFormat() &&
746 SkEncodedImageFormat::kWBMP != codec->getEncodedFormat() &&
msarett18976312016-03-09 14:20:58 -0800747 kUnpremul_SkAlphaType != alphaType)
748 {
749 push_image_gen_src(path, ImageGenSrc::kPlatform_Mode, alphaType, false);
750 }
msarettfc0b6d12016-03-17 13:50:17 -0700751#elif defined(SK_BUILD_FOR_WIN)
Hal Canarydb683012016-11-23 08:55:18 -0700752 if (SkEncodedImageFormat::kWEBP != codec->getEncodedFormat() &&
753 SkEncodedImageFormat::kWBMP != codec->getEncodedFormat())
msarettfc0b6d12016-03-17 13:50:17 -0700754 {
755 push_image_gen_src(path, ImageGenSrc::kPlatform_Mode, alphaType, false);
756 }
msarett18976312016-03-09 14:20:58 -0800757#endif
758 }
msarett438b2ad2015-04-09 12:43:10 -0700759}
760
fmalitaa2b9fdf2016-08-03 19:53:36 -0700761template <typename T>
762void gather_file_srcs(const SkCommandLineFlags::StringArray& flags, const char* ext) {
763 for (int i = 0; i < flags.count(); i++) {
764 const char* path = flags[i];
765 if (sk_isdir(path)) {
766 SkOSFile::Iter it(path, ext);
767 for (SkString file; it.next(&file); ) {
768 push_src(ext, "", new T(SkOSPath::Join(path, file.c_str())));
769 }
770 } else {
771 push_src(ext, "", new T(path));
772 }
773 }
774}
775
scroggo86737142016-02-03 12:19:11 -0800776static bool gather_srcs() {
mtklein748ca3b2015-01-15 10:56:12 -0800777 for (const skiagm::GMRegistry* r = skiagm::GMRegistry::Head(); r; r = r->next()) {
djsollen54416de2015-04-03 07:24:48 -0700778 push_src("gm", "", new GMSrc(r->factory()));
mtklein748ca3b2015-01-15 10:56:12 -0800779 }
scroggo86737142016-02-03 12:19:11 -0800780
Robert Phillipsad8a43f2017-08-30 12:06:35 -0400781 if (FLAGS_ddl) {
782 gather_file_srcs<DDLSKPSrc>(FLAGS_skps, "skp");
783 } else {
784 gather_file_srcs<SKPSrc>(FLAGS_skps, "skp");
785 }
fmalitaa2b9fdf2016-08-03 19:53:36 -0700786 gather_file_srcs<MSKPSrc>(FLAGS_mskps, "mskp");
Florin Malita124d5af2017-12-31 17:02:26 -0500787#if !defined(SK_BUILD_FOR_GOOGLE3)
Florin Malita54f65c42018-01-16 17:04:30 -0500788 gather_file_srcs<SkottieSrc>(FLAGS_jsons, "json");
Florin Malita124d5af2017-12-31 17:02:26 -0500789#endif
fmalitaa2b9fdf2016-08-03 19:53:36 -0700790#if defined(SK_XML)
791 gather_file_srcs<SVGSrc>(FLAGS_svgs, "svg");
792#endif
halcanary45420a92016-06-02 12:41:14 -0700793
scroggo86737142016-02-03 12:19:11 -0800794 SkTArray<SkString> images;
msarett69deca82016-04-29 09:38:40 -0700795 if (!CollectImages(FLAGS_images, &images)) {
scroggo86737142016-02-03 12:19:11 -0800796 return false;
797 }
798
799 for (auto image : images) {
800 push_codec_srcs(image);
mtklein709d2c32015-01-15 08:30:25 -0800801 }
scroggo86737142016-02-03 12:19:11 -0800802
msarett69deca82016-04-29 09:38:40 -0700803 SkTArray<SkString> colorImages;
804 if (!CollectImages(FLAGS_colorImages, &colorImages)) {
805 return false;
806 }
807
808 for (auto colorImage : colorImages) {
msarett9ce3a542016-07-15 13:54:38 -0700809 ColorCodecSrc* src = new ColorCodecSrc(colorImage, ColorCodecSrc::kBaseline_Mode,
810 kN32_SkColorType);
msarettb8d1aac2016-08-04 12:22:06 -0700811 push_src("colorImage", "color_codec_baseline", src);
msarett888dc162016-05-23 10:21:17 -0700812
msarett9ce3a542016-07-15 13:54:38 -0700813 src = new ColorCodecSrc(colorImage, ColorCodecSrc::kDst_HPZR30w_Mode, kN32_SkColorType);
msarettb8d1aac2016-08-04 12:22:06 -0700814 push_src("colorImage", "color_codec_HPZR30w", src);
msarett9ce3a542016-07-15 13:54:38 -0700815 // TODO (msarett):
816 // 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 -0700817
msarett9ce3a542016-07-15 13:54:38 -0700818 src = new ColorCodecSrc(colorImage, ColorCodecSrc::kDst_sRGB_Mode, kN32_SkColorType);
msarettb8d1aac2016-08-04 12:22:06 -0700819 push_src("colorImage", "color_codec_sRGB_kN32", src);
msarett9ce3a542016-07-15 13:54:38 -0700820 src = new ColorCodecSrc(colorImage, ColorCodecSrc::kDst_sRGB_Mode, kRGBA_F16_SkColorType);
msarettb8d1aac2016-08-04 12:22:06 -0700821 push_src("colorImage", "color_codec_sRGB_kF16", src);
msarett69deca82016-04-29 09:38:40 -0700822 }
823
scroggo86737142016-02-03 12:19:11 -0800824 return true;
mtklein709d2c32015-01-15 08:30:25 -0800825}
826
kkinnunen3e980c32015-12-23 01:33:00 -0800827static void push_sink(const SkCommandLineConfig& config, Sink* s) {
Ben Wagner145dbcd2016-11-03 14:40:50 -0400828 std::unique_ptr<Sink> sink(s);
kkinnunen3e980c32015-12-23 01:33:00 -0800829
mtkleine0effd62015-07-29 06:37:28 -0700830 // Try a simple Src as a canary. If it fails, skip this sink.
mtklein748ca3b2015-01-15 10:56:12 -0800831 struct : public Src {
mtkleine0effd62015-07-29 06:37:28 -0700832 Error draw(SkCanvas* c) const override {
833 c->drawRect(SkRect::MakeWH(1,1), SkPaint());
834 return "";
835 }
mtklein36352bf2015-03-25 18:17:31 -0700836 SkISize size() const override { return SkISize::Make(16, 16); }
mtkleine0effd62015-07-29 06:37:28 -0700837 Name name() const override { return "justOneRect"; }
838 } justOneRect;
mtklein114c3cd2015-01-15 10:15:02 -0800839
mtklein748ca3b2015-01-15 10:56:12 -0800840 SkBitmap bitmap;
841 SkDynamicMemoryWStream stream;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800842 SkString log;
mtkleine0effd62015-07-29 06:37:28 -0700843 Error err = sink->draw(justOneRect, &bitmap, &stream, &log);
mtklein4089ef72015-03-05 08:40:28 -0800844 if (err.isFatal()) {
mtkleinc41fd922016-03-08 09:01:39 -0800845 info("Could not run %s: %s\n", config.getTag().c_str(), err.c_str());
mtklein05641a52015-04-21 10:49:13 -0700846 exit(1);
mtklein114c3cd2015-01-15 10:15:02 -0800847 }
848
mtkleine0effd62015-07-29 06:37:28 -0700849 TaggedSink& ts = gSinks.push_back();
mtklein18300a32016-03-16 13:53:35 -0700850 ts.reset(sink.release());
kkinnunen3e980c32015-12-23 01:33:00 -0800851 ts.tag = config.getTag();
mtklein748ca3b2015-01-15 10:56:12 -0800852}
853
854static bool gpu_supported() {
855#if SK_SUPPORT_GPU
856 return FLAGS_gpu;
857#else
858 return false;
859#endif
860}
kkinnunen9ebc3f02015-12-21 23:48:13 -0800861
csmartdalton008b9d82017-02-22 12:00:42 -0700862static Sink* create_sink(const GrContextOptions& grCtxOptions, const SkCommandLineConfig* config) {
kkinnunen3e980c32015-12-23 01:33:00 -0800863#if SK_SUPPORT_GPU
864 if (gpu_supported()) {
865 if (const SkCommandLineConfigGpu* gpuConfig = config->asConfigGpu()) {
bsalomon85b4b532016-04-05 11:06:27 -0700866 GrContextFactory::ContextType contextType = gpuConfig->getContextType();
csmartdaltone812d492017-02-21 12:36:05 -0700867 GrContextFactory::ContextOverrides contextOverrides = gpuConfig->getContextOverrides();
csmartdalton008b9d82017-02-22 12:00:42 -0700868 GrContextFactory testFactory(grCtxOptions);
csmartdaltone812d492017-02-21 12:36:05 -0700869 if (!testFactory.get(contextType, contextOverrides)) {
mtkleinc41fd922016-03-08 09:01:39 -0800870 info("WARNING: can not create GPU context for config '%s'. "
871 "GM tests will be skipped.\n", gpuConfig->getTag().c_str());
kkinnunen3e980c32015-12-23 01:33:00 -0800872 return nullptr;
873 }
Brian Osmanf9810662017-08-30 10:02:10 -0400874 if (gpuConfig->getTestThreading()) {
875 return new GPUThreadTestingSink(contextType, contextOverrides,
876 gpuConfig->getSamples(), gpuConfig->getUseDIText(),
877 gpuConfig->getColorType(),
878 gpuConfig->getAlphaType(),
879 sk_ref_sp(gpuConfig->getColorSpace()),
880 FLAGS_gpu_threading, grCtxOptions);
881 } else {
882 return new GPUSink(contextType, contextOverrides, gpuConfig->getSamples(),
883 gpuConfig->getUseDIText(), gpuConfig->getColorType(),
884 gpuConfig->getAlphaType(), sk_ref_sp(gpuConfig->getColorSpace()),
885 FLAGS_gpu_threading, grCtxOptions);
886 }
kkinnunen3e980c32015-12-23 01:33:00 -0800887 }
888 }
889#endif
890
891#define SINK(t, sink, ...) if (config->getBackend().equals(t)) { return new sink(__VA_ARGS__); }
892
mtklein748ca3b2015-01-15 10:56:12 -0800893 if (FLAGS_cpu) {
Matt Sarett77a7a1b2017-02-07 13:56:11 -0500894 auto srgbColorSpace = SkColorSpace::MakeSRGB();
895 auto srgbLinearColorSpace = SkColorSpace::MakeSRGBLinear();
brianosmanb109b8c2016-06-16 13:03:24 -0700896
Mike Klein515bda62018-01-09 11:21:58 -0500897 SINK("g8", RasterSink, kGray_8_SkColorType);
Matt Sarettd2228302017-03-02 08:53:46 -0500898 SINK("565", RasterSink, kRGB_565_SkColorType);
Mike Klein5340b3f2018-01-24 13:42:05 -0500899 SINK("4444", RasterSink, kARGB_4444_SkColorType);
Matt Sarettd2228302017-03-02 08:53:46 -0500900 SINK("8888", RasterSink, kN32_SkColorType);
901 SINK("srgb", RasterSink, kN32_SkColorType, srgbColorSpace);
Mike Kleinac568a92018-01-25 09:09:32 -0500902 SINK("rgba", RasterSink, kRGBA_8888_SkColorType);
903 SINK("bgra", RasterSink, kBGRA_8888_SkColorType);
904 SINK("rgbx", RasterSink, kRGB_888x_SkColorType);
905 SINK("1010102", RasterSink, kRGBA_1010102_SkColorType);
906 SINK("101010x", RasterSink, kRGB_101010x_SkColorType);
Matt Sarettd2228302017-03-02 08:53:46 -0500907 SINK("f16", RasterSink, kRGBA_F16_SkColorType, srgbLinearColorSpace);
Hal Canaryc7d295e2017-07-20 15:36:00 -0400908 SINK("pdf", PDFSink, false, SK_ScalarDefaultRasterDPI);
Matt Sarettd2228302017-03-02 08:53:46 -0500909 SINK("skp", SKPSink);
910 SINK("pipe", PipeSink);
911 SINK("svg", SVGSink);
912 SINK("null", NullSink);
913 SINK("xps", XPSSink);
Hal Canaryc7d295e2017-07-20 15:36:00 -0400914 SINK("pdfa", PDFSink, true, SK_ScalarDefaultRasterDPI);
915 SINK("pdf300", PDFSink, false, 300);
Hal Canary85c7fe82016-10-25 10:33:27 -0400916 SINK("jsdebug", DebugSink);
mtklein748ca3b2015-01-15 10:56:12 -0800917 }
918#undef SINK
halcanary96fcdcc2015-08-27 07:41:13 -0700919 return nullptr;
mtklein114c3cd2015-01-15 10:15:02 -0800920}
921
Mike Klein841101d2017-03-10 09:55:51 -0500922static sk_sp<SkColorSpace> adobe_rgb() {
923 return SkColorSpace::MakeRGB(SkColorSpace::kSRGB_RenderTargetGamma,
924 SkColorSpace::kAdobeRGB_Gamut);
925}
926
Mike Kleinb7ea3da2017-10-31 17:42:08 +0000927static sk_sp<SkColorSpace> rgb_to_gbr() {
Brian Osman36703d92017-12-12 14:09:31 -0500928 return SkColorSpace::MakeSRGB()->makeColorSpin();
Mike Klein919cc452017-03-18 15:36:52 +0000929}
930
kkinnunen3e980c32015-12-23 01:33:00 -0800931static Sink* create_via(const SkString& tag, Sink* wrapped) {
932#define VIA(t, via, ...) if (tag.equals(t)) { return new via(__VA_ARGS__); }
Mike Klein919cc452017-03-18 15:36:52 +0000933 VIA("adobe", ViaCSXform, wrapped, adobe_rgb(), false);
Mike Kleinb7ea3da2017-10-31 17:42:08 +0000934 VIA("gbr", ViaCSXform, wrapped, rgb_to_gbr(), true);
mtklein9c5052f2016-08-06 12:51:51 -0700935 VIA("lite", ViaLite, wrapped);
reed54dc4872016-09-13 08:09:45 -0700936 VIA("pipe", ViaPipe, wrapped);
Mike Reedbae888e2017-02-18 16:50:45 -0500937#ifdef TEST_VIA_SVG
Mike Reedf67c4592017-02-17 17:06:11 -0500938 VIA("svg", ViaSVG, wrapped);
Mike Reedbae888e2017-02-18 16:50:45 -0500939#endif
halcanary96fcdcc2015-08-27 07:41:13 -0700940 VIA("serialize", ViaSerialization, wrapped);
mtklein4a34ecb2016-01-08 10:19:35 -0800941 VIA("pic", ViaPicture, wrapped);
halcanary96fcdcc2015-08-27 07:41:13 -0700942 VIA("tiles", ViaTiles, 256, 256, nullptr, wrapped);
mtklein7edca212015-01-21 13:18:51 -0800943 VIA("tiles_rt", ViaTiles, 256, 256, new SkRTreeFactory, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800944
mtkleind603b222015-02-17 11:13:33 -0800945 if (FLAGS_matrix.count() == 4) {
mtklein748ca3b2015-01-15 10:56:12 -0800946 SkMatrix m;
mtkleind603b222015-02-17 11:13:33 -0800947 m.reset();
948 m.setScaleX((SkScalar)atof(FLAGS_matrix[0]));
949 m.setSkewX ((SkScalar)atof(FLAGS_matrix[1]));
950 m.setSkewY ((SkScalar)atof(FLAGS_matrix[2]));
951 m.setScaleY((SkScalar)atof(FLAGS_matrix[3]));
952 VIA("matrix", ViaMatrix, m, wrapped);
953 VIA("upright", ViaUpright, m, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800954 }
tomhudson64de1e12015-03-05 08:01:07 -0800955
mtklein748ca3b2015-01-15 10:56:12 -0800956#undef VIA
halcanary96fcdcc2015-08-27 07:41:13 -0700957 return nullptr;
mtklein114c3cd2015-01-15 10:15:02 -0800958}
959
Ben Wagnerf28d4722017-08-11 17:33:22 -0400960static bool gather_sinks(const GrContextOptions& grCtxOptions, bool defaultConfigs) {
kkinnunen3e980c32015-12-23 01:33:00 -0800961 SkCommandLineConfigArray configs;
962 ParseConfigs(FLAGS_config, &configs);
963 for (int i = 0; i < configs.count(); i++) {
964 const SkCommandLineConfig& config = *configs[i];
csmartdalton008b9d82017-02-22 12:00:42 -0700965 Sink* sink = create_sink(grCtxOptions, &config);
kkinnunen3e980c32015-12-23 01:33:00 -0800966 if (sink == nullptr) {
mtkleinc41fd922016-03-08 09:01:39 -0800967 info("Skipping config %s: Don't understand '%s'.\n", config.getTag().c_str(),
968 config.getTag().c_str());
kkinnunen3e980c32015-12-23 01:33:00 -0800969 continue;
970 }
mtklein748ca3b2015-01-15 10:56:12 -0800971
kkinnunen3e980c32015-12-23 01:33:00 -0800972 const SkTArray<SkString>& parts = config.getViaParts();
973 for (int j = parts.count(); j-- > 0;) {
974 const SkString& part = parts[j];
975 Sink* next = create_via(part, sink);
halcanary96fcdcc2015-08-27 07:41:13 -0700976 if (next == nullptr) {
mtkleinc41fd922016-03-08 09:01:39 -0800977 info("Skipping config %s: Don't understand '%s'.\n", config.getTag().c_str(),
978 part.c_str());
mtklein748ca3b2015-01-15 10:56:12 -0800979 delete sink;
halcanary96fcdcc2015-08-27 07:41:13 -0700980 sink = nullptr;
mtklein748ca3b2015-01-15 10:56:12 -0800981 break;
982 }
983 sink = next;
984 }
985 if (sink) {
986 push_sink(config, sink);
mtklein114c3cd2015-01-15 10:15:02 -0800987 }
988 }
brianosman05c987c2016-05-09 13:42:16 -0700989
990 // If no configs were requested (just running tests, perhaps?), then we're okay.
Ben Wagnerf28d4722017-08-11 17:33:22 -0400991 if (configs.count() == 0 ||
992 // If we're using the default configs, we're okay.
993 defaultConfigs ||
Ben Wagner32fa5102017-08-10 21:25:55 -0400994 // If we've been told to ignore undefined flags, we're okay.
995 FLAGS_undefok ||
996 // Otherwise, make sure that all specified configs have become sinks.
997 configs.count() == gSinks.count()) {
998 return true;
999 }
1000 info("Invalid --config. Use --undefok to bypass this warning.\n");
1001 return false;
mtklein114c3cd2015-01-15 10:15:02 -08001002}
mtklein709d2c32015-01-15 08:30:25 -08001003
mtkleina5114d72015-08-24 13:27:01 -07001004static bool dump_png(SkBitmap bitmap, const char* path, const char* md5) {
Mike Klein13b6afd2017-06-12 12:45:41 -04001005 SkPixmap pm;
1006 if (!bitmap.peekPixels(&pm)) {
1007 return false; // Ought to never happen... we're already read-back at this point.
mtkleina5114d72015-08-24 13:27:01 -07001008 }
Mike Klein13b6afd2017-06-12 12:45:41 -04001009 SkFILEWStream dst{path};
mtkleina5114d72015-08-24 13:27:01 -07001010
mtkleind69ece62015-09-10 10:37:44 -07001011 SkString description;
1012 description.append("Key: ");
1013 for (int i = 0; i < FLAGS_key.count(); i++) {
1014 description.appendf("%s ", FLAGS_key[i]);
1015 }
1016 description.append("Properties: ");
1017 for (int i = 0; i < FLAGS_properties.count(); i++) {
1018 description.appendf("%s ", FLAGS_properties[i]);
1019 }
1020 description.appendf("MD5: %s", md5);
1021
Mike Klein13b6afd2017-06-12 12:45:41 -04001022 const char* comments[] = {
1023 "Author", "DM dump_png()",
1024 "Description", description.c_str(),
1025 };
1026 size_t lengths[] = {
1027 strlen(comments[0])+1, strlen(comments[1])+1,
1028 strlen(comments[2])+1, strlen(comments[3])+1,
1029 };
mtkleina5114d72015-08-24 13:27:01 -07001030
Mike Klein13b6afd2017-06-12 12:45:41 -04001031 SkPngEncoder::Options options;
1032 options.fComments = SkDataTable::MakeCopyArrays((const void**)comments, lengths, 4);
1033 options.fFilterFlags = SkPngEncoder::FilterFlag::kNone;
1034 options.fZLibLevel = 1;
1035 options.fUnpremulBehavior = pm.colorSpace() ? SkTransferFunctionBehavior::kRespect
1036 : SkTransferFunctionBehavior::kIgnore;
1037 return SkPngEncoder::Encode(&dst, pm, options);
mtkleina5114d72015-08-24 13:27:01 -07001038}
1039
mtkleina2ef6422015-01-15 13:44:22 -08001040static bool match(const char* needle, const char* haystack) {
Chris Daltonecf78ac2017-08-15 15:43:08 -06001041 if ('~' == needle[0]) {
1042 return !match(needle + 1, haystack);
1043 }
1044 if (0 == strcmp("_", needle)) {
1045 return true;
1046 }
1047 return nullptr != strstr(haystack, needle);
mtkleina2ef6422015-01-15 13:44:22 -08001048}
1049
mtklein3eed7dd2016-02-24 19:07:07 -08001050static bool is_blacklisted(const char* sink, const char* src,
1051 const char* srcOptions, const char* name) {
mtklein0d243ff2015-04-03 07:51:00 -07001052 for (int i = 0; i < FLAGS_blacklist.count() - 3; i += 4) {
mtkleina2ef6422015-01-15 13:44:22 -08001053 if (match(FLAGS_blacklist[i+0], sink) &&
djsollen54416de2015-04-03 07:24:48 -07001054 match(FLAGS_blacklist[i+1], src) &&
1055 match(FLAGS_blacklist[i+2], srcOptions) &&
1056 match(FLAGS_blacklist[i+3], name)) {
mtklein3eed7dd2016-02-24 19:07:07 -08001057 return true;
mtkleina2ef6422015-01-15 13:44:22 -08001058 }
1059 }
mtklein3eed7dd2016-02-24 19:07:07 -08001060 return false;
mtkleina2ef6422015-01-15 13:44:22 -08001061}
1062
mtkleincd50bca2016-01-05 06:20:20 -08001063// Even when a Task Sink reports to be non-threadsafe (e.g. GPU), we know things like
1064// .png encoding are definitely thread safe. This lets us offload that work to CPU threads.
1065static SkTaskGroup gDefinitelyThreadSafeWork;
1066
mtklein748ca3b2015-01-15 10:56:12 -08001067// The finest-grained unit of work we can run: draw a single Src into a single Sink,
1068// report any errors, and perhaps write out the output: a .png of the bitmap, or a raw stream.
1069struct Task {
mtkleine0effd62015-07-29 06:37:28 -07001070 Task(const TaggedSrc& src, const TaggedSink& sink) : src(src), sink(sink) {}
1071 const TaggedSrc& src;
1072 const TaggedSink& sink;
mtklein748ca3b2015-01-15 10:56:12 -08001073
mtklein21eaf3b2016-02-08 12:39:59 -08001074 static void Run(const Task& task) {
1075 SkString name = task.src->name();
mtkleine0effd62015-07-29 06:37:28 -07001076
mtkleinb9eb4ac2015-02-02 18:26:03 -08001077 SkString log;
mtklein3eed7dd2016-02-24 19:07:07 -08001078 if (!FLAGS_dryRun) {
mtklein748ca3b2015-01-15 10:56:12 -08001079 SkBitmap bitmap;
1080 SkDynamicMemoryWStream stream;
mtklein3eed7dd2016-02-24 19:07:07 -08001081 start(task.sink.tag.c_str(), task.src.tag.c_str(),
1082 task.src.options.c_str(), name.c_str());
mtklein21eaf3b2016-02-08 12:39:59 -08001083 Error err = task.sink->draw(*task.src, &bitmap, &stream, &log);
mtkleinb3b13b72016-03-07 13:20:52 -08001084 if (!log.isEmpty()) {
mtkleinc41fd922016-03-08 09:01:39 -08001085 info("%s %s %s %s:\n%s\n", task.sink.tag.c_str()
1086 , task.src.tag.c_str()
1087 , task.src.options.c_str()
1088 , name.c_str()
1089 , log.c_str());
mtkleinb3b13b72016-03-07 13:20:52 -08001090 }
mtklein748ca3b2015-01-15 10:56:12 -08001091 if (!err.isEmpty()) {
mtklein4089ef72015-03-05 08:40:28 -08001092 if (err.isFatal()) {
djsollen54416de2015-04-03 07:24:48 -07001093 fail(SkStringPrintf("%s %s %s %s: %s",
mtklein21eaf3b2016-02-08 12:39:59 -08001094 task.sink.tag.c_str(),
1095 task.src.tag.c_str(),
1096 task.src.options.c_str(),
mtklein4089ef72015-03-05 08:40:28 -08001097 name.c_str(),
1098 err.c_str()));
mtkleinb37cb412015-03-18 05:27:14 -07001099 } else {
mtklein3eed7dd2016-02-24 19:07:07 -08001100 done(task.sink.tag.c_str(), task.src.tag.c_str(),
1101 task.src.options.c_str(), name.c_str());
mtkleinba6ada72016-01-21 09:39:35 -08001102 return;
mtklein4089ef72015-03-05 08:40:28 -08001103 }
mtklein748ca3b2015-01-15 10:56:12 -08001104 }
mtklein62bd1a62015-01-27 14:46:26 -08001105
mtkleincd50bca2016-01-05 06:20:20 -08001106 // We're likely switching threads here, so we must capture by value, [=] or [foo,bar].
Hal Canary0b833192017-03-14 14:35:02 -04001107 SkStreamAsset* data = stream.detachAsStream().release();
mtkleincd50bca2016-01-05 06:20:20 -08001108 gDefinitelyThreadSafeWork.add([task,name,bitmap,data]{
Ben Wagner145dbcd2016-11-03 14:40:50 -04001109 std::unique_ptr<SkStreamAsset> ownedData(data);
mtkleincd50bca2016-01-05 06:20:20 -08001110
mtkleincd50bca2016-01-05 06:20:20 -08001111 SkString md5;
1112 if (!FLAGS_writePath.isEmpty() || !FLAGS_readPath.isEmpty()) {
1113 SkMD5 hash;
1114 if (data->getLength()) {
1115 hash.writeStream(data, data->getLength());
1116 data->rewind();
mtklein38408462015-07-08 07:25:27 -07001117 } else {
mtkleincd50bca2016-01-05 06:20:20 -08001118 // If we're BGRA (Linux, Windows), swizzle over to RGBA (Mac, Android).
1119 // This helps eliminate multiple 0-pixel-diff hashes on gold.skia.org.
1120 // (Android's general slow speed breaks the tie arbitrarily in RGBA's favor.)
1121 // We might consider promoting 565 to RGBA too.
1122 if (bitmap.colorType() == kBGRA_8888_SkColorType) {
1123 SkBitmap swizzle;
Matt Sarett68b8e3d2017-04-28 11:15:22 -04001124 SkAssertResult(sk_tool_utils::copy_to(&swizzle, kRGBA_8888_SkColorType,
1125 bitmap));
Mike Reedf0ffb892017-10-03 14:47:21 -04001126 hash.write(swizzle.getPixels(), swizzle.computeByteSize());
mtkleincd50bca2016-01-05 06:20:20 -08001127 } else {
Mike Reedf0ffb892017-10-03 14:47:21 -04001128 hash.write(bitmap.getPixels(), bitmap.computeByteSize());
mtkleincd50bca2016-01-05 06:20:20 -08001129 }
1130 }
1131 SkMD5::Digest digest;
1132 hash.finish(digest);
1133 for (int i = 0; i < 16; i++) {
1134 md5.appendf("%02x", digest.data[i]);
mtklein38408462015-07-08 07:25:27 -07001135 }
mtklein62bd1a62015-01-27 14:46:26 -08001136 }
mtklein62bd1a62015-01-27 14:46:26 -08001137
mtkleincd50bca2016-01-05 06:20:20 -08001138 if (!FLAGS_readPath.isEmpty() &&
mtklein3eed7dd2016-02-24 19:07:07 -08001139 !gGold.contains(Gold(task.sink.tag, task.src.tag,
1140 task.src.options, name, md5))) {
mtkleincd50bca2016-01-05 06:20:20 -08001141 fail(SkStringPrintf("%s not found for %s %s %s %s in %s",
1142 md5.c_str(),
mtklein21eaf3b2016-02-08 12:39:59 -08001143 task.sink.tag.c_str(),
1144 task.src.tag.c_str(),
1145 task.src.options.c_str(),
mtkleincd50bca2016-01-05 06:20:20 -08001146 name.c_str(),
1147 FLAGS_readPath[0]));
mtklein748ca3b2015-01-15 10:56:12 -08001148 }
mtkleincd50bca2016-01-05 06:20:20 -08001149
1150 if (!FLAGS_writePath.isEmpty()) {
mtklein21eaf3b2016-02-08 12:39:59 -08001151 const char* ext = task.sink->fileExtension();
Brian Osmanf1942de2017-08-30 14:50:22 -04001152 if (ext && !FLAGS_dont_write.contains(ext)) {
Mike Klein97d6a7a2017-07-24 10:37:19 -04001153 if (data->getLength()) {
1154 WriteToDisk(task, md5, ext, data, data->getLength(), nullptr);
1155 SkASSERT(bitmap.drawsNothing());
1156 } else if (!bitmap.drawsNothing()) {
1157 WriteToDisk(task, md5, ext, nullptr, 0, &bitmap);
1158 }
mtkleincd50bca2016-01-05 06:20:20 -08001159 }
1160 }
1161 });
mtklein748ca3b2015-01-15 10:56:12 -08001162 }
mtklein3eed7dd2016-02-24 19:07:07 -08001163 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 -08001164 }
1165
1166 static void WriteToDisk(const Task& task,
mtklein62bd1a62015-01-27 14:46:26 -08001167 SkString md5,
1168 const char* ext,
mtklein748ca3b2015-01-15 10:56:12 -08001169 SkStream* data, size_t len,
mtklein62bd1a62015-01-27 14:46:26 -08001170 const SkBitmap* bitmap) {
mtklein409d4702016-02-29 07:38:01 -08001171 bool gammaCorrect = false;
1172 if (bitmap) {
Brian Osman7039f742016-11-01 15:56:16 -04001173 gammaCorrect = SkToBool(bitmap->info().colorSpace());
mtklein409d4702016-02-29 07:38:01 -08001174 }
1175
mtklein748ca3b2015-01-15 10:56:12 -08001176 JsonWriter::BitmapResult result;
djsollen54416de2015-04-03 07:24:48 -07001177 result.name = task.src->name();
mtklein3eed7dd2016-02-24 19:07:07 -08001178 result.config = task.sink.tag;
djsollen54416de2015-04-03 07:24:48 -07001179 result.sourceType = task.src.tag;
1180 result.sourceOptions = task.src.options;
1181 result.ext = ext;
mtklein409d4702016-02-29 07:38:01 -08001182 result.gammaCorrect = gammaCorrect;
djsollen54416de2015-04-03 07:24:48 -07001183 result.md5 = md5;
mtklein748ca3b2015-01-15 10:56:12 -08001184 JsonWriter::AddBitmapResult(result);
1185
mtkleinb0531a72015-04-07 13:38:48 -07001186 // If an MD5 is uninteresting, we want it noted in the JSON file,
1187 // but don't want to dump it out as a .png (or whatever ext is).
1188 if (gUninterestingHashes.contains(md5)) {
1189 return;
1190 }
1191
mtklein748ca3b2015-01-15 10:56:12 -08001192 const char* dir = FLAGS_writePath[0];
1193 if (0 == strcmp(dir, "@")) { // Needed for iOS.
1194 dir = FLAGS_resourcePath[0];
1195 }
1196 sk_mkdir(dir);
1197
1198 SkString path;
1199 if (FLAGS_nameByHash) {
1200 path = SkOSPath::Join(dir, result.md5.c_str());
1201 path.append(".");
1202 path.append(ext);
1203 if (sk_exists(path.c_str())) {
1204 return; // Content-addressed. If it exists already, we're done.
1205 }
1206 } else {
kkinnunen3e980c32015-12-23 01:33:00 -08001207 path = SkOSPath::Join(dir, task.sink.tag.c_str());
mtklein748ca3b2015-01-15 10:56:12 -08001208 sk_mkdir(path.c_str());
msarett9e707a02015-09-01 14:57:57 -07001209 path = SkOSPath::Join(path.c_str(), task.src.tag.c_str());
mtklein748ca3b2015-01-15 10:56:12 -08001210 sk_mkdir(path.c_str());
msarett9e707a02015-09-01 14:57:57 -07001211 if (strcmp(task.src.options.c_str(), "") != 0) {
1212 path = SkOSPath::Join(path.c_str(), task.src.options.c_str());
djsollen54416de2015-04-03 07:24:48 -07001213 sk_mkdir(path.c_str());
1214 }
mtklein748ca3b2015-01-15 10:56:12 -08001215 path = SkOSPath::Join(path.c_str(), task.src->name().c_str());
1216 path.append(".");
1217 path.append(ext);
1218 }
1219
mtklein748ca3b2015-01-15 10:56:12 -08001220 if (bitmap) {
mtkleina5114d72015-08-24 13:27:01 -07001221 if (!dump_png(*bitmap, path.c_str(), result.md5.c_str())) {
mtklein748ca3b2015-01-15 10:56:12 -08001222 fail(SkStringPrintf("Can't encode PNG to %s.\n", path.c_str()));
1223 return;
1224 }
1225 } else {
mtkleina5114d72015-08-24 13:27:01 -07001226 SkFILEWStream file(path.c_str());
1227 if (!file.isValid()) {
1228 fail(SkStringPrintf("Can't open %s for writing.\n", path.c_str()));
1229 return;
1230 }
mtklein748ca3b2015-01-15 10:56:12 -08001231 if (!file.writeStream(data, len)) {
1232 fail(SkStringPrintf("Can't write to %s.\n", path.c_str()));
1233 return;
1234 }
1235 }
1236 }
1237};
1238
mtklein748ca3b2015-01-15 10:56:12 -08001239/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
1240
1241// Unit tests don't fit so well into the Src/Sink model, so we give them special treatment.
1242
mtklein21eaf3b2016-02-08 12:39:59 -08001243static SkTDArray<skiatest::Test> gParallelTests, gSerialTests;
mtklein748ca3b2015-01-15 10:56:12 -08001244
1245static void gather_tests() {
mtklein6c5fed22015-01-20 13:47:23 -08001246 if (!FLAGS_src.contains("tests")) {
mtklein748ca3b2015-01-15 10:56:12 -08001247 return;
1248 }
mtklein6393c062015-04-27 08:45:01 -07001249 for (const skiatest::TestRegistry* r = skiatest::TestRegistry::Head(); r; r = r->next()) {
1250 if (!in_shard()) {
1251 continue;
1252 }
halcanary87f3ba42015-01-20 09:30:20 -08001253 // Despite its name, factory() is returning a reference to
1254 // link-time static const POD data.
1255 const skiatest::Test& test = r->factory();
1256 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, test.name)) {
mtklein748ca3b2015-01-15 10:56:12 -08001257 continue;
1258 }
halcanary87f3ba42015-01-20 09:30:20 -08001259 if (test.needsGpu && gpu_supported()) {
mtklein21eaf3b2016-02-08 12:39:59 -08001260 (FLAGS_gpu_threading ? gParallelTests : gSerialTests).push(test);
halcanary87f3ba42015-01-20 09:30:20 -08001261 } else if (!test.needsGpu && FLAGS_cpu) {
mtklein21eaf3b2016-02-08 12:39:59 -08001262 gParallelTests.push(test);
mtklein82d28432015-01-15 12:46:02 -08001263 }
mtklein748ca3b2015-01-15 10:56:12 -08001264 }
1265}
1266
csmartdalton008b9d82017-02-22 12:00:42 -07001267static void run_test(skiatest::Test test, const GrContextOptions& grCtxOptions) {
halcanary87f3ba42015-01-20 09:30:20 -08001268 struct : public skiatest::Reporter {
mtklein36352bf2015-03-25 18:17:31 -07001269 void reportFailed(const skiatest::Failure& failure) override {
halcanary87f3ba42015-01-20 09:30:20 -08001270 fail(failure.toString());
1271 JsonWriter::AddTestFailure(failure);
1272 }
mtklein36352bf2015-03-25 18:17:31 -07001273 bool allowExtendedTest() const override {
halcanary87f3ba42015-01-20 09:30:20 -08001274 return FLAGS_pathOpsExtended;
1275 }
mtklein36352bf2015-03-25 18:17:31 -07001276 bool verbose() const override { return FLAGS_veryVerbose; }
halcanary87f3ba42015-01-20 09:30:20 -08001277 } reporter;
djsollen824996a2015-06-12 12:06:22 -07001278
mtklein3eed7dd2016-02-24 19:07:07 -08001279 if (!FLAGS_dryRun && !is_blacklisted("_", "tests", "_", test.name)) {
Robert Phillipsec325342017-10-30 18:02:48 +00001280 GrContextOptions options = grCtxOptions;
1281 test.modifyGrContextOptions(&options);
1282
mtklein21eaf3b2016-02-08 12:39:59 -08001283 start("unit", "test", "", test.name);
Brian Salomondcfca432017-11-15 15:48:03 -05001284 test.run(&reporter, options);
mtklein748ca3b2015-01-15 10:56:12 -08001285 }
mtklein3eed7dd2016-02-24 19:07:07 -08001286 done("unit", "test", "", test.name);
mtklein748ca3b2015-01-15 10:56:12 -08001287}
1288
1289/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
1290
caryclark83ca6282015-06-10 09:31:09 -07001291#define PORTABLE_FONT_PREFIX "Toy Liberation "
1292
mbocee6a9912016-05-31 11:42:36 -07001293static sk_sp<SkTypeface> create_from_name(const char familyName[], SkFontStyle style) {
caryclark83ca6282015-06-10 09:31:09 -07001294 if (familyName && strlen(familyName) > sizeof(PORTABLE_FONT_PREFIX)
1295 && !strncmp(familyName, PORTABLE_FONT_PREFIX, sizeof(PORTABLE_FONT_PREFIX) - 1)) {
caryclark1818acb2015-07-24 12:09:25 -07001296 return sk_tool_utils::create_portable_typeface(familyName, style);
caryclark83ca6282015-06-10 09:31:09 -07001297 }
halcanary96fcdcc2015-08-27 07:41:13 -07001298 return nullptr;
caryclark83ca6282015-06-10 09:31:09 -07001299}
1300
1301#undef PORTABLE_FONT_PREFIX
1302
mbocee6a9912016-05-31 11:42:36 -07001303extern sk_sp<SkTypeface> (*gCreateTypefaceDelegate)(const char [], SkFontStyle );
caryclark83ca6282015-06-10 09:31:09 -07001304
Mike Kleinbe28ee22017-02-06 12:46:20 -05001305int main(int argc, char** argv) {
1306 SkCommandLineFlags::Parse(argc, argv);
Brian Osman53136aa2017-07-20 15:43:35 -04001307
Mike Klein31868212017-11-06 12:02:47 -05001308 if (!FLAGS_nativeFonts) {
Hal Canaryccafca02017-11-14 10:34:48 -05001309 gSkFontMgr_DefaultFactory = &DM::MakeFontMgr;
Mike Klein31868212017-11-06 12:02:47 -05001310 }
1311
Mike Klein0c5fdcb2017-11-13 12:40:46 -05001312#if defined(SK_BUILD_FOR_WIN)
1313 if (FLAGS_gdi) {
Hal Canaryccafca02017-11-14 10:34:48 -05001314 gSkFontMgr_DefaultFactory = &SkFontMgr_New_GDI;
Mike Klein0c5fdcb2017-11-13 12:40:46 -05001315 }
1316#endif
1317
Brian Osmanbc8150f2017-07-24 11:38:01 -04001318 initializeEventTracingForTools();
Brian Osman53136aa2017-07-20 15:43:35 -04001319
Mike Klein6613cc52017-12-19 09:09:33 -05001320#if !defined(SK_BUILD_FOR_GOOGLE3) && defined(SK_BUILD_FOR_IOS)
Mike Kleinadacaef2017-02-06 09:26:14 -05001321 cd_Documents();
1322#endif
bsalomon71de3532016-04-26 14:27:21 -07001323 setbuf(stdout, nullptr);
mtklein246ba3a2016-02-23 10:39:36 -08001324 setup_crash_handler();
mtkleinafae30a2016-02-24 12:28:32 -08001325
Yuqian Liba62b4a2016-12-14 13:46:53 -05001326 gSkUseAnalyticAA = FLAGS_analyticAA;
Yuqian Lidf60e362017-07-25 11:26:31 -04001327 gSkUseDeltaAA = FLAGS_deltaAA;
liyuqian38911a72016-10-04 11:23:22 -07001328
Yuqian Li550148b2017-01-13 10:13:13 -05001329 if (FLAGS_forceAnalyticAA) {
1330 gSkForceAnalyticAA = true;
1331 }
Yuqian Lia81b6262017-09-06 17:10:05 -04001332 if (FLAGS_forceDeltaAA) {
1333 gSkForceDeltaAA = true;
1334 }
Mike Reed7c26ca72017-07-05 15:45:52 -04001335 if (FLAGS_forceRasterPipeline) {
1336 gSkForceRasterPipelineBlitter = true;
1337 }
Yuqian Li550148b2017-01-13 10:13:13 -05001338
Mike Kleine9f187b2017-06-26 13:23:12 -04001339 // The bots like having a verbose.log to upload, so always touch the file even if --verbose.
1340 if (!FLAGS_writePath.isEmpty()) {
mtklein51c8cfc2016-03-11 12:59:09 -08001341 sk_mkdir(FLAGS_writePath[0]);
mtkleina1ce2162016-07-22 12:23:46 -07001342 gVLog = fopen(SkOSPath::Join(FLAGS_writePath[0], "verbose.log").c_str(), "w");
mtkleinc41fd922016-03-08 09:01:39 -08001343 }
Mike Kleine9f187b2017-06-26 13:23:12 -04001344 if (FLAGS_verbose) {
1345 gVLog = stderr;
1346 }
mtkleinc41fd922016-03-08 09:01:39 -08001347
csmartdalton008b9d82017-02-22 12:00:42 -07001348 GrContextOptions grCtxOptions;
1349#if SK_SUPPORT_GPU
Chris Dalton040238b2017-12-18 14:22:34 -07001350 SetCtxOptionsFromCommonFlags(&grCtxOptions);
csmartdalton008b9d82017-02-22 12:00:42 -07001351#endif
1352
mtklein5286f022016-01-22 08:18:14 -08001353 JsonWriter::DumpJson(); // It's handy for the bots to assume this is ~never missing.
commit-bot@chromium.org39e8d932014-05-29 20:14:48 +00001354 SkAutoGraphics ag;
mtklein406654b2014-09-03 15:34:37 -07001355 SkTaskGroup::Enabler enabled(FLAGS_threads);
caryclark83ca6282015-06-10 09:31:09 -07001356 gCreateTypefaceDelegate = &create_from_name;
commit-bot@chromium.orga65e2fd2014-05-30 17:23:31 +00001357
Mike Reed0933bc92017-12-09 01:27:41 +00001358 if (nullptr == GetResourceAsData("images/color_wheel.png")) {
1359 info("Some resources are missing. Do you need to set --resourcePath?\n");
halcanary7d571242016-02-24 17:59:16 -08001360 }
mtklein62bd1a62015-01-27 14:46:26 -08001361 gather_gold();
borenet09ed4802015-04-03 14:15:33 -07001362 gather_uninteresting_hashes();
mtklein62bd1a62015-01-27 14:46:26 -08001363
scroggo86737142016-02-03 12:19:11 -08001364 if (!gather_srcs()) {
1365 return 1;
1366 }
Ben Wagnerf28d4722017-08-11 17:33:22 -04001367 // TODO(dogben): This is a bit ugly. Find a cleaner way to do this.
1368 bool defaultConfigs = true;
1369 for (int i = 0; i < argc; i++) {
1370 static const char* kConfigArg = "--config";
1371 if (strcmp(argv[i], kConfigArg) == 0) {
1372 defaultConfigs = false;
1373 break;
1374 }
1375 }
1376 if (!gather_sinks(grCtxOptions, defaultConfigs)) {
brianosman05c987c2016-05-09 13:42:16 -07001377 return 1;
1378 }
mtklein748ca3b2015-01-15 10:56:12 -08001379 gather_tests();
mtklein21eaf3b2016-02-08 12:39:59 -08001380 gPending = gSrcs.count() * gSinks.count() + gParallelTests.count() + gSerialTests.count();
Brian Osmand0677bc2017-08-03 12:13:47 -04001381 info("%d srcs * %d sinks + %d tests == %d tasks\n",
mtkleinc41fd922016-03-08 09:01:39 -08001382 gSrcs.count(), gSinks.count(), gParallelTests.count() + gSerialTests.count(), gPending);
mtklein748ca3b2015-01-15 10:56:12 -08001383
mtklein21eaf3b2016-02-08 12:39:59 -08001384 // Kick off as much parallel work as we can, making note of any serial work we'll need to do.
1385 SkTaskGroup parallel;
1386 SkTArray<Task> serial;
1387
1388 for (auto& sink : gSinks)
1389 for (auto& src : gSrcs) {
mtklein3eed7dd2016-02-24 19:07:07 -08001390 if (src->veto(sink->flags()) ||
1391 is_blacklisted(sink.tag.c_str(), src.tag.c_str(),
1392 src.options.c_str(), src->name().c_str())) {
mtkleinf10637f2016-06-10 13:56:35 -07001393 SkAutoMutexAcquire lock(gMutex);
mtklein3eed7dd2016-02-24 19:07:07 -08001394 gPending--;
1395 continue;
1396 }
1397
mtklein21eaf3b2016-02-08 12:39:59 -08001398 Task task(src, sink);
1399 if (src->serial() || sink->serial()) {
1400 serial.push_back(task);
1401 } else {
1402 parallel.add([task] { Task::Run(task); });
mtklein748ca3b2015-01-15 10:56:12 -08001403 }
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +00001404 }
mtklein21eaf3b2016-02-08 12:39:59 -08001405 for (auto test : gParallelTests) {
csmartdalton008b9d82017-02-22 12:00:42 -07001406 parallel.add([test, grCtxOptions] { run_test(test, grCtxOptions); });
mtklein55e88b22015-01-21 15:50:13 -08001407 }
mtklein21eaf3b2016-02-08 12:39:59 -08001408
1409 // With the parallel work running, run serial tasks and tests here on main thread.
1410 for (auto task : serial) { Task::Run(task); }
csmartdalton008b9d82017-02-22 12:00:42 -07001411 for (auto test : gSerialTests) { run_test(test, grCtxOptions); }
mtklein21eaf3b2016-02-08 12:39:59 -08001412
1413 // Wait for any remaining parallel work to complete (including any spun off of serial tasks).
1414 parallel.wait();
mtkleincd50bca2016-01-05 06:20:20 -08001415 gDefinitelyThreadSafeWork.wait();
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 // At this point we're back in single-threaded land.
caryclarkf53ce802015-06-15 06:48:30 -07001423 sk_tool_utils::release_portable_typefaces();
mtklein@google.comd36522d2013-10-16 13:02:15 +00001424
mtklein748ca3b2015-01-15 10:56:12 -08001425 if (gFailures.count() > 0) {
mtkleinc41fd922016-03-08 09:01:39 -08001426 info("Failures:\n");
mtklein748ca3b2015-01-15 10:56:12 -08001427 for (int i = 0; i < gFailures.count(); i++) {
mtkleinc41fd922016-03-08 09:01:39 -08001428 info("\t%s\n", gFailures[i].c_str());
mtklein748ca3b2015-01-15 10:56:12 -08001429 }
mtkleinc41fd922016-03-08 09:01:39 -08001430 info("%d failures\n", gFailures.count());
mtklein748ca3b2015-01-15 10:56:12 -08001431 return 1;
mtklein114c3cd2015-01-15 10:15:02 -08001432 }
mtkleinafae30a2016-02-24 12:28:32 -08001433
1434#ifdef SK_PDF_IMAGE_STATS
halcanary7a14b312015-10-01 07:28:13 -07001435 SkPDFImageDumpStats();
mtkleinafae30a2016-02-24 12:28:32 -08001436#endif // SK_PDF_IMAGE_STATS
1437
Herb Derby5a523fe2017-01-26 16:48:28 -05001438 SkGraphics::PurgeAllCaches();
mtkleinc41fd922016-03-08 09:01:39 -08001439 info("Finished!\n");
Brian Osman53136aa2017-07-20 15:43:35 -04001440
mtklein748ca3b2015-01-15 10:56:12 -08001441 return 0;
mtklein@google.comd36522d2013-10-16 13:02:15 +00001442}