blob: 3ad82262c4a17d01240dd677931430b0020844dd [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"
mtklein@google.comd36522d2013-10-16 13:02:15 +000017#include "SkForceLinking.h"
18#include "SkGraphics.h"
mtkleine67164d2015-02-02 13:24:37 -080019#include "SkInstCnt.h"
mtklein748ca3b2015-01-15 10:56:12 -080020#include "SkMD5.h"
mtklein1d0f1642014-09-08 08:05:18 -070021#include "SkOSFile.h"
mtkleina82f5622015-02-20 12:30:19 -080022#include "SkTHash.h"
mtklein406654b2014-09-03 15:34:37 -070023#include "SkTaskGroup.h"
mtkleinde6fc2b2015-03-12 06:28:54 -070024#include "SkThreadUtils.h"
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +000025#include "Test.h"
mtklein748ca3b2015-01-15 10:56:12 -080026#include "Timer.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000027
djsollen54416de2015-04-03 07:24:48 -070028DEFINE_string(src, "tests gm skp image", "Source types to test.");
mtklein748ca3b2015-01-15 10:56:12 -080029DEFINE_bool(nameByHash, false,
30 "If true, write to FLAGS_writePath[0]/<hash>.png instead of "
djsollen54416de2015-04-03 07:24:48 -070031 "to FLAGS_writePath[0]/<config>/<sourceType>/<sourceOptions>/<name>.png");
mtklein748ca3b2015-01-15 10:56:12 -080032DEFINE_bool2(pathOpsExtended, x, false, "Run extended pathOps tests.");
mtkleind603b222015-02-17 11:13:33 -080033DEFINE_string(matrix, "1 0 0 1",
34 "2x2 scale+skew matrix to apply or upright when using "
35 "'matrix' or 'upright' in config.");
mtklein82d28432015-01-15 12:46:02 -080036DEFINE_bool(gpu_threading, false, "Allow GPU work to run on multiple threads?");
mtklein@google.comd36522d2013-10-16 13:02:15 +000037
mtkleina2ef6422015-01-15 13:44:22 -080038DEFINE_string(blacklist, "",
djsollen54416de2015-04-03 07:24:48 -070039 "Space-separated config/src/srcOptions/name quadruples to blacklist. '_' matches anything. E.g. \n"
40 "'--blacklist gpu skp _ _' will blacklist all SKPs drawn into the gpu config.\n"
41 "'--blacklist gpu skp _ _ 8888 gm _ aarects' will also blacklist the aarects GM on 8888.");
mtkleina2ef6422015-01-15 13:44:22 -080042
mtklein62bd1a62015-01-27 14:46:26 -080043DEFINE_string2(readPath, r, "", "If set check for equality with golden results in this directory.");
44
borenet09ed4802015-04-03 14:15:33 -070045DEFINE_string(uninterestingHashesFile, "",
46 "File containing a list of uninteresting hashes. If a result hashes to something in "
47 "this list, no image is written for that result.");
48
mtklein@google.comd36522d2013-10-16 13:02:15 +000049__SK_FORCE_IMAGE_DECODER_LINKING;
mtklein748ca3b2015-01-15 10:56:12 -080050using namespace DM;
mtklein@google.comd36522d2013-10-16 13:02:15 +000051
mtklein748ca3b2015-01-15 10:56:12 -080052/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
53
54SK_DECLARE_STATIC_MUTEX(gFailuresMutex);
55static SkTArray<SkString> gFailures;
56
57static void fail(ImplicitString err) {
58 SkAutoMutexAcquire lock(gFailuresMutex);
59 SkDebugf("\n\nFAILURE: %s\n\n", err.c_str());
60 gFailures.push_back(err);
halcanary9e398f72015-01-10 11:18:04 -080061}
62
mtkleinb37cb412015-03-18 05:27:14 -070063static int32_t gPending = 0; // Atomic. Total number of running and queued tasks.
64
65SK_DECLARE_STATIC_MUTEX(gRunningMutex);
66static SkTArray<SkString> gRunning;
mtklein748ca3b2015-01-15 10:56:12 -080067
mtkleinb9eb4ac2015-02-02 18:26:03 -080068static void done(double ms,
djsollen54416de2015-04-03 07:24:48 -070069 ImplicitString config, ImplicitString src, ImplicitString srcOptions,
70 ImplicitString name, ImplicitString note, ImplicitString log) {
71 SkString id = SkStringPrintf("%s %s %s %s", config.c_str(), src.c_str(),
72 srcOptions.c_str(), name.c_str());
mtkleinb37cb412015-03-18 05:27:14 -070073 {
74 SkAutoMutexAcquire lock(gRunningMutex);
75 for (int i = 0; i < gRunning.count(); i++) {
76 if (gRunning[i] == id) {
77 gRunning.removeShuffle(i);
78 break;
79 }
80 }
81 }
82 if (!FLAGS_verbose) {
83 note = "";
84 }
mtkleinb9eb4ac2015-02-02 18:26:03 -080085 if (!log.isEmpty()) {
86 log.prepend("\n");
87 }
mtklein6dee2ad2015-02-05 09:53:44 -080088 auto pending = sk_atomic_dec(&gPending)-1;
mtkleinb37cb412015-03-18 05:27:14 -070089 SkDebugf("%s(%4dMB %5d) %s\t%s%s%s", FLAGS_verbose ? "\n" : kSkOverwriteLine
90 , sk_tools::getBestResidentSetSizeMB()
91 , pending
92 , HumanizeMs(ms).c_str()
93 , id.c_str()
94 , note.c_str()
95 , log.c_str());
mtkleina17241b2015-01-23 05:48:00 -080096 // We write our dm.json file every once in a while in case we crash.
97 // Notice this also handles the final dm.json when pending == 0.
98 if (pending % 500 == 0) {
99 JsonWriter::DumpJson();
100 }
mtklein@google.comd36522d2013-10-16 13:02:15 +0000101}
102
djsollen54416de2015-04-03 07:24:48 -0700103static void start(ImplicitString config, ImplicitString src,
104 ImplicitString srcOptions, ImplicitString name) {
105 SkString id = SkStringPrintf("%s %s %s %s", config.c_str(), src.c_str(),
106 srcOptions.c_str(), name.c_str());
mtkleinb37cb412015-03-18 05:27:14 -0700107 SkAutoMutexAcquire lock(gRunningMutex);
108 gRunning.push_back(id);
109}
110
mtklein748ca3b2015-01-15 10:56:12 -0800111/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
mtklein114c3cd2015-01-15 10:15:02 -0800112
mtklein62bd1a62015-01-27 14:46:26 -0800113struct Gold : public SkString {
mtkleina82f5622015-02-20 12:30:19 -0800114 Gold() : SkString("") {}
djsollen54416de2015-04-03 07:24:48 -0700115 Gold(ImplicitString sink, ImplicitString src, ImplicitString srcOptions,
116 ImplicitString name, ImplicitString md5)
mtklein62bd1a62015-01-27 14:46:26 -0800117 : SkString("") {
118 this->append(sink);
119 this->append(src);
djsollen54416de2015-04-03 07:24:48 -0700120 this->append(srcOptions);
mtklein62bd1a62015-01-27 14:46:26 -0800121 this->append(name);
122 this->append(md5);
mtklein62bd1a62015-01-27 14:46:26 -0800123 }
mtklein02f46cf2015-03-20 13:48:42 -0700124 static uint32_t Hash(const Gold& g) { return SkGoodHash((const SkString&)g); }
mtklein62bd1a62015-01-27 14:46:26 -0800125};
mtkleina82f5622015-02-20 12:30:19 -0800126static SkTHashSet<Gold, Gold::Hash> gGold;
mtklein62bd1a62015-01-27 14:46:26 -0800127
128static void add_gold(JsonWriter::BitmapResult r) {
djsollen54416de2015-04-03 07:24:48 -0700129 gGold.add(Gold(r.config, r.sourceType, r.sourceOptions, r.name, r.md5));
mtklein62bd1a62015-01-27 14:46:26 -0800130}
131
132static void gather_gold() {
133 if (!FLAGS_readPath.isEmpty()) {
134 SkString path(FLAGS_readPath[0]);
135 path.append("/dm.json");
136 if (!JsonWriter::ReadJson(path.c_str(), add_gold)) {
137 fail(SkStringPrintf("Couldn't read %s for golden results.", path.c_str()));
138 }
139 }
140}
141
142/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
143
borenet09ed4802015-04-03 14:15:33 -0700144static SkTHashSet<SkString> gUninterestingHashes;
145
146static void gather_uninteresting_hashes() {
147 if (!FLAGS_uninterestingHashesFile.isEmpty()) {
148 SkAutoTUnref<SkData> data(SkData::NewFromFileName(FLAGS_uninterestingHashesFile[0]));
149 SkTArray<SkString> hashes;
150 SkStrSplit((const char*)data->data(), "\n", &hashes);
151 for (const SkString& hash : hashes) {
152 gUninterestingHashes.add(hash);
153 }
154 }
155}
156
157/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
158
mtklein748ca3b2015-01-15 10:56:12 -0800159template <typename T>
djsollen54416de2015-04-03 07:24:48 -0700160struct Tagged : public SkAutoTDelete<T> {
161 const char* tag;
162 const char* options;
163};
mtklein748ca3b2015-01-15 10:56:12 -0800164
165static const bool kMemcpyOK = true;
166
167static SkTArray<Tagged<Src>, kMemcpyOK> gSrcs;
168static SkTArray<Tagged<Sink>, kMemcpyOK> gSinks;
169
djsollen54416de2015-04-03 07:24:48 -0700170static void push_src(const char* tag, const char* options, Src* s) {
mtklein748ca3b2015-01-15 10:56:12 -0800171 SkAutoTDelete<Src> src(s);
172 if (FLAGS_src.contains(tag) &&
173 !SkCommandLineFlags::ShouldSkip(FLAGS_match, src->name().c_str())) {
174 Tagged<Src>& s = gSrcs.push_back();
175 s.reset(src.detach());
176 s.tag = tag;
djsollen54416de2015-04-03 07:24:48 -0700177 s.options = options;
mtklein114c3cd2015-01-15 10:15:02 -0800178 }
mtklein748ca3b2015-01-15 10:56:12 -0800179}
mtklein114c3cd2015-01-15 10:15:02 -0800180
scroggo9b77ddd2015-03-19 06:03:39 -0700181static bool codec_supported(const char* ext) {
182 // FIXME: Once other versions of SkCodec are available, we can add them to this
183 // list (and eventually we can remove this check once they are all supported).
msarett8c8f22a2015-04-01 06:58:48 -0700184 static const char* const exts[] = {
185 "bmp", "gif", "png", "ico", "wbmp",
186 "BMP", "GIF", "PNG", "ICO", "WBMP"
187 };
188
189 for (uint32_t i = 0; i < SK_ARRAY_COUNT(exts); i++) {
190 if (0 == strcmp(exts[i], ext)) {
191 return true;
192 }
193 }
194 return false;
scroggo9b77ddd2015-03-19 06:03:39 -0700195}
196
mtklein748ca3b2015-01-15 10:56:12 -0800197static void gather_srcs() {
198 for (const skiagm::GMRegistry* r = skiagm::GMRegistry::Head(); r; r = r->next()) {
djsollen54416de2015-04-03 07:24:48 -0700199 push_src("gm", "", new GMSrc(r->factory()));
mtklein748ca3b2015-01-15 10:56:12 -0800200 }
halcanaryfc37ad12015-01-30 07:31:19 -0800201 for (int i = 0; i < FLAGS_skps.count(); i++) {
202 const char* path = FLAGS_skps[i];
203 if (sk_isdir(path)) {
204 SkOSFile::Iter it(path, "skp");
205 for (SkString file; it.next(&file); ) {
djsollen54416de2015-04-03 07:24:48 -0700206 push_src("skp", "", new SKPSrc(SkOSPath::Join(path, file.c_str())));
halcanaryfc37ad12015-01-30 07:31:19 -0800207 }
208 } else {
djsollen54416de2015-04-03 07:24:48 -0700209 push_src("skp", "", new SKPSrc(path));
mtklein114c3cd2015-01-15 10:15:02 -0800210 }
211 }
halcanary23b03c32015-01-30 09:58:58 -0800212 static const char* const exts[] = {
213 "bmp", "gif", "jpg", "jpeg", "png", "webp", "ktx", "astc", "wbmp", "ico",
214 "BMP", "GIF", "JPG", "JPEG", "PNG", "WEBP", "KTX", "ASTC", "WBMP", "ICO",
215 };
216 for (int i = 0; i < FLAGS_images.count(); i++) {
217 const char* flag = FLAGS_images[i];
218 if (sk_isdir(flag)) {
219 for (size_t j = 0; j < SK_ARRAY_COUNT(exts); j++) {
220 SkOSFile::Iter it(flag, exts[j]);
221 for (SkString file; it.next(&file); ) {
222 SkString path = SkOSPath::Join(flag, file.c_str());
djsollen54416de2015-04-03 07:24:48 -0700223 push_src("image", "decode", new ImageSrc(path)); // Decode entire image
224 push_src("image", "subset", new ImageSrc(path, 2)); // Decode into 2x2 subsets
scroggo9b77ddd2015-03-19 06:03:39 -0700225 if (codec_supported(exts[j])) {
djsollen54416de2015-04-03 07:24:48 -0700226 push_src("image", "codec", new CodecSrc(path, CodecSrc::kNormal_Mode));
227 push_src("image", "scanline", new CodecSrc(path, CodecSrc::kScanline_Mode));
scroggo9b77ddd2015-03-19 06:03:39 -0700228 }
halcanary23b03c32015-01-30 09:58:58 -0800229 }
mtklein114c3cd2015-01-15 10:15:02 -0800230 }
halcanary23b03c32015-01-30 09:58:58 -0800231 } else if (sk_exists(flag)) {
232 // assume that FLAGS_images[i] is a valid image if it is a file.
djsollen54416de2015-04-03 07:24:48 -0700233 push_src("image", "decode", new ImageSrc(flag)); // Decode entire image.
234 push_src("image", "subset", new ImageSrc(flag, 2)); // Decode into 2 x 2 subsets
235 push_src("image", "codec", new CodecSrc(flag, CodecSrc::kNormal_Mode));
236 push_src("image", "scanline", new CodecSrc(flag, CodecSrc::kScanline_Mode));
mtklein709d2c32015-01-15 08:30:25 -0800237 }
mtklein709d2c32015-01-15 08:30:25 -0800238 }
239}
240
mtklein748ca3b2015-01-15 10:56:12 -0800241static GrGLStandard get_gpu_api() {
242 if (FLAGS_gpuAPI.contains("gl")) { return kGL_GrGLStandard; }
243 if (FLAGS_gpuAPI.contains("gles")) { return kGLES_GrGLStandard; }
244 return kNone_GrGLStandard;
mtklein709d2c32015-01-15 08:30:25 -0800245}
246
mtklein748ca3b2015-01-15 10:56:12 -0800247static void push_sink(const char* tag, Sink* s) {
248 SkAutoTDelete<Sink> sink(s);
249 if (!FLAGS_config.contains(tag)) {
250 return;
mtklein114c3cd2015-01-15 10:15:02 -0800251 }
mtklein748ca3b2015-01-15 10:56:12 -0800252 // Try a noop Src as a canary. If it fails, skip this sink.
253 struct : public Src {
mtklein36352bf2015-03-25 18:17:31 -0700254 Error draw(SkCanvas*) const override { return ""; }
255 SkISize size() const override { return SkISize::Make(16, 16); }
256 Name name() const override { return "noop"; }
mtklein748ca3b2015-01-15 10:56:12 -0800257 } noop;
mtklein114c3cd2015-01-15 10:15:02 -0800258
mtklein748ca3b2015-01-15 10:56:12 -0800259 SkBitmap bitmap;
260 SkDynamicMemoryWStream stream;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800261 SkString log;
262 Error err = sink->draw(noop, &bitmap, &stream, &log);
mtklein4089ef72015-03-05 08:40:28 -0800263 if (err.isFatal()) {
mtklein748ca3b2015-01-15 10:56:12 -0800264 SkDebugf("Skipping %s: %s\n", tag, err.c_str());
mtklein114c3cd2015-01-15 10:15:02 -0800265 return;
266 }
267
mtklein748ca3b2015-01-15 10:56:12 -0800268 Tagged<Sink>& ts = gSinks.push_back();
269 ts.reset(sink.detach());
270 ts.tag = tag;
271}
272
273static bool gpu_supported() {
274#if SK_SUPPORT_GPU
275 return FLAGS_gpu;
276#else
277 return false;
278#endif
279}
280
281static Sink* create_sink(const char* tag) {
282#define SINK(t, sink, ...) if (0 == strcmp(t, tag)) { return new sink(__VA_ARGS__); }
283 if (gpu_supported()) {
mtklein82d28432015-01-15 12:46:02 -0800284 typedef GrContextFactory Gr;
mtklein748ca3b2015-01-15 10:56:12 -0800285 const GrGLStandard api = get_gpu_api();
mtklein82d28432015-01-15 12:46:02 -0800286 SINK("gpunull", GPUSink, Gr::kNull_GLContextType, api, 0, false, FLAGS_gpu_threading);
287 SINK("gpudebug", GPUSink, Gr::kDebug_GLContextType, api, 0, false, FLAGS_gpu_threading);
288 SINK("gpu", GPUSink, Gr::kNative_GLContextType, api, 0, false, FLAGS_gpu_threading);
289 SINK("gpudft", GPUSink, Gr::kNative_GLContextType, api, 0, true, FLAGS_gpu_threading);
290 SINK("msaa4", GPUSink, Gr::kNative_GLContextType, api, 4, false, FLAGS_gpu_threading);
291 SINK("msaa16", GPUSink, Gr::kNative_GLContextType, api, 16, false, FLAGS_gpu_threading);
292 SINK("nvprmsaa4", GPUSink, Gr::kNVPR_GLContextType, api, 4, false, FLAGS_gpu_threading);
293 SINK("nvprmsaa16", GPUSink, Gr::kNVPR_GLContextType, api, 16, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800294 #if SK_ANGLE
mtklein82d28432015-01-15 12:46:02 -0800295 SINK("angle", GPUSink, Gr::kANGLE_GLContextType, api, 0, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800296 #endif
297 #if SK_MESA
mtklein82d28432015-01-15 12:46:02 -0800298 SINK("mesa", GPUSink, Gr::kMESA_GLContextType, api, 0, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800299 #endif
mtklein114c3cd2015-01-15 10:15:02 -0800300 }
mtklein748ca3b2015-01-15 10:56:12 -0800301
tomhudsoneebc39a2015-02-23 12:18:05 -0800302#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
303 SINK("hwui", HWUISink);
304#endif
305
mtklein748ca3b2015-01-15 10:56:12 -0800306 if (FLAGS_cpu) {
307 SINK("565", RasterSink, kRGB_565_SkColorType);
308 SINK("8888", RasterSink, kN32_SkColorType);
mtklein19f30602015-01-20 13:34:39 -0800309 SINK("pdf", PDFSink);
mtklein9c3f17d2015-01-28 11:35:18 -0800310 SINK("skp", SKPSink);
mtklein8a4527e2015-01-31 20:00:58 -0800311 SINK("svg", SVGSink);
312 SINK("null", NullSink);
halcanary47ef4d52015-03-03 09:13:09 -0800313 SINK("xps", XPSSink);
mtklein748ca3b2015-01-15 10:56:12 -0800314 }
315#undef SINK
316 return NULL;
mtklein114c3cd2015-01-15 10:15:02 -0800317}
318
mtklein748ca3b2015-01-15 10:56:12 -0800319static Sink* create_via(const char* tag, Sink* wrapped) {
320#define VIA(t, via, ...) if (0 == strcmp(t, tag)) { return new via(__VA_ARGS__); }
mtklein7edca212015-01-21 13:18:51 -0800321 VIA("pipe", ViaPipe, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800322 VIA("serialize", ViaSerialization, wrapped);
mtklein7edca212015-01-21 13:18:51 -0800323 VIA("tiles", ViaTiles, 256, 256, NULL, wrapped);
324 VIA("tiles_rt", ViaTiles, 256, 256, new SkRTreeFactory, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800325
mtkleind603b222015-02-17 11:13:33 -0800326 if (FLAGS_matrix.count() == 4) {
mtklein748ca3b2015-01-15 10:56:12 -0800327 SkMatrix m;
mtkleind603b222015-02-17 11:13:33 -0800328 m.reset();
329 m.setScaleX((SkScalar)atof(FLAGS_matrix[0]));
330 m.setSkewX ((SkScalar)atof(FLAGS_matrix[1]));
331 m.setSkewY ((SkScalar)atof(FLAGS_matrix[2]));
332 m.setScaleY((SkScalar)atof(FLAGS_matrix[3]));
333 VIA("matrix", ViaMatrix, m, wrapped);
334 VIA("upright", ViaUpright, m, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800335 }
tomhudson64de1e12015-03-05 08:01:07 -0800336
337#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
338 VIA("androidsdk", ViaAndroidSDK, wrapped);
339#endif
340
mtklein748ca3b2015-01-15 10:56:12 -0800341#undef VIA
342 return NULL;
mtklein114c3cd2015-01-15 10:15:02 -0800343}
344
mtklein748ca3b2015-01-15 10:56:12 -0800345static void gather_sinks() {
346 for (int i = 0; i < FLAGS_config.count(); i++) {
347 const char* config = FLAGS_config[i];
348 SkTArray<SkString> parts;
349 SkStrSplit(config, "-", &parts);
350
351 Sink* sink = NULL;
352 for (int i = parts.count(); i-- > 0;) {
353 const char* part = parts[i].c_str();
354 Sink* next = (sink == NULL) ? create_sink(part) : create_via(part, sink);
355 if (next == NULL) {
356 SkDebugf("Skipping %s: Don't understand '%s'.\n", config, part);
357 delete sink;
358 sink = NULL;
359 break;
360 }
361 sink = next;
362 }
363 if (sink) {
364 push_sink(config, sink);
mtklein114c3cd2015-01-15 10:15:02 -0800365 }
366 }
367}
mtklein709d2c32015-01-15 08:30:25 -0800368
mtkleina2ef6422015-01-15 13:44:22 -0800369static bool match(const char* needle, const char* haystack) {
370 return 0 == strcmp("_", needle) || NULL != strstr(haystack, needle);
371}
372
djsollen54416de2015-04-03 07:24:48 -0700373static ImplicitString is_blacklisted(const char* sink, const char* src,
374 const char* srcOptions, const char* name) {
mtklein0d243ff2015-04-03 07:51:00 -0700375 for (int i = 0; i < FLAGS_blacklist.count() - 3; i += 4) {
mtkleina2ef6422015-01-15 13:44:22 -0800376 if (match(FLAGS_blacklist[i+0], sink) &&
djsollen54416de2015-04-03 07:24:48 -0700377 match(FLAGS_blacklist[i+1], src) &&
378 match(FLAGS_blacklist[i+2], srcOptions) &&
379 match(FLAGS_blacklist[i+3], name)) {
380 return SkStringPrintf("%s %s %s %s",
381 FLAGS_blacklist[i+0], FLAGS_blacklist[i+1],
382 FLAGS_blacklist[i+2], FLAGS_blacklist[i+3]);
mtkleina2ef6422015-01-15 13:44:22 -0800383 }
384 }
385 return "";
386}
387
mtklein748ca3b2015-01-15 10:56:12 -0800388// The finest-grained unit of work we can run: draw a single Src into a single Sink,
389// report any errors, and perhaps write out the output: a .png of the bitmap, or a raw stream.
390struct Task {
391 Task(const Tagged<Src>& src, const Tagged<Sink>& sink) : src(src), sink(sink) {}
392 const Tagged<Src>& src;
393 const Tagged<Sink>& sink;
394
395 static void Run(Task* task) {
mtkleina2ef6422015-01-15 13:44:22 -0800396 SkString name = task->src->name();
mtkleinb37cb412015-03-18 05:27:14 -0700397 SkString note;
djsollen54416de2015-04-03 07:24:48 -0700398 SkString whyBlacklisted = is_blacklisted(task->sink.tag, task->src.tag,
399 task->src.options, name.c_str());
mtkleinb37cb412015-03-18 05:27:14 -0700400 if (!whyBlacklisted.isEmpty()) {
401 note.appendf(" (--blacklist %s)", whyBlacklisted.c_str());
402 }
mtkleinb9eb4ac2015-02-02 18:26:03 -0800403 SkString log;
mtklein748ca3b2015-01-15 10:56:12 -0800404 WallTimer timer;
405 timer.start();
mtkleina2ef6422015-01-15 13:44:22 -0800406 if (!FLAGS_dryRun && whyBlacklisted.isEmpty()) {
mtklein748ca3b2015-01-15 10:56:12 -0800407 SkBitmap bitmap;
408 SkDynamicMemoryWStream stream;
djsollen54416de2015-04-03 07:24:48 -0700409 start(task->sink.tag, task->src.tag, task->src.options, name.c_str());
mtkleinb9eb4ac2015-02-02 18:26:03 -0800410 Error err = task->sink->draw(*task->src, &bitmap, &stream, &log);
mtklein748ca3b2015-01-15 10:56:12 -0800411 if (!err.isEmpty()) {
mtklein4089ef72015-03-05 08:40:28 -0800412 timer.end();
413 if (err.isFatal()) {
djsollen54416de2015-04-03 07:24:48 -0700414 fail(SkStringPrintf("%s %s %s %s: %s",
mtklein4089ef72015-03-05 08:40:28 -0800415 task->sink.tag,
416 task->src.tag,
djsollen54416de2015-04-03 07:24:48 -0700417 task->src.options,
mtklein4089ef72015-03-05 08:40:28 -0800418 name.c_str(),
419 err.c_str()));
mtkleinb37cb412015-03-18 05:27:14 -0700420 } else {
421 note.appendf(" (skipped: %s)", err.c_str());
mtklein4089ef72015-03-05 08:40:28 -0800422 }
djsollen54416de2015-04-03 07:24:48 -0700423 done(timer.fWall, task->sink.tag, task->src.tag, task->src.options,
424 name, note, log);
mtklein4089ef72015-03-05 08:40:28 -0800425 return;
mtklein748ca3b2015-01-15 10:56:12 -0800426 }
mtklein62bd1a62015-01-27 14:46:26 -0800427 SkAutoTDelete<SkStreamAsset> data(stream.detachAsStream());
428
429 SkString md5;
430 if (!FLAGS_writePath.isEmpty() || !FLAGS_readPath.isEmpty()) {
431 SkMD5 hash;
432 if (data->getLength()) {
433 hash.writeStream(data, data->getLength());
434 data->rewind();
435 } else {
436 hash.write(bitmap.getPixels(), bitmap.getSize());
437 }
438 SkMD5::Digest digest;
439 hash.finish(digest);
440 for (int i = 0; i < 16; i++) {
441 md5.appendf("%02x", digest.data[i]);
442 }
443 }
444
445 if (!FLAGS_readPath.isEmpty() &&
djsollen54416de2015-04-03 07:24:48 -0700446 !gGold.contains(Gold(task->sink.tag, task->src.tag,
447 task->src.options, name, md5))) {
448 fail(SkStringPrintf("%s not found for %s %s %s %s in %s",
mtklein62bd1a62015-01-27 14:46:26 -0800449 md5.c_str(),
450 task->sink.tag,
451 task->src.tag,
djsollen54416de2015-04-03 07:24:48 -0700452 task->src.options,
mtklein62bd1a62015-01-27 14:46:26 -0800453 name.c_str(),
454 FLAGS_readPath[0]));
455 }
456
borenet09ed4802015-04-03 14:15:33 -0700457 if (!FLAGS_writePath.isEmpty() && !gUninterestingHashes.contains(md5)) {
mtklein748ca3b2015-01-15 10:56:12 -0800458 const char* ext = task->sink->fileExtension();
mtklein62bd1a62015-01-27 14:46:26 -0800459 if (data->getLength()) {
460 WriteToDisk(*task, md5, ext, data, data->getLength(), NULL);
halcanary022afb82015-01-30 11:00:12 -0800461 SkASSERT(bitmap.drawsNothing());
462 } else if (!bitmap.drawsNothing()) {
mtklein62bd1a62015-01-27 14:46:26 -0800463 WriteToDisk(*task, md5, ext, NULL, 0, &bitmap);
mtklein748ca3b2015-01-15 10:56:12 -0800464 }
465 }
466 }
467 timer.end();
djsollen54416de2015-04-03 07:24:48 -0700468 done(timer.fWall, task->sink.tag, task->src.tag, task->src.options, name, note, log);
mtklein748ca3b2015-01-15 10:56:12 -0800469 }
470
471 static void WriteToDisk(const Task& task,
mtklein62bd1a62015-01-27 14:46:26 -0800472 SkString md5,
473 const char* ext,
mtklein748ca3b2015-01-15 10:56:12 -0800474 SkStream* data, size_t len,
mtklein62bd1a62015-01-27 14:46:26 -0800475 const SkBitmap* bitmap) {
mtklein748ca3b2015-01-15 10:56:12 -0800476 JsonWriter::BitmapResult result;
djsollen54416de2015-04-03 07:24:48 -0700477 result.name = task.src->name();
478 result.config = task.sink.tag;
479 result.sourceType = task.src.tag;
480 result.sourceOptions = task.src.options;
481 result.ext = ext;
482 result.md5 = md5;
mtklein748ca3b2015-01-15 10:56:12 -0800483 JsonWriter::AddBitmapResult(result);
484
485 const char* dir = FLAGS_writePath[0];
486 if (0 == strcmp(dir, "@")) { // Needed for iOS.
487 dir = FLAGS_resourcePath[0];
488 }
489 sk_mkdir(dir);
490
491 SkString path;
492 if (FLAGS_nameByHash) {
493 path = SkOSPath::Join(dir, result.md5.c_str());
494 path.append(".");
495 path.append(ext);
496 if (sk_exists(path.c_str())) {
497 return; // Content-addressed. If it exists already, we're done.
498 }
499 } else {
500 path = SkOSPath::Join(dir, task.sink.tag);
501 sk_mkdir(path.c_str());
502 path = SkOSPath::Join(path.c_str(), task.src.tag);
503 sk_mkdir(path.c_str());
djsollen54416de2015-04-03 07:24:48 -0700504 if (strcmp(task.src.options, "") != 0) {
505 path = SkOSPath::Join(path.c_str(), task.src.options);
506 sk_mkdir(path.c_str());
507 }
mtklein748ca3b2015-01-15 10:56:12 -0800508 path = SkOSPath::Join(path.c_str(), task.src->name().c_str());
509 path.append(".");
510 path.append(ext);
511 }
512
513 SkFILEWStream file(path.c_str());
514 if (!file.isValid()) {
515 fail(SkStringPrintf("Can't open %s for writing.\n", path.c_str()));
516 return;
517 }
518
mtklein748ca3b2015-01-15 10:56:12 -0800519 if (bitmap) {
520 // We can't encode A8 bitmaps as PNGs. Convert them to 8888 first.
521 SkBitmap converted;
522 if (bitmap->info().colorType() == kAlpha_8_SkColorType) {
523 if (!bitmap->copyTo(&converted, kN32_SkColorType)) {
524 fail("Can't convert A8 to 8888.\n");
525 return;
526 }
527 bitmap = &converted;
528 }
529 if (!SkImageEncoder::EncodeStream(&file, *bitmap, SkImageEncoder::kPNG_Type, 100)) {
530 fail(SkStringPrintf("Can't encode PNG to %s.\n", path.c_str()));
531 return;
532 }
533 } else {
534 if (!file.writeStream(data, len)) {
535 fail(SkStringPrintf("Can't write to %s.\n", path.c_str()));
536 return;
537 }
538 }
539 }
540};
541
542// Run all tasks in the same enclave serially on the same thread.
543// They can't possibly run concurrently with each other.
544static void run_enclave(SkTArray<Task>* tasks) {
545 for (int i = 0; i < tasks->count(); i++) {
546 Task::Run(tasks->begin() + i);
547 }
548}
549
550/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
551
552// Unit tests don't fit so well into the Src/Sink model, so we give them special treatment.
553
mtklein55e88b22015-01-21 15:50:13 -0800554static SkTDArray<skiatest::Test> gThreadedTests, gGPUTests;
mtklein748ca3b2015-01-15 10:56:12 -0800555
556static void gather_tests() {
mtklein6c5fed22015-01-20 13:47:23 -0800557 if (!FLAGS_src.contains("tests")) {
mtklein748ca3b2015-01-15 10:56:12 -0800558 return;
559 }
halcanary87f3ba42015-01-20 09:30:20 -0800560 for (const skiatest::TestRegistry* r = skiatest::TestRegistry::Head(); r;
561 r = r->next()) {
562 // Despite its name, factory() is returning a reference to
563 // link-time static const POD data.
564 const skiatest::Test& test = r->factory();
565 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, test.name)) {
mtklein748ca3b2015-01-15 10:56:12 -0800566 continue;
567 }
halcanary87f3ba42015-01-20 09:30:20 -0800568 if (test.needsGpu && gpu_supported()) {
mtklein55e88b22015-01-21 15:50:13 -0800569 (FLAGS_gpu_threading ? gThreadedTests : gGPUTests).push(test);
halcanary87f3ba42015-01-20 09:30:20 -0800570 } else if (!test.needsGpu && FLAGS_cpu) {
mtklein55e88b22015-01-21 15:50:13 -0800571 gThreadedTests.push(test);
mtklein82d28432015-01-15 12:46:02 -0800572 }
mtklein748ca3b2015-01-15 10:56:12 -0800573 }
574}
575
halcanary87f3ba42015-01-20 09:30:20 -0800576static void run_test(skiatest::Test* test) {
577 struct : public skiatest::Reporter {
mtklein36352bf2015-03-25 18:17:31 -0700578 void reportFailed(const skiatest::Failure& failure) override {
halcanary87f3ba42015-01-20 09:30:20 -0800579 fail(failure.toString());
580 JsonWriter::AddTestFailure(failure);
581 }
mtklein36352bf2015-03-25 18:17:31 -0700582 bool allowExtendedTest() const override {
halcanary87f3ba42015-01-20 09:30:20 -0800583 return FLAGS_pathOpsExtended;
584 }
mtklein36352bf2015-03-25 18:17:31 -0700585 bool verbose() const override { return FLAGS_veryVerbose; }
halcanary87f3ba42015-01-20 09:30:20 -0800586 } reporter;
mtklein748ca3b2015-01-15 10:56:12 -0800587 WallTimer timer;
588 timer.start();
mtklein748ca3b2015-01-15 10:56:12 -0800589 if (!FLAGS_dryRun) {
djsollen54416de2015-04-03 07:24:48 -0700590 start("unit", "test", "", test->name);
mtklein55e88b22015-01-21 15:50:13 -0800591 GrContextFactory factory;
592 test->proc(&reporter, &factory);
mtklein748ca3b2015-01-15 10:56:12 -0800593 }
594 timer.end();
djsollen54416de2015-04-03 07:24:48 -0700595 done(timer.fWall, "unit", "test", "", test->name, "", "");
mtklein748ca3b2015-01-15 10:56:12 -0800596}
597
598/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
599
mtklein55e88b22015-01-21 15:50:13 -0800600// If we're isolating all GPU-bound work to one thread (the default), this function runs all that.
601static void run_enclave_and_gpu_tests(SkTArray<Task>* tasks) {
602 run_enclave(tasks);
603 for (int i = 0; i < gGPUTests.count(); i++) {
604 run_test(&gGPUTests[i]);
605 }
606}
607
mtkleinde6fc2b2015-03-12 06:28:54 -0700608// Some runs (mostly, Valgrind) are so slow that the bot framework thinks we've hung.
609// This prints something every once in a while so that it knows we're still working.
mtklein2e1c47e2015-03-12 07:16:56 -0700610static void start_keepalive() {
611 struct Loop {
612 static void forever(void*) {
613 for (;;) {
614 static const int kSec = 300;
615 #if defined(SK_BUILD_FOR_WIN)
616 Sleep(kSec * 1000);
617 #else
618 sleep(kSec);
619 #endif
mtkleinb37cb412015-03-18 05:27:14 -0700620 SkString running;
621 {
622 SkAutoMutexAcquire lock(gRunningMutex);
623 for (int i = 0; i < gRunning.count(); i++) {
624 running.appendf("\n\t%s", gRunning[i].c_str());
625 }
626 }
627 SkDebugf("\nCurrently running:%s\n", running.c_str());
mtklein2e1c47e2015-03-12 07:16:56 -0700628 }
629 }
630 };
631 static SkThread* intentionallyLeaked = new SkThread(Loop::forever);
632 intentionallyLeaked->start();
mtkleinde6fc2b2015-03-12 06:28:54 -0700633}
634
jcgregorio3b27ade2014-11-13 08:06:40 -0800635int dm_main();
caryclark17f0b6d2014-07-22 10:15:34 -0700636int dm_main() {
jcgregorio3b27ade2014-11-13 08:06:40 -0800637 SetupCrashHandler();
commit-bot@chromium.org39e8d932014-05-29 20:14:48 +0000638 SkAutoGraphics ag;
mtklein406654b2014-09-03 15:34:37 -0700639 SkTaskGroup::Enabler enabled(FLAGS_threads);
mtkleine67164d2015-02-02 13:24:37 -0800640 if (FLAGS_leaks) {
641 SkInstCountPrintLeaksOnExit();
642 }
commit-bot@chromium.orga65e2fd2014-05-30 17:23:31 +0000643
mtklein2e1c47e2015-03-12 07:16:56 -0700644 start_keepalive();
mtkleinde6fc2b2015-03-12 06:28:54 -0700645
mtklein62bd1a62015-01-27 14:46:26 -0800646 gather_gold();
borenet09ed4802015-04-03 14:15:33 -0700647 gather_uninteresting_hashes();
mtklein62bd1a62015-01-27 14:46:26 -0800648
mtklein748ca3b2015-01-15 10:56:12 -0800649 gather_srcs();
650 gather_sinks();
651 gather_tests();
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +0000652
mtklein55e88b22015-01-21 15:50:13 -0800653 gPending = gSrcs.count() * gSinks.count() + gThreadedTests.count() + gGPUTests.count();
mtklein748ca3b2015-01-15 10:56:12 -0800654 SkDebugf("%d srcs * %d sinks + %d tests == %d tasks\n",
mtklein55e88b22015-01-21 15:50:13 -0800655 gSrcs.count(), gSinks.count(), gThreadedTests.count() + gGPUTests.count(), gPending);
mtklein748ca3b2015-01-15 10:56:12 -0800656
657 // We try to exploit as much parallelism as is safe. Most Src/Sink pairs run on any thread,
658 // but Sinks that identify as part of a particular enclave run serially on a single thread.
mtklein82d28432015-01-15 12:46:02 -0800659 // CPU tests run on any thread. GPU tests depend on --gpu_threading.
mtklein748ca3b2015-01-15 10:56:12 -0800660 SkTArray<Task> enclaves[kNumEnclaves];
661 for (int j = 0; j < gSinks.count(); j++) {
662 SkTArray<Task>& tasks = enclaves[gSinks[j]->enclave()];
663 for (int i = 0; i < gSrcs.count(); i++) {
664 tasks.push_back(Task(gSrcs[i], gSinks[j]));
665 }
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +0000666 }
667
mtklein748ca3b2015-01-15 10:56:12 -0800668 SkTaskGroup tg;
mtklein55e88b22015-01-21 15:50:13 -0800669 tg.batch(run_test, gThreadedTests.begin(), gThreadedTests.count());
670 for (int i = 0; i < kNumEnclaves; i++) {
671 switch(i) {
672 case kAnyThread_Enclave:
673 tg.batch(Task::Run, enclaves[i].begin(), enclaves[i].count());
674 break;
675 case kGPU_Enclave:
676 tg.add(run_enclave_and_gpu_tests, &enclaves[i]);
677 break;
678 default:
679 tg.add(run_enclave, &enclaves[i]);
680 break;
mtklein82d28432015-01-15 12:46:02 -0800681 }
mtklein55e88b22015-01-21 15:50:13 -0800682 }
mtklein748ca3b2015-01-15 10:56:12 -0800683 tg.wait();
mtklein748ca3b2015-01-15 10:56:12 -0800684 // At this point we're back in single-threaded land.
mtklein@google.comd36522d2013-10-16 13:02:15 +0000685
mtklein2f64eec2015-01-15 14:20:41 -0800686 SkDebugf("\n");
mtklein748ca3b2015-01-15 10:56:12 -0800687 if (gFailures.count() > 0) {
688 SkDebugf("Failures:\n");
689 for (int i = 0; i < gFailures.count(); i++) {
mtklein9dc09102015-01-15 15:47:33 -0800690 SkDebugf("\t%s\n", gFailures[i].c_str());
mtklein748ca3b2015-01-15 10:56:12 -0800691 }
692 SkDebugf("%d failures\n", gFailures.count());
693 return 1;
mtklein114c3cd2015-01-15 10:15:02 -0800694 }
mtklein748ca3b2015-01-15 10:56:12 -0800695 if (gPending > 0) {
696 SkDebugf("Hrm, we didn't seem to run everything we intended to! Please file a bug.\n");
697 return 1;
mtklein114c3cd2015-01-15 10:15:02 -0800698 }
mtklein748ca3b2015-01-15 10:56:12 -0800699 return 0;
mtklein@google.comd36522d2013-10-16 13:02:15 +0000700}
jcgregorio3b27ade2014-11-13 08:06:40 -0800701
borenet48087572015-04-02 12:16:36 -0700702#if !defined(SK_BUILD_FOR_IOS)
jcgregorio3b27ade2014-11-13 08:06:40 -0800703int main(int argc, char** argv) {
704 SkCommandLineFlags::Parse(argc, argv);
705 return dm_main();
706}
707#endif