blob: fcedc8cb77dfa091fd251ba1dcd29aff8553825f [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
mtklein6393c062015-04-27 08:45:01 -070049DEFINE_int32(shards, 1, "We're splitting source data into this many shards.");
50DEFINE_int32(shard, 0, "Which shard do I run?");
51
mtklein@google.comd36522d2013-10-16 13:02:15 +000052__SK_FORCE_IMAGE_DECODER_LINKING;
mtklein748ca3b2015-01-15 10:56:12 -080053using namespace DM;
mtklein@google.comd36522d2013-10-16 13:02:15 +000054
mtklein748ca3b2015-01-15 10:56:12 -080055/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
56
57SK_DECLARE_STATIC_MUTEX(gFailuresMutex);
58static SkTArray<SkString> gFailures;
59
60static void fail(ImplicitString err) {
61 SkAutoMutexAcquire lock(gFailuresMutex);
62 SkDebugf("\n\nFAILURE: %s\n\n", err.c_str());
63 gFailures.push_back(err);
halcanary9e398f72015-01-10 11:18:04 -080064}
65
mtkleinb37cb412015-03-18 05:27:14 -070066static int32_t gPending = 0; // Atomic. Total number of running and queued tasks.
67
68SK_DECLARE_STATIC_MUTEX(gRunningMutex);
69static SkTArray<SkString> gRunning;
mtklein748ca3b2015-01-15 10:56:12 -080070
mtkleinb9eb4ac2015-02-02 18:26:03 -080071static void done(double ms,
djsollen54416de2015-04-03 07:24:48 -070072 ImplicitString config, ImplicitString src, ImplicitString srcOptions,
73 ImplicitString name, ImplicitString note, ImplicitString log) {
74 SkString id = SkStringPrintf("%s %s %s %s", config.c_str(), src.c_str(),
75 srcOptions.c_str(), name.c_str());
mtkleinb37cb412015-03-18 05:27:14 -070076 {
77 SkAutoMutexAcquire lock(gRunningMutex);
78 for (int i = 0; i < gRunning.count(); i++) {
79 if (gRunning[i] == id) {
80 gRunning.removeShuffle(i);
81 break;
82 }
83 }
84 }
85 if (!FLAGS_verbose) {
86 note = "";
87 }
mtkleinb9eb4ac2015-02-02 18:26:03 -080088 if (!log.isEmpty()) {
89 log.prepend("\n");
90 }
mtklein6dee2ad2015-02-05 09:53:44 -080091 auto pending = sk_atomic_dec(&gPending)-1;
reed50bc0512015-05-19 14:13:31 -070092 if (!FLAGS_quiet) {
93 SkDebugf("%s(%4d/%-4dMB %5d) %s\t%s%s%s", FLAGS_verbose ? "\n" : kSkOverwriteLine
94 , sk_tools::getCurrResidentSetSizeMB()
95 , sk_tools::getMaxResidentSetSizeMB()
96 , pending
97 , HumanizeMs(ms).c_str()
98 , id.c_str()
99 , note.c_str()
100 , log.c_str());
101 }
mtkleina17241b2015-01-23 05:48:00 -0800102 // We write our dm.json file every once in a while in case we crash.
103 // Notice this also handles the final dm.json when pending == 0.
104 if (pending % 500 == 0) {
105 JsonWriter::DumpJson();
106 }
mtklein@google.comd36522d2013-10-16 13:02:15 +0000107}
108
djsollen54416de2015-04-03 07:24:48 -0700109static void start(ImplicitString config, ImplicitString src,
110 ImplicitString srcOptions, ImplicitString name) {
111 SkString id = SkStringPrintf("%s %s %s %s", config.c_str(), src.c_str(),
112 srcOptions.c_str(), name.c_str());
mtkleinb37cb412015-03-18 05:27:14 -0700113 SkAutoMutexAcquire lock(gRunningMutex);
114 gRunning.push_back(id);
115}
116
mtklein748ca3b2015-01-15 10:56:12 -0800117/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
mtklein114c3cd2015-01-15 10:15:02 -0800118
mtklein62bd1a62015-01-27 14:46:26 -0800119struct Gold : public SkString {
mtkleina82f5622015-02-20 12:30:19 -0800120 Gold() : SkString("") {}
djsollen54416de2015-04-03 07:24:48 -0700121 Gold(ImplicitString sink, ImplicitString src, ImplicitString srcOptions,
122 ImplicitString name, ImplicitString md5)
mtklein62bd1a62015-01-27 14:46:26 -0800123 : SkString("") {
124 this->append(sink);
125 this->append(src);
djsollen54416de2015-04-03 07:24:48 -0700126 this->append(srcOptions);
mtklein62bd1a62015-01-27 14:46:26 -0800127 this->append(name);
128 this->append(md5);
mtklein62bd1a62015-01-27 14:46:26 -0800129 }
mtklein02f46cf2015-03-20 13:48:42 -0700130 static uint32_t Hash(const Gold& g) { return SkGoodHash((const SkString&)g); }
mtklein62bd1a62015-01-27 14:46:26 -0800131};
mtkleina82f5622015-02-20 12:30:19 -0800132static SkTHashSet<Gold, Gold::Hash> gGold;
mtklein62bd1a62015-01-27 14:46:26 -0800133
134static void add_gold(JsonWriter::BitmapResult r) {
djsollen54416de2015-04-03 07:24:48 -0700135 gGold.add(Gold(r.config, r.sourceType, r.sourceOptions, r.name, r.md5));
mtklein62bd1a62015-01-27 14:46:26 -0800136}
137
138static void gather_gold() {
139 if (!FLAGS_readPath.isEmpty()) {
140 SkString path(FLAGS_readPath[0]);
141 path.append("/dm.json");
142 if (!JsonWriter::ReadJson(path.c_str(), add_gold)) {
143 fail(SkStringPrintf("Couldn't read %s for golden results.", path.c_str()));
144 }
145 }
146}
147
148/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
149
borenet09ed4802015-04-03 14:15:33 -0700150static SkTHashSet<SkString> gUninterestingHashes;
151
152static void gather_uninteresting_hashes() {
153 if (!FLAGS_uninterestingHashesFile.isEmpty()) {
154 SkAutoTUnref<SkData> data(SkData::NewFromFileName(FLAGS_uninterestingHashesFile[0]));
155 SkTArray<SkString> hashes;
156 SkStrSplit((const char*)data->data(), "\n", &hashes);
157 for (const SkString& hash : hashes) {
158 gUninterestingHashes.add(hash);
159 }
160 }
161}
162
163/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
164
mtklein748ca3b2015-01-15 10:56:12 -0800165template <typename T>
djsollen54416de2015-04-03 07:24:48 -0700166struct Tagged : public SkAutoTDelete<T> {
167 const char* tag;
168 const char* options;
169};
mtklein748ca3b2015-01-15 10:56:12 -0800170
171static const bool kMemcpyOK = true;
172
173static SkTArray<Tagged<Src>, kMemcpyOK> gSrcs;
174static SkTArray<Tagged<Sink>, kMemcpyOK> gSinks;
175
mtklein6393c062015-04-27 08:45:01 -0700176static bool in_shard() {
177 static int N = 0;
178 return N++ % FLAGS_shards == FLAGS_shard;
179}
180
djsollen54416de2015-04-03 07:24:48 -0700181static void push_src(const char* tag, const char* options, Src* s) {
mtklein748ca3b2015-01-15 10:56:12 -0800182 SkAutoTDelete<Src> src(s);
mtklein6393c062015-04-27 08:45:01 -0700183 if (in_shard() &&
184 FLAGS_src.contains(tag) &&
mtklein748ca3b2015-01-15 10:56:12 -0800185 !SkCommandLineFlags::ShouldSkip(FLAGS_match, src->name().c_str())) {
186 Tagged<Src>& s = gSrcs.push_back();
187 s.reset(src.detach());
188 s.tag = tag;
djsollen54416de2015-04-03 07:24:48 -0700189 s.options = options;
mtklein114c3cd2015-01-15 10:15:02 -0800190 }
mtklein748ca3b2015-01-15 10:56:12 -0800191}
mtklein114c3cd2015-01-15 10:15:02 -0800192
msarett438b2ad2015-04-09 12:43:10 -0700193static void push_codec_srcs(Path path) {
194 SkAutoTUnref<SkData> encoded(SkData::NewFromFileName(path.c_str()));
195 if (!encoded) {
196 SkDebugf("Couldn't read %s.", path.c_str());
197 return;
198 }
199 SkAutoTDelete<SkCodec> codec(SkCodec::NewFromData(encoded));
200 if (NULL == codec.get()) {
201 SkDebugf("Couldn't create codec for %s.", path.c_str());
202 return;
203 }
204
205 // Build additional test cases for images that decode natively to non-canvas types
206 switch(codec->getInfo().colorType()) {
207 case kGray_8_SkColorType:
djsollena669bc32015-04-14 13:47:51 -0700208 push_src("image", "codec_kGray8", new CodecSrc(path, CodecSrc::kNormal_Mode,
msarett438b2ad2015-04-09 12:43:10 -0700209 CodecSrc::kGrayscale_Always_DstColorType));
djsollena669bc32015-04-14 13:47:51 -0700210 push_src("image", "scanline_kGray8", new CodecSrc(path, CodecSrc::kScanline_Mode,
msarett438b2ad2015-04-09 12:43:10 -0700211 CodecSrc::kGrayscale_Always_DstColorType));
212 // Intentional fall through
213 // FIXME: Is this a long term solution for testing wbmps decodes to kIndex8?
214 // Further discussion on this topic is at skbug.com/3683
215 case kIndex_8_SkColorType:
djsollena669bc32015-04-14 13:47:51 -0700216 push_src("image", "codec_kIndex8", new CodecSrc(path, CodecSrc::kNormal_Mode,
msarett438b2ad2015-04-09 12:43:10 -0700217 CodecSrc::kIndex8_Always_DstColorType));
msarett9e43cab2015-04-29 07:38:43 -0700218 push_src("image", "scanline_kIndex8", new CodecSrc(path, CodecSrc::kScanline_Mode,
219 CodecSrc::kIndex8_Always_DstColorType));
msarett438b2ad2015-04-09 12:43:10 -0700220 break;
221 default:
222 // Do nothing
223 break;
224 }
225
226 // Decode all images to the canvas color type
227 push_src("image", "codec", new CodecSrc(path, CodecSrc::kNormal_Mode,
228 CodecSrc::kGetFromCanvas_DstColorType));
229 push_src("image", "scanline", new CodecSrc(path, CodecSrc::kScanline_Mode,
230 CodecSrc::kGetFromCanvas_DstColorType));
231}
232
scroggo9b77ddd2015-03-19 06:03:39 -0700233static bool codec_supported(const char* ext) {
234 // FIXME: Once other versions of SkCodec are available, we can add them to this
235 // list (and eventually we can remove this check once they are all supported).
msarett8c8f22a2015-04-01 06:58:48 -0700236 static const char* const exts[] = {
msarette16b04a2015-04-15 07:32:19 -0700237 "bmp", "gif", "jpg", "jpeg", "png", "ico", "wbmp",
238 "BMP", "GIF", "JPG", "JPEG", "PNG", "ICO", "WBMP"
msarett8c8f22a2015-04-01 06:58:48 -0700239 };
240
241 for (uint32_t i = 0; i < SK_ARRAY_COUNT(exts); i++) {
242 if (0 == strcmp(exts[i], ext)) {
243 return true;
244 }
245 }
246 return false;
scroggo9b77ddd2015-03-19 06:03:39 -0700247}
248
mtklein748ca3b2015-01-15 10:56:12 -0800249static void gather_srcs() {
250 for (const skiagm::GMRegistry* r = skiagm::GMRegistry::Head(); r; r = r->next()) {
djsollen54416de2015-04-03 07:24:48 -0700251 push_src("gm", "", new GMSrc(r->factory()));
mtklein748ca3b2015-01-15 10:56:12 -0800252 }
halcanaryfc37ad12015-01-30 07:31:19 -0800253 for (int i = 0; i < FLAGS_skps.count(); i++) {
254 const char* path = FLAGS_skps[i];
255 if (sk_isdir(path)) {
256 SkOSFile::Iter it(path, "skp");
257 for (SkString file; it.next(&file); ) {
djsollen54416de2015-04-03 07:24:48 -0700258 push_src("skp", "", new SKPSrc(SkOSPath::Join(path, file.c_str())));
halcanaryfc37ad12015-01-30 07:31:19 -0800259 }
260 } else {
djsollen54416de2015-04-03 07:24:48 -0700261 push_src("skp", "", new SKPSrc(path));
mtklein114c3cd2015-01-15 10:15:02 -0800262 }
263 }
halcanary23b03c32015-01-30 09:58:58 -0800264 static const char* const exts[] = {
265 "bmp", "gif", "jpg", "jpeg", "png", "webp", "ktx", "astc", "wbmp", "ico",
266 "BMP", "GIF", "JPG", "JPEG", "PNG", "WEBP", "KTX", "ASTC", "WBMP", "ICO",
267 };
268 for (int i = 0; i < FLAGS_images.count(); i++) {
269 const char* flag = FLAGS_images[i];
270 if (sk_isdir(flag)) {
271 for (size_t j = 0; j < SK_ARRAY_COUNT(exts); j++) {
272 SkOSFile::Iter it(flag, exts[j]);
273 for (SkString file; it.next(&file); ) {
274 SkString path = SkOSPath::Join(flag, file.c_str());
djsollen54416de2015-04-03 07:24:48 -0700275 push_src("image", "decode", new ImageSrc(path)); // Decode entire image
276 push_src("image", "subset", new ImageSrc(path, 2)); // Decode into 2x2 subsets
scroggo9b77ddd2015-03-19 06:03:39 -0700277 if (codec_supported(exts[j])) {
msarett438b2ad2015-04-09 12:43:10 -0700278 push_codec_srcs(path);
scroggo9b77ddd2015-03-19 06:03:39 -0700279 }
halcanary23b03c32015-01-30 09:58:58 -0800280 }
mtklein114c3cd2015-01-15 10:15:02 -0800281 }
halcanary23b03c32015-01-30 09:58:58 -0800282 } else if (sk_exists(flag)) {
283 // assume that FLAGS_images[i] is a valid image if it is a file.
djsollen54416de2015-04-03 07:24:48 -0700284 push_src("image", "decode", new ImageSrc(flag)); // Decode entire image.
285 push_src("image", "subset", new ImageSrc(flag, 2)); // Decode into 2 x 2 subsets
msarett438b2ad2015-04-09 12:43:10 -0700286 push_codec_srcs(flag);
mtklein709d2c32015-01-15 08:30:25 -0800287 }
mtklein709d2c32015-01-15 08:30:25 -0800288 }
289}
290
mtklein748ca3b2015-01-15 10:56:12 -0800291static GrGLStandard get_gpu_api() {
292 if (FLAGS_gpuAPI.contains("gl")) { return kGL_GrGLStandard; }
293 if (FLAGS_gpuAPI.contains("gles")) { return kGLES_GrGLStandard; }
294 return kNone_GrGLStandard;
mtklein709d2c32015-01-15 08:30:25 -0800295}
296
mtklein748ca3b2015-01-15 10:56:12 -0800297static void push_sink(const char* tag, Sink* s) {
298 SkAutoTDelete<Sink> sink(s);
299 if (!FLAGS_config.contains(tag)) {
300 return;
mtklein114c3cd2015-01-15 10:15:02 -0800301 }
mtklein748ca3b2015-01-15 10:56:12 -0800302 // Try a noop Src as a canary. If it fails, skip this sink.
303 struct : public Src {
mtklein36352bf2015-03-25 18:17:31 -0700304 Error draw(SkCanvas*) const override { return ""; }
305 SkISize size() const override { return SkISize::Make(16, 16); }
306 Name name() const override { return "noop"; }
mtklein748ca3b2015-01-15 10:56:12 -0800307 } noop;
mtklein114c3cd2015-01-15 10:15:02 -0800308
mtklein748ca3b2015-01-15 10:56:12 -0800309 SkBitmap bitmap;
310 SkDynamicMemoryWStream stream;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800311 SkString log;
312 Error err = sink->draw(noop, &bitmap, &stream, &log);
mtklein4089ef72015-03-05 08:40:28 -0800313 if (err.isFatal()) {
mtklein05641a52015-04-21 10:49:13 -0700314 SkDebugf("Could not run %s: %s\n", tag, err.c_str());
315 exit(1);
mtklein114c3cd2015-01-15 10:15:02 -0800316 }
317
mtklein748ca3b2015-01-15 10:56:12 -0800318 Tagged<Sink>& ts = gSinks.push_back();
319 ts.reset(sink.detach());
320 ts.tag = tag;
321}
322
323static bool gpu_supported() {
324#if SK_SUPPORT_GPU
325 return FLAGS_gpu;
326#else
327 return false;
328#endif
329}
330
331static Sink* create_sink(const char* tag) {
332#define SINK(t, sink, ...) if (0 == strcmp(t, tag)) { return new sink(__VA_ARGS__); }
333 if (gpu_supported()) {
mtklein82d28432015-01-15 12:46:02 -0800334 typedef GrContextFactory Gr;
mtklein748ca3b2015-01-15 10:56:12 -0800335 const GrGLStandard api = get_gpu_api();
mtklein82d28432015-01-15 12:46:02 -0800336 SINK("gpunull", GPUSink, Gr::kNull_GLContextType, api, 0, false, FLAGS_gpu_threading);
337 SINK("gpudebug", GPUSink, Gr::kDebug_GLContextType, api, 0, false, FLAGS_gpu_threading);
338 SINK("gpu", GPUSink, Gr::kNative_GLContextType, api, 0, false, FLAGS_gpu_threading);
339 SINK("gpudft", GPUSink, Gr::kNative_GLContextType, api, 0, true, FLAGS_gpu_threading);
340 SINK("msaa4", GPUSink, Gr::kNative_GLContextType, api, 4, false, FLAGS_gpu_threading);
341 SINK("msaa16", GPUSink, Gr::kNative_GLContextType, api, 16, false, FLAGS_gpu_threading);
342 SINK("nvprmsaa4", GPUSink, Gr::kNVPR_GLContextType, api, 4, false, FLAGS_gpu_threading);
343 SINK("nvprmsaa16", GPUSink, Gr::kNVPR_GLContextType, api, 16, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800344 #if SK_ANGLE
mtklein82d28432015-01-15 12:46:02 -0800345 SINK("angle", GPUSink, Gr::kANGLE_GLContextType, api, 0, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800346 #endif
347 #if SK_MESA
mtklein82d28432015-01-15 12:46:02 -0800348 SINK("mesa", GPUSink, Gr::kMESA_GLContextType, api, 0, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800349 #endif
mtklein114c3cd2015-01-15 10:15:02 -0800350 }
mtklein748ca3b2015-01-15 10:56:12 -0800351
tomhudsoneebc39a2015-02-23 12:18:05 -0800352#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
353 SINK("hwui", HWUISink);
354#endif
355
mtklein748ca3b2015-01-15 10:56:12 -0800356 if (FLAGS_cpu) {
357 SINK("565", RasterSink, kRGB_565_SkColorType);
358 SINK("8888", RasterSink, kN32_SkColorType);
mtklein19f30602015-01-20 13:34:39 -0800359 SINK("pdf", PDFSink);
mtklein9c3f17d2015-01-28 11:35:18 -0800360 SINK("skp", SKPSink);
mtklein8a4527e2015-01-31 20:00:58 -0800361 SINK("svg", SVGSink);
362 SINK("null", NullSink);
halcanary47ef4d52015-03-03 09:13:09 -0800363 SINK("xps", XPSSink);
mtklein748ca3b2015-01-15 10:56:12 -0800364 }
365#undef SINK
366 return NULL;
mtklein114c3cd2015-01-15 10:15:02 -0800367}
368
mtklein748ca3b2015-01-15 10:56:12 -0800369static Sink* create_via(const char* tag, Sink* wrapped) {
370#define VIA(t, via, ...) if (0 == strcmp(t, tag)) { return new via(__VA_ARGS__); }
mtklein6fbf4b32015-05-06 11:35:40 -0700371 VIA("twice", ViaTwice, wrapped);
mtklein7edca212015-01-21 13:18:51 -0800372 VIA("pipe", ViaPipe, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800373 VIA("serialize", ViaSerialization, wrapped);
reed06a22f62015-05-05 08:11:33 -0700374 VIA("deferred", ViaDeferred, wrapped);
mtkleinb7e8d692015-04-07 08:30:32 -0700375 VIA("2ndpic", ViaSecondPicture, wrapped);
mtkleind31c13d2015-05-05 12:59:56 -0700376 VIA("sp", ViaSingletonPictures, wrapped);
mtklein7edca212015-01-21 13:18:51 -0800377 VIA("tiles", ViaTiles, 256, 256, NULL, wrapped);
378 VIA("tiles_rt", ViaTiles, 256, 256, new SkRTreeFactory, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800379
mtkleind603b222015-02-17 11:13:33 -0800380 if (FLAGS_matrix.count() == 4) {
mtklein748ca3b2015-01-15 10:56:12 -0800381 SkMatrix m;
mtkleind603b222015-02-17 11:13:33 -0800382 m.reset();
383 m.setScaleX((SkScalar)atof(FLAGS_matrix[0]));
384 m.setSkewX ((SkScalar)atof(FLAGS_matrix[1]));
385 m.setSkewY ((SkScalar)atof(FLAGS_matrix[2]));
386 m.setScaleY((SkScalar)atof(FLAGS_matrix[3]));
387 VIA("matrix", ViaMatrix, m, wrapped);
388 VIA("upright", ViaUpright, m, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800389 }
tomhudson64de1e12015-03-05 08:01:07 -0800390
391#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
392 VIA("androidsdk", ViaAndroidSDK, wrapped);
393#endif
394
mtklein748ca3b2015-01-15 10:56:12 -0800395#undef VIA
396 return NULL;
mtklein114c3cd2015-01-15 10:15:02 -0800397}
398
mtklein748ca3b2015-01-15 10:56:12 -0800399static void gather_sinks() {
400 for (int i = 0; i < FLAGS_config.count(); i++) {
401 const char* config = FLAGS_config[i];
402 SkTArray<SkString> parts;
403 SkStrSplit(config, "-", &parts);
404
405 Sink* sink = NULL;
406 for (int i = parts.count(); i-- > 0;) {
407 const char* part = parts[i].c_str();
408 Sink* next = (sink == NULL) ? create_sink(part) : create_via(part, sink);
409 if (next == NULL) {
410 SkDebugf("Skipping %s: Don't understand '%s'.\n", config, part);
411 delete sink;
412 sink = NULL;
413 break;
414 }
415 sink = next;
416 }
417 if (sink) {
418 push_sink(config, sink);
mtklein114c3cd2015-01-15 10:15:02 -0800419 }
420 }
421}
mtklein709d2c32015-01-15 08:30:25 -0800422
mtkleina2ef6422015-01-15 13:44:22 -0800423static bool match(const char* needle, const char* haystack) {
424 return 0 == strcmp("_", needle) || NULL != strstr(haystack, needle);
425}
426
djsollen54416de2015-04-03 07:24:48 -0700427static ImplicitString is_blacklisted(const char* sink, const char* src,
428 const char* srcOptions, const char* name) {
mtklein0d243ff2015-04-03 07:51:00 -0700429 for (int i = 0; i < FLAGS_blacklist.count() - 3; i += 4) {
mtkleina2ef6422015-01-15 13:44:22 -0800430 if (match(FLAGS_blacklist[i+0], sink) &&
djsollen54416de2015-04-03 07:24:48 -0700431 match(FLAGS_blacklist[i+1], src) &&
432 match(FLAGS_blacklist[i+2], srcOptions) &&
433 match(FLAGS_blacklist[i+3], name)) {
434 return SkStringPrintf("%s %s %s %s",
435 FLAGS_blacklist[i+0], FLAGS_blacklist[i+1],
436 FLAGS_blacklist[i+2], FLAGS_blacklist[i+3]);
mtkleina2ef6422015-01-15 13:44:22 -0800437 }
438 }
439 return "";
440}
441
mtklein748ca3b2015-01-15 10:56:12 -0800442// The finest-grained unit of work we can run: draw a single Src into a single Sink,
443// report any errors, and perhaps write out the output: a .png of the bitmap, or a raw stream.
444struct Task {
445 Task(const Tagged<Src>& src, const Tagged<Sink>& sink) : src(src), sink(sink) {}
446 const Tagged<Src>& src;
447 const Tagged<Sink>& sink;
448
449 static void Run(Task* task) {
mtkleina2ef6422015-01-15 13:44:22 -0800450 SkString name = task->src->name();
mtkleinb37cb412015-03-18 05:27:14 -0700451 SkString note;
djsollen54416de2015-04-03 07:24:48 -0700452 SkString whyBlacklisted = is_blacklisted(task->sink.tag, task->src.tag,
453 task->src.options, name.c_str());
mtkleinb37cb412015-03-18 05:27:14 -0700454 if (!whyBlacklisted.isEmpty()) {
455 note.appendf(" (--blacklist %s)", whyBlacklisted.c_str());
456 }
mtkleinb9eb4ac2015-02-02 18:26:03 -0800457 SkString log;
mtklein748ca3b2015-01-15 10:56:12 -0800458 WallTimer timer;
459 timer.start();
mtkleina2ef6422015-01-15 13:44:22 -0800460 if (!FLAGS_dryRun && whyBlacklisted.isEmpty()) {
mtklein748ca3b2015-01-15 10:56:12 -0800461 SkBitmap bitmap;
462 SkDynamicMemoryWStream stream;
djsollen54416de2015-04-03 07:24:48 -0700463 start(task->sink.tag, task->src.tag, task->src.options, name.c_str());
mtkleinb9eb4ac2015-02-02 18:26:03 -0800464 Error err = task->sink->draw(*task->src, &bitmap, &stream, &log);
mtklein748ca3b2015-01-15 10:56:12 -0800465 if (!err.isEmpty()) {
mtklein4089ef72015-03-05 08:40:28 -0800466 timer.end();
467 if (err.isFatal()) {
djsollen54416de2015-04-03 07:24:48 -0700468 fail(SkStringPrintf("%s %s %s %s: %s",
mtklein4089ef72015-03-05 08:40:28 -0800469 task->sink.tag,
470 task->src.tag,
djsollen54416de2015-04-03 07:24:48 -0700471 task->src.options,
mtklein4089ef72015-03-05 08:40:28 -0800472 name.c_str(),
473 err.c_str()));
mtkleinb37cb412015-03-18 05:27:14 -0700474 } else {
475 note.appendf(" (skipped: %s)", err.c_str());
mtklein4089ef72015-03-05 08:40:28 -0800476 }
djsollen54416de2015-04-03 07:24:48 -0700477 done(timer.fWall, task->sink.tag, task->src.tag, task->src.options,
478 name, note, log);
mtklein4089ef72015-03-05 08:40:28 -0800479 return;
mtklein748ca3b2015-01-15 10:56:12 -0800480 }
mtklein62bd1a62015-01-27 14:46:26 -0800481 SkAutoTDelete<SkStreamAsset> data(stream.detachAsStream());
482
483 SkString md5;
484 if (!FLAGS_writePath.isEmpty() || !FLAGS_readPath.isEmpty()) {
485 SkMD5 hash;
486 if (data->getLength()) {
487 hash.writeStream(data, data->getLength());
488 data->rewind();
489 } else {
490 hash.write(bitmap.getPixels(), bitmap.getSize());
491 }
492 SkMD5::Digest digest;
493 hash.finish(digest);
494 for (int i = 0; i < 16; i++) {
495 md5.appendf("%02x", digest.data[i]);
496 }
497 }
498
499 if (!FLAGS_readPath.isEmpty() &&
djsollen54416de2015-04-03 07:24:48 -0700500 !gGold.contains(Gold(task->sink.tag, task->src.tag,
501 task->src.options, name, md5))) {
502 fail(SkStringPrintf("%s not found for %s %s %s %s in %s",
mtklein62bd1a62015-01-27 14:46:26 -0800503 md5.c_str(),
504 task->sink.tag,
505 task->src.tag,
djsollen54416de2015-04-03 07:24:48 -0700506 task->src.options,
mtklein62bd1a62015-01-27 14:46:26 -0800507 name.c_str(),
508 FLAGS_readPath[0]));
509 }
510
mtkleinb0531a72015-04-07 13:38:48 -0700511 if (!FLAGS_writePath.isEmpty()) {
mtklein748ca3b2015-01-15 10:56:12 -0800512 const char* ext = task->sink->fileExtension();
mtklein62bd1a62015-01-27 14:46:26 -0800513 if (data->getLength()) {
514 WriteToDisk(*task, md5, ext, data, data->getLength(), NULL);
halcanary022afb82015-01-30 11:00:12 -0800515 SkASSERT(bitmap.drawsNothing());
516 } else if (!bitmap.drawsNothing()) {
mtklein62bd1a62015-01-27 14:46:26 -0800517 WriteToDisk(*task, md5, ext, NULL, 0, &bitmap);
mtklein748ca3b2015-01-15 10:56:12 -0800518 }
519 }
520 }
521 timer.end();
djsollen54416de2015-04-03 07:24:48 -0700522 done(timer.fWall, task->sink.tag, task->src.tag, task->src.options, name, note, log);
mtklein748ca3b2015-01-15 10:56:12 -0800523 }
524
525 static void WriteToDisk(const Task& task,
mtklein62bd1a62015-01-27 14:46:26 -0800526 SkString md5,
527 const char* ext,
mtklein748ca3b2015-01-15 10:56:12 -0800528 SkStream* data, size_t len,
mtklein62bd1a62015-01-27 14:46:26 -0800529 const SkBitmap* bitmap) {
mtklein748ca3b2015-01-15 10:56:12 -0800530 JsonWriter::BitmapResult result;
djsollen54416de2015-04-03 07:24:48 -0700531 result.name = task.src->name();
532 result.config = task.sink.tag;
533 result.sourceType = task.src.tag;
534 result.sourceOptions = task.src.options;
535 result.ext = ext;
536 result.md5 = md5;
mtklein748ca3b2015-01-15 10:56:12 -0800537 JsonWriter::AddBitmapResult(result);
538
mtkleinb0531a72015-04-07 13:38:48 -0700539 // If an MD5 is uninteresting, we want it noted in the JSON file,
540 // but don't want to dump it out as a .png (or whatever ext is).
541 if (gUninterestingHashes.contains(md5)) {
542 return;
543 }
544
mtklein748ca3b2015-01-15 10:56:12 -0800545 const char* dir = FLAGS_writePath[0];
546 if (0 == strcmp(dir, "@")) { // Needed for iOS.
547 dir = FLAGS_resourcePath[0];
548 }
549 sk_mkdir(dir);
550
551 SkString path;
552 if (FLAGS_nameByHash) {
553 path = SkOSPath::Join(dir, result.md5.c_str());
554 path.append(".");
555 path.append(ext);
556 if (sk_exists(path.c_str())) {
557 return; // Content-addressed. If it exists already, we're done.
558 }
559 } else {
560 path = SkOSPath::Join(dir, task.sink.tag);
561 sk_mkdir(path.c_str());
562 path = SkOSPath::Join(path.c_str(), task.src.tag);
563 sk_mkdir(path.c_str());
djsollen54416de2015-04-03 07:24:48 -0700564 if (strcmp(task.src.options, "") != 0) {
565 path = SkOSPath::Join(path.c_str(), task.src.options);
566 sk_mkdir(path.c_str());
567 }
mtklein748ca3b2015-01-15 10:56:12 -0800568 path = SkOSPath::Join(path.c_str(), task.src->name().c_str());
569 path.append(".");
570 path.append(ext);
571 }
572
573 SkFILEWStream file(path.c_str());
574 if (!file.isValid()) {
575 fail(SkStringPrintf("Can't open %s for writing.\n", path.c_str()));
576 return;
577 }
578
mtklein748ca3b2015-01-15 10:56:12 -0800579 if (bitmap) {
580 // We can't encode A8 bitmaps as PNGs. Convert them to 8888 first.
581 SkBitmap converted;
582 if (bitmap->info().colorType() == kAlpha_8_SkColorType) {
583 if (!bitmap->copyTo(&converted, kN32_SkColorType)) {
584 fail("Can't convert A8 to 8888.\n");
585 return;
586 }
587 bitmap = &converted;
588 }
589 if (!SkImageEncoder::EncodeStream(&file, *bitmap, SkImageEncoder::kPNG_Type, 100)) {
590 fail(SkStringPrintf("Can't encode PNG to %s.\n", path.c_str()));
591 return;
592 }
593 } else {
594 if (!file.writeStream(data, len)) {
595 fail(SkStringPrintf("Can't write to %s.\n", path.c_str()));
596 return;
597 }
598 }
599 }
600};
601
602// Run all tasks in the same enclave serially on the same thread.
603// They can't possibly run concurrently with each other.
604static void run_enclave(SkTArray<Task>* tasks) {
605 for (int i = 0; i < tasks->count(); i++) {
606 Task::Run(tasks->begin() + i);
607 }
608}
609
610/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
611
612// Unit tests don't fit so well into the Src/Sink model, so we give them special treatment.
613
mtklein55e88b22015-01-21 15:50:13 -0800614static SkTDArray<skiatest::Test> gThreadedTests, gGPUTests;
mtklein748ca3b2015-01-15 10:56:12 -0800615
616static void gather_tests() {
mtklein6c5fed22015-01-20 13:47:23 -0800617 if (!FLAGS_src.contains("tests")) {
mtklein748ca3b2015-01-15 10:56:12 -0800618 return;
619 }
mtklein6393c062015-04-27 08:45:01 -0700620 for (const skiatest::TestRegistry* r = skiatest::TestRegistry::Head(); r; r = r->next()) {
621 if (!in_shard()) {
622 continue;
623 }
halcanary87f3ba42015-01-20 09:30:20 -0800624 // Despite its name, factory() is returning a reference to
625 // link-time static const POD data.
626 const skiatest::Test& test = r->factory();
627 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, test.name)) {
mtklein748ca3b2015-01-15 10:56:12 -0800628 continue;
629 }
halcanary87f3ba42015-01-20 09:30:20 -0800630 if (test.needsGpu && gpu_supported()) {
mtklein55e88b22015-01-21 15:50:13 -0800631 (FLAGS_gpu_threading ? gThreadedTests : gGPUTests).push(test);
halcanary87f3ba42015-01-20 09:30:20 -0800632 } else if (!test.needsGpu && FLAGS_cpu) {
mtklein55e88b22015-01-21 15:50:13 -0800633 gThreadedTests.push(test);
mtklein82d28432015-01-15 12:46:02 -0800634 }
mtklein748ca3b2015-01-15 10:56:12 -0800635 }
636}
637
halcanary87f3ba42015-01-20 09:30:20 -0800638static void run_test(skiatest::Test* test) {
639 struct : public skiatest::Reporter {
mtklein36352bf2015-03-25 18:17:31 -0700640 void reportFailed(const skiatest::Failure& failure) override {
halcanary87f3ba42015-01-20 09:30:20 -0800641 fail(failure.toString());
642 JsonWriter::AddTestFailure(failure);
643 }
mtklein36352bf2015-03-25 18:17:31 -0700644 bool allowExtendedTest() const override {
halcanary87f3ba42015-01-20 09:30:20 -0800645 return FLAGS_pathOpsExtended;
646 }
mtklein36352bf2015-03-25 18:17:31 -0700647 bool verbose() const override { return FLAGS_veryVerbose; }
halcanary87f3ba42015-01-20 09:30:20 -0800648 } reporter;
mtklein748ca3b2015-01-15 10:56:12 -0800649 WallTimer timer;
650 timer.start();
mtklein748ca3b2015-01-15 10:56:12 -0800651 if (!FLAGS_dryRun) {
djsollen54416de2015-04-03 07:24:48 -0700652 start("unit", "test", "", test->name);
mtklein55e88b22015-01-21 15:50:13 -0800653 GrContextFactory factory;
654 test->proc(&reporter, &factory);
mtklein748ca3b2015-01-15 10:56:12 -0800655 }
656 timer.end();
djsollen54416de2015-04-03 07:24:48 -0700657 done(timer.fWall, "unit", "test", "", test->name, "", "");
mtklein748ca3b2015-01-15 10:56:12 -0800658}
659
660/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
661
mtklein55e88b22015-01-21 15:50:13 -0800662// If we're isolating all GPU-bound work to one thread (the default), this function runs all that.
663static void run_enclave_and_gpu_tests(SkTArray<Task>* tasks) {
664 run_enclave(tasks);
665 for (int i = 0; i < gGPUTests.count(); i++) {
666 run_test(&gGPUTests[i]);
667 }
668}
669
mtkleinde6fc2b2015-03-12 06:28:54 -0700670// Some runs (mostly, Valgrind) are so slow that the bot framework thinks we've hung.
671// This prints something every once in a while so that it knows we're still working.
mtklein2e1c47e2015-03-12 07:16:56 -0700672static void start_keepalive() {
673 struct Loop {
674 static void forever(void*) {
675 for (;;) {
676 static const int kSec = 300;
677 #if defined(SK_BUILD_FOR_WIN)
678 Sleep(kSec * 1000);
679 #else
680 sleep(kSec);
681 #endif
mtkleinb37cb412015-03-18 05:27:14 -0700682 SkString running;
683 {
684 SkAutoMutexAcquire lock(gRunningMutex);
685 for (int i = 0; i < gRunning.count(); i++) {
686 running.appendf("\n\t%s", gRunning[i].c_str());
687 }
688 }
689 SkDebugf("\nCurrently running:%s\n", running.c_str());
mtklein2e1c47e2015-03-12 07:16:56 -0700690 }
691 }
692 };
693 static SkThread* intentionallyLeaked = new SkThread(Loop::forever);
694 intentionallyLeaked->start();
mtkleinde6fc2b2015-03-12 06:28:54 -0700695}
696
jcgregorio3b27ade2014-11-13 08:06:40 -0800697int dm_main();
caryclark17f0b6d2014-07-22 10:15:34 -0700698int dm_main() {
jcgregorio3b27ade2014-11-13 08:06:40 -0800699 SetupCrashHandler();
commit-bot@chromium.org39e8d932014-05-29 20:14:48 +0000700 SkAutoGraphics ag;
mtklein406654b2014-09-03 15:34:37 -0700701 SkTaskGroup::Enabler enabled(FLAGS_threads);
mtkleine67164d2015-02-02 13:24:37 -0800702 if (FLAGS_leaks) {
703 SkInstCountPrintLeaksOnExit();
704 }
commit-bot@chromium.orga65e2fd2014-05-30 17:23:31 +0000705
mtklein2e1c47e2015-03-12 07:16:56 -0700706 start_keepalive();
mtkleinde6fc2b2015-03-12 06:28:54 -0700707
mtklein62bd1a62015-01-27 14:46:26 -0800708 gather_gold();
borenet09ed4802015-04-03 14:15:33 -0700709 gather_uninteresting_hashes();
mtklein62bd1a62015-01-27 14:46:26 -0800710
mtklein748ca3b2015-01-15 10:56:12 -0800711 gather_srcs();
712 gather_sinks();
713 gather_tests();
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +0000714
mtklein55e88b22015-01-21 15:50:13 -0800715 gPending = gSrcs.count() * gSinks.count() + gThreadedTests.count() + gGPUTests.count();
mtklein748ca3b2015-01-15 10:56:12 -0800716 SkDebugf("%d srcs * %d sinks + %d tests == %d tasks\n",
mtklein55e88b22015-01-21 15:50:13 -0800717 gSrcs.count(), gSinks.count(), gThreadedTests.count() + gGPUTests.count(), gPending);
mtklein748ca3b2015-01-15 10:56:12 -0800718
719 // We try to exploit as much parallelism as is safe. Most Src/Sink pairs run on any thread,
720 // but Sinks that identify as part of a particular enclave run serially on a single thread.
mtklein82d28432015-01-15 12:46:02 -0800721 // CPU tests run on any thread. GPU tests depend on --gpu_threading.
mtklein748ca3b2015-01-15 10:56:12 -0800722 SkTArray<Task> enclaves[kNumEnclaves];
723 for (int j = 0; j < gSinks.count(); j++) {
724 SkTArray<Task>& tasks = enclaves[gSinks[j]->enclave()];
725 for (int i = 0; i < gSrcs.count(); i++) {
726 tasks.push_back(Task(gSrcs[i], gSinks[j]));
727 }
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +0000728 }
729
mtklein748ca3b2015-01-15 10:56:12 -0800730 SkTaskGroup tg;
mtklein55e88b22015-01-21 15:50:13 -0800731 tg.batch(run_test, gThreadedTests.begin(), gThreadedTests.count());
732 for (int i = 0; i < kNumEnclaves; i++) {
733 switch(i) {
734 case kAnyThread_Enclave:
735 tg.batch(Task::Run, enclaves[i].begin(), enclaves[i].count());
736 break;
737 case kGPU_Enclave:
738 tg.add(run_enclave_and_gpu_tests, &enclaves[i]);
739 break;
740 default:
741 tg.add(run_enclave, &enclaves[i]);
742 break;
mtklein82d28432015-01-15 12:46:02 -0800743 }
mtklein55e88b22015-01-21 15:50:13 -0800744 }
mtklein748ca3b2015-01-15 10:56:12 -0800745 tg.wait();
mtklein748ca3b2015-01-15 10:56:12 -0800746 // At this point we're back in single-threaded land.
mtklein@google.comd36522d2013-10-16 13:02:15 +0000747
mtklein2f64eec2015-01-15 14:20:41 -0800748 SkDebugf("\n");
mtklein748ca3b2015-01-15 10:56:12 -0800749 if (gFailures.count() > 0) {
750 SkDebugf("Failures:\n");
751 for (int i = 0; i < gFailures.count(); i++) {
mtklein9dc09102015-01-15 15:47:33 -0800752 SkDebugf("\t%s\n", gFailures[i].c_str());
mtklein748ca3b2015-01-15 10:56:12 -0800753 }
754 SkDebugf("%d failures\n", gFailures.count());
755 return 1;
mtklein114c3cd2015-01-15 10:15:02 -0800756 }
mtklein748ca3b2015-01-15 10:56:12 -0800757 if (gPending > 0) {
758 SkDebugf("Hrm, we didn't seem to run everything we intended to! Please file a bug.\n");
759 return 1;
mtklein114c3cd2015-01-15 10:15:02 -0800760 }
mtklein748ca3b2015-01-15 10:56:12 -0800761 return 0;
mtklein@google.comd36522d2013-10-16 13:02:15 +0000762}
jcgregorio3b27ade2014-11-13 08:06:40 -0800763
borenet48087572015-04-02 12:16:36 -0700764#if !defined(SK_BUILD_FOR_IOS)
jcgregorio3b27ade2014-11-13 08:06:40 -0800765int main(int argc, char** argv) {
766 SkCommandLineFlags::Parse(argc, argv);
767 return dm_main();
768}
769#endif