blob: 8ff408815b63ca0d68b0352fd69a22ce5ac2b1d2 [file] [log] [blame]
msarett9bde9182015-03-25 05:27:48 -07001/*
2 * Copyright 2015 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
msarettb46e5e22015-07-30 11:36:40 -07008#include "SkBmpCodec.h"
msarett9bde9182015-03-25 05:27:48 -07009#include "SkCodecPriv.h"
Cary Clarka4083c92017-09-15 11:59:23 -040010#include "SkColorData.h"
msarett9bde9182015-03-25 05:27:48 -070011#include "SkData.h"
msarett1a464672016-01-07 13:17:19 -080012#include "SkIcoCodec.h"
msarettbe1d5552016-01-21 09:05:23 -080013#include "SkPngCodec.h"
msarett9bde9182015-03-25 05:27:48 -070014#include "SkStream.h"
15#include "SkTDArray.h"
16#include "SkTSort.h"
17
18/*
19 * Checks the start of the stream to see if the image is an Ico or Cur
20 */
scroggodb30be22015-12-08 18:54:13 -080021bool SkIcoCodec::IsIco(const void* buffer, size_t bytesRead) {
msarett9bde9182015-03-25 05:27:48 -070022 const char icoSig[] = { '\x00', '\x00', '\x01', '\x00' };
23 const char curSig[] = { '\x00', '\x00', '\x02', '\x00' };
scroggodb30be22015-12-08 18:54:13 -080024 return bytesRead >= sizeof(icoSig) &&
msarett9bde9182015-03-25 05:27:48 -070025 (!memcmp(buffer, icoSig, sizeof(icoSig)) ||
26 !memcmp(buffer, curSig, sizeof(curSig)));
27}
28
Mike Reedede7bac2017-07-23 15:30:02 -040029std::unique_ptr<SkCodec> SkIcoCodec::MakeFromStream(std::unique_ptr<SkStream> stream,
30 Result* result) {
msarett9bde9182015-03-25 05:27:48 -070031 // Header size constants
Leon Scroggins III862c1962017-10-02 16:28:49 -040032 constexpr uint32_t kIcoDirectoryBytes = 6;
33 constexpr uint32_t kIcoDirEntryBytes = 16;
msarett9bde9182015-03-25 05:27:48 -070034
35 // Read the directory header
Ben Wagner7ecc5962016-11-02 17:07:33 -040036 std::unique_ptr<uint8_t[]> dirBuffer(new uint8_t[kIcoDirectoryBytes]);
Mike Reedede7bac2017-07-23 15:30:02 -040037 if (stream->read(dirBuffer.get(), kIcoDirectoryBytes) != kIcoDirectoryBytes) {
scroggo230d4ac2015-03-26 07:15:55 -070038 SkCodecPrintf("Error: unable to read ico directory header.\n");
Leon Scroggins III588fb042017-07-14 16:32:31 -040039 *result = kIncompleteInput;
halcanary96fcdcc2015-08-27 07:41:13 -070040 return nullptr;
msarett9bde9182015-03-25 05:27:48 -070041 }
42
43 // Process the directory header
44 const uint16_t numImages = get_short(dirBuffer.get(), 4);
45 if (0 == numImages) {
scroggo230d4ac2015-03-26 07:15:55 -070046 SkCodecPrintf("Error: No images embedded in ico.\n");
Leon Scroggins III588fb042017-07-14 16:32:31 -040047 *result = kInvalidInput;
halcanary96fcdcc2015-08-27 07:41:13 -070048 return nullptr;
msarett9bde9182015-03-25 05:27:48 -070049 }
50
msarett9bde9182015-03-25 05:27:48 -070051 // This structure is used to represent the vital information about entries
52 // in the directory header. We will obtain this information for each
53 // directory entry.
54 struct Entry {
55 uint32_t offset;
56 uint32_t size;
57 };
Mike Reed8dc8dbc2018-01-05 11:20:10 -050058 SkAutoFree dirEntryBuffer(sk_malloc_canfail(sizeof(Entry) * numImages));
Leon Scroggins III005a9702017-06-29 15:41:32 -040059 if (!dirEntryBuffer) {
60 SkCodecPrintf("Error: OOM allocating ICO directory for %i images.\n",
61 numImages);
Leon Scroggins III588fb042017-07-14 16:32:31 -040062 *result = kInternalError;
Leon Scroggins III005a9702017-06-29 15:41:32 -040063 return nullptr;
64 }
65 auto* directoryEntries = reinterpret_cast<Entry*>(dirEntryBuffer.get());
msarett9bde9182015-03-25 05:27:48 -070066
67 // Iterate over directory entries
68 for (uint32_t i = 0; i < numImages; i++) {
Leon Scroggins III005a9702017-06-29 15:41:32 -040069 uint8_t entryBuffer[kIcoDirEntryBytes];
Mike Reedede7bac2017-07-23 15:30:02 -040070 if (stream->read(entryBuffer, kIcoDirEntryBytes) != kIcoDirEntryBytes) {
Leon Scroggins III005a9702017-06-29 15:41:32 -040071 SkCodecPrintf("Error: Dir entries truncated in ico.\n");
Leon Scroggins III588fb042017-07-14 16:32:31 -040072 *result = kIncompleteInput;
Leon Scroggins III005a9702017-06-29 15:41:32 -040073 return nullptr;
74 }
75
msarett9bde9182015-03-25 05:27:48 -070076 // The directory entry contains information such as width, height,
77 // bits per pixel, and number of colors in the color palette. We will
78 // ignore these fields since they are repeated in the header of the
79 // embedded image. In the event of an inconsistency, we would always
80 // defer to the value in the embedded header anyway.
81
82 // Specifies the size of the embedded image, including the header
Leon Scroggins III005a9702017-06-29 15:41:32 -040083 uint32_t size = get_int(entryBuffer, 8);
msarett9bde9182015-03-25 05:27:48 -070084
85 // Specifies the offset of the embedded image from the start of file.
86 // It does not indicate the start of the pixel data, but rather the
87 // start of the embedded image header.
Leon Scroggins III005a9702017-06-29 15:41:32 -040088 uint32_t offset = get_int(entryBuffer, 12);
msarett9bde9182015-03-25 05:27:48 -070089
90 // Save the vital fields
Leon Scroggins III005a9702017-06-29 15:41:32 -040091 directoryEntries[i].offset = offset;
92 directoryEntries[i].size = size;
msarett9bde9182015-03-25 05:27:48 -070093 }
94
Leon Scroggins III588fb042017-07-14 16:32:31 -040095 // Default Result, if no valid embedded codecs are found.
96 *result = kInvalidInput;
97
msarett9bde9182015-03-25 05:27:48 -070098 // It is "customary" that the embedded images will be stored in order of
99 // increasing offset. However, the specification does not indicate that
100 // they must be stored in this order, so we will not trust that this is the
101 // case. Here we sort the embedded images by increasing offset.
102 struct EntryLessThan {
103 bool operator() (Entry a, Entry b) const {
104 return a.offset < b.offset;
105 }
106 };
107 EntryLessThan lessThan;
Leon Scroggins III005a9702017-06-29 15:41:32 -0400108 SkTQSort(directoryEntries, &directoryEntries[numImages - 1], lessThan);
msarett9bde9182015-03-25 05:27:48 -0700109
110 // Now will construct a candidate codec for each of the embedded images
111 uint32_t bytesRead = kIcoDirectoryBytes + numImages * kIcoDirEntryBytes;
Ben Wagner145dbcd2016-11-03 14:40:50 -0400112 std::unique_ptr<SkTArray<std::unique_ptr<SkCodec>, true>> codecs(
Mike Klein79aea6a2018-06-11 10:45:26 -0400113 new SkTArray<std::unique_ptr<SkCodec>, true>(numImages));
msarett9bde9182015-03-25 05:27:48 -0700114 for (uint32_t i = 0; i < numImages; i++) {
Leon Scroggins III005a9702017-06-29 15:41:32 -0400115 uint32_t offset = directoryEntries[i].offset;
116 uint32_t size = directoryEntries[i].size;
msarette6dd0042015-10-09 11:07:34 -0700117
msarett9bde9182015-03-25 05:27:48 -0700118 // Ensure that the offset is valid
119 if (offset < bytesRead) {
scroggo230d4ac2015-03-26 07:15:55 -0700120 SkCodecPrintf("Warning: invalid ico offset.\n");
msarett9bde9182015-03-25 05:27:48 -0700121 continue;
122 }
123
124 // If we cannot skip, assume we have reached the end of the stream and
125 // stop trying to make codecs
Mike Reedede7bac2017-07-23 15:30:02 -0400126 if (stream->skip(offset - bytesRead) != offset - bytesRead) {
scroggo230d4ac2015-03-26 07:15:55 -0700127 SkCodecPrintf("Warning: could not skip to ico offset.\n");
msarett9bde9182015-03-25 05:27:48 -0700128 break;
129 }
130 bytesRead = offset;
131
132 // Create a new stream for the embedded codec
Mike Reed8dc8dbc2018-01-05 11:20:10 -0500133 SkAutoFree buffer(sk_malloc_canfail(size));
Leon Scroggins III12a4dc92017-06-05 14:06:57 -0400134 if (!buffer) {
135 SkCodecPrintf("Warning: OOM trying to create embedded stream.\n");
136 break;
137 }
138
Mike Reedede7bac2017-07-23 15:30:02 -0400139 if (stream->read(buffer.get(), size) != size) {
scroggo230d4ac2015-03-26 07:15:55 -0700140 SkCodecPrintf("Warning: could not create embedded stream.\n");
Leon Scroggins III588fb042017-07-14 16:32:31 -0400141 *result = kIncompleteInput;
msarett9bde9182015-03-25 05:27:48 -0700142 break;
143 }
Leon Scroggins III12a4dc92017-06-05 14:06:57 -0400144
145 sk_sp<SkData> data(SkData::MakeFromMalloc(buffer.release(), size));
Mike Reed847068c2017-07-26 11:35:53 -0400146 auto embeddedStream = SkMemoryStream::Make(data);
msarett9bde9182015-03-25 05:27:48 -0700147 bytesRead += size;
148
149 // Check if the embedded codec is bmp or png and create the codec
Mike Reedede7bac2017-07-23 15:30:02 -0400150 std::unique_ptr<SkCodec> codec;
Leon Scroggins III588fb042017-07-14 16:32:31 -0400151 Result dummyResult;
scroggodb30be22015-12-08 18:54:13 -0800152 if (SkPngCodec::IsPng((const char*) data->bytes(), data->size())) {
Mike Reedede7bac2017-07-23 15:30:02 -0400153 codec = SkPngCodec::MakeFromStream(std::move(embeddedStream), &dummyResult);
msarett9bde9182015-03-25 05:27:48 -0700154 } else {
Mike Reedede7bac2017-07-23 15:30:02 -0400155 codec = SkBmpCodec::MakeFromIco(std::move(embeddedStream), &dummyResult);
msarett9bde9182015-03-25 05:27:48 -0700156 }
157
158 // Save a valid codec
halcanary96fcdcc2015-08-27 07:41:13 -0700159 if (nullptr != codec) {
Mike Reedede7bac2017-07-23 15:30:02 -0400160 codecs->push_back().reset(codec.release());
msarett9bde9182015-03-25 05:27:48 -0700161 }
162 }
163
164 // Recognize if there are no valid codecs
165 if (0 == codecs->count()) {
scroggo230d4ac2015-03-26 07:15:55 -0700166 SkCodecPrintf("Error: could not find any valid embedded ico codecs.\n");
halcanary96fcdcc2015-08-27 07:41:13 -0700167 return nullptr;
msarett9bde9182015-03-25 05:27:48 -0700168 }
169
170 // Use the largest codec as a "suggestion" for image info
Matt Sarett29121eb2016-10-17 14:32:46 -0400171 size_t maxSize = 0;
172 int maxIndex = 0;
173 for (int i = 0; i < codecs->count(); i++) {
msarett9bde9182015-03-25 05:27:48 -0700174 SkImageInfo info = codecs->operator[](i)->getInfo();
Mike Reedf0ffb892017-10-03 14:47:21 -0400175 size_t size = info.computeMinByteSize();
Matt Sarett29121eb2016-10-17 14:32:46 -0400176
msarett9bde9182015-03-25 05:27:48 -0700177 if (size > maxSize) {
178 maxSize = size;
179 maxIndex = i;
180 }
181 }
msarettc30c4182016-04-20 11:53:35 -0700182 int width = codecs->operator[](maxIndex)->getInfo().width();
183 int height = codecs->operator[](maxIndex)->getInfo().height();
184 SkEncodedInfo info = codecs->operator[](maxIndex)->getEncodedInfo();
Matt Sarett7f650bd2016-10-30 21:25:34 -0400185 SkColorSpace* colorSpace = codecs->operator[](maxIndex)->getInfo().colorSpace();
msarett9bde9182015-03-25 05:27:48 -0700186
Leon Scroggins III588fb042017-07-14 16:32:31 -0400187 *result = kSuccess;
188 // The original stream is no longer needed, because the embedded codecs own their
189 // own streams.
Mike Reedede7bac2017-07-23 15:30:02 -0400190 return std::unique_ptr<SkCodec>(new SkIcoCodec(width, height, info, codecs.release(),
191 sk_ref_sp(colorSpace)));
msarett9bde9182015-03-25 05:27:48 -0700192}
193
194/*
195 * Creates an instance of the decoder
196 * Called only by NewFromStream
197 */
msarettc30c4182016-04-20 11:53:35 -0700198SkIcoCodec::SkIcoCodec(int width, int height, const SkEncodedInfo& info,
Ben Wagner145dbcd2016-11-03 14:40:50 -0400199 SkTArray<std::unique_ptr<SkCodec>, true>* codecs,
Matt Sarett7f650bd2016-10-30 21:25:34 -0400200 sk_sp<SkColorSpace> colorSpace)
Leon Scroggins IIIc6e6a5f2017-06-05 15:53:38 -0400201 // The source SkColorSpaceXform::ColorFormat will not be used. The embedded
202 // codec's will be used instead.
203 : INHERITED(width, height, info, SkColorSpaceXform::ColorFormat(), nullptr,
204 std::move(colorSpace))
msarett9bde9182015-03-25 05:27:48 -0700205 , fEmbeddedCodecs(codecs)
nagarajan.n477e9d42017-09-25 18:13:06 +0530206 , fCurrCodec(nullptr)
msarett9bde9182015-03-25 05:27:48 -0700207{}
208
209/*
210 * Chooses the best dimensions given the desired scale
211 */
Chris Blume66f23322017-04-19 12:40:46 -0700212SkISize SkIcoCodec::onGetScaledDimensions(float desiredScale) const {
msarett9bde9182015-03-25 05:27:48 -0700213 // We set the dimensions to the largest candidate image by default.
214 // Regardless of the scale request, this is the largest image that we
215 // will decode.
msarett9bde9182015-03-25 05:27:48 -0700216 int origWidth = this->getInfo().width();
217 int origHeight = this->getInfo().height();
218 float desiredSize = desiredScale * origWidth * origHeight;
219 // At least one image will have smaller error than this initial value
220 float minError = ((float) (origWidth * origHeight)) - desiredSize + 1.0f;
221 int32_t minIndex = -1;
222 for (int32_t i = 0; i < fEmbeddedCodecs->count(); i++) {
223 int width = fEmbeddedCodecs->operator[](i)->getInfo().width();
224 int height = fEmbeddedCodecs->operator[](i)->getInfo().height();
225 float error = SkTAbs(((float) (width * height)) - desiredSize);
226 if (error < minError) {
227 minError = error;
228 minIndex = i;
229 }
230 }
231 SkASSERT(minIndex >= 0);
232
233 return fEmbeddedCodecs->operator[](minIndex)->getInfo().dimensions();
234}
235
msarettbe8216a2015-12-04 08:00:50 -0800236int SkIcoCodec::chooseCodec(const SkISize& requestedSize, int startIndex) {
237 SkASSERT(startIndex >= 0);
238
scroggoe7fc14b2015-10-02 13:14:46 -0700239 // FIXME: Cache the index from onGetScaledDimensions?
msarettbe8216a2015-12-04 08:00:50 -0800240 for (int i = startIndex; i < fEmbeddedCodecs->count(); i++) {
241 if (fEmbeddedCodecs->operator[](i)->getInfo().dimensions() == requestedSize) {
242 return i;
scroggoe7fc14b2015-10-02 13:14:46 -0700243 }
244 }
245
msarettbe8216a2015-12-04 08:00:50 -0800246 return -1;
247}
248
249bool SkIcoCodec::onDimensionsSupported(const SkISize& dim) {
250 return this->chooseCodec(dim, 0) >= 0;
scroggoe7fc14b2015-10-02 13:14:46 -0700251}
252
msarett9bde9182015-03-25 05:27:48 -0700253/*
254 * Initiates the Ico decode
255 */
256SkCodec::Result SkIcoCodec::onGetPixels(const SkImageInfo& dstInfo,
257 void* dst, size_t dstRowBytes,
Leon Scroggins571b30f2017-07-11 17:35:31 +0000258 const Options& opts,
259 int* rowsDecoded) {
scroggob636b452015-07-22 07:16:20 -0700260 if (opts.fSubset) {
261 // Subsets are not supported.
262 return kUnimplemented;
263 }
scroggocc2feb12015-08-14 08:32:46 -0700264
msarettbe8216a2015-12-04 08:00:50 -0800265 int index = 0;
266 SkCodec::Result result = kInvalidScale;
267 while (true) {
268 index = this->chooseCodec(dstInfo.dimensions(), index);
269 if (index < 0) {
270 break;
msarett1603e932015-12-04 05:43:09 -0800271 }
msarettbe8216a2015-12-04 08:00:50 -0800272
Ben Wagner145dbcd2016-11-03 14:40:50 -0400273 SkCodec* embeddedCodec = fEmbeddedCodecs->operator[](index).get();
Leon Scroggins571b30f2017-07-11 17:35:31 +0000274 result = embeddedCodec->getPixels(dstInfo, dst, dstRowBytes, &opts);
msarettbe8216a2015-12-04 08:00:50 -0800275 switch (result) {
276 case kSuccess:
277 case kIncompleteInput:
278 // The embedded codec will handle filling incomplete images, so we will indicate
279 // that all of the rows are initialized.
msarettf4004f92016-02-11 10:49:31 -0800280 *rowsDecoded = dstInfo.height();
msarettbe8216a2015-12-04 08:00:50 -0800281 return result;
282 default:
283 // Continue trying to find a valid embedded codec on a failed decode.
284 break;
285 }
286
287 index++;
msarett1603e932015-12-04 05:43:09 -0800288 }
289
290 SkCodecPrintf("Error: No matching candidate image in ico.\n");
291 return result;
292}
msarettbe8216a2015-12-04 08:00:50 -0800293
294SkCodec::Result SkIcoCodec::onStartScanlineDecode(const SkImageInfo& dstInfo,
Leon Scroggins571b30f2017-07-11 17:35:31 +0000295 const SkCodec::Options& options) {
msarettbe8216a2015-12-04 08:00:50 -0800296 int index = 0;
297 SkCodec::Result result = kInvalidScale;
298 while (true) {
299 index = this->chooseCodec(dstInfo.dimensions(), index);
300 if (index < 0) {
301 break;
302 }
303
Ben Wagner145dbcd2016-11-03 14:40:50 -0400304 SkCodec* embeddedCodec = fEmbeddedCodecs->operator[](index).get();
Leon Scroggins571b30f2017-07-11 17:35:31 +0000305 result = embeddedCodec->startScanlineDecode(dstInfo, &options);
msarettbe8216a2015-12-04 08:00:50 -0800306 if (kSuccess == result) {
nagarajan.n477e9d42017-09-25 18:13:06 +0530307 fCurrCodec = embeddedCodec;
msarettbe8216a2015-12-04 08:00:50 -0800308 return result;
309 }
310
311 index++;
312 }
313
314 SkCodecPrintf("Error: No matching candidate image in ico.\n");
315 return result;
316}
317
318int SkIcoCodec::onGetScanlines(void* dst, int count, size_t rowBytes) {
nagarajan.n477e9d42017-09-25 18:13:06 +0530319 SkASSERT(fCurrCodec);
320 return fCurrCodec->getScanlines(dst, count, rowBytes);
msarettbe8216a2015-12-04 08:00:50 -0800321}
322
323bool SkIcoCodec::onSkipScanlines(int count) {
nagarajan.n477e9d42017-09-25 18:13:06 +0530324 SkASSERT(fCurrCodec);
325 return fCurrCodec->skipScanlines(count);
msarettbe8216a2015-12-04 08:00:50 -0800326}
327
scroggo8e6c7ad2016-09-16 08:20:38 -0700328SkCodec::Result SkIcoCodec::onStartIncrementalDecode(const SkImageInfo& dstInfo,
Leon Scroggins571b30f2017-07-11 17:35:31 +0000329 void* pixels, size_t rowBytes, const SkCodec::Options& options) {
scroggo8e6c7ad2016-09-16 08:20:38 -0700330 int index = 0;
331 while (true) {
332 index = this->chooseCodec(dstInfo.dimensions(), index);
333 if (index < 0) {
334 break;
335 }
336
Ben Wagner145dbcd2016-11-03 14:40:50 -0400337 SkCodec* embeddedCodec = fEmbeddedCodecs->operator[](index).get();
scroggo8e6c7ad2016-09-16 08:20:38 -0700338 switch (embeddedCodec->startIncrementalDecode(dstInfo,
Leon Scroggins571b30f2017-07-11 17:35:31 +0000339 pixels, rowBytes, &options)) {
scroggo8e6c7ad2016-09-16 08:20:38 -0700340 case kSuccess:
nagarajan.n477e9d42017-09-25 18:13:06 +0530341 fCurrCodec = embeddedCodec;
scroggo8e6c7ad2016-09-16 08:20:38 -0700342 return kSuccess;
343 case kUnimplemented:
344 // FIXME: embeddedCodec is a BMP. If scanline decoding would work,
345 // return kUnimplemented so that SkSampledCodec will fall through
346 // to use the scanline decoder.
347 // Note that calling startScanlineDecode will require an extra
348 // rewind. The embedded codec has an SkMemoryStream, which is
349 // cheap to rewind, though it will do extra work re-reading the
350 // header.
351 // Also note that we pass nullptr for Options. This is because
352 // Options that are valid for incremental decoding may not be
353 // valid for scanline decoding.
354 // Once BMP supports incremental decoding this workaround can go
355 // away.
Leon Scroggins571b30f2017-07-11 17:35:31 +0000356 if (embeddedCodec->startScanlineDecode(dstInfo) == kSuccess) {
scroggo8e6c7ad2016-09-16 08:20:38 -0700357 return kUnimplemented;
358 }
359 // Move on to the next embedded codec.
360 break;
361 default:
362 break;
363 }
364
365 index++;
366 }
367
368 SkCodecPrintf("Error: No matching candidate image in ico.\n");
369 return kInvalidScale;
370}
371
372SkCodec::Result SkIcoCodec::onIncrementalDecode(int* rowsDecoded) {
nagarajan.n477e9d42017-09-25 18:13:06 +0530373 SkASSERT(fCurrCodec);
374 return fCurrCodec->incrementalDecode(rowsDecoded);
scroggo8e6c7ad2016-09-16 08:20:38 -0700375}
376
msarettbe8216a2015-12-04 08:00:50 -0800377SkCodec::SkScanlineOrder SkIcoCodec::onGetScanlineOrder() const {
378 // FIXME: This function will possibly return the wrong value if it is called
scroggo8e6c7ad2016-09-16 08:20:38 -0700379 // before startScanlineDecode()/startIncrementalDecode().
nagarajan.n477e9d42017-09-25 18:13:06 +0530380 if (fCurrCodec) {
381 return fCurrCodec->getScanlineOrder();
scroggo8e6c7ad2016-09-16 08:20:38 -0700382 }
383
384 return INHERITED::onGetScanlineOrder();
msarettbe8216a2015-12-04 08:00:50 -0800385}
386
387SkSampler* SkIcoCodec::getSampler(bool createIfNecessary) {
nagarajan.n477e9d42017-09-25 18:13:06 +0530388 if (fCurrCodec) {
389 return fCurrCodec->getSampler(createIfNecessary);
scroggo8e6c7ad2016-09-16 08:20:38 -0700390 }
391
392 return nullptr;
msarettbe8216a2015-12-04 08:00:50 -0800393}