scroggo | 478652e | 2015-03-25 07:11:02 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
jcgregorio | 3b27ade | 2014-11-13 08:06:40 -0800 | [diff] [blame] | 8 | #include "CrashHandler.h" |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 9 | #include "DMJsonWriter.h" |
| 10 | #include "DMSrcSink.h" |
tomhudson | eebc39a | 2015-02-23 12:18:05 -0800 | [diff] [blame] | 11 | #include "DMSrcSinkAndroid.h" |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 12 | #include "OverwriteLine.h" |
| 13 | #include "ProcStats.h" |
| 14 | #include "SkBBHFactory.h" |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 15 | #include "SkChecksum.h" |
caryclark | 17f0b6d | 2014-07-22 10:15:34 -0700 | [diff] [blame] | 16 | #include "SkCommonFlags.h" |
caryclark | 83ca628 | 2015-06-10 09:31:09 -0700 | [diff] [blame] | 17 | #include "SkFontMgr.h" |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 18 | #include "SkForceLinking.h" |
| 19 | #include "SkGraphics.h" |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 20 | #include "SkMD5.h" |
mtklein | 1b24933 | 2015-07-07 12:21:21 -0700 | [diff] [blame] | 21 | #include "SkMutex.h" |
mtklein | 1d0f164 | 2014-09-08 08:05:18 -0700 | [diff] [blame] | 22 | #include "SkOSFile.h" |
mtklein | a82f562 | 2015-02-20 12:30:19 -0800 | [diff] [blame] | 23 | #include "SkTHash.h" |
mtklein | 406654b | 2014-09-03 15:34:37 -0700 | [diff] [blame] | 24 | #include "SkTaskGroup.h" |
mtklein | de6fc2b | 2015-03-12 06:28:54 -0700 | [diff] [blame] | 25 | #include "SkThreadUtils.h" |
commit-bot@chromium.org | 0dc5bd1 | 2014-02-26 16:31:22 +0000 | [diff] [blame] | 26 | #include "Test.h" |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 27 | #include "Timer.h" |
caryclark | 83ca628 | 2015-06-10 09:31:09 -0700 | [diff] [blame] | 28 | #include "sk_tool_utils.h" |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 29 | |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 30 | DEFINE_string(src, "tests gm skp image", "Source types to test."); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 31 | DEFINE_bool(nameByHash, false, |
| 32 | "If true, write to FLAGS_writePath[0]/<hash>.png instead of " |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 33 | "to FLAGS_writePath[0]/<config>/<sourceType>/<sourceOptions>/<name>.png"); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 34 | DEFINE_bool2(pathOpsExtended, x, false, "Run extended pathOps tests."); |
mtklein | d603b22 | 2015-02-17 11:13:33 -0800 | [diff] [blame] | 35 | DEFINE_string(matrix, "1 0 0 1", |
| 36 | "2x2 scale+skew matrix to apply or upright when using " |
| 37 | "'matrix' or 'upright' in config."); |
mtklein | 82d2843 | 2015-01-15 12:46:02 -0800 | [diff] [blame] | 38 | DEFINE_bool(gpu_threading, false, "Allow GPU work to run on multiple threads?"); |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 39 | |
mtklein | a2ef642 | 2015-01-15 13:44:22 -0800 | [diff] [blame] | 40 | DEFINE_string(blacklist, "", |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 41 | "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."); |
mtklein | a2ef642 | 2015-01-15 13:44:22 -0800 | [diff] [blame] | 44 | |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 45 | DEFINE_string2(readPath, r, "", "If set check for equality with golden results in this directory."); |
| 46 | |
borenet | 09ed480 | 2015-04-03 14:15:33 -0700 | [diff] [blame] | 47 | DEFINE_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 | |
mtklein | 6393c06 | 2015-04-27 08:45:01 -0700 | [diff] [blame] | 51 | DEFINE_int32(shards, 1, "We're splitting source data into this many shards."); |
| 52 | DEFINE_int32(shard, 0, "Which shard do I run?"); |
bsalomon | 821e10e | 2015-06-04 14:15:33 -0700 | [diff] [blame] | 53 | DEFINE_bool2(pre_log, p, false, "Log before running each test. May be incomprehensible when threading"); |
mtklein | 6393c06 | 2015-04-27 08:45:01 -0700 | [diff] [blame] | 54 | |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 55 | __SK_FORCE_IMAGE_DECODER_LINKING; |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 56 | using namespace DM; |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 57 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 58 | /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ |
| 59 | |
| 60 | SK_DECLARE_STATIC_MUTEX(gFailuresMutex); |
| 61 | static SkTArray<SkString> gFailures; |
| 62 | |
| 63 | static void fail(ImplicitString err) { |
| 64 | SkAutoMutexAcquire lock(gFailuresMutex); |
| 65 | SkDebugf("\n\nFAILURE: %s\n\n", err.c_str()); |
| 66 | gFailures.push_back(err); |
halcanary | 9e398f7 | 2015-01-10 11:18:04 -0800 | [diff] [blame] | 67 | } |
| 68 | |
mtklein | b37cb41 | 2015-03-18 05:27:14 -0700 | [diff] [blame] | 69 | static int32_t gPending = 0; // Atomic. Total number of running and queued tasks. |
| 70 | |
| 71 | SK_DECLARE_STATIC_MUTEX(gRunningMutex); |
| 72 | static SkTArray<SkString> gRunning; |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 73 | |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 74 | static void done(double ms, |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 75 | 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()); |
mtklein | b37cb41 | 2015-03-18 05:27:14 -0700 | [diff] [blame] | 79 | { |
| 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 | } |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 91 | if (!log.isEmpty()) { |
| 92 | log.prepend("\n"); |
| 93 | } |
mtklein | 6dee2ad | 2015-02-05 09:53:44 -0800 | [diff] [blame] | 94 | auto pending = sk_atomic_dec(&gPending)-1; |
reed | 50bc051 | 2015-05-19 14:13:31 -0700 | [diff] [blame] | 95 | if (!FLAGS_quiet) { |
mtklein | 711a245 | 2015-07-08 08:49:20 -0700 | [diff] [blame^] | 96 | SkDebugf("%s(%4d/%-4dMB %6d) %s\t%s%s%s", FLAGS_verbose ? "\n" : kSkOverwriteLine |
reed | 50bc051 | 2015-05-19 14:13:31 -0700 | [diff] [blame] | 97 | , 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 | } |
mtklein | a17241b | 2015-01-23 05:48:00 -0800 | [diff] [blame] | 105 | // 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.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 110 | } |
| 111 | |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 112 | static 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()); |
mtklein | b37cb41 | 2015-03-18 05:27:14 -0700 | [diff] [blame] | 116 | SkAutoMutexAcquire lock(gRunningMutex); |
| 117 | gRunning.push_back(id); |
| 118 | } |
| 119 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 120 | /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ |
mtklein | 114c3cd | 2015-01-15 10:15:02 -0800 | [diff] [blame] | 121 | |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 122 | struct Gold : public SkString { |
mtklein | a82f562 | 2015-02-20 12:30:19 -0800 | [diff] [blame] | 123 | Gold() : SkString("") {} |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 124 | Gold(ImplicitString sink, ImplicitString src, ImplicitString srcOptions, |
| 125 | ImplicitString name, ImplicitString md5) |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 126 | : SkString("") { |
| 127 | this->append(sink); |
| 128 | this->append(src); |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 129 | this->append(srcOptions); |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 130 | this->append(name); |
| 131 | this->append(md5); |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 132 | } |
mtklein | 02f46cf | 2015-03-20 13:48:42 -0700 | [diff] [blame] | 133 | static uint32_t Hash(const Gold& g) { return SkGoodHash((const SkString&)g); } |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 134 | }; |
mtklein | a82f562 | 2015-02-20 12:30:19 -0800 | [diff] [blame] | 135 | static SkTHashSet<Gold, Gold::Hash> gGold; |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 136 | |
| 137 | static void add_gold(JsonWriter::BitmapResult r) { |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 138 | gGold.add(Gold(r.config, r.sourceType, r.sourceOptions, r.name, r.md5)); |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | static 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 | |
borenet | 09ed480 | 2015-04-03 14:15:33 -0700 | [diff] [blame] | 153 | static SkTHashSet<SkString> gUninterestingHashes; |
| 154 | |
| 155 | static 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 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 168 | template <typename T> |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 169 | struct Tagged : public SkAutoTDelete<T> { |
| 170 | const char* tag; |
| 171 | const char* options; |
| 172 | }; |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 173 | |
| 174 | static const bool kMemcpyOK = true; |
| 175 | |
| 176 | static SkTArray<Tagged<Src>, kMemcpyOK> gSrcs; |
| 177 | static SkTArray<Tagged<Sink>, kMemcpyOK> gSinks; |
| 178 | |
mtklein | 6393c06 | 2015-04-27 08:45:01 -0700 | [diff] [blame] | 179 | static bool in_shard() { |
| 180 | static int N = 0; |
| 181 | return N++ % FLAGS_shards == FLAGS_shard; |
| 182 | } |
| 183 | |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 184 | static void push_src(const char* tag, const char* options, Src* s) { |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 185 | SkAutoTDelete<Src> src(s); |
mtklein | 6393c06 | 2015-04-27 08:45:01 -0700 | [diff] [blame] | 186 | if (in_shard() && |
| 187 | FLAGS_src.contains(tag) && |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 188 | !SkCommandLineFlags::ShouldSkip(FLAGS_match, src->name().c_str())) { |
| 189 | Tagged<Src>& s = gSrcs.push_back(); |
| 190 | s.reset(src.detach()); |
| 191 | s.tag = tag; |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 192 | s.options = options; |
mtklein | 114c3cd | 2015-01-15 10:15:02 -0800 | [diff] [blame] | 193 | } |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 194 | } |
mtklein | 114c3cd | 2015-01-15 10:15:02 -0800 | [diff] [blame] | 195 | |
msarett | 438b2ad | 2015-04-09 12:43:10 -0700 | [diff] [blame] | 196 | static void push_codec_srcs(Path path) { |
| 197 | SkAutoTUnref<SkData> encoded(SkData::NewFromFileName(path.c_str())); |
| 198 | if (!encoded) { |
| 199 | SkDebugf("Couldn't read %s.", path.c_str()); |
| 200 | return; |
| 201 | } |
| 202 | SkAutoTDelete<SkCodec> codec(SkCodec::NewFromData(encoded)); |
| 203 | if (NULL == codec.get()) { |
| 204 | SkDebugf("Couldn't create codec for %s.", path.c_str()); |
| 205 | return; |
| 206 | } |
| 207 | |
msarett | 0a24297 | 2015-06-11 14:27:27 -0700 | [diff] [blame] | 208 | // Choose scales for scaling tests. |
| 209 | // TODO (msarett): Add more scaling tests as we implement more flexible scaling. |
| 210 | // TODO (msarett): Implement scaling tests for SkImageDecoder in order to compare with these |
| 211 | // tests. SkImageDecoder supports downscales by integer factors. |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 212 | const float scales[] = { 0.125f, 0.25f, 0.375f, 0.5f, 0.625f, 0.750f, 0.875f, 1.0f }; |
msarett | 438b2ad | 2015-04-09 12:43:10 -0700 | [diff] [blame] | 213 | |
msarett | 0a24297 | 2015-06-11 14:27:27 -0700 | [diff] [blame] | 214 | for (float scale : scales) { |
| 215 | // Build additional test cases for images that decode natively to non-canvas types |
| 216 | switch(codec->getInfo().colorType()) { |
| 217 | case kGray_8_SkColorType: |
| 218 | push_src("image", "codec_kGray8", new CodecSrc(path, CodecSrc::kNormal_Mode, |
| 219 | CodecSrc::kGrayscale_Always_DstColorType, scale)); |
| 220 | push_src("image", "scanline_kGray8", new CodecSrc(path, CodecSrc::kScanline_Mode, |
| 221 | CodecSrc::kGrayscale_Always_DstColorType, scale)); |
| 222 | push_src("image", "scanline_subset_kGray8", new CodecSrc(path, |
| 223 | CodecSrc::kScanline_Subset_Mode, CodecSrc::kGrayscale_Always_DstColorType, |
| 224 | scale)); |
| 225 | push_src("image", "stripe_kGray8", new CodecSrc(path, CodecSrc::kStripe_Mode, |
| 226 | CodecSrc::kGrayscale_Always_DstColorType, scale)); |
| 227 | // Intentional fall through |
| 228 | // FIXME: Is this a long term solution for testing wbmps decodes to kIndex8? |
| 229 | // Further discussion on this topic is at skbug.com/3683 |
| 230 | case kIndex_8_SkColorType: |
| 231 | push_src("image", "codec_kIndex8", new CodecSrc(path, CodecSrc::kNormal_Mode, |
| 232 | CodecSrc::kIndex8_Always_DstColorType, scale)); |
| 233 | push_src("image", "scanline_kIndex8", new CodecSrc(path, CodecSrc::kScanline_Mode, |
| 234 | CodecSrc::kIndex8_Always_DstColorType, scale)); |
| 235 | push_src("image", "scanline_subset_kIndex8", new CodecSrc(path, |
| 236 | CodecSrc::kScanline_Subset_Mode, CodecSrc::kIndex8_Always_DstColorType, |
| 237 | scale)); |
| 238 | push_src("image", "stripe_kIndex8", new CodecSrc(path, CodecSrc::kStripe_Mode, |
| 239 | CodecSrc::kIndex8_Always_DstColorType, scale)); |
| 240 | break; |
| 241 | default: |
| 242 | // Do nothing |
| 243 | break; |
| 244 | } |
| 245 | |
| 246 | // Decode all images to the canvas color type |
| 247 | push_src("image", "codec", new CodecSrc(path, CodecSrc::kNormal_Mode, |
| 248 | CodecSrc::kGetFromCanvas_DstColorType, scale)); |
| 249 | push_src("image", "scanline", new CodecSrc(path, CodecSrc::kScanline_Mode, |
| 250 | CodecSrc::kGetFromCanvas_DstColorType, scale)); |
| 251 | push_src("image", "scanline_subset", new CodecSrc(path, CodecSrc::kScanline_Subset_Mode, |
| 252 | CodecSrc::kGetFromCanvas_DstColorType, scale)); |
| 253 | push_src("image", "stripe", new CodecSrc(path, CodecSrc::kStripe_Mode, |
| 254 | CodecSrc::kGetFromCanvas_DstColorType, scale)); |
| 255 | } |
msarett | 438b2ad | 2015-04-09 12:43:10 -0700 | [diff] [blame] | 256 | } |
| 257 | |
scroggo | 9b77ddd | 2015-03-19 06:03:39 -0700 | [diff] [blame] | 258 | static bool codec_supported(const char* ext) { |
| 259 | // FIXME: Once other versions of SkCodec are available, we can add them to this |
| 260 | // list (and eventually we can remove this check once they are all supported). |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 261 | static const char* const exts[] = { |
scroggo | 6f5e619 | 2015-06-18 12:53:43 -0700 | [diff] [blame] | 262 | "bmp", "gif", "jpg", "jpeg", "png", "ico", "wbmp", "webp", |
| 263 | "BMP", "GIF", "JPG", "JPEG", "PNG", "ICO", "WBMP", "WEBP", |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 264 | }; |
| 265 | |
| 266 | for (uint32_t i = 0; i < SK_ARRAY_COUNT(exts); i++) { |
| 267 | if (0 == strcmp(exts[i], ext)) { |
| 268 | return true; |
| 269 | } |
| 270 | } |
| 271 | return false; |
scroggo | 9b77ddd | 2015-03-19 06:03:39 -0700 | [diff] [blame] | 272 | } |
| 273 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 274 | static void gather_srcs() { |
| 275 | for (const skiagm::GMRegistry* r = skiagm::GMRegistry::Head(); r; r = r->next()) { |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 276 | push_src("gm", "", new GMSrc(r->factory())); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 277 | } |
halcanary | fc37ad1 | 2015-01-30 07:31:19 -0800 | [diff] [blame] | 278 | for (int i = 0; i < FLAGS_skps.count(); i++) { |
| 279 | const char* path = FLAGS_skps[i]; |
| 280 | if (sk_isdir(path)) { |
| 281 | SkOSFile::Iter it(path, "skp"); |
| 282 | for (SkString file; it.next(&file); ) { |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 283 | push_src("skp", "", new SKPSrc(SkOSPath::Join(path, file.c_str()))); |
halcanary | fc37ad1 | 2015-01-30 07:31:19 -0800 | [diff] [blame] | 284 | } |
| 285 | } else { |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 286 | push_src("skp", "", new SKPSrc(path)); |
mtklein | 114c3cd | 2015-01-15 10:15:02 -0800 | [diff] [blame] | 287 | } |
| 288 | } |
halcanary | 23b03c3 | 2015-01-30 09:58:58 -0800 | [diff] [blame] | 289 | static const char* const exts[] = { |
| 290 | "bmp", "gif", "jpg", "jpeg", "png", "webp", "ktx", "astc", "wbmp", "ico", |
| 291 | "BMP", "GIF", "JPG", "JPEG", "PNG", "WEBP", "KTX", "ASTC", "WBMP", "ICO", |
| 292 | }; |
| 293 | for (int i = 0; i < FLAGS_images.count(); i++) { |
| 294 | const char* flag = FLAGS_images[i]; |
| 295 | if (sk_isdir(flag)) { |
| 296 | for (size_t j = 0; j < SK_ARRAY_COUNT(exts); j++) { |
| 297 | SkOSFile::Iter it(flag, exts[j]); |
| 298 | for (SkString file; it.next(&file); ) { |
| 299 | SkString path = SkOSPath::Join(flag, file.c_str()); |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 300 | push_src("image", "decode", new ImageSrc(path)); // Decode entire image |
| 301 | push_src("image", "subset", new ImageSrc(path, 2)); // Decode into 2x2 subsets |
scroggo | 9b77ddd | 2015-03-19 06:03:39 -0700 | [diff] [blame] | 302 | if (codec_supported(exts[j])) { |
msarett | 438b2ad | 2015-04-09 12:43:10 -0700 | [diff] [blame] | 303 | push_codec_srcs(path); |
scroggo | 9b77ddd | 2015-03-19 06:03:39 -0700 | [diff] [blame] | 304 | } |
halcanary | 23b03c3 | 2015-01-30 09:58:58 -0800 | [diff] [blame] | 305 | } |
mtklein | 114c3cd | 2015-01-15 10:15:02 -0800 | [diff] [blame] | 306 | } |
halcanary | 23b03c3 | 2015-01-30 09:58:58 -0800 | [diff] [blame] | 307 | } else if (sk_exists(flag)) { |
| 308 | // assume that FLAGS_images[i] is a valid image if it is a file. |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 309 | push_src("image", "decode", new ImageSrc(flag)); // Decode entire image. |
| 310 | push_src("image", "subset", new ImageSrc(flag, 2)); // Decode into 2 x 2 subsets |
msarett | 438b2ad | 2015-04-09 12:43:10 -0700 | [diff] [blame] | 311 | push_codec_srcs(flag); |
mtklein | 709d2c3 | 2015-01-15 08:30:25 -0800 | [diff] [blame] | 312 | } |
mtklein | 709d2c3 | 2015-01-15 08:30:25 -0800 | [diff] [blame] | 313 | } |
| 314 | } |
| 315 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 316 | static GrGLStandard get_gpu_api() { |
| 317 | if (FLAGS_gpuAPI.contains("gl")) { return kGL_GrGLStandard; } |
| 318 | if (FLAGS_gpuAPI.contains("gles")) { return kGLES_GrGLStandard; } |
| 319 | return kNone_GrGLStandard; |
mtklein | 709d2c3 | 2015-01-15 08:30:25 -0800 | [diff] [blame] | 320 | } |
| 321 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 322 | static void push_sink(const char* tag, Sink* s) { |
| 323 | SkAutoTDelete<Sink> sink(s); |
| 324 | if (!FLAGS_config.contains(tag)) { |
| 325 | return; |
mtklein | 114c3cd | 2015-01-15 10:15:02 -0800 | [diff] [blame] | 326 | } |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 327 | // Try a noop Src as a canary. If it fails, skip this sink. |
| 328 | struct : public Src { |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 329 | Error draw(SkCanvas*) const override { return ""; } |
| 330 | SkISize size() const override { return SkISize::Make(16, 16); } |
| 331 | Name name() const override { return "noop"; } |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 332 | } noop; |
mtklein | 114c3cd | 2015-01-15 10:15:02 -0800 | [diff] [blame] | 333 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 334 | SkBitmap bitmap; |
| 335 | SkDynamicMemoryWStream stream; |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 336 | SkString log; |
| 337 | Error err = sink->draw(noop, &bitmap, &stream, &log); |
mtklein | 4089ef7 | 2015-03-05 08:40:28 -0800 | [diff] [blame] | 338 | if (err.isFatal()) { |
mtklein | 05641a5 | 2015-04-21 10:49:13 -0700 | [diff] [blame] | 339 | SkDebugf("Could not run %s: %s\n", tag, err.c_str()); |
| 340 | exit(1); |
mtklein | 114c3cd | 2015-01-15 10:15:02 -0800 | [diff] [blame] | 341 | } |
| 342 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 343 | Tagged<Sink>& ts = gSinks.push_back(); |
| 344 | ts.reset(sink.detach()); |
| 345 | ts.tag = tag; |
| 346 | } |
| 347 | |
| 348 | static bool gpu_supported() { |
| 349 | #if SK_SUPPORT_GPU |
| 350 | return FLAGS_gpu; |
| 351 | #else |
| 352 | return false; |
| 353 | #endif |
| 354 | } |
| 355 | |
| 356 | static Sink* create_sink(const char* tag) { |
| 357 | #define SINK(t, sink, ...) if (0 == strcmp(t, tag)) { return new sink(__VA_ARGS__); } |
| 358 | if (gpu_supported()) { |
mtklein | 82d2843 | 2015-01-15 12:46:02 -0800 | [diff] [blame] | 359 | typedef GrContextFactory Gr; |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 360 | const GrGLStandard api = get_gpu_api(); |
mtklein | 82d2843 | 2015-01-15 12:46:02 -0800 | [diff] [blame] | 361 | SINK("gpunull", GPUSink, Gr::kNull_GLContextType, api, 0, false, FLAGS_gpu_threading); |
| 362 | SINK("gpudebug", GPUSink, Gr::kDebug_GLContextType, api, 0, false, FLAGS_gpu_threading); |
| 363 | SINK("gpu", GPUSink, Gr::kNative_GLContextType, api, 0, false, FLAGS_gpu_threading); |
| 364 | SINK("gpudft", GPUSink, Gr::kNative_GLContextType, api, 0, true, FLAGS_gpu_threading); |
| 365 | SINK("msaa4", GPUSink, Gr::kNative_GLContextType, api, 4, false, FLAGS_gpu_threading); |
| 366 | SINK("msaa16", GPUSink, Gr::kNative_GLContextType, api, 16, false, FLAGS_gpu_threading); |
| 367 | SINK("nvprmsaa4", GPUSink, Gr::kNVPR_GLContextType, api, 4, false, FLAGS_gpu_threading); |
| 368 | SINK("nvprmsaa16", GPUSink, Gr::kNVPR_GLContextType, api, 16, false, FLAGS_gpu_threading); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 369 | #if SK_ANGLE |
mtklein | 82d2843 | 2015-01-15 12:46:02 -0800 | [diff] [blame] | 370 | SINK("angle", GPUSink, Gr::kANGLE_GLContextType, api, 0, false, FLAGS_gpu_threading); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 371 | #endif |
| 372 | #if SK_MESA |
mtklein | 82d2843 | 2015-01-15 12:46:02 -0800 | [diff] [blame] | 373 | SINK("mesa", GPUSink, Gr::kMESA_GLContextType, api, 0, false, FLAGS_gpu_threading); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 374 | #endif |
mtklein | 114c3cd | 2015-01-15 10:15:02 -0800 | [diff] [blame] | 375 | } |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 376 | |
tomhudson | eebc39a | 2015-02-23 12:18:05 -0800 | [diff] [blame] | 377 | #ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK |
| 378 | SINK("hwui", HWUISink); |
| 379 | #endif |
| 380 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 381 | if (FLAGS_cpu) { |
| 382 | SINK("565", RasterSink, kRGB_565_SkColorType); |
| 383 | SINK("8888", RasterSink, kN32_SkColorType); |
mtklein | 19f3060 | 2015-01-20 13:34:39 -0800 | [diff] [blame] | 384 | SINK("pdf", PDFSink); |
mtklein | 9c3f17d | 2015-01-28 11:35:18 -0800 | [diff] [blame] | 385 | SINK("skp", SKPSink); |
mtklein | 8a4527e | 2015-01-31 20:00:58 -0800 | [diff] [blame] | 386 | SINK("svg", SVGSink); |
| 387 | SINK("null", NullSink); |
halcanary | 47ef4d5 | 2015-03-03 09:13:09 -0800 | [diff] [blame] | 388 | SINK("xps", XPSSink); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 389 | } |
| 390 | #undef SINK |
| 391 | return NULL; |
mtklein | 114c3cd | 2015-01-15 10:15:02 -0800 | [diff] [blame] | 392 | } |
| 393 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 394 | static Sink* create_via(const char* tag, Sink* wrapped) { |
| 395 | #define VIA(t, via, ...) if (0 == strcmp(t, tag)) { return new via(__VA_ARGS__); } |
mtklein | 6fbf4b3 | 2015-05-06 11:35:40 -0700 | [diff] [blame] | 396 | VIA("twice", ViaTwice, wrapped); |
mtklein | 7edca21 | 2015-01-21 13:18:51 -0800 | [diff] [blame] | 397 | VIA("pipe", ViaPipe, wrapped); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 398 | VIA("serialize", ViaSerialization, wrapped); |
reed | 06a22f6 | 2015-05-05 08:11:33 -0700 | [diff] [blame] | 399 | VIA("deferred", ViaDeferred, wrapped); |
mtklein | b7e8d69 | 2015-04-07 08:30:32 -0700 | [diff] [blame] | 400 | VIA("2ndpic", ViaSecondPicture, wrapped); |
mtklein | d31c13d | 2015-05-05 12:59:56 -0700 | [diff] [blame] | 401 | VIA("sp", ViaSingletonPictures, wrapped); |
mtklein | 7edca21 | 2015-01-21 13:18:51 -0800 | [diff] [blame] | 402 | VIA("tiles", ViaTiles, 256, 256, NULL, wrapped); |
| 403 | VIA("tiles_rt", ViaTiles, 256, 256, new SkRTreeFactory, wrapped); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 404 | |
mtklein | d603b22 | 2015-02-17 11:13:33 -0800 | [diff] [blame] | 405 | if (FLAGS_matrix.count() == 4) { |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 406 | SkMatrix m; |
mtklein | d603b22 | 2015-02-17 11:13:33 -0800 | [diff] [blame] | 407 | m.reset(); |
| 408 | m.setScaleX((SkScalar)atof(FLAGS_matrix[0])); |
| 409 | m.setSkewX ((SkScalar)atof(FLAGS_matrix[1])); |
| 410 | m.setSkewY ((SkScalar)atof(FLAGS_matrix[2])); |
| 411 | m.setScaleY((SkScalar)atof(FLAGS_matrix[3])); |
| 412 | VIA("matrix", ViaMatrix, m, wrapped); |
| 413 | VIA("upright", ViaUpright, m, wrapped); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 414 | } |
tomhudson | 64de1e1 | 2015-03-05 08:01:07 -0800 | [diff] [blame] | 415 | |
| 416 | #ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK |
| 417 | VIA("androidsdk", ViaAndroidSDK, wrapped); |
| 418 | #endif |
| 419 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 420 | #undef VIA |
| 421 | return NULL; |
mtklein | 114c3cd | 2015-01-15 10:15:02 -0800 | [diff] [blame] | 422 | } |
| 423 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 424 | static void gather_sinks() { |
| 425 | for (int i = 0; i < FLAGS_config.count(); i++) { |
| 426 | const char* config = FLAGS_config[i]; |
| 427 | SkTArray<SkString> parts; |
| 428 | SkStrSplit(config, "-", &parts); |
| 429 | |
| 430 | Sink* sink = NULL; |
| 431 | for (int i = parts.count(); i-- > 0;) { |
| 432 | const char* part = parts[i].c_str(); |
| 433 | Sink* next = (sink == NULL) ? create_sink(part) : create_via(part, sink); |
| 434 | if (next == NULL) { |
| 435 | SkDebugf("Skipping %s: Don't understand '%s'.\n", config, part); |
| 436 | delete sink; |
| 437 | sink = NULL; |
| 438 | break; |
| 439 | } |
| 440 | sink = next; |
| 441 | } |
| 442 | if (sink) { |
| 443 | push_sink(config, sink); |
mtklein | 114c3cd | 2015-01-15 10:15:02 -0800 | [diff] [blame] | 444 | } |
| 445 | } |
| 446 | } |
mtklein | 709d2c3 | 2015-01-15 08:30:25 -0800 | [diff] [blame] | 447 | |
mtklein | a2ef642 | 2015-01-15 13:44:22 -0800 | [diff] [blame] | 448 | static bool match(const char* needle, const char* haystack) { |
| 449 | return 0 == strcmp("_", needle) || NULL != strstr(haystack, needle); |
| 450 | } |
| 451 | |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 452 | static ImplicitString is_blacklisted(const char* sink, const char* src, |
| 453 | const char* srcOptions, const char* name) { |
mtklein | 0d243ff | 2015-04-03 07:51:00 -0700 | [diff] [blame] | 454 | for (int i = 0; i < FLAGS_blacklist.count() - 3; i += 4) { |
mtklein | a2ef642 | 2015-01-15 13:44:22 -0800 | [diff] [blame] | 455 | if (match(FLAGS_blacklist[i+0], sink) && |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 456 | match(FLAGS_blacklist[i+1], src) && |
| 457 | match(FLAGS_blacklist[i+2], srcOptions) && |
| 458 | match(FLAGS_blacklist[i+3], name)) { |
| 459 | return SkStringPrintf("%s %s %s %s", |
| 460 | FLAGS_blacklist[i+0], FLAGS_blacklist[i+1], |
| 461 | FLAGS_blacklist[i+2], FLAGS_blacklist[i+3]); |
mtklein | a2ef642 | 2015-01-15 13:44:22 -0800 | [diff] [blame] | 462 | } |
| 463 | } |
| 464 | return ""; |
| 465 | } |
| 466 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 467 | // The finest-grained unit of work we can run: draw a single Src into a single Sink, |
| 468 | // report any errors, and perhaps write out the output: a .png of the bitmap, or a raw stream. |
| 469 | struct Task { |
| 470 | Task(const Tagged<Src>& src, const Tagged<Sink>& sink) : src(src), sink(sink) {} |
| 471 | const Tagged<Src>& src; |
| 472 | const Tagged<Sink>& sink; |
| 473 | |
| 474 | static void Run(Task* task) { |
mtklein | a2ef642 | 2015-01-15 13:44:22 -0800 | [diff] [blame] | 475 | SkString name = task->src->name(); |
mtklein | b37cb41 | 2015-03-18 05:27:14 -0700 | [diff] [blame] | 476 | SkString note; |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 477 | SkString whyBlacklisted = is_blacklisted(task->sink.tag, task->src.tag, |
| 478 | task->src.options, name.c_str()); |
mtklein | b37cb41 | 2015-03-18 05:27:14 -0700 | [diff] [blame] | 479 | if (!whyBlacklisted.isEmpty()) { |
| 480 | note.appendf(" (--blacklist %s)", whyBlacklisted.c_str()); |
| 481 | } |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 482 | SkString log; |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 483 | WallTimer timer; |
| 484 | timer.start(); |
mtklein | a2ef642 | 2015-01-15 13:44:22 -0800 | [diff] [blame] | 485 | if (!FLAGS_dryRun && whyBlacklisted.isEmpty()) { |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 486 | SkBitmap bitmap; |
| 487 | SkDynamicMemoryWStream stream; |
bsalomon | 821e10e | 2015-06-04 14:15:33 -0700 | [diff] [blame] | 488 | if (FLAGS_pre_log) { |
| 489 | SkDebugf("\nRunning %s->%s", name.c_str(), task->sink.tag); |
| 490 | } |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 491 | start(task->sink.tag, task->src.tag, task->src.options, name.c_str()); |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 492 | Error err = task->sink->draw(*task->src, &bitmap, &stream, &log); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 493 | if (!err.isEmpty()) { |
mtklein | 4089ef7 | 2015-03-05 08:40:28 -0800 | [diff] [blame] | 494 | timer.end(); |
| 495 | if (err.isFatal()) { |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 496 | fail(SkStringPrintf("%s %s %s %s: %s", |
mtklein | 4089ef7 | 2015-03-05 08:40:28 -0800 | [diff] [blame] | 497 | task->sink.tag, |
| 498 | task->src.tag, |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 499 | task->src.options, |
mtklein | 4089ef7 | 2015-03-05 08:40:28 -0800 | [diff] [blame] | 500 | name.c_str(), |
| 501 | err.c_str())); |
mtklein | b37cb41 | 2015-03-18 05:27:14 -0700 | [diff] [blame] | 502 | } else { |
| 503 | note.appendf(" (skipped: %s)", err.c_str()); |
mtklein | 4089ef7 | 2015-03-05 08:40:28 -0800 | [diff] [blame] | 504 | } |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 505 | done(timer.fWall, task->sink.tag, task->src.tag, task->src.options, |
| 506 | name, note, log); |
mtklein | 4089ef7 | 2015-03-05 08:40:28 -0800 | [diff] [blame] | 507 | return; |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 508 | } |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 509 | SkAutoTDelete<SkStreamAsset> data(stream.detachAsStream()); |
| 510 | |
| 511 | SkString md5; |
| 512 | if (!FLAGS_writePath.isEmpty() || !FLAGS_readPath.isEmpty()) { |
| 513 | SkMD5 hash; |
| 514 | if (data->getLength()) { |
| 515 | hash.writeStream(data, data->getLength()); |
| 516 | data->rewind(); |
| 517 | } else { |
mtklein | 3840846 | 2015-07-08 07:25:27 -0700 | [diff] [blame] | 518 | // If we're BGRA (Linux, Windows), swizzle over to RGBA (Mac, Android). |
| 519 | // This helps eliminate multiple 0-pixel-diff hashes on gold.skia.org. |
| 520 | // (Android's general slow speed breaks the tie arbitrarily in RGBA's favor.) |
| 521 | // We might consider promoting 565 to RGBA too. |
| 522 | if (bitmap.colorType() == kBGRA_8888_SkColorType) { |
| 523 | SkBitmap swizzle; |
| 524 | SkAssertResult(bitmap.copyTo(&swizzle, kRGBA_8888_SkColorType)); |
| 525 | hash.write(swizzle.getPixels(), swizzle.getSize()); |
| 526 | } else { |
| 527 | hash.write(bitmap.getPixels(), bitmap.getSize()); |
| 528 | } |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 529 | } |
| 530 | SkMD5::Digest digest; |
| 531 | hash.finish(digest); |
| 532 | for (int i = 0; i < 16; i++) { |
| 533 | md5.appendf("%02x", digest.data[i]); |
| 534 | } |
| 535 | } |
| 536 | |
| 537 | if (!FLAGS_readPath.isEmpty() && |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 538 | !gGold.contains(Gold(task->sink.tag, task->src.tag, |
| 539 | task->src.options, name, md5))) { |
| 540 | fail(SkStringPrintf("%s not found for %s %s %s %s in %s", |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 541 | md5.c_str(), |
| 542 | task->sink.tag, |
| 543 | task->src.tag, |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 544 | task->src.options, |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 545 | name.c_str(), |
| 546 | FLAGS_readPath[0])); |
| 547 | } |
| 548 | |
mtklein | b0531a7 | 2015-04-07 13:38:48 -0700 | [diff] [blame] | 549 | if (!FLAGS_writePath.isEmpty()) { |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 550 | const char* ext = task->sink->fileExtension(); |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 551 | if (data->getLength()) { |
| 552 | WriteToDisk(*task, md5, ext, data, data->getLength(), NULL); |
halcanary | 022afb8 | 2015-01-30 11:00:12 -0800 | [diff] [blame] | 553 | SkASSERT(bitmap.drawsNothing()); |
| 554 | } else if (!bitmap.drawsNothing()) { |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 555 | WriteToDisk(*task, md5, ext, NULL, 0, &bitmap); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 556 | } |
| 557 | } |
| 558 | } |
| 559 | timer.end(); |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 560 | done(timer.fWall, task->sink.tag, task->src.tag, task->src.options, name, note, log); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | static void WriteToDisk(const Task& task, |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 564 | SkString md5, |
| 565 | const char* ext, |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 566 | SkStream* data, size_t len, |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 567 | const SkBitmap* bitmap) { |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 568 | JsonWriter::BitmapResult result; |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 569 | result.name = task.src->name(); |
| 570 | result.config = task.sink.tag; |
| 571 | result.sourceType = task.src.tag; |
| 572 | result.sourceOptions = task.src.options; |
| 573 | result.ext = ext; |
| 574 | result.md5 = md5; |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 575 | JsonWriter::AddBitmapResult(result); |
| 576 | |
mtklein | b0531a7 | 2015-04-07 13:38:48 -0700 | [diff] [blame] | 577 | // If an MD5 is uninteresting, we want it noted in the JSON file, |
| 578 | // but don't want to dump it out as a .png (or whatever ext is). |
| 579 | if (gUninterestingHashes.contains(md5)) { |
| 580 | return; |
| 581 | } |
| 582 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 583 | const char* dir = FLAGS_writePath[0]; |
| 584 | if (0 == strcmp(dir, "@")) { // Needed for iOS. |
| 585 | dir = FLAGS_resourcePath[0]; |
| 586 | } |
| 587 | sk_mkdir(dir); |
| 588 | |
| 589 | SkString path; |
| 590 | if (FLAGS_nameByHash) { |
| 591 | path = SkOSPath::Join(dir, result.md5.c_str()); |
| 592 | path.append("."); |
| 593 | path.append(ext); |
| 594 | if (sk_exists(path.c_str())) { |
| 595 | return; // Content-addressed. If it exists already, we're done. |
| 596 | } |
| 597 | } else { |
| 598 | path = SkOSPath::Join(dir, task.sink.tag); |
| 599 | sk_mkdir(path.c_str()); |
| 600 | path = SkOSPath::Join(path.c_str(), task.src.tag); |
| 601 | sk_mkdir(path.c_str()); |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 602 | if (strcmp(task.src.options, "") != 0) { |
| 603 | path = SkOSPath::Join(path.c_str(), task.src.options); |
| 604 | sk_mkdir(path.c_str()); |
| 605 | } |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 606 | path = SkOSPath::Join(path.c_str(), task.src->name().c_str()); |
| 607 | path.append("."); |
| 608 | path.append(ext); |
| 609 | } |
| 610 | |
| 611 | SkFILEWStream file(path.c_str()); |
| 612 | if (!file.isValid()) { |
| 613 | fail(SkStringPrintf("Can't open %s for writing.\n", path.c_str())); |
| 614 | return; |
| 615 | } |
| 616 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 617 | if (bitmap) { |
| 618 | // We can't encode A8 bitmaps as PNGs. Convert them to 8888 first. |
| 619 | SkBitmap converted; |
| 620 | if (bitmap->info().colorType() == kAlpha_8_SkColorType) { |
| 621 | if (!bitmap->copyTo(&converted, kN32_SkColorType)) { |
| 622 | fail("Can't convert A8 to 8888.\n"); |
| 623 | return; |
| 624 | } |
| 625 | bitmap = &converted; |
| 626 | } |
| 627 | if (!SkImageEncoder::EncodeStream(&file, *bitmap, SkImageEncoder::kPNG_Type, 100)) { |
| 628 | fail(SkStringPrintf("Can't encode PNG to %s.\n", path.c_str())); |
| 629 | return; |
| 630 | } |
| 631 | } else { |
| 632 | if (!file.writeStream(data, len)) { |
| 633 | fail(SkStringPrintf("Can't write to %s.\n", path.c_str())); |
| 634 | return; |
| 635 | } |
| 636 | } |
| 637 | } |
| 638 | }; |
| 639 | |
| 640 | // Run all tasks in the same enclave serially on the same thread. |
| 641 | // They can't possibly run concurrently with each other. |
| 642 | static void run_enclave(SkTArray<Task>* tasks) { |
| 643 | for (int i = 0; i < tasks->count(); i++) { |
| 644 | Task::Run(tasks->begin() + i); |
| 645 | } |
| 646 | } |
| 647 | |
| 648 | /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ |
| 649 | |
| 650 | // Unit tests don't fit so well into the Src/Sink model, so we give them special treatment. |
| 651 | |
mtklein | 55e88b2 | 2015-01-21 15:50:13 -0800 | [diff] [blame] | 652 | static SkTDArray<skiatest::Test> gThreadedTests, gGPUTests; |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 653 | |
| 654 | static void gather_tests() { |
mtklein | 6c5fed2 | 2015-01-20 13:47:23 -0800 | [diff] [blame] | 655 | if (!FLAGS_src.contains("tests")) { |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 656 | return; |
| 657 | } |
mtklein | 6393c06 | 2015-04-27 08:45:01 -0700 | [diff] [blame] | 658 | for (const skiatest::TestRegistry* r = skiatest::TestRegistry::Head(); r; r = r->next()) { |
| 659 | if (!in_shard()) { |
| 660 | continue; |
| 661 | } |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 662 | // Despite its name, factory() is returning a reference to |
| 663 | // link-time static const POD data. |
| 664 | const skiatest::Test& test = r->factory(); |
| 665 | if (SkCommandLineFlags::ShouldSkip(FLAGS_match, test.name)) { |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 666 | continue; |
| 667 | } |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 668 | if (test.needsGpu && gpu_supported()) { |
mtklein | 55e88b2 | 2015-01-21 15:50:13 -0800 | [diff] [blame] | 669 | (FLAGS_gpu_threading ? gThreadedTests : gGPUTests).push(test); |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 670 | } else if (!test.needsGpu && FLAGS_cpu) { |
mtklein | 55e88b2 | 2015-01-21 15:50:13 -0800 | [diff] [blame] | 671 | gThreadedTests.push(test); |
mtklein | 82d2843 | 2015-01-15 12:46:02 -0800 | [diff] [blame] | 672 | } |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 673 | } |
| 674 | } |
| 675 | |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 676 | static void run_test(skiatest::Test* test) { |
| 677 | struct : public skiatest::Reporter { |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 678 | void reportFailed(const skiatest::Failure& failure) override { |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 679 | fail(failure.toString()); |
| 680 | JsonWriter::AddTestFailure(failure); |
| 681 | } |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 682 | bool allowExtendedTest() const override { |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 683 | return FLAGS_pathOpsExtended; |
| 684 | } |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 685 | bool verbose() const override { return FLAGS_veryVerbose; } |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 686 | } reporter; |
djsollen | 824996a | 2015-06-12 12:06:22 -0700 | [diff] [blame] | 687 | |
| 688 | SkString note; |
| 689 | SkString whyBlacklisted = is_blacklisted("_", "tests", "_", test->name); |
| 690 | if (!whyBlacklisted.isEmpty()) { |
| 691 | note.appendf(" (--blacklist %s)", whyBlacklisted.c_str()); |
| 692 | } |
| 693 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 694 | WallTimer timer; |
| 695 | timer.start(); |
djsollen | 824996a | 2015-06-12 12:06:22 -0700 | [diff] [blame] | 696 | if (!FLAGS_dryRun && whyBlacklisted.isEmpty()) { |
djsollen | 54416de | 2015-04-03 07:24:48 -0700 | [diff] [blame] | 697 | start("unit", "test", "", test->name); |
mtklein | 55e88b2 | 2015-01-21 15:50:13 -0800 | [diff] [blame] | 698 | GrContextFactory factory; |
bsalomon | 821e10e | 2015-06-04 14:15:33 -0700 | [diff] [blame] | 699 | if (FLAGS_pre_log) { |
| 700 | SkDebugf("\nRunning test %s", test->name); |
| 701 | } |
mtklein | 55e88b2 | 2015-01-21 15:50:13 -0800 | [diff] [blame] | 702 | test->proc(&reporter, &factory); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 703 | } |
| 704 | timer.end(); |
djsollen | 824996a | 2015-06-12 12:06:22 -0700 | [diff] [blame] | 705 | done(timer.fWall, "unit", "test", "", test->name, note, ""); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 706 | } |
| 707 | |
| 708 | /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ |
| 709 | |
mtklein | 55e88b2 | 2015-01-21 15:50:13 -0800 | [diff] [blame] | 710 | // If we're isolating all GPU-bound work to one thread (the default), this function runs all that. |
| 711 | static void run_enclave_and_gpu_tests(SkTArray<Task>* tasks) { |
| 712 | run_enclave(tasks); |
| 713 | for (int i = 0; i < gGPUTests.count(); i++) { |
| 714 | run_test(&gGPUTests[i]); |
| 715 | } |
| 716 | } |
| 717 | |
mtklein | de6fc2b | 2015-03-12 06:28:54 -0700 | [diff] [blame] | 718 | // Some runs (mostly, Valgrind) are so slow that the bot framework thinks we've hung. |
| 719 | // This prints something every once in a while so that it knows we're still working. |
mtklein | 2e1c47e | 2015-03-12 07:16:56 -0700 | [diff] [blame] | 720 | static void start_keepalive() { |
| 721 | struct Loop { |
| 722 | static void forever(void*) { |
| 723 | for (;;) { |
| 724 | static const int kSec = 300; |
| 725 | #if defined(SK_BUILD_FOR_WIN) |
| 726 | Sleep(kSec * 1000); |
| 727 | #else |
| 728 | sleep(kSec); |
| 729 | #endif |
mtklein | b37cb41 | 2015-03-18 05:27:14 -0700 | [diff] [blame] | 730 | SkString running; |
| 731 | { |
| 732 | SkAutoMutexAcquire lock(gRunningMutex); |
| 733 | for (int i = 0; i < gRunning.count(); i++) { |
| 734 | running.appendf("\n\t%s", gRunning[i].c_str()); |
| 735 | } |
| 736 | } |
| 737 | SkDebugf("\nCurrently running:%s\n", running.c_str()); |
mtklein | 2e1c47e | 2015-03-12 07:16:56 -0700 | [diff] [blame] | 738 | } |
| 739 | } |
| 740 | }; |
| 741 | static SkThread* intentionallyLeaked = new SkThread(Loop::forever); |
| 742 | intentionallyLeaked->start(); |
mtklein | de6fc2b | 2015-03-12 06:28:54 -0700 | [diff] [blame] | 743 | } |
| 744 | |
caryclark | 83ca628 | 2015-06-10 09:31:09 -0700 | [diff] [blame] | 745 | #define PORTABLE_FONT_PREFIX "Toy Liberation " |
| 746 | |
| 747 | static SkTypeface* create_from_name(const char familyName[], SkTypeface::Style style) { |
| 748 | if (familyName && strlen(familyName) > sizeof(PORTABLE_FONT_PREFIX) |
| 749 | && !strncmp(familyName, PORTABLE_FONT_PREFIX, sizeof(PORTABLE_FONT_PREFIX) - 1)) { |
| 750 | return sk_tool_utils::create_portable_typeface_always(familyName, style); |
| 751 | } |
| 752 | return NULL; |
| 753 | } |
| 754 | |
| 755 | #undef PORTABLE_FONT_PREFIX |
| 756 | |
| 757 | extern SkTypeface* (*gCreateTypefaceDelegate)(const char [], SkTypeface::Style ); |
| 758 | |
jcgregorio | 3b27ade | 2014-11-13 08:06:40 -0800 | [diff] [blame] | 759 | int dm_main(); |
caryclark | 17f0b6d | 2014-07-22 10:15:34 -0700 | [diff] [blame] | 760 | int dm_main() { |
jcgregorio | 3b27ade | 2014-11-13 08:06:40 -0800 | [diff] [blame] | 761 | SetupCrashHandler(); |
commit-bot@chromium.org | 39e8d93 | 2014-05-29 20:14:48 +0000 | [diff] [blame] | 762 | SkAutoGraphics ag; |
mtklein | 406654b | 2014-09-03 15:34:37 -0700 | [diff] [blame] | 763 | SkTaskGroup::Enabler enabled(FLAGS_threads); |
caryclark | 83ca628 | 2015-06-10 09:31:09 -0700 | [diff] [blame] | 764 | gCreateTypefaceDelegate = &create_from_name; |
commit-bot@chromium.org | a65e2fd | 2014-05-30 17:23:31 +0000 | [diff] [blame] | 765 | |
mtklein | 2e1c47e | 2015-03-12 07:16:56 -0700 | [diff] [blame] | 766 | start_keepalive(); |
mtklein | de6fc2b | 2015-03-12 06:28:54 -0700 | [diff] [blame] | 767 | |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 768 | gather_gold(); |
borenet | 09ed480 | 2015-04-03 14:15:33 -0700 | [diff] [blame] | 769 | gather_uninteresting_hashes(); |
mtklein | 62bd1a6 | 2015-01-27 14:46:26 -0800 | [diff] [blame] | 770 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 771 | gather_srcs(); |
| 772 | gather_sinks(); |
| 773 | gather_tests(); |
commit-bot@chromium.org | 0dc5bd1 | 2014-02-26 16:31:22 +0000 | [diff] [blame] | 774 | |
mtklein | 55e88b2 | 2015-01-21 15:50:13 -0800 | [diff] [blame] | 775 | gPending = gSrcs.count() * gSinks.count() + gThreadedTests.count() + gGPUTests.count(); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 776 | SkDebugf("%d srcs * %d sinks + %d tests == %d tasks\n", |
mtklein | 55e88b2 | 2015-01-21 15:50:13 -0800 | [diff] [blame] | 777 | gSrcs.count(), gSinks.count(), gThreadedTests.count() + gGPUTests.count(), gPending); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 778 | |
| 779 | // We try to exploit as much parallelism as is safe. Most Src/Sink pairs run on any thread, |
| 780 | // but Sinks that identify as part of a particular enclave run serially on a single thread. |
mtklein | 82d2843 | 2015-01-15 12:46:02 -0800 | [diff] [blame] | 781 | // CPU tests run on any thread. GPU tests depend on --gpu_threading. |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 782 | SkTArray<Task> enclaves[kNumEnclaves]; |
| 783 | for (int j = 0; j < gSinks.count(); j++) { |
| 784 | SkTArray<Task>& tasks = enclaves[gSinks[j]->enclave()]; |
| 785 | for (int i = 0; i < gSrcs.count(); i++) { |
| 786 | tasks.push_back(Task(gSrcs[i], gSinks[j])); |
| 787 | } |
commit-bot@chromium.org | 38aeb0f | 2014-02-26 23:01:57 +0000 | [diff] [blame] | 788 | } |
| 789 | |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 790 | SkTaskGroup tg; |
mtklein | 55e88b2 | 2015-01-21 15:50:13 -0800 | [diff] [blame] | 791 | tg.batch(run_test, gThreadedTests.begin(), gThreadedTests.count()); |
| 792 | for (int i = 0; i < kNumEnclaves; i++) { |
| 793 | switch(i) { |
| 794 | case kAnyThread_Enclave: |
| 795 | tg.batch(Task::Run, enclaves[i].begin(), enclaves[i].count()); |
| 796 | break; |
| 797 | case kGPU_Enclave: |
| 798 | tg.add(run_enclave_and_gpu_tests, &enclaves[i]); |
| 799 | break; |
| 800 | default: |
| 801 | tg.add(run_enclave, &enclaves[i]); |
| 802 | break; |
mtklein | 82d2843 | 2015-01-15 12:46:02 -0800 | [diff] [blame] | 803 | } |
mtklein | 55e88b2 | 2015-01-21 15:50:13 -0800 | [diff] [blame] | 804 | } |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 805 | tg.wait(); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 806 | // At this point we're back in single-threaded land. |
caryclark | f53ce80 | 2015-06-15 06:48:30 -0700 | [diff] [blame] | 807 | sk_tool_utils::release_portable_typefaces(); |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 808 | |
mtklein | 2f64eec | 2015-01-15 14:20:41 -0800 | [diff] [blame] | 809 | SkDebugf("\n"); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 810 | if (gFailures.count() > 0) { |
| 811 | SkDebugf("Failures:\n"); |
| 812 | for (int i = 0; i < gFailures.count(); i++) { |
mtklein | 9dc0910 | 2015-01-15 15:47:33 -0800 | [diff] [blame] | 813 | SkDebugf("\t%s\n", gFailures[i].c_str()); |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 814 | } |
| 815 | SkDebugf("%d failures\n", gFailures.count()); |
| 816 | return 1; |
mtklein | 114c3cd | 2015-01-15 10:15:02 -0800 | [diff] [blame] | 817 | } |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 818 | if (gPending > 0) { |
| 819 | SkDebugf("Hrm, we didn't seem to run everything we intended to! Please file a bug.\n"); |
| 820 | return 1; |
mtklein | 114c3cd | 2015-01-15 10:15:02 -0800 | [diff] [blame] | 821 | } |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 822 | return 0; |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 823 | } |
jcgregorio | 3b27ade | 2014-11-13 08:06:40 -0800 | [diff] [blame] | 824 | |
borenet | 4808757 | 2015-04-02 12:16:36 -0700 | [diff] [blame] | 825 | #if !defined(SK_BUILD_FOR_IOS) |
jcgregorio | 3b27ade | 2014-11-13 08:06:40 -0800 | [diff] [blame] | 826 | int main(int argc, char** argv) { |
| 827 | SkCommandLineFlags::Parse(argc, argv); |
| 828 | return dm_main(); |
| 829 | } |
| 830 | #endif |