blob: 2936b1a9ead5b7fb5f03cf05e753a98cc5e91337 [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
32 static const uint32_t kIcoDirectoryBytes = 6;
33 static const uint32_t kIcoDirEntryBytes = 16;
34
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 };
Leon Scroggins III005a9702017-06-29 15:41:32 -040058 SkAutoFree dirEntryBuffer(sk_malloc_flags(sizeof(Entry) * numImages,
59 SK_MALLOC_TEMP));
60 if (!dirEntryBuffer) {
61 SkCodecPrintf("Error: OOM allocating ICO directory for %i images.\n",
62 numImages);
Leon Scroggins III588fb042017-07-14 16:32:31 -040063 *result = kInternalError;
Leon Scroggins III005a9702017-06-29 15:41:32 -040064 return nullptr;
65 }
66 auto* directoryEntries = reinterpret_cast<Entry*>(dirEntryBuffer.get());
msarett9bde9182015-03-25 05:27:48 -070067
68 // Iterate over directory entries
69 for (uint32_t i = 0; i < numImages; i++) {
Leon Scroggins III005a9702017-06-29 15:41:32 -040070 uint8_t entryBuffer[kIcoDirEntryBytes];
Mike Reedede7bac2017-07-23 15:30:02 -040071 if (stream->read(entryBuffer, kIcoDirEntryBytes) != kIcoDirEntryBytes) {
Leon Scroggins III005a9702017-06-29 15:41:32 -040072 SkCodecPrintf("Error: Dir entries truncated in ico.\n");
Leon Scroggins III588fb042017-07-14 16:32:31 -040073 *result = kIncompleteInput;
Leon Scroggins III005a9702017-06-29 15:41:32 -040074 return nullptr;
75 }
76
msarett9bde9182015-03-25 05:27:48 -070077 // The directory entry contains information such as width, height,
78 // bits per pixel, and number of colors in the color palette. We will
79 // ignore these fields since they are repeated in the header of the
80 // embedded image. In the event of an inconsistency, we would always
81 // defer to the value in the embedded header anyway.
82
83 // Specifies the size of the embedded image, including the header
Leon Scroggins III005a9702017-06-29 15:41:32 -040084 uint32_t size = get_int(entryBuffer, 8);
msarett9bde9182015-03-25 05:27:48 -070085
86 // Specifies the offset of the embedded image from the start of file.
87 // It does not indicate the start of the pixel data, but rather the
88 // start of the embedded image header.
Leon Scroggins III005a9702017-06-29 15:41:32 -040089 uint32_t offset = get_int(entryBuffer, 12);
msarett9bde9182015-03-25 05:27:48 -070090
91 // Save the vital fields
Leon Scroggins III005a9702017-06-29 15:41:32 -040092 directoryEntries[i].offset = offset;
93 directoryEntries[i].size = size;
msarett9bde9182015-03-25 05:27:48 -070094 }
95
Leon Scroggins III588fb042017-07-14 16:32:31 -040096 // Default Result, if no valid embedded codecs are found.
97 *result = kInvalidInput;
98
msarett9bde9182015-03-25 05:27:48 -070099 // It is "customary" that the embedded images will be stored in order of
100 // increasing offset. However, the specification does not indicate that
101 // they must be stored in this order, so we will not trust that this is the
102 // case. Here we sort the embedded images by increasing offset.
103 struct EntryLessThan {
104 bool operator() (Entry a, Entry b) const {
105 return a.offset < b.offset;
106 }
107 };
108 EntryLessThan lessThan;
Leon Scroggins III005a9702017-06-29 15:41:32 -0400109 SkTQSort(directoryEntries, &directoryEntries[numImages - 1], lessThan);
msarett9bde9182015-03-25 05:27:48 -0700110
111 // Now will construct a candidate codec for each of the embedded images
112 uint32_t bytesRead = kIcoDirectoryBytes + numImages * kIcoDirEntryBytes;
Ben Wagner145dbcd2016-11-03 14:40:50 -0400113 std::unique_ptr<SkTArray<std::unique_ptr<SkCodec>, true>> codecs(
114 new (SkTArray<std::unique_ptr<SkCodec>, true>)(numImages));
msarett9bde9182015-03-25 05:27:48 -0700115 for (uint32_t i = 0; i < numImages; i++) {
Leon Scroggins III005a9702017-06-29 15:41:32 -0400116 uint32_t offset = directoryEntries[i].offset;
117 uint32_t size = directoryEntries[i].size;
msarette6dd0042015-10-09 11:07:34 -0700118
msarett9bde9182015-03-25 05:27:48 -0700119 // Ensure that the offset is valid
120 if (offset < bytesRead) {
scroggo230d4ac2015-03-26 07:15:55 -0700121 SkCodecPrintf("Warning: invalid ico offset.\n");
msarett9bde9182015-03-25 05:27:48 -0700122 continue;
123 }
124
125 // If we cannot skip, assume we have reached the end of the stream and
126 // stop trying to make codecs
Mike Reedede7bac2017-07-23 15:30:02 -0400127 if (stream->skip(offset - bytesRead) != offset - bytesRead) {
scroggo230d4ac2015-03-26 07:15:55 -0700128 SkCodecPrintf("Warning: could not skip to ico offset.\n");
msarett9bde9182015-03-25 05:27:48 -0700129 break;
130 }
131 bytesRead = offset;
132
133 // Create a new stream for the embedded codec
Leon Scroggins III12a4dc92017-06-05 14:06:57 -0400134 SkAutoFree buffer(sk_malloc_flags(size, 0));
135 if (!buffer) {
136 SkCodecPrintf("Warning: OOM trying to create embedded stream.\n");
137 break;
138 }
139
Mike Reedede7bac2017-07-23 15:30:02 -0400140 if (stream->read(buffer.get(), size) != size) {
scroggo230d4ac2015-03-26 07:15:55 -0700141 SkCodecPrintf("Warning: could not create embedded stream.\n");
Leon Scroggins III588fb042017-07-14 16:32:31 -0400142 *result = kIncompleteInput;
msarett9bde9182015-03-25 05:27:48 -0700143 break;
144 }
Leon Scroggins III12a4dc92017-06-05 14:06:57 -0400145
146 sk_sp<SkData> data(SkData::MakeFromMalloc(buffer.release(), size));
Mike Reed847068c2017-07-26 11:35:53 -0400147 auto embeddedStream = SkMemoryStream::Make(data);
msarett9bde9182015-03-25 05:27:48 -0700148 bytesRead += size;
149
150 // Check if the embedded codec is bmp or png and create the codec
Mike Reedede7bac2017-07-23 15:30:02 -0400151 std::unique_ptr<SkCodec> codec;
Leon Scroggins III588fb042017-07-14 16:32:31 -0400152 Result dummyResult;
scroggodb30be22015-12-08 18:54:13 -0800153 if (SkPngCodec::IsPng((const char*) data->bytes(), data->size())) {
Mike Reedede7bac2017-07-23 15:30:02 -0400154 codec = SkPngCodec::MakeFromStream(std::move(embeddedStream), &dummyResult);
msarett9bde9182015-03-25 05:27:48 -0700155 } else {
Mike Reedede7bac2017-07-23 15:30:02 -0400156 codec = SkBmpCodec::MakeFromIco(std::move(embeddedStream), &dummyResult);
msarett9bde9182015-03-25 05:27:48 -0700157 }
158
159 // Save a valid codec
halcanary96fcdcc2015-08-27 07:41:13 -0700160 if (nullptr != codec) {
Mike Reedede7bac2017-07-23 15:30:02 -0400161 codecs->push_back().reset(codec.release());
msarett9bde9182015-03-25 05:27:48 -0700162 }
163 }
164
165 // Recognize if there are no valid codecs
166 if (0 == codecs->count()) {
scroggo230d4ac2015-03-26 07:15:55 -0700167 SkCodecPrintf("Error: could not find any valid embedded ico codecs.\n");
halcanary96fcdcc2015-08-27 07:41:13 -0700168 return nullptr;
msarett9bde9182015-03-25 05:27:48 -0700169 }
170
171 // Use the largest codec as a "suggestion" for image info
Matt Sarett29121eb2016-10-17 14:32:46 -0400172 size_t maxSize = 0;
173 int maxIndex = 0;
174 for (int i = 0; i < codecs->count(); i++) {
msarett9bde9182015-03-25 05:27:48 -0700175 SkImageInfo info = codecs->operator[](i)->getInfo();
Matt Sarett29121eb2016-10-17 14:32:46 -0400176 size_t size = info.getSafeSize(info.minRowBytes());
177
msarett9bde9182015-03-25 05:27:48 -0700178 if (size > maxSize) {
179 maxSize = size;
180 maxIndex = i;
181 }
182 }
msarettc30c4182016-04-20 11:53:35 -0700183 int width = codecs->operator[](maxIndex)->getInfo().width();
184 int height = codecs->operator[](maxIndex)->getInfo().height();
185 SkEncodedInfo info = codecs->operator[](maxIndex)->getEncodedInfo();
Matt Sarett7f650bd2016-10-30 21:25:34 -0400186 SkColorSpace* colorSpace = codecs->operator[](maxIndex)->getInfo().colorSpace();
msarett9bde9182015-03-25 05:27:48 -0700187
Leon Scroggins III588fb042017-07-14 16:32:31 -0400188 *result = kSuccess;
189 // The original stream is no longer needed, because the embedded codecs own their
190 // own streams.
Mike Reedede7bac2017-07-23 15:30:02 -0400191 return std::unique_ptr<SkCodec>(new SkIcoCodec(width, height, info, codecs.release(),
192 sk_ref_sp(colorSpace)));
msarett9bde9182015-03-25 05:27:48 -0700193}
194
195/*
196 * Creates an instance of the decoder
197 * Called only by NewFromStream
198 */
msarettc30c4182016-04-20 11:53:35 -0700199SkIcoCodec::SkIcoCodec(int width, int height, const SkEncodedInfo& info,
Ben Wagner145dbcd2016-11-03 14:40:50 -0400200 SkTArray<std::unique_ptr<SkCodec>, true>* codecs,
Matt Sarett7f650bd2016-10-30 21:25:34 -0400201 sk_sp<SkColorSpace> colorSpace)
Leon Scroggins IIIc6e6a5f2017-06-05 15:53:38 -0400202 // The source SkColorSpaceXform::ColorFormat will not be used. The embedded
203 // codec's will be used instead.
204 : INHERITED(width, height, info, SkColorSpaceXform::ColorFormat(), nullptr,
205 std::move(colorSpace))
msarett9bde9182015-03-25 05:27:48 -0700206 , fEmbeddedCodecs(codecs)
msarettbe8216a2015-12-04 08:00:50 -0800207 , fCurrScanlineCodec(nullptr)
scroggo8e6c7ad2016-09-16 08:20:38 -0700208 , fCurrIncrementalCodec(nullptr)
msarett9bde9182015-03-25 05:27:48 -0700209{}
210
211/*
212 * Chooses the best dimensions given the desired scale
213 */
Chris Blume66f23322017-04-19 12:40:46 -0700214SkISize SkIcoCodec::onGetScaledDimensions(float desiredScale) const {
msarett9bde9182015-03-25 05:27:48 -0700215 // We set the dimensions to the largest candidate image by default.
216 // Regardless of the scale request, this is the largest image that we
217 // will decode.
msarett9bde9182015-03-25 05:27:48 -0700218 int origWidth = this->getInfo().width();
219 int origHeight = this->getInfo().height();
220 float desiredSize = desiredScale * origWidth * origHeight;
221 // At least one image will have smaller error than this initial value
222 float minError = ((float) (origWidth * origHeight)) - desiredSize + 1.0f;
223 int32_t minIndex = -1;
224 for (int32_t i = 0; i < fEmbeddedCodecs->count(); i++) {
225 int width = fEmbeddedCodecs->operator[](i)->getInfo().width();
226 int height = fEmbeddedCodecs->operator[](i)->getInfo().height();
227 float error = SkTAbs(((float) (width * height)) - desiredSize);
228 if (error < minError) {
229 minError = error;
230 minIndex = i;
231 }
232 }
233 SkASSERT(minIndex >= 0);
234
235 return fEmbeddedCodecs->operator[](minIndex)->getInfo().dimensions();
236}
237
msarettbe8216a2015-12-04 08:00:50 -0800238int SkIcoCodec::chooseCodec(const SkISize& requestedSize, int startIndex) {
239 SkASSERT(startIndex >= 0);
240
scroggoe7fc14b2015-10-02 13:14:46 -0700241 // FIXME: Cache the index from onGetScaledDimensions?
msarettbe8216a2015-12-04 08:00:50 -0800242 for (int i = startIndex; i < fEmbeddedCodecs->count(); i++) {
243 if (fEmbeddedCodecs->operator[](i)->getInfo().dimensions() == requestedSize) {
244 return i;
scroggoe7fc14b2015-10-02 13:14:46 -0700245 }
246 }
247
msarettbe8216a2015-12-04 08:00:50 -0800248 return -1;
249}
250
251bool SkIcoCodec::onDimensionsSupported(const SkISize& dim) {
252 return this->chooseCodec(dim, 0) >= 0;
scroggoe7fc14b2015-10-02 13:14:46 -0700253}
254
msarett9bde9182015-03-25 05:27:48 -0700255/*
256 * Initiates the Ico decode
257 */
258SkCodec::Result SkIcoCodec::onGetPixels(const SkImageInfo& dstInfo,
259 void* dst, size_t dstRowBytes,
Leon Scroggins571b30f2017-07-11 17:35:31 +0000260 const Options& opts,
261 int* rowsDecoded) {
scroggob636b452015-07-22 07:16:20 -0700262 if (opts.fSubset) {
263 // Subsets are not supported.
264 return kUnimplemented;
265 }
scroggocc2feb12015-08-14 08:32:46 -0700266
msarettbe8216a2015-12-04 08:00:50 -0800267 int index = 0;
268 SkCodec::Result result = kInvalidScale;
269 while (true) {
270 index = this->chooseCodec(dstInfo.dimensions(), index);
271 if (index < 0) {
272 break;
msarett1603e932015-12-04 05:43:09 -0800273 }
msarettbe8216a2015-12-04 08:00:50 -0800274
Ben Wagner145dbcd2016-11-03 14:40:50 -0400275 SkCodec* embeddedCodec = fEmbeddedCodecs->operator[](index).get();
Leon Scroggins571b30f2017-07-11 17:35:31 +0000276 result = embeddedCodec->getPixels(dstInfo, dst, dstRowBytes, &opts);
msarettbe8216a2015-12-04 08:00:50 -0800277 switch (result) {
278 case kSuccess:
279 case kIncompleteInput:
280 // The embedded codec will handle filling incomplete images, so we will indicate
281 // that all of the rows are initialized.
msarettf4004f92016-02-11 10:49:31 -0800282 *rowsDecoded = dstInfo.height();
msarettbe8216a2015-12-04 08:00:50 -0800283 return result;
284 default:
285 // Continue trying to find a valid embedded codec on a failed decode.
286 break;
287 }
288
289 index++;
msarett1603e932015-12-04 05:43:09 -0800290 }
291
292 SkCodecPrintf("Error: No matching candidate image in ico.\n");
293 return result;
294}
msarettbe8216a2015-12-04 08:00:50 -0800295
296SkCodec::Result SkIcoCodec::onStartScanlineDecode(const SkImageInfo& dstInfo,
Leon Scroggins571b30f2017-07-11 17:35:31 +0000297 const SkCodec::Options& options) {
msarettbe8216a2015-12-04 08:00:50 -0800298 int index = 0;
299 SkCodec::Result result = kInvalidScale;
300 while (true) {
301 index = this->chooseCodec(dstInfo.dimensions(), index);
302 if (index < 0) {
303 break;
304 }
305
Ben Wagner145dbcd2016-11-03 14:40:50 -0400306 SkCodec* embeddedCodec = fEmbeddedCodecs->operator[](index).get();
Leon Scroggins571b30f2017-07-11 17:35:31 +0000307 result = embeddedCodec->startScanlineDecode(dstInfo, &options);
msarettbe8216a2015-12-04 08:00:50 -0800308 if (kSuccess == result) {
309 fCurrScanlineCodec = embeddedCodec;
scroggo8e6c7ad2016-09-16 08:20:38 -0700310 fCurrIncrementalCodec = nullptr;
msarettbe8216a2015-12-04 08:00:50 -0800311 return result;
312 }
313
314 index++;
315 }
316
317 SkCodecPrintf("Error: No matching candidate image in ico.\n");
318 return result;
319}
320
321int SkIcoCodec::onGetScanlines(void* dst, int count, size_t rowBytes) {
322 SkASSERT(fCurrScanlineCodec);
323 return fCurrScanlineCodec->getScanlines(dst, count, rowBytes);
324}
325
326bool SkIcoCodec::onSkipScanlines(int count) {
327 SkASSERT(fCurrScanlineCodec);
328 return fCurrScanlineCodec->skipScanlines(count);
329}
330
scroggo8e6c7ad2016-09-16 08:20:38 -0700331SkCodec::Result SkIcoCodec::onStartIncrementalDecode(const SkImageInfo& dstInfo,
Leon Scroggins571b30f2017-07-11 17:35:31 +0000332 void* pixels, size_t rowBytes, const SkCodec::Options& options) {
scroggo8e6c7ad2016-09-16 08:20:38 -0700333 int index = 0;
334 while (true) {
335 index = this->chooseCodec(dstInfo.dimensions(), index);
336 if (index < 0) {
337 break;
338 }
339
Ben Wagner145dbcd2016-11-03 14:40:50 -0400340 SkCodec* embeddedCodec = fEmbeddedCodecs->operator[](index).get();
scroggo8e6c7ad2016-09-16 08:20:38 -0700341 switch (embeddedCodec->startIncrementalDecode(dstInfo,
Leon Scroggins571b30f2017-07-11 17:35:31 +0000342 pixels, rowBytes, &options)) {
scroggo8e6c7ad2016-09-16 08:20:38 -0700343 case kSuccess:
344 fCurrIncrementalCodec = embeddedCodec;
345 fCurrScanlineCodec = nullptr;
346 return kSuccess;
347 case kUnimplemented:
348 // FIXME: embeddedCodec is a BMP. If scanline decoding would work,
349 // return kUnimplemented so that SkSampledCodec will fall through
350 // to use the scanline decoder.
351 // Note that calling startScanlineDecode will require an extra
352 // rewind. The embedded codec has an SkMemoryStream, which is
353 // cheap to rewind, though it will do extra work re-reading the
354 // header.
355 // Also note that we pass nullptr for Options. This is because
356 // Options that are valid for incremental decoding may not be
357 // valid for scanline decoding.
358 // Once BMP supports incremental decoding this workaround can go
359 // away.
Leon Scroggins571b30f2017-07-11 17:35:31 +0000360 if (embeddedCodec->startScanlineDecode(dstInfo) == kSuccess) {
scroggo8e6c7ad2016-09-16 08:20:38 -0700361 return kUnimplemented;
362 }
363 // Move on to the next embedded codec.
364 break;
365 default:
366 break;
367 }
368
369 index++;
370 }
371
372 SkCodecPrintf("Error: No matching candidate image in ico.\n");
373 return kInvalidScale;
374}
375
376SkCodec::Result SkIcoCodec::onIncrementalDecode(int* rowsDecoded) {
377 SkASSERT(fCurrIncrementalCodec);
378 return fCurrIncrementalCodec->incrementalDecode(rowsDecoded);
379}
380
msarettbe8216a2015-12-04 08:00:50 -0800381SkCodec::SkScanlineOrder SkIcoCodec::onGetScanlineOrder() const {
382 // FIXME: This function will possibly return the wrong value if it is called
scroggo8e6c7ad2016-09-16 08:20:38 -0700383 // before startScanlineDecode()/startIncrementalDecode().
384 if (fCurrScanlineCodec) {
385 SkASSERT(!fCurrIncrementalCodec);
386 return fCurrScanlineCodec->getScanlineOrder();
387 }
388
389 if (fCurrIncrementalCodec) {
390 return fCurrIncrementalCodec->getScanlineOrder();
391 }
392
393 return INHERITED::onGetScanlineOrder();
msarettbe8216a2015-12-04 08:00:50 -0800394}
395
396SkSampler* SkIcoCodec::getSampler(bool createIfNecessary) {
scroggo8e6c7ad2016-09-16 08:20:38 -0700397 if (fCurrScanlineCodec) {
398 SkASSERT(!fCurrIncrementalCodec);
399 return fCurrScanlineCodec->getSampler(createIfNecessary);
400 }
401
402 if (fCurrIncrementalCodec) {
403 return fCurrIncrementalCodec->getSampler(createIfNecessary);
404 }
405
406 return nullptr;
msarettbe8216a2015-12-04 08:00:50 -0800407}