blob: 819d7e83dffd8b3c8d1fcb69a0ae1a75f47cc047 [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
bungemand51ce442014-10-02 13:39:00 -070067static SkString get_md5_string(SkMD5* hasher) {
mtkleine2d4eb72014-09-08 12:42:23 -070068 SkMD5::Digest digest;
bungemand51ce442014-10-02 13:39:00 -070069 hasher->finish(digest);
mtkleine2d4eb72014-09-08 12:42:23 -070070
71 SkString md5;
72 for (int i = 0; i < 16; i++) {
73 md5.appendf("%02x", digest.data[i]);
74 }
75 return md5;
mtklein858baf52014-09-08 11:33:48 -070076}
77
bungemand51ce442014-10-02 13:39:00 -070078static SkString get_md5(const void* ptr, size_t len) {
79 SkMD5 hasher;
80 hasher.write(ptr, len);
81 return get_md5_string(&hasher);
82}
83
84static SkString get_md5(SkStreamAsset* stream) {
85 SkMD5 hasher;
86 hasher.writeStream(stream, stream->getLength());
87 return get_md5_string(&hasher);
88}
89
mtkleinea65bfa2014-09-09 07:59:46 -070090struct JsonData {
mtklein87e24372014-09-19 10:35:07 -070091 SkString name; // E.g. "ninepatch-stretch", "desk-gws_skp"
92 SkString config; // "gpu", "8888"
93 SkString mode; // "direct", "default-tilegrid", "pipe"
94 SkString sourceType; // "GM", "SKP"
95 SkString md5; // In ASCII, so 32 bytes long.
mtkleinea65bfa2014-09-09 07:59:46 -070096};
97SkTArray<JsonData> gJsonData;
98SK_DECLARE_STATIC_MUTEX(gJsonDataLock);
99
mtklein@google.coma7a9f372013-10-18 20:52:44 +0000100void WriteTask::draw() {
mtkleinc54056c2014-09-09 08:42:04 -0700101 SkString md5;
102 {
103 SkAutoLockPixels lock(fBitmap);
bungemand51ce442014-10-02 13:39:00 -0700104 md5 = fData ? get_md5(fData)
mtkleinc54056c2014-09-09 08:42:04 -0700105 : get_md5(fBitmap.getPixels(), fBitmap.getSize());
mtkleine2d4eb72014-09-08 12:42:23 -0700106 }
mtklein858baf52014-09-08 11:33:48 -0700107
mtklein87e24372014-09-19 10:35:07 -0700108 SkASSERT(fSuffixes.count() > 0);
109 SkString config = fSuffixes.back();
110 SkString mode("direct");
111 if (fSuffixes.count() > 1) {
112 mode = fSuffixes.fromBack(1);
113 }
114
115 JsonData entry = { fBaseName, config, mode, fSourceType, md5 };
mtklein858baf52014-09-08 11:33:48 -0700116 {
117 SkAutoMutexAcquire lock(&gJsonDataLock);
118 gJsonData.push_back(entry);
119 }
120
rmistry@google.comd6bab022013-12-02 13:50:38 +0000121 SkString dir(FLAGS_writePath[0]);
tfarina6b87df22014-10-06 10:46:50 -0700122#if defined(SK_BUILD_FOR_IOS)
caryclark17f0b6d2014-07-22 10:15:34 -0700123 if (dir.equals("@")) {
124 dir.set(FLAGS_resourcePath[0]);
125 }
126#endif
rmistry@google.comd6bab022013-12-02 13:50:38 +0000127 this->makeDirOrFail(dir);
mtklein30bf3e22014-06-03 13:57:14 -0700128
mtklein858baf52014-09-08 11:33:48 -0700129 SkString path;
130 if (FLAGS_nameByHash) {
131 // Flat directory of hash-named files.
mtkleinc54056c2014-09-09 08:42:04 -0700132 path = SkOSPath::Join(dir.c_str(), md5.c_str());
mtklein858baf52014-09-08 11:33:48 -0700133 path.append(fExtension);
134 // We're content-addressed, so it's possible two threads race to write
135 // this file. We let the first one win. This also means we won't
136 // overwrite identical files from previous runs.
137 if (sk_exists(path.c_str())) {
138 return;
139 }
mtklein1d0f1642014-09-08 08:05:18 -0700140 } else {
mtklein858baf52014-09-08 11:33:48 -0700141 // Nested by mode, config, etc.
142 for (int i = 0; i < fSuffixes.count(); i++) {
143 dir = SkOSPath::Join(dir.c_str(), fSuffixes[i].c_str());
144 this->makeDirOrFail(dir);
145 }
146 path = SkOSPath::Join(dir.c_str(), fBaseName.c_str());
147 path.append(fExtension);
148 // The path is unique, so two threads can't both write to the same file.
149 // If already present we overwrite here, since the content may have changed.
mtklein1d0f1642014-09-08 08:05:18 -0700150 }
151
mtkleine2d4eb72014-09-08 12:42:23 -0700152 SkFILEWStream file(path.c_str());
153 if (!file.isValid()) {
154 return this->fail("Can't open file.");
155 }
156
mtkleinc54056c2014-09-09 08:42:04 -0700157 bool ok = fData ? file.writeStream(fData, fData->getLength())
158 : SkImageEncoder::EncodeStream(&file, fBitmap, SkImageEncoder::kPNG_Type, 100);
159 if (!ok) {
mtkleine2d4eb72014-09-08 12:42:23 -0700160 return this->fail("Can't write to file.");
mtklein@google.coma7a9f372013-10-18 20:52:44 +0000161 }
162}
163
164SkString WriteTask::name() const {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000165 SkString name("writing ");
166 for (int i = 0; i < fSuffixes.count(); i++) {
167 name.appendf("%s/", fSuffixes[i].c_str());
168 }
mtklein1d0f1642014-09-08 08:05:18 -0700169 name.append(fBaseName.c_str());
rmistry@google.comd6bab022013-12-02 13:50:38 +0000170 return name;
mtklein@google.coma7a9f372013-10-18 20:52:44 +0000171}
172
173bool WriteTask::shouldSkip() const {
174 return FLAGS_writePath.isEmpty();
175}
176
mtklein1d0f1642014-09-08 08:05:18 -0700177void WriteTask::DumpJson() {
178 if (FLAGS_writePath.isEmpty()) {
179 return;
180 }
181
mtklein1d0f1642014-09-08 08:05:18 -0700182 Json::Value root;
mtkleinea65bfa2014-09-09 07:59:46 -0700183
184 for (int i = 1; i < FLAGS_properties.count(); i += 2) {
185 root[FLAGS_properties[i-1]] = FLAGS_properties[i];
186 }
187 for (int i = 1; i < FLAGS_key.count(); i += 2) {
188 root["key"][FLAGS_key[i-1]] = FLAGS_key[i];
189 }
190
mtklein1d0f1642014-09-08 08:05:18 -0700191 {
192 SkAutoMutexAcquire lock(&gJsonDataLock);
193 for (int i = 0; i < gJsonData.count(); i++) {
mtkleinea65bfa2014-09-09 07:59:46 -0700194 Json::Value result;
195 result["key"]["name"] = gJsonData[i].name.c_str();
196 result["key"]["config"] = gJsonData[i].config.c_str();
mtklein87e24372014-09-19 10:35:07 -0700197 result["key"]["mode"] = gJsonData[i].mode.c_str();
mtkleinea65bfa2014-09-09 07:59:46 -0700198 result["options"]["source_type"] = gJsonData[i].sourceType.c_str();
199 result["md5"] = gJsonData[i].md5.c_str();
200
201 root["results"].append(result);
mtklein1d0f1642014-09-08 08:05:18 -0700202 }
203 }
204
205 SkString path = SkOSPath::Join(FLAGS_writePath[0], "dm.json");
206 SkFILEWStream stream(path.c_str());
207 stream.writeText(Json::StyledWriter().write(root).c_str());
208 stream.flush();
commit-bot@chromium.org99589af2013-12-10 14:53:16 +0000209}
210
mtklein@google.coma7a9f372013-10-18 20:52:44 +0000211} // namespace DM