blob: 9dcdff1a0fce6f98f10228d33595e618a31f4c2e [file] [log] [blame]
scroggo478652e2015-03-25 07:11:02 -07001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
jcgregorio3b27ade2014-11-13 08:06:40 -08008#include "CrashHandler.h"
mtklein748ca3b2015-01-15 10:56:12 -08009#include "DMJsonWriter.h"
10#include "DMSrcSink.h"
tomhudsoneebc39a2015-02-23 12:18:05 -080011#include "DMSrcSinkAndroid.h"
mtklein748ca3b2015-01-15 10:56:12 -080012#include "OverwriteLine.h"
13#include "ProcStats.h"
14#include "SkBBHFactory.h"
mtklein62bd1a62015-01-27 14:46:26 -080015#include "SkChecksum.h"
caryclark17f0b6d2014-07-22 10:15:34 -070016#include "SkCommonFlags.h"
caryclark83ca6282015-06-10 09:31:09 -070017#include "SkFontMgr.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000018#include "SkForceLinking.h"
19#include "SkGraphics.h"
mtklein748ca3b2015-01-15 10:56:12 -080020#include "SkMD5.h"
mtklein1b249332015-07-07 12:21:21 -070021#include "SkMutex.h"
mtklein1d0f1642014-09-08 08:05:18 -070022#include "SkOSFile.h"
mtkleina82f5622015-02-20 12:30:19 -080023#include "SkTHash.h"
mtklein406654b2014-09-03 15:34:37 -070024#include "SkTaskGroup.h"
mtkleinde6fc2b2015-03-12 06:28:54 -070025#include "SkThreadUtils.h"
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +000026#include "Test.h"
mtklein748ca3b2015-01-15 10:56:12 -080027#include "Timer.h"
caryclark83ca6282015-06-10 09:31:09 -070028#include "sk_tool_utils.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000029
djsollen54416de2015-04-03 07:24:48 -070030DEFINE_string(src, "tests gm skp image", "Source types to test.");
mtklein748ca3b2015-01-15 10:56:12 -080031DEFINE_bool(nameByHash, false,
32 "If true, write to FLAGS_writePath[0]/<hash>.png instead of "
djsollen54416de2015-04-03 07:24:48 -070033 "to FLAGS_writePath[0]/<config>/<sourceType>/<sourceOptions>/<name>.png");
mtklein748ca3b2015-01-15 10:56:12 -080034DEFINE_bool2(pathOpsExtended, x, false, "Run extended pathOps tests.");
mtkleind603b222015-02-17 11:13:33 -080035DEFINE_string(matrix, "1 0 0 1",
36 "2x2 scale+skew matrix to apply or upright when using "
37 "'matrix' or 'upright' in config.");
mtklein82d28432015-01-15 12:46:02 -080038DEFINE_bool(gpu_threading, false, "Allow GPU work to run on multiple threads?");
mtklein@google.comd36522d2013-10-16 13:02:15 +000039
mtkleina2ef6422015-01-15 13:44:22 -080040DEFINE_string(blacklist, "",
djsollen54416de2015-04-03 07:24:48 -070041 "Space-separated config/src/srcOptions/name quadruples to blacklist. '_' matches anything. E.g. \n"
42 "'--blacklist gpu skp _ _' will blacklist all SKPs drawn into the gpu config.\n"
43 "'--blacklist gpu skp _ _ 8888 gm _ aarects' will also blacklist the aarects GM on 8888.");
mtkleina2ef6422015-01-15 13:44:22 -080044
mtklein62bd1a62015-01-27 14:46:26 -080045DEFINE_string2(readPath, r, "", "If set check for equality with golden results in this directory.");
46
borenet09ed4802015-04-03 14:15:33 -070047DEFINE_string(uninterestingHashesFile, "",
48 "File containing a list of uninteresting hashes. If a result hashes to something in "
49 "this list, no image is written for that result.");
50
mtklein6393c062015-04-27 08:45:01 -070051DEFINE_int32(shards, 1, "We're splitting source data into this many shards.");
52DEFINE_int32(shard, 0, "Which shard do I run?");
bsalomon821e10e2015-06-04 14:15:33 -070053DEFINE_bool2(pre_log, p, false, "Log before running each test. May be incomprehensible when threading");
mtklein6393c062015-04-27 08:45:01 -070054
mtklein@google.comd36522d2013-10-16 13:02:15 +000055__SK_FORCE_IMAGE_DECODER_LINKING;
mtklein748ca3b2015-01-15 10:56:12 -080056using namespace DM;
mtklein@google.comd36522d2013-10-16 13:02:15 +000057
mtklein748ca3b2015-01-15 10:56:12 -080058/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
59
60SK_DECLARE_STATIC_MUTEX(gFailuresMutex);
61static SkTArray<SkString> gFailures;
62
63static void fail(ImplicitString err) {
64 SkAutoMutexAcquire lock(gFailuresMutex);
65 SkDebugf("\n\nFAILURE: %s\n\n", err.c_str());
66 gFailures.push_back(err);
halcanary9e398f72015-01-10 11:18:04 -080067}
68
mtkleinb37cb412015-03-18 05:27:14 -070069static int32_t gPending = 0; // Atomic. Total number of running and queued tasks.
70
71SK_DECLARE_STATIC_MUTEX(gRunningMutex);
72static SkTArray<SkString> gRunning;
mtklein748ca3b2015-01-15 10:56:12 -080073
mtkleinb9eb4ac2015-02-02 18:26:03 -080074static void done(double ms,
djsollen54416de2015-04-03 07:24:48 -070075 ImplicitString config, ImplicitString src, ImplicitString srcOptions,
76 ImplicitString name, ImplicitString note, ImplicitString log) {
77 SkString id = SkStringPrintf("%s %s %s %s", config.c_str(), src.c_str(),
78 srcOptions.c_str(), name.c_str());
mtkleinb37cb412015-03-18 05:27:14 -070079 {
80 SkAutoMutexAcquire lock(gRunningMutex);
81 for (int i = 0; i < gRunning.count(); i++) {
82 if (gRunning[i] == id) {
83 gRunning.removeShuffle(i);
84 break;
85 }
86 }
87 }
88 if (!FLAGS_verbose) {
89 note = "";
90 }
mtkleinb9eb4ac2015-02-02 18:26:03 -080091 if (!log.isEmpty()) {
92 log.prepend("\n");
93 }
mtklein6dee2ad2015-02-05 09:53:44 -080094 auto pending = sk_atomic_dec(&gPending)-1;
reed50bc0512015-05-19 14:13:31 -070095 if (!FLAGS_quiet) {
mtklein711a2452015-07-08 08:49:20 -070096 SkDebugf("%s(%4d/%-4dMB %6d) %s\t%s%s%s", FLAGS_verbose ? "\n" : kSkOverwriteLine
reed50bc0512015-05-19 14:13:31 -070097 , sk_tools::getCurrResidentSetSizeMB()
98 , sk_tools::getMaxResidentSetSizeMB()
99 , pending
100 , HumanizeMs(ms).c_str()
101 , id.c_str()
102 , note.c_str()
103 , log.c_str());
104 }
mtkleina17241b2015-01-23 05:48:00 -0800105 // We write our dm.json file every once in a while in case we crash.
106 // Notice this also handles the final dm.json when pending == 0.
107 if (pending % 500 == 0) {
108 JsonWriter::DumpJson();
109 }
mtklein@google.comd36522d2013-10-16 13:02:15 +0000110}
111
djsollen54416de2015-04-03 07:24:48 -0700112static void start(ImplicitString config, ImplicitString src,
113 ImplicitString srcOptions, ImplicitString name) {
114 SkString id = SkStringPrintf("%s %s %s %s", config.c_str(), src.c_str(),
115 srcOptions.c_str(), name.c_str());
mtkleinb37cb412015-03-18 05:27:14 -0700116 SkAutoMutexAcquire lock(gRunningMutex);
117 gRunning.push_back(id);
118}
119
mtklein748ca3b2015-01-15 10:56:12 -0800120/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
mtklein114c3cd2015-01-15 10:15:02 -0800121
mtklein62bd1a62015-01-27 14:46:26 -0800122struct Gold : public SkString {
mtkleina82f5622015-02-20 12:30:19 -0800123 Gold() : SkString("") {}
djsollen54416de2015-04-03 07:24:48 -0700124 Gold(ImplicitString sink, ImplicitString src, ImplicitString srcOptions,
125 ImplicitString name, ImplicitString md5)
mtklein62bd1a62015-01-27 14:46:26 -0800126 : SkString("") {
127 this->append(sink);
128 this->append(src);
djsollen54416de2015-04-03 07:24:48 -0700129 this->append(srcOptions);
mtklein62bd1a62015-01-27 14:46:26 -0800130 this->append(name);
131 this->append(md5);
mtklein62bd1a62015-01-27 14:46:26 -0800132 }
mtklein02f46cf2015-03-20 13:48:42 -0700133 static uint32_t Hash(const Gold& g) { return SkGoodHash((const SkString&)g); }
mtklein62bd1a62015-01-27 14:46:26 -0800134};
mtkleina82f5622015-02-20 12:30:19 -0800135static SkTHashSet<Gold, Gold::Hash> gGold;
mtklein62bd1a62015-01-27 14:46:26 -0800136
137static void add_gold(JsonWriter::BitmapResult r) {
djsollen54416de2015-04-03 07:24:48 -0700138 gGold.add(Gold(r.config, r.sourceType, r.sourceOptions, r.name, r.md5));
mtklein62bd1a62015-01-27 14:46:26 -0800139}
140
141static void gather_gold() {
142 if (!FLAGS_readPath.isEmpty()) {
143 SkString path(FLAGS_readPath[0]);
144 path.append("/dm.json");
145 if (!JsonWriter::ReadJson(path.c_str(), add_gold)) {
146 fail(SkStringPrintf("Couldn't read %s for golden results.", path.c_str()));
147 }
148 }
149}
150
151/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
152
borenet09ed4802015-04-03 14:15:33 -0700153static SkTHashSet<SkString> gUninterestingHashes;
154
155static void gather_uninteresting_hashes() {
156 if (!FLAGS_uninterestingHashesFile.isEmpty()) {
157 SkAutoTUnref<SkData> data(SkData::NewFromFileName(FLAGS_uninterestingHashesFile[0]));
158 SkTArray<SkString> hashes;
159 SkStrSplit((const char*)data->data(), "\n", &hashes);
160 for (const SkString& hash : hashes) {
161 gUninterestingHashes.add(hash);
162 }
163 }
164}
165
166/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
167
mtkleine0effd62015-07-29 06:37:28 -0700168struct TaggedSrc : public SkAutoTDelete<Src> {
169 const char* tag;
170 const char* options;
171};
172
173struct TaggedSink : public SkAutoTDelete<Sink> {
174 const char* tag;
djsollen54416de2015-04-03 07:24:48 -0700175};
mtklein748ca3b2015-01-15 10:56:12 -0800176
177static const bool kMemcpyOK = true;
178
mtkleine0effd62015-07-29 06:37:28 -0700179static SkTArray<TaggedSrc, kMemcpyOK> gSrcs;
180static SkTArray<TaggedSink, kMemcpyOK> gSinks;
mtklein748ca3b2015-01-15 10:56:12 -0800181
mtklein6393c062015-04-27 08:45:01 -0700182static bool in_shard() {
183 static int N = 0;
184 return N++ % FLAGS_shards == FLAGS_shard;
185}
186
djsollen54416de2015-04-03 07:24:48 -0700187static void push_src(const char* tag, const char* options, Src* s) {
mtklein748ca3b2015-01-15 10:56:12 -0800188 SkAutoTDelete<Src> src(s);
mtklein6393c062015-04-27 08:45:01 -0700189 if (in_shard() &&
190 FLAGS_src.contains(tag) &&
mtklein748ca3b2015-01-15 10:56:12 -0800191 !SkCommandLineFlags::ShouldSkip(FLAGS_match, src->name().c_str())) {
mtkleine0effd62015-07-29 06:37:28 -0700192 TaggedSrc& s = gSrcs.push_back();
mtklein748ca3b2015-01-15 10:56:12 -0800193 s.reset(src.detach());
194 s.tag = tag;
djsollen54416de2015-04-03 07:24:48 -0700195 s.options = options;
mtklein114c3cd2015-01-15 10:15:02 -0800196 }
mtklein748ca3b2015-01-15 10:56:12 -0800197}
mtklein114c3cd2015-01-15 10:15:02 -0800198
msarett438b2ad2015-04-09 12:43:10 -0700199static void push_codec_srcs(Path path) {
200 SkAutoTUnref<SkData> encoded(SkData::NewFromFileName(path.c_str()));
201 if (!encoded) {
202 SkDebugf("Couldn't read %s.", path.c_str());
203 return;
204 }
205 SkAutoTDelete<SkCodec> codec(SkCodec::NewFromData(encoded));
206 if (NULL == codec.get()) {
207 SkDebugf("Couldn't create codec for %s.", path.c_str());
208 return;
209 }
210
msarett0a242972015-06-11 14:27:27 -0700211 // Choose scales for scaling tests.
212 // TODO (msarett): Add more scaling tests as we implement more flexible scaling.
213 // TODO (msarett): Implement scaling tests for SkImageDecoder in order to compare with these
214 // tests. SkImageDecoder supports downscales by integer factors.
msarett1c8a5872015-07-07 08:50:01 -0700215 const float scales[] = { 0.125f, 0.25f, 0.375f, 0.5f, 0.625f, 0.750f, 0.875f, 1.0f };
msarett438b2ad2015-04-09 12:43:10 -0700216
msarett0a242972015-06-11 14:27:27 -0700217 for (float scale : scales) {
scroggo6f818b32015-07-13 08:17:00 -0700218 if (scale != 1.0f && (path.endsWith(".webp") || path.endsWith(".WEBP"))) {
219 // FIXME: skbug.com/4038 Scaling webp seems to leave some pixels uninitialized/
220 // compute their colors based on uninitialized values.
221 continue;
222 }
msarett0a242972015-06-11 14:27:27 -0700223 // Build additional test cases for images that decode natively to non-canvas types
224 switch(codec->getInfo().colorType()) {
225 case kGray_8_SkColorType:
226 push_src("image", "codec_kGray8", new CodecSrc(path, CodecSrc::kNormal_Mode,
227 CodecSrc::kGrayscale_Always_DstColorType, scale));
228 push_src("image", "scanline_kGray8", new CodecSrc(path, CodecSrc::kScanline_Mode,
229 CodecSrc::kGrayscale_Always_DstColorType, scale));
230 push_src("image", "scanline_subset_kGray8", new CodecSrc(path,
231 CodecSrc::kScanline_Subset_Mode, CodecSrc::kGrayscale_Always_DstColorType,
232 scale));
233 push_src("image", "stripe_kGray8", new CodecSrc(path, CodecSrc::kStripe_Mode,
234 CodecSrc::kGrayscale_Always_DstColorType, scale));
235 // Intentional fall through
236 // FIXME: Is this a long term solution for testing wbmps decodes to kIndex8?
237 // Further discussion on this topic is at skbug.com/3683
238 case kIndex_8_SkColorType:
239 push_src("image", "codec_kIndex8", new CodecSrc(path, CodecSrc::kNormal_Mode,
240 CodecSrc::kIndex8_Always_DstColorType, scale));
241 push_src("image", "scanline_kIndex8", new CodecSrc(path, CodecSrc::kScanline_Mode,
242 CodecSrc::kIndex8_Always_DstColorType, scale));
243 push_src("image", "scanline_subset_kIndex8", new CodecSrc(path,
244 CodecSrc::kScanline_Subset_Mode, CodecSrc::kIndex8_Always_DstColorType,
245 scale));
246 push_src("image", "stripe_kIndex8", new CodecSrc(path, CodecSrc::kStripe_Mode,
247 CodecSrc::kIndex8_Always_DstColorType, scale));
248 break;
249 default:
250 // Do nothing
251 break;
252 }
253
254 // Decode all images to the canvas color type
255 push_src("image", "codec", new CodecSrc(path, CodecSrc::kNormal_Mode,
256 CodecSrc::kGetFromCanvas_DstColorType, scale));
257 push_src("image", "scanline", new CodecSrc(path, CodecSrc::kScanline_Mode,
258 CodecSrc::kGetFromCanvas_DstColorType, scale));
259 push_src("image", "scanline_subset", new CodecSrc(path, CodecSrc::kScanline_Subset_Mode,
260 CodecSrc::kGetFromCanvas_DstColorType, scale));
261 push_src("image", "stripe", new CodecSrc(path, CodecSrc::kStripe_Mode,
262 CodecSrc::kGetFromCanvas_DstColorType, scale));
scroggob636b452015-07-22 07:16:20 -0700263 // Note: The only codec which supports subsets natively is SkWebpCodec, which will never
264 // report kIndex_8 or kGray_8, so there is no need to test kSubset_mode with those color
265 // types specifically requested.
266 push_src("image", "codec_subset", new CodecSrc(path, CodecSrc::kSubset_Mode,
267 CodecSrc::kGetFromCanvas_DstColorType, scale));
msarett0a242972015-06-11 14:27:27 -0700268 }
msarett438b2ad2015-04-09 12:43:10 -0700269}
270
scroggo9b77ddd2015-03-19 06:03:39 -0700271static bool codec_supported(const char* ext) {
272 // FIXME: Once other versions of SkCodec are available, we can add them to this
273 // list (and eventually we can remove this check once they are all supported).
msarett8c8f22a2015-04-01 06:58:48 -0700274 static const char* const exts[] = {
scroggo6f5e6192015-06-18 12:53:43 -0700275 "bmp", "gif", "jpg", "jpeg", "png", "ico", "wbmp", "webp",
276 "BMP", "GIF", "JPG", "JPEG", "PNG", "ICO", "WBMP", "WEBP",
msarett8c8f22a2015-04-01 06:58:48 -0700277 };
278
279 for (uint32_t i = 0; i < SK_ARRAY_COUNT(exts); i++) {
280 if (0 == strcmp(exts[i], ext)) {
281 return true;
282 }
283 }
284 return false;
scroggo9b77ddd2015-03-19 06:03:39 -0700285}
286
mtklein748ca3b2015-01-15 10:56:12 -0800287static void gather_srcs() {
288 for (const skiagm::GMRegistry* r = skiagm::GMRegistry::Head(); r; r = r->next()) {
djsollen54416de2015-04-03 07:24:48 -0700289 push_src("gm", "", new GMSrc(r->factory()));
mtklein748ca3b2015-01-15 10:56:12 -0800290 }
halcanaryfc37ad12015-01-30 07:31:19 -0800291 for (int i = 0; i < FLAGS_skps.count(); i++) {
292 const char* path = FLAGS_skps[i];
293 if (sk_isdir(path)) {
294 SkOSFile::Iter it(path, "skp");
295 for (SkString file; it.next(&file); ) {
djsollen54416de2015-04-03 07:24:48 -0700296 push_src("skp", "", new SKPSrc(SkOSPath::Join(path, file.c_str())));
halcanaryfc37ad12015-01-30 07:31:19 -0800297 }
298 } else {
djsollen54416de2015-04-03 07:24:48 -0700299 push_src("skp", "", new SKPSrc(path));
mtklein114c3cd2015-01-15 10:15:02 -0800300 }
301 }
halcanary23b03c32015-01-30 09:58:58 -0800302 static const char* const exts[] = {
303 "bmp", "gif", "jpg", "jpeg", "png", "webp", "ktx", "astc", "wbmp", "ico",
304 "BMP", "GIF", "JPG", "JPEG", "PNG", "WEBP", "KTX", "ASTC", "WBMP", "ICO",
305 };
306 for (int i = 0; i < FLAGS_images.count(); i++) {
307 const char* flag = FLAGS_images[i];
308 if (sk_isdir(flag)) {
309 for (size_t j = 0; j < SK_ARRAY_COUNT(exts); j++) {
310 SkOSFile::Iter it(flag, exts[j]);
311 for (SkString file; it.next(&file); ) {
312 SkString path = SkOSPath::Join(flag, file.c_str());
djsollen54416de2015-04-03 07:24:48 -0700313 push_src("image", "decode", new ImageSrc(path)); // Decode entire image
314 push_src("image", "subset", new ImageSrc(path, 2)); // Decode into 2x2 subsets
scroggo9b77ddd2015-03-19 06:03:39 -0700315 if (codec_supported(exts[j])) {
msarett438b2ad2015-04-09 12:43:10 -0700316 push_codec_srcs(path);
scroggo9b77ddd2015-03-19 06:03:39 -0700317 }
halcanary23b03c32015-01-30 09:58:58 -0800318 }
mtklein114c3cd2015-01-15 10:15:02 -0800319 }
halcanary23b03c32015-01-30 09:58:58 -0800320 } else if (sk_exists(flag)) {
321 // assume that FLAGS_images[i] is a valid image if it is a file.
djsollen54416de2015-04-03 07:24:48 -0700322 push_src("image", "decode", new ImageSrc(flag)); // Decode entire image.
323 push_src("image", "subset", new ImageSrc(flag, 2)); // Decode into 2 x 2 subsets
msarett438b2ad2015-04-09 12:43:10 -0700324 push_codec_srcs(flag);
mtklein709d2c32015-01-15 08:30:25 -0800325 }
mtklein709d2c32015-01-15 08:30:25 -0800326 }
327}
328
mtklein748ca3b2015-01-15 10:56:12 -0800329static GrGLStandard get_gpu_api() {
330 if (FLAGS_gpuAPI.contains("gl")) { return kGL_GrGLStandard; }
331 if (FLAGS_gpuAPI.contains("gles")) { return kGLES_GrGLStandard; }
332 return kNone_GrGLStandard;
mtklein709d2c32015-01-15 08:30:25 -0800333}
334
mtklein748ca3b2015-01-15 10:56:12 -0800335static void push_sink(const char* tag, Sink* s) {
336 SkAutoTDelete<Sink> sink(s);
337 if (!FLAGS_config.contains(tag)) {
338 return;
mtklein114c3cd2015-01-15 10:15:02 -0800339 }
mtkleine0effd62015-07-29 06:37:28 -0700340 // Try a simple Src as a canary. If it fails, skip this sink.
mtklein748ca3b2015-01-15 10:56:12 -0800341 struct : public Src {
mtkleine0effd62015-07-29 06:37:28 -0700342 Error draw(SkCanvas* c) const override {
343 c->drawRect(SkRect::MakeWH(1,1), SkPaint());
344 return "";
345 }
mtklein36352bf2015-03-25 18:17:31 -0700346 SkISize size() const override { return SkISize::Make(16, 16); }
mtkleine0effd62015-07-29 06:37:28 -0700347 Name name() const override { return "justOneRect"; }
348 } justOneRect;
mtklein114c3cd2015-01-15 10:15:02 -0800349
mtklein748ca3b2015-01-15 10:56:12 -0800350 SkBitmap bitmap;
351 SkDynamicMemoryWStream stream;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800352 SkString log;
mtkleine0effd62015-07-29 06:37:28 -0700353 Error err = sink->draw(justOneRect, &bitmap, &stream, &log);
mtklein4089ef72015-03-05 08:40:28 -0800354 if (err.isFatal()) {
mtklein05641a52015-04-21 10:49:13 -0700355 SkDebugf("Could not run %s: %s\n", tag, err.c_str());
356 exit(1);
mtklein114c3cd2015-01-15 10:15:02 -0800357 }
358
mtkleine0effd62015-07-29 06:37:28 -0700359 TaggedSink& ts = gSinks.push_back();
mtklein748ca3b2015-01-15 10:56:12 -0800360 ts.reset(sink.detach());
361 ts.tag = tag;
362}
363
364static bool gpu_supported() {
365#if SK_SUPPORT_GPU
366 return FLAGS_gpu;
367#else
368 return false;
369#endif
370}
371
372static Sink* create_sink(const char* tag) {
373#define SINK(t, sink, ...) if (0 == strcmp(t, tag)) { return new sink(__VA_ARGS__); }
374 if (gpu_supported()) {
mtklein82d28432015-01-15 12:46:02 -0800375 typedef GrContextFactory Gr;
mtklein748ca3b2015-01-15 10:56:12 -0800376 const GrGLStandard api = get_gpu_api();
mtklein82d28432015-01-15 12:46:02 -0800377 SINK("gpunull", GPUSink, Gr::kNull_GLContextType, api, 0, false, FLAGS_gpu_threading);
378 SINK("gpudebug", GPUSink, Gr::kDebug_GLContextType, api, 0, false, FLAGS_gpu_threading);
379 SINK("gpu", GPUSink, Gr::kNative_GLContextType, api, 0, false, FLAGS_gpu_threading);
380 SINK("gpudft", GPUSink, Gr::kNative_GLContextType, api, 0, true, FLAGS_gpu_threading);
381 SINK("msaa4", GPUSink, Gr::kNative_GLContextType, api, 4, false, FLAGS_gpu_threading);
382 SINK("msaa16", GPUSink, Gr::kNative_GLContextType, api, 16, false, FLAGS_gpu_threading);
383 SINK("nvprmsaa4", GPUSink, Gr::kNVPR_GLContextType, api, 4, false, FLAGS_gpu_threading);
384 SINK("nvprmsaa16", GPUSink, Gr::kNVPR_GLContextType, api, 16, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800385 #if SK_ANGLE
mtklein82d28432015-01-15 12:46:02 -0800386 SINK("angle", GPUSink, Gr::kANGLE_GLContextType, api, 0, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800387 #endif
388 #if SK_MESA
mtklein82d28432015-01-15 12:46:02 -0800389 SINK("mesa", GPUSink, Gr::kMESA_GLContextType, api, 0, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800390 #endif
mtklein114c3cd2015-01-15 10:15:02 -0800391 }
mtklein748ca3b2015-01-15 10:56:12 -0800392
tomhudsoneebc39a2015-02-23 12:18:05 -0800393#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
394 SINK("hwui", HWUISink);
395#endif
396
mtklein748ca3b2015-01-15 10:56:12 -0800397 if (FLAGS_cpu) {
398 SINK("565", RasterSink, kRGB_565_SkColorType);
399 SINK("8888", RasterSink, kN32_SkColorType);
mtklein19f30602015-01-20 13:34:39 -0800400 SINK("pdf", PDFSink);
mtklein9c3f17d2015-01-28 11:35:18 -0800401 SINK("skp", SKPSink);
mtklein8a4527e2015-01-31 20:00:58 -0800402 SINK("svg", SVGSink);
403 SINK("null", NullSink);
halcanary47ef4d52015-03-03 09:13:09 -0800404 SINK("xps", XPSSink);
mtklein748ca3b2015-01-15 10:56:12 -0800405 }
406#undef SINK
407 return NULL;
mtklein114c3cd2015-01-15 10:15:02 -0800408}
409
mtklein748ca3b2015-01-15 10:56:12 -0800410static Sink* create_via(const char* tag, Sink* wrapped) {
411#define VIA(t, via, ...) if (0 == strcmp(t, tag)) { return new via(__VA_ARGS__); }
mtklein6fbf4b32015-05-06 11:35:40 -0700412 VIA("twice", ViaTwice, wrapped);
mtklein7edca212015-01-21 13:18:51 -0800413 VIA("pipe", ViaPipe, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800414 VIA("serialize", ViaSerialization, wrapped);
reed06a22f62015-05-05 08:11:33 -0700415 VIA("deferred", ViaDeferred, wrapped);
mtkleinb7e8d692015-04-07 08:30:32 -0700416 VIA("2ndpic", ViaSecondPicture, wrapped);
mtkleind31c13d2015-05-05 12:59:56 -0700417 VIA("sp", ViaSingletonPictures, wrapped);
mtklein7edca212015-01-21 13:18:51 -0800418 VIA("tiles", ViaTiles, 256, 256, NULL, wrapped);
419 VIA("tiles_rt", ViaTiles, 256, 256, new SkRTreeFactory, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800420
mtkleind603b222015-02-17 11:13:33 -0800421 if (FLAGS_matrix.count() == 4) {
mtklein748ca3b2015-01-15 10:56:12 -0800422 SkMatrix m;
mtkleind603b222015-02-17 11:13:33 -0800423 m.reset();
424 m.setScaleX((SkScalar)atof(FLAGS_matrix[0]));
425 m.setSkewX ((SkScalar)atof(FLAGS_matrix[1]));
426 m.setSkewY ((SkScalar)atof(FLAGS_matrix[2]));
427 m.setScaleY((SkScalar)atof(FLAGS_matrix[3]));
428 VIA("matrix", ViaMatrix, m, wrapped);
429 VIA("upright", ViaUpright, m, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800430 }
tomhudson64de1e12015-03-05 08:01:07 -0800431
432#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
433 VIA("androidsdk", ViaAndroidSDK, wrapped);
434#endif
435
mtklein748ca3b2015-01-15 10:56:12 -0800436#undef VIA
437 return NULL;
mtklein114c3cd2015-01-15 10:15:02 -0800438}
439
mtklein748ca3b2015-01-15 10:56:12 -0800440static void gather_sinks() {
441 for (int i = 0; i < FLAGS_config.count(); i++) {
442 const char* config = FLAGS_config[i];
443 SkTArray<SkString> parts;
444 SkStrSplit(config, "-", &parts);
445
446 Sink* sink = NULL;
447 for (int i = parts.count(); i-- > 0;) {
448 const char* part = parts[i].c_str();
449 Sink* next = (sink == NULL) ? create_sink(part) : create_via(part, sink);
450 if (next == NULL) {
451 SkDebugf("Skipping %s: Don't understand '%s'.\n", config, part);
452 delete sink;
453 sink = NULL;
454 break;
455 }
456 sink = next;
457 }
458 if (sink) {
459 push_sink(config, sink);
mtklein114c3cd2015-01-15 10:15:02 -0800460 }
461 }
462}
mtklein709d2c32015-01-15 08:30:25 -0800463
mtkleina2ef6422015-01-15 13:44:22 -0800464static bool match(const char* needle, const char* haystack) {
465 return 0 == strcmp("_", needle) || NULL != strstr(haystack, needle);
466}
467
djsollen54416de2015-04-03 07:24:48 -0700468static ImplicitString is_blacklisted(const char* sink, const char* src,
469 const char* srcOptions, const char* name) {
mtklein0d243ff2015-04-03 07:51:00 -0700470 for (int i = 0; i < FLAGS_blacklist.count() - 3; i += 4) {
mtkleina2ef6422015-01-15 13:44:22 -0800471 if (match(FLAGS_blacklist[i+0], sink) &&
djsollen54416de2015-04-03 07:24:48 -0700472 match(FLAGS_blacklist[i+1], src) &&
473 match(FLAGS_blacklist[i+2], srcOptions) &&
474 match(FLAGS_blacklist[i+3], name)) {
475 return SkStringPrintf("%s %s %s %s",
476 FLAGS_blacklist[i+0], FLAGS_blacklist[i+1],
477 FLAGS_blacklist[i+2], FLAGS_blacklist[i+3]);
mtkleina2ef6422015-01-15 13:44:22 -0800478 }
479 }
480 return "";
481}
482
mtklein748ca3b2015-01-15 10:56:12 -0800483// The finest-grained unit of work we can run: draw a single Src into a single Sink,
484// report any errors, and perhaps write out the output: a .png of the bitmap, or a raw stream.
485struct Task {
mtkleine0effd62015-07-29 06:37:28 -0700486 Task(const TaggedSrc& src, const TaggedSink& sink) : src(src), sink(sink) {}
487 const TaggedSrc& src;
488 const TaggedSink& sink;
mtklein748ca3b2015-01-15 10:56:12 -0800489
490 static void Run(Task* task) {
mtkleina2ef6422015-01-15 13:44:22 -0800491 SkString name = task->src->name();
mtkleine0effd62015-07-29 06:37:28 -0700492
493 // We'll skip drawing this Src/Sink pair if:
494 // - the Src vetoes the Sink;
495 // - this Src / Sink combination is on the blacklist;
496 // - it's a dry run.
mtklein99cab4e2015-07-31 06:43:04 -0700497 SkString note(task->src->veto(task->sink->flags()) ? " (veto)" : "");
djsollen54416de2015-04-03 07:24:48 -0700498 SkString whyBlacklisted = is_blacklisted(task->sink.tag, task->src.tag,
499 task->src.options, name.c_str());
mtkleinb37cb412015-03-18 05:27:14 -0700500 if (!whyBlacklisted.isEmpty()) {
501 note.appendf(" (--blacklist %s)", whyBlacklisted.c_str());
502 }
mtkleine0effd62015-07-29 06:37:28 -0700503
mtkleinb9eb4ac2015-02-02 18:26:03 -0800504 SkString log;
mtklein748ca3b2015-01-15 10:56:12 -0800505 WallTimer timer;
506 timer.start();
mtkleine0effd62015-07-29 06:37:28 -0700507 if (!FLAGS_dryRun && note.isEmpty()) {
mtklein748ca3b2015-01-15 10:56:12 -0800508 SkBitmap bitmap;
509 SkDynamicMemoryWStream stream;
bsalomon821e10e2015-06-04 14:15:33 -0700510 if (FLAGS_pre_log) {
511 SkDebugf("\nRunning %s->%s", name.c_str(), task->sink.tag);
512 }
djsollen54416de2015-04-03 07:24:48 -0700513 start(task->sink.tag, task->src.tag, task->src.options, name.c_str());
mtkleinb9eb4ac2015-02-02 18:26:03 -0800514 Error err = task->sink->draw(*task->src, &bitmap, &stream, &log);
mtklein748ca3b2015-01-15 10:56:12 -0800515 if (!err.isEmpty()) {
mtklein4089ef72015-03-05 08:40:28 -0800516 timer.end();
517 if (err.isFatal()) {
djsollen54416de2015-04-03 07:24:48 -0700518 fail(SkStringPrintf("%s %s %s %s: %s",
mtklein4089ef72015-03-05 08:40:28 -0800519 task->sink.tag,
520 task->src.tag,
djsollen54416de2015-04-03 07:24:48 -0700521 task->src.options,
mtklein4089ef72015-03-05 08:40:28 -0800522 name.c_str(),
523 err.c_str()));
mtkleinb37cb412015-03-18 05:27:14 -0700524 } else {
525 note.appendf(" (skipped: %s)", err.c_str());
mtklein4089ef72015-03-05 08:40:28 -0800526 }
djsollen54416de2015-04-03 07:24:48 -0700527 done(timer.fWall, task->sink.tag, task->src.tag, task->src.options,
528 name, note, log);
mtklein4089ef72015-03-05 08:40:28 -0800529 return;
mtklein748ca3b2015-01-15 10:56:12 -0800530 }
mtklein62bd1a62015-01-27 14:46:26 -0800531 SkAutoTDelete<SkStreamAsset> data(stream.detachAsStream());
532
533 SkString md5;
534 if (!FLAGS_writePath.isEmpty() || !FLAGS_readPath.isEmpty()) {
535 SkMD5 hash;
536 if (data->getLength()) {
537 hash.writeStream(data, data->getLength());
538 data->rewind();
539 } else {
mtklein38408462015-07-08 07:25:27 -0700540 // If we're BGRA (Linux, Windows), swizzle over to RGBA (Mac, Android).
541 // This helps eliminate multiple 0-pixel-diff hashes on gold.skia.org.
542 // (Android's general slow speed breaks the tie arbitrarily in RGBA's favor.)
543 // We might consider promoting 565 to RGBA too.
544 if (bitmap.colorType() == kBGRA_8888_SkColorType) {
545 SkBitmap swizzle;
546 SkAssertResult(bitmap.copyTo(&swizzle, kRGBA_8888_SkColorType));
547 hash.write(swizzle.getPixels(), swizzle.getSize());
548 } else {
549 hash.write(bitmap.getPixels(), bitmap.getSize());
550 }
mtklein62bd1a62015-01-27 14:46:26 -0800551 }
552 SkMD5::Digest digest;
553 hash.finish(digest);
554 for (int i = 0; i < 16; i++) {
555 md5.appendf("%02x", digest.data[i]);
556 }
557 }
558
559 if (!FLAGS_readPath.isEmpty() &&
djsollen54416de2015-04-03 07:24:48 -0700560 !gGold.contains(Gold(task->sink.tag, task->src.tag,
561 task->src.options, name, md5))) {
562 fail(SkStringPrintf("%s not found for %s %s %s %s in %s",
mtklein62bd1a62015-01-27 14:46:26 -0800563 md5.c_str(),
564 task->sink.tag,
565 task->src.tag,
djsollen54416de2015-04-03 07:24:48 -0700566 task->src.options,
mtklein62bd1a62015-01-27 14:46:26 -0800567 name.c_str(),
568 FLAGS_readPath[0]));
569 }
570
mtkleinb0531a72015-04-07 13:38:48 -0700571 if (!FLAGS_writePath.isEmpty()) {
mtklein748ca3b2015-01-15 10:56:12 -0800572 const char* ext = task->sink->fileExtension();
mtklein62bd1a62015-01-27 14:46:26 -0800573 if (data->getLength()) {
574 WriteToDisk(*task, md5, ext, data, data->getLength(), NULL);
halcanary022afb82015-01-30 11:00:12 -0800575 SkASSERT(bitmap.drawsNothing());
576 } else if (!bitmap.drawsNothing()) {
mtklein62bd1a62015-01-27 14:46:26 -0800577 WriteToDisk(*task, md5, ext, NULL, 0, &bitmap);
mtklein748ca3b2015-01-15 10:56:12 -0800578 }
579 }
580 }
581 timer.end();
djsollen54416de2015-04-03 07:24:48 -0700582 done(timer.fWall, task->sink.tag, task->src.tag, task->src.options, name, note, log);
mtklein748ca3b2015-01-15 10:56:12 -0800583 }
584
585 static void WriteToDisk(const Task& task,
mtklein62bd1a62015-01-27 14:46:26 -0800586 SkString md5,
587 const char* ext,
mtklein748ca3b2015-01-15 10:56:12 -0800588 SkStream* data, size_t len,
mtklein62bd1a62015-01-27 14:46:26 -0800589 const SkBitmap* bitmap) {
mtklein748ca3b2015-01-15 10:56:12 -0800590 JsonWriter::BitmapResult result;
djsollen54416de2015-04-03 07:24:48 -0700591 result.name = task.src->name();
592 result.config = task.sink.tag;
593 result.sourceType = task.src.tag;
594 result.sourceOptions = task.src.options;
595 result.ext = ext;
596 result.md5 = md5;
mtklein748ca3b2015-01-15 10:56:12 -0800597 JsonWriter::AddBitmapResult(result);
598
mtkleinb0531a72015-04-07 13:38:48 -0700599 // If an MD5 is uninteresting, we want it noted in the JSON file,
600 // but don't want to dump it out as a .png (or whatever ext is).
601 if (gUninterestingHashes.contains(md5)) {
602 return;
603 }
604
mtklein748ca3b2015-01-15 10:56:12 -0800605 const char* dir = FLAGS_writePath[0];
606 if (0 == strcmp(dir, "@")) { // Needed for iOS.
607 dir = FLAGS_resourcePath[0];
608 }
609 sk_mkdir(dir);
610
611 SkString path;
612 if (FLAGS_nameByHash) {
613 path = SkOSPath::Join(dir, result.md5.c_str());
614 path.append(".");
615 path.append(ext);
616 if (sk_exists(path.c_str())) {
617 return; // Content-addressed. If it exists already, we're done.
618 }
619 } else {
620 path = SkOSPath::Join(dir, task.sink.tag);
621 sk_mkdir(path.c_str());
622 path = SkOSPath::Join(path.c_str(), task.src.tag);
623 sk_mkdir(path.c_str());
djsollen54416de2015-04-03 07:24:48 -0700624 if (strcmp(task.src.options, "") != 0) {
625 path = SkOSPath::Join(path.c_str(), task.src.options);
626 sk_mkdir(path.c_str());
627 }
mtklein748ca3b2015-01-15 10:56:12 -0800628 path = SkOSPath::Join(path.c_str(), task.src->name().c_str());
629 path.append(".");
630 path.append(ext);
631 }
632
633 SkFILEWStream file(path.c_str());
634 if (!file.isValid()) {
635 fail(SkStringPrintf("Can't open %s for writing.\n", path.c_str()));
636 return;
637 }
638
mtklein748ca3b2015-01-15 10:56:12 -0800639 if (bitmap) {
640 // We can't encode A8 bitmaps as PNGs. Convert them to 8888 first.
641 SkBitmap converted;
642 if (bitmap->info().colorType() == kAlpha_8_SkColorType) {
643 if (!bitmap->copyTo(&converted, kN32_SkColorType)) {
644 fail("Can't convert A8 to 8888.\n");
645 return;
646 }
647 bitmap = &converted;
648 }
649 if (!SkImageEncoder::EncodeStream(&file, *bitmap, SkImageEncoder::kPNG_Type, 100)) {
650 fail(SkStringPrintf("Can't encode PNG to %s.\n", path.c_str()));
651 return;
652 }
653 } else {
654 if (!file.writeStream(data, len)) {
655 fail(SkStringPrintf("Can't write to %s.\n", path.c_str()));
656 return;
657 }
658 }
659 }
660};
661
662// Run all tasks in the same enclave serially on the same thread.
663// They can't possibly run concurrently with each other.
664static void run_enclave(SkTArray<Task>* tasks) {
665 for (int i = 0; i < tasks->count(); i++) {
666 Task::Run(tasks->begin() + i);
667 }
668}
669
670/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
671
672// Unit tests don't fit so well into the Src/Sink model, so we give them special treatment.
673
mtklein55e88b22015-01-21 15:50:13 -0800674static SkTDArray<skiatest::Test> gThreadedTests, gGPUTests;
mtklein748ca3b2015-01-15 10:56:12 -0800675
676static void gather_tests() {
mtklein6c5fed22015-01-20 13:47:23 -0800677 if (!FLAGS_src.contains("tests")) {
mtklein748ca3b2015-01-15 10:56:12 -0800678 return;
679 }
mtklein6393c062015-04-27 08:45:01 -0700680 for (const skiatest::TestRegistry* r = skiatest::TestRegistry::Head(); r; r = r->next()) {
681 if (!in_shard()) {
682 continue;
683 }
halcanary87f3ba42015-01-20 09:30:20 -0800684 // Despite its name, factory() is returning a reference to
685 // link-time static const POD data.
686 const skiatest::Test& test = r->factory();
687 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, test.name)) {
mtklein748ca3b2015-01-15 10:56:12 -0800688 continue;
689 }
halcanary87f3ba42015-01-20 09:30:20 -0800690 if (test.needsGpu && gpu_supported()) {
mtklein55e88b22015-01-21 15:50:13 -0800691 (FLAGS_gpu_threading ? gThreadedTests : gGPUTests).push(test);
halcanary87f3ba42015-01-20 09:30:20 -0800692 } else if (!test.needsGpu && FLAGS_cpu) {
mtklein55e88b22015-01-21 15:50:13 -0800693 gThreadedTests.push(test);
mtklein82d28432015-01-15 12:46:02 -0800694 }
mtklein748ca3b2015-01-15 10:56:12 -0800695 }
696}
697
halcanary87f3ba42015-01-20 09:30:20 -0800698static void run_test(skiatest::Test* test) {
699 struct : public skiatest::Reporter {
mtklein36352bf2015-03-25 18:17:31 -0700700 void reportFailed(const skiatest::Failure& failure) override {
halcanary87f3ba42015-01-20 09:30:20 -0800701 fail(failure.toString());
702 JsonWriter::AddTestFailure(failure);
703 }
mtklein36352bf2015-03-25 18:17:31 -0700704 bool allowExtendedTest() const override {
halcanary87f3ba42015-01-20 09:30:20 -0800705 return FLAGS_pathOpsExtended;
706 }
mtklein36352bf2015-03-25 18:17:31 -0700707 bool verbose() const override { return FLAGS_veryVerbose; }
halcanary87f3ba42015-01-20 09:30:20 -0800708 } reporter;
djsollen824996a2015-06-12 12:06:22 -0700709
710 SkString note;
711 SkString whyBlacklisted = is_blacklisted("_", "tests", "_", test->name);
712 if (!whyBlacklisted.isEmpty()) {
713 note.appendf(" (--blacklist %s)", whyBlacklisted.c_str());
714 }
715
mtklein748ca3b2015-01-15 10:56:12 -0800716 WallTimer timer;
717 timer.start();
djsollen824996a2015-06-12 12:06:22 -0700718 if (!FLAGS_dryRun && whyBlacklisted.isEmpty()) {
djsollen54416de2015-04-03 07:24:48 -0700719 start("unit", "test", "", test->name);
mtklein55e88b22015-01-21 15:50:13 -0800720 GrContextFactory factory;
bsalomon821e10e2015-06-04 14:15:33 -0700721 if (FLAGS_pre_log) {
722 SkDebugf("\nRunning test %s", test->name);
723 }
mtklein55e88b22015-01-21 15:50:13 -0800724 test->proc(&reporter, &factory);
mtklein748ca3b2015-01-15 10:56:12 -0800725 }
726 timer.end();
djsollen824996a2015-06-12 12:06:22 -0700727 done(timer.fWall, "unit", "test", "", test->name, note, "");
mtklein748ca3b2015-01-15 10:56:12 -0800728}
729
730/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
731
mtklein55e88b22015-01-21 15:50:13 -0800732// If we're isolating all GPU-bound work to one thread (the default), this function runs all that.
733static void run_enclave_and_gpu_tests(SkTArray<Task>* tasks) {
734 run_enclave(tasks);
735 for (int i = 0; i < gGPUTests.count(); i++) {
736 run_test(&gGPUTests[i]);
737 }
738}
739
mtkleinde6fc2b2015-03-12 06:28:54 -0700740// Some runs (mostly, Valgrind) are so slow that the bot framework thinks we've hung.
741// This prints something every once in a while so that it knows we're still working.
mtklein2e1c47e2015-03-12 07:16:56 -0700742static void start_keepalive() {
743 struct Loop {
744 static void forever(void*) {
745 for (;;) {
746 static const int kSec = 300;
747 #if defined(SK_BUILD_FOR_WIN)
748 Sleep(kSec * 1000);
749 #else
750 sleep(kSec);
751 #endif
mtkleinb37cb412015-03-18 05:27:14 -0700752 SkString running;
753 {
754 SkAutoMutexAcquire lock(gRunningMutex);
755 for (int i = 0; i < gRunning.count(); i++) {
756 running.appendf("\n\t%s", gRunning[i].c_str());
757 }
758 }
759 SkDebugf("\nCurrently running:%s\n", running.c_str());
mtklein2e1c47e2015-03-12 07:16:56 -0700760 }
761 }
762 };
763 static SkThread* intentionallyLeaked = new SkThread(Loop::forever);
764 intentionallyLeaked->start();
mtkleinde6fc2b2015-03-12 06:28:54 -0700765}
766
caryclark83ca6282015-06-10 09:31:09 -0700767#define PORTABLE_FONT_PREFIX "Toy Liberation "
768
769static SkTypeface* create_from_name(const char familyName[], SkTypeface::Style style) {
770 if (familyName && strlen(familyName) > sizeof(PORTABLE_FONT_PREFIX)
771 && !strncmp(familyName, PORTABLE_FONT_PREFIX, sizeof(PORTABLE_FONT_PREFIX) - 1)) {
caryclark1818acb2015-07-24 12:09:25 -0700772 return sk_tool_utils::create_portable_typeface(familyName, style);
caryclark83ca6282015-06-10 09:31:09 -0700773 }
774 return NULL;
775}
776
777#undef PORTABLE_FONT_PREFIX
778
779extern SkTypeface* (*gCreateTypefaceDelegate)(const char [], SkTypeface::Style );
780
jcgregorio3b27ade2014-11-13 08:06:40 -0800781int dm_main();
caryclark17f0b6d2014-07-22 10:15:34 -0700782int dm_main() {
jcgregorio3b27ade2014-11-13 08:06:40 -0800783 SetupCrashHandler();
commit-bot@chromium.org39e8d932014-05-29 20:14:48 +0000784 SkAutoGraphics ag;
mtklein406654b2014-09-03 15:34:37 -0700785 SkTaskGroup::Enabler enabled(FLAGS_threads);
caryclark83ca6282015-06-10 09:31:09 -0700786 gCreateTypefaceDelegate = &create_from_name;
commit-bot@chromium.orga65e2fd2014-05-30 17:23:31 +0000787
mtklein2e1c47e2015-03-12 07:16:56 -0700788 start_keepalive();
mtkleinde6fc2b2015-03-12 06:28:54 -0700789
mtklein62bd1a62015-01-27 14:46:26 -0800790 gather_gold();
borenet09ed4802015-04-03 14:15:33 -0700791 gather_uninteresting_hashes();
mtklein62bd1a62015-01-27 14:46:26 -0800792
mtklein748ca3b2015-01-15 10:56:12 -0800793 gather_srcs();
794 gather_sinks();
795 gather_tests();
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +0000796
mtklein55e88b22015-01-21 15:50:13 -0800797 gPending = gSrcs.count() * gSinks.count() + gThreadedTests.count() + gGPUTests.count();
mtklein748ca3b2015-01-15 10:56:12 -0800798 SkDebugf("%d srcs * %d sinks + %d tests == %d tasks\n",
mtklein55e88b22015-01-21 15:50:13 -0800799 gSrcs.count(), gSinks.count(), gThreadedTests.count() + gGPUTests.count(), gPending);
mtklein748ca3b2015-01-15 10:56:12 -0800800
801 // We try to exploit as much parallelism as is safe. Most Src/Sink pairs run on any thread,
802 // but Sinks that identify as part of a particular enclave run serially on a single thread.
mtklein82d28432015-01-15 12:46:02 -0800803 // CPU tests run on any thread. GPU tests depend on --gpu_threading.
mtklein748ca3b2015-01-15 10:56:12 -0800804 SkTArray<Task> enclaves[kNumEnclaves];
805 for (int j = 0; j < gSinks.count(); j++) {
806 SkTArray<Task>& tasks = enclaves[gSinks[j]->enclave()];
807 for (int i = 0; i < gSrcs.count(); i++) {
808 tasks.push_back(Task(gSrcs[i], gSinks[j]));
809 }
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +0000810 }
811
mtklein748ca3b2015-01-15 10:56:12 -0800812 SkTaskGroup tg;
mtklein55e88b22015-01-21 15:50:13 -0800813 tg.batch(run_test, gThreadedTests.begin(), gThreadedTests.count());
814 for (int i = 0; i < kNumEnclaves; i++) {
815 switch(i) {
816 case kAnyThread_Enclave:
817 tg.batch(Task::Run, enclaves[i].begin(), enclaves[i].count());
818 break;
819 case kGPU_Enclave:
820 tg.add(run_enclave_and_gpu_tests, &enclaves[i]);
821 break;
822 default:
823 tg.add(run_enclave, &enclaves[i]);
824 break;
mtklein82d28432015-01-15 12:46:02 -0800825 }
mtklein55e88b22015-01-21 15:50:13 -0800826 }
mtklein748ca3b2015-01-15 10:56:12 -0800827 tg.wait();
mtklein748ca3b2015-01-15 10:56:12 -0800828 // At this point we're back in single-threaded land.
caryclarkf53ce802015-06-15 06:48:30 -0700829 sk_tool_utils::release_portable_typefaces();
mtklein@google.comd36522d2013-10-16 13:02:15 +0000830
mtklein2f64eec2015-01-15 14:20:41 -0800831 SkDebugf("\n");
mtklein748ca3b2015-01-15 10:56:12 -0800832 if (gFailures.count() > 0) {
833 SkDebugf("Failures:\n");
834 for (int i = 0; i < gFailures.count(); i++) {
mtklein9dc09102015-01-15 15:47:33 -0800835 SkDebugf("\t%s\n", gFailures[i].c_str());
mtklein748ca3b2015-01-15 10:56:12 -0800836 }
837 SkDebugf("%d failures\n", gFailures.count());
838 return 1;
mtklein114c3cd2015-01-15 10:15:02 -0800839 }
mtklein748ca3b2015-01-15 10:56:12 -0800840 if (gPending > 0) {
841 SkDebugf("Hrm, we didn't seem to run everything we intended to! Please file a bug.\n");
842 return 1;
mtklein114c3cd2015-01-15 10:15:02 -0800843 }
mtklein748ca3b2015-01-15 10:56:12 -0800844 return 0;
mtklein@google.comd36522d2013-10-16 13:02:15 +0000845}
jcgregorio3b27ade2014-11-13 08:06:40 -0800846
borenet48087572015-04-02 12:16:36 -0700847#if !defined(SK_BUILD_FOR_IOS)
jcgregorio3b27ade2014-11-13 08:06:40 -0800848int main(int argc, char** argv) {
849 SkCommandLineFlags::Parse(argc, argv);
850 return dm_main();
851}
852#endif