blob: fd8396cce12c199276d0960727b186128a946f42 [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 {
81 SkString name; // E.g. "ninepatch-stretch", "desk-gws_skp"
82 SkString config; // "gpu", "8888"
83 SkString sourceType; // "GM", "SKP"
84 SkString md5; // In ASCII, so 32 bytes long.
85};
86SkTArray<JsonData> gJsonData;
87SK_DECLARE_STATIC_MUTEX(gJsonDataLock);
88
mtklein@google.coma7a9f372013-10-18 20:52:44 +000089void WriteTask::draw() {
mtkleinc54056c2014-09-09 08:42:04 -070090 SkString md5;
91 {
92 SkAutoLockPixels lock(fBitmap);
93 md5 = fData ? get_md5(fData->getMemoryBase(), fData->getLength())
94 : get_md5(fBitmap.getPixels(), fBitmap.getSize());
mtkleine2d4eb72014-09-08 12:42:23 -070095 }
mtklein858baf52014-09-08 11:33:48 -070096
mtkleinc54056c2014-09-09 08:42:04 -070097 JsonData entry = { fBaseName, fSuffixes[0], fSourceType, md5 };
mtklein858baf52014-09-08 11:33:48 -070098 {
99 SkAutoMutexAcquire lock(&gJsonDataLock);
100 gJsonData.push_back(entry);
101 }
102
rmistry@google.comd6bab022013-12-02 13:50:38 +0000103 SkString dir(FLAGS_writePath[0]);
caryclark17f0b6d2014-07-22 10:15:34 -0700104#if SK_BUILD_FOR_IOS
105 if (dir.equals("@")) {
106 dir.set(FLAGS_resourcePath[0]);
107 }
108#endif
rmistry@google.comd6bab022013-12-02 13:50:38 +0000109 this->makeDirOrFail(dir);
mtklein30bf3e22014-06-03 13:57:14 -0700110
mtklein858baf52014-09-08 11:33:48 -0700111 SkString path;
112 if (FLAGS_nameByHash) {
113 // Flat directory of hash-named files.
mtkleinc54056c2014-09-09 08:42:04 -0700114 path = SkOSPath::Join(dir.c_str(), md5.c_str());
mtklein858baf52014-09-08 11:33:48 -0700115 path.append(fExtension);
116 // We're content-addressed, so it's possible two threads race to write
117 // this file. We let the first one win. This also means we won't
118 // overwrite identical files from previous runs.
119 if (sk_exists(path.c_str())) {
120 return;
121 }
mtklein1d0f1642014-09-08 08:05:18 -0700122 } else {
mtklein858baf52014-09-08 11:33:48 -0700123 // Nested by mode, config, etc.
124 for (int i = 0; i < fSuffixes.count(); i++) {
125 dir = SkOSPath::Join(dir.c_str(), fSuffixes[i].c_str());
126 this->makeDirOrFail(dir);
127 }
128 path = SkOSPath::Join(dir.c_str(), fBaseName.c_str());
129 path.append(fExtension);
130 // The path is unique, so two threads can't both write to the same file.
131 // If already present we overwrite here, since the content may have changed.
mtklein1d0f1642014-09-08 08:05:18 -0700132 }
133
mtkleine2d4eb72014-09-08 12:42:23 -0700134 SkFILEWStream file(path.c_str());
135 if (!file.isValid()) {
136 return this->fail("Can't open file.");
137 }
138
mtkleinc54056c2014-09-09 08:42:04 -0700139 bool ok = fData ? file.writeStream(fData, fData->getLength())
140 : SkImageEncoder::EncodeStream(&file, fBitmap, SkImageEncoder::kPNG_Type, 100);
141 if (!ok) {
mtkleine2d4eb72014-09-08 12:42:23 -0700142 return this->fail("Can't write to file.");
mtklein@google.coma7a9f372013-10-18 20:52:44 +0000143 }
144}
145
146SkString WriteTask::name() const {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000147 SkString name("writing ");
148 for (int i = 0; i < fSuffixes.count(); i++) {
149 name.appendf("%s/", fSuffixes[i].c_str());
150 }
mtklein1d0f1642014-09-08 08:05:18 -0700151 name.append(fBaseName.c_str());
rmistry@google.comd6bab022013-12-02 13:50:38 +0000152 return name;
mtklein@google.coma7a9f372013-10-18 20:52:44 +0000153}
154
155bool WriteTask::shouldSkip() const {
156 return FLAGS_writePath.isEmpty();
157}
158
mtklein1d0f1642014-09-08 08:05:18 -0700159void WriteTask::DumpJson() {
160 if (FLAGS_writePath.isEmpty()) {
161 return;
162 }
163
mtklein1d0f1642014-09-08 08:05:18 -0700164 Json::Value root;
mtkleinea65bfa2014-09-09 07:59:46 -0700165
166 for (int i = 1; i < FLAGS_properties.count(); i += 2) {
167 root[FLAGS_properties[i-1]] = FLAGS_properties[i];
168 }
169 for (int i = 1; i < FLAGS_key.count(); i += 2) {
170 root["key"][FLAGS_key[i-1]] = FLAGS_key[i];
171 }
172
mtklein1d0f1642014-09-08 08:05:18 -0700173 {
174 SkAutoMutexAcquire lock(&gJsonDataLock);
175 for (int i = 0; i < gJsonData.count(); i++) {
mtkleinea65bfa2014-09-09 07:59:46 -0700176 Json::Value result;
177 result["key"]["name"] = gJsonData[i].name.c_str();
178 result["key"]["config"] = gJsonData[i].config.c_str();
179 result["options"]["source_type"] = gJsonData[i].sourceType.c_str();
180 result["md5"] = gJsonData[i].md5.c_str();
181
182 root["results"].append(result);
mtklein1d0f1642014-09-08 08:05:18 -0700183 }
184 }
185
186 SkString path = SkOSPath::Join(FLAGS_writePath[0], "dm.json");
187 SkFILEWStream stream(path.c_str());
188 stream.writeText(Json::StyledWriter().write(root).c_str());
189 stream.flush();
commit-bot@chromium.org99589af2013-12-10 14:53:16 +0000190}
191
mtklein@google.coma7a9f372013-10-18 20:52:44 +0000192} // namespace DM