blob: 08feb98431242216eef3f7f047093803a52bb0a1 [file] [log] [blame]
mtklein@google.coma7a9f372013-10-18 20:52:44 +00001#include "DMWriteTask.h"
2
3#include "DMUtil.h"
commit-bot@chromium.org389fb7f2014-01-15 21:28:25 +00004#include "SkColorPriv.h"
caryclark17f0b6d2014-07-22 10:15:34 -07005#include "SkCommonFlags.h"
mtklein197ceda2014-09-09 07:36:57 -07006#include "SkData.h"
mtklein@google.coma7a9f372013-10-18 20:52:44 +00007#include "SkImageEncoder.h"
mtklein1d0f1642014-09-08 08:05:18 -07008#include "SkMD5.h"
commit-bot@chromium.orgeef834f2014-03-05 15:37:11 +00009#include "SkMallocPixelRef.h"
mtklein1d0f1642014-09-08 08:05:18 -070010#include "SkOSFile.h"
commit-bot@chromium.org1426c1e2014-03-03 15:43:56 +000011#include "SkStream.h"
commit-bot@chromium.orgeef834f2014-03-05 15:37:11 +000012#include "SkString.h"
mtklein@google.coma7a9f372013-10-18 20:52:44 +000013
mtklein858baf52014-09-08 11:33:48 -070014DEFINE_bool(nameByHash, false, "If true, write .../hash.png instead of .../mode/config/name.png");
15
mtklein@google.coma7a9f372013-10-18 20:52:44 +000016namespace DM {
17
commit-bot@chromium.org99589af2013-12-10 14:53:16 +000018// Splits off the last N suffixes of name (splitting on _) and appends them to out.
19// Returns the total number of characters consumed.
20static int split_suffixes(int N, const char* name, SkTArray<SkString>* out) {
rmistry@google.comd6bab022013-12-02 13:50:38 +000021 SkTArray<SkString> split;
22 SkStrSplit(name, "_", &split);
commit-bot@chromium.org99589af2013-12-10 14:53:16 +000023 int consumed = 0;
24 for (int i = 0; i < N; i++) {
rmistry@google.comd6bab022013-12-02 13:50:38 +000025 // We're splitting off suffixes from the back to front.
commit-bot@chromium.org99589af2013-12-10 14:53:16 +000026 out->push_back(split[split.count()-i-1]);
27 consumed += out->back().size() + 1; // Add one for the _.
rmistry@google.comd6bab022013-12-02 13:50:38 +000028 }
commit-bot@chromium.org99589af2013-12-10 14:53:16 +000029 return consumed;
30}
31
mtklein1d0f1642014-09-08 08:05:18 -070032inline static SkString find_base_name(const Task& parent, SkTArray<SkString>* suffixList) {
commit-bot@chromium.orgd6dcacd2014-05-14 20:26:00 +000033 const int suffixes = parent.depth() + 1;
34 const SkString& name = parent.name();
mtklein30bf3e22014-06-03 13:57:14 -070035 const int totalSuffixLength = split_suffixes(suffixes, name.c_str(), suffixList);
36 return SkString(name.c_str(), name.size() - totalSuffixLength);
rmistry@google.comd6bab022013-12-02 13:50:38 +000037}
mtklein@google.coma7a9f372013-10-18 20:52:44 +000038
mtkleinea65bfa2014-09-09 07:59:46 -070039WriteTask::WriteTask(const Task& parent, const char* sourceType, SkBitmap bitmap)
mtklein30bf3e22014-06-03 13:57:14 -070040 : CpuTask(parent)
mtklein1d0f1642014-09-08 08:05:18 -070041 , fBaseName(find_base_name(parent, &fSuffixes))
mtkleinea65bfa2014-09-09 07:59:46 -070042 , fSourceType(sourceType)
mtklein30bf3e22014-06-03 13:57:14 -070043 , fBitmap(bitmap)
44 , fData(NULL)
mtklein1d0f1642014-09-08 08:05:18 -070045 , fExtension(".png") {
46}
mtklein30bf3e22014-06-03 13:57:14 -070047
mtkleinea65bfa2014-09-09 07:59:46 -070048WriteTask::WriteTask(const Task& parent,
49 const char* sourceType,
50 SkStreamAsset *data,
51 const char* ext)
mtklein30bf3e22014-06-03 13:57:14 -070052 : CpuTask(parent)
mtklein1d0f1642014-09-08 08:05:18 -070053 , fBaseName(find_base_name(parent, &fSuffixes))
mtkleinea65bfa2014-09-09 07:59:46 -070054 , fSourceType(sourceType)
halcanarya4c60942014-08-26 10:38:07 -070055 , fData(data)
56 , fExtension(ext) {
57 SkASSERT(fData.get());
58 SkASSERT(fData->unique());
59}
mtklein30bf3e22014-06-03 13:57:14 -070060
rmistry@google.comd6bab022013-12-02 13:50:38 +000061void WriteTask::makeDirOrFail(SkString dir) {
62 if (!sk_mkdir(dir.c_str())) {
63 this->fail();
64 }
mtklein@google.coma7a9f372013-10-18 20:52:44 +000065}
66
mtkleinc54056c2014-09-09 08:42:04 -070067static SkString get_md5(const void* ptr, size_t len) {
mtklein858baf52014-09-08 11:33:48 -070068 SkMD5 hasher;
mtkleinc54056c2014-09-09 08:42:04 -070069 hasher.write(ptr, len);
mtkleine2d4eb72014-09-08 12:42:23 -070070 SkMD5::Digest digest;
71 hasher.finish(digest);
72
73 SkString md5;
74 for (int i = 0; i < 16; i++) {
75 md5.appendf("%02x", digest.data[i]);
76 }
77 return md5;
mtklein858baf52014-09-08 11:33:48 -070078}
79
mtkleinea65bfa2014-09-09 07:59:46 -070080struct JsonData {
mtklein87e24372014-09-19 10:35:07 -070081 SkString name; // E.g. "ninepatch-stretch", "desk-gws_skp"
82 SkString config; // "gpu", "8888"
83 SkString mode; // "direct", "default-tilegrid", "pipe"
84 SkString sourceType; // "GM", "SKP"
85 SkString md5; // In ASCII, so 32 bytes long.
mtkleinea65bfa2014-09-09 07:59:46 -070086};
87SkTArray<JsonData> gJsonData;
88SK_DECLARE_STATIC_MUTEX(gJsonDataLock);
89
mtklein@google.coma7a9f372013-10-18 20:52:44 +000090void WriteTask::draw() {
mtkleinc54056c2014-09-09 08:42:04 -070091 SkString md5;
92 {
93 SkAutoLockPixels lock(fBitmap);
94 md5 = fData ? get_md5(fData->getMemoryBase(), fData->getLength())
95 : get_md5(fBitmap.getPixels(), fBitmap.getSize());
mtkleine2d4eb72014-09-08 12:42:23 -070096 }
mtklein858baf52014-09-08 11:33:48 -070097
mtklein87e24372014-09-19 10:35:07 -070098 SkASSERT(fSuffixes.count() > 0);
99 SkString config = fSuffixes.back();
100 SkString mode("direct");
101 if (fSuffixes.count() > 1) {
102 mode = fSuffixes.fromBack(1);
103 }
104
105 JsonData entry = { fBaseName, config, mode, fSourceType, md5 };
mtklein858baf52014-09-08 11:33:48 -0700106 {
107 SkAutoMutexAcquire lock(&gJsonDataLock);
108 gJsonData.push_back(entry);
109 }
110
rmistry@google.comd6bab022013-12-02 13:50:38 +0000111 SkString dir(FLAGS_writePath[0]);
caryclark17f0b6d2014-07-22 10:15:34 -0700112#if SK_BUILD_FOR_IOS
113 if (dir.equals("@")) {
114 dir.set(FLAGS_resourcePath[0]);
115 }
116#endif
rmistry@google.comd6bab022013-12-02 13:50:38 +0000117 this->makeDirOrFail(dir);
mtklein30bf3e22014-06-03 13:57:14 -0700118
mtklein858baf52014-09-08 11:33:48 -0700119 SkString path;
120 if (FLAGS_nameByHash) {
121 // Flat directory of hash-named files.
mtkleinc54056c2014-09-09 08:42:04 -0700122 path = SkOSPath::Join(dir.c_str(), md5.c_str());
mtklein858baf52014-09-08 11:33:48 -0700123 path.append(fExtension);
124 // We're content-addressed, so it's possible two threads race to write
125 // this file. We let the first one win. This also means we won't
126 // overwrite identical files from previous runs.
127 if (sk_exists(path.c_str())) {
128 return;
129 }
mtklein1d0f1642014-09-08 08:05:18 -0700130 } else {
mtklein858baf52014-09-08 11:33:48 -0700131 // Nested by mode, config, etc.
132 for (int i = 0; i < fSuffixes.count(); i++) {
133 dir = SkOSPath::Join(dir.c_str(), fSuffixes[i].c_str());
134 this->makeDirOrFail(dir);
135 }
136 path = SkOSPath::Join(dir.c_str(), fBaseName.c_str());
137 path.append(fExtension);
138 // The path is unique, so two threads can't both write to the same file.
139 // If already present we overwrite here, since the content may have changed.
mtklein1d0f1642014-09-08 08:05:18 -0700140 }
141
mtkleine2d4eb72014-09-08 12:42:23 -0700142 SkFILEWStream file(path.c_str());
143 if (!file.isValid()) {
144 return this->fail("Can't open file.");
145 }
146
mtkleinc54056c2014-09-09 08:42:04 -0700147 bool ok = fData ? file.writeStream(fData, fData->getLength())
148 : SkImageEncoder::EncodeStream(&file, fBitmap, SkImageEncoder::kPNG_Type, 100);
149 if (!ok) {
mtkleine2d4eb72014-09-08 12:42:23 -0700150 return this->fail("Can't write to file.");
mtklein@google.coma7a9f372013-10-18 20:52:44 +0000151 }
152}
153
154SkString WriteTask::name() const {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000155 SkString name("writing ");
156 for (int i = 0; i < fSuffixes.count(); i++) {
157 name.appendf("%s/", fSuffixes[i].c_str());
158 }
mtklein1d0f1642014-09-08 08:05:18 -0700159 name.append(fBaseName.c_str());
rmistry@google.comd6bab022013-12-02 13:50:38 +0000160 return name;
mtklein@google.coma7a9f372013-10-18 20:52:44 +0000161}
162
163bool WriteTask::shouldSkip() const {
164 return FLAGS_writePath.isEmpty();
165}
166
mtklein1d0f1642014-09-08 08:05:18 -0700167void WriteTask::DumpJson() {
168 if (FLAGS_writePath.isEmpty()) {
169 return;
170 }
171
mtklein1d0f1642014-09-08 08:05:18 -0700172 Json::Value root;
mtkleinea65bfa2014-09-09 07:59:46 -0700173
174 for (int i = 1; i < FLAGS_properties.count(); i += 2) {
175 root[FLAGS_properties[i-1]] = FLAGS_properties[i];
176 }
177 for (int i = 1; i < FLAGS_key.count(); i += 2) {
178 root["key"][FLAGS_key[i-1]] = FLAGS_key[i];
179 }
180
mtklein1d0f1642014-09-08 08:05:18 -0700181 {
182 SkAutoMutexAcquire lock(&gJsonDataLock);
183 for (int i = 0; i < gJsonData.count(); i++) {
mtkleinea65bfa2014-09-09 07:59:46 -0700184 Json::Value result;
185 result["key"]["name"] = gJsonData[i].name.c_str();
186 result["key"]["config"] = gJsonData[i].config.c_str();
mtklein87e24372014-09-19 10:35:07 -0700187 result["key"]["mode"] = gJsonData[i].mode.c_str();
mtkleinea65bfa2014-09-09 07:59:46 -0700188 result["options"]["source_type"] = gJsonData[i].sourceType.c_str();
189 result["md5"] = gJsonData[i].md5.c_str();
190
191 root["results"].append(result);
mtklein1d0f1642014-09-08 08:05:18 -0700192 }
193 }
194
195 SkString path = SkOSPath::Join(FLAGS_writePath[0], "dm.json");
196 SkFILEWStream stream(path.c_str());
197 stream.writeText(Json::StyledWriter().write(root).c_str());
198 stream.flush();
commit-bot@chromium.org99589af2013-12-10 14:53:16 +0000199}
200
mtklein@google.coma7a9f372013-10-18 20:52:44 +0000201} // namespace DM