blob: 3e5d3eca22f912d269947c7a79c911eb1886b310 [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 }
Leon Scroggins III36f7e322018-08-27 11:55:46 -0400182
183 auto maxInfo = codecs->operator[](maxIndex)->getEncodedInfo().copy();
msarett9bde9182015-03-25 05:27:48 -0700184
Leon Scroggins III588fb042017-07-14 16:32:31 -0400185 *result = kSuccess;
186 // The original stream is no longer needed, because the embedded codecs own their
187 // own streams.
Leon Scroggins III36f7e322018-08-27 11:55:46 -0400188 return std::unique_ptr<SkCodec>(new SkIcoCodec(std::move(maxInfo), codecs.release()));
msarett9bde9182015-03-25 05:27:48 -0700189}
190
Leon Scroggins III36f7e322018-08-27 11:55:46 -0400191SkIcoCodec::SkIcoCodec(SkEncodedInfo&& info, SkTArray<std::unique_ptr<SkCodec>, true>* codecs)
192 // The source skcms_PixelFormat will not be used. The embedded
Leon Scroggins IIIc6e6a5f2017-06-05 15:53:38 -0400193 // codec's will be used instead.
Leon Scroggins III36f7e322018-08-27 11:55:46 -0400194 : INHERITED(std::move(info), skcms_PixelFormat(), nullptr)
msarett9bde9182015-03-25 05:27:48 -0700195 , fEmbeddedCodecs(codecs)
nagarajan.n477e9d42017-09-25 18:13:06 +0530196 , fCurrCodec(nullptr)
msarett9bde9182015-03-25 05:27:48 -0700197{}
198
199/*
200 * Chooses the best dimensions given the desired scale
201 */
Chris Blume66f23322017-04-19 12:40:46 -0700202SkISize SkIcoCodec::onGetScaledDimensions(float desiredScale) const {
msarett9bde9182015-03-25 05:27:48 -0700203 // We set the dimensions to the largest candidate image by default.
204 // Regardless of the scale request, this is the largest image that we
205 // will decode.
Leon Scroggins III712476e2018-10-03 15:47:00 -0400206 int origWidth = this->dimensions().width();
207 int origHeight = this->dimensions().height();
msarett9bde9182015-03-25 05:27:48 -0700208 float desiredSize = desiredScale * origWidth * origHeight;
209 // At least one image will have smaller error than this initial value
210 float minError = ((float) (origWidth * origHeight)) - desiredSize + 1.0f;
211 int32_t minIndex = -1;
212 for (int32_t i = 0; i < fEmbeddedCodecs->count(); i++) {
Leon Scroggins III712476e2018-10-03 15:47:00 -0400213 auto dimensions = fEmbeddedCodecs->operator[](i)->dimensions();
214 int width = dimensions.width();
215 int height = dimensions.height();
msarett9bde9182015-03-25 05:27:48 -0700216 float error = SkTAbs(((float) (width * height)) - desiredSize);
217 if (error < minError) {
218 minError = error;
219 minIndex = i;
220 }
221 }
222 SkASSERT(minIndex >= 0);
223
Leon Scroggins III712476e2018-10-03 15:47:00 -0400224 return fEmbeddedCodecs->operator[](minIndex)->dimensions();
msarett9bde9182015-03-25 05:27:48 -0700225}
226
msarettbe8216a2015-12-04 08:00:50 -0800227int SkIcoCodec::chooseCodec(const SkISize& requestedSize, int startIndex) {
228 SkASSERT(startIndex >= 0);
229
scroggoe7fc14b2015-10-02 13:14:46 -0700230 // FIXME: Cache the index from onGetScaledDimensions?
msarettbe8216a2015-12-04 08:00:50 -0800231 for (int i = startIndex; i < fEmbeddedCodecs->count(); i++) {
Leon Scroggins III712476e2018-10-03 15:47:00 -0400232 if (fEmbeddedCodecs->operator[](i)->dimensions() == requestedSize) {
msarettbe8216a2015-12-04 08:00:50 -0800233 return i;
scroggoe7fc14b2015-10-02 13:14:46 -0700234 }
235 }
236
msarettbe8216a2015-12-04 08:00:50 -0800237 return -1;
238}
239
240bool SkIcoCodec::onDimensionsSupported(const SkISize& dim) {
241 return this->chooseCodec(dim, 0) >= 0;
scroggoe7fc14b2015-10-02 13:14:46 -0700242}
243
msarett9bde9182015-03-25 05:27:48 -0700244/*
245 * Initiates the Ico decode
246 */
247SkCodec::Result SkIcoCodec::onGetPixels(const SkImageInfo& dstInfo,
248 void* dst, size_t dstRowBytes,
Leon Scroggins571b30f2017-07-11 17:35:31 +0000249 const Options& opts,
250 int* rowsDecoded) {
scroggob636b452015-07-22 07:16:20 -0700251 if (opts.fSubset) {
252 // Subsets are not supported.
253 return kUnimplemented;
254 }
scroggocc2feb12015-08-14 08:32:46 -0700255
msarettbe8216a2015-12-04 08:00:50 -0800256 int index = 0;
257 SkCodec::Result result = kInvalidScale;
258 while (true) {
259 index = this->chooseCodec(dstInfo.dimensions(), index);
260 if (index < 0) {
261 break;
msarett1603e932015-12-04 05:43:09 -0800262 }
msarettbe8216a2015-12-04 08:00:50 -0800263
Ben Wagner145dbcd2016-11-03 14:40:50 -0400264 SkCodec* embeddedCodec = fEmbeddedCodecs->operator[](index).get();
Leon Scroggins571b30f2017-07-11 17:35:31 +0000265 result = embeddedCodec->getPixels(dstInfo, dst, dstRowBytes, &opts);
msarettbe8216a2015-12-04 08:00:50 -0800266 switch (result) {
267 case kSuccess:
268 case kIncompleteInput:
269 // The embedded codec will handle filling incomplete images, so we will indicate
270 // that all of the rows are initialized.
msarettf4004f92016-02-11 10:49:31 -0800271 *rowsDecoded = dstInfo.height();
msarettbe8216a2015-12-04 08:00:50 -0800272 return result;
273 default:
274 // Continue trying to find a valid embedded codec on a failed decode.
275 break;
276 }
277
278 index++;
msarett1603e932015-12-04 05:43:09 -0800279 }
280
281 SkCodecPrintf("Error: No matching candidate image in ico.\n");
282 return result;
283}
msarettbe8216a2015-12-04 08:00:50 -0800284
285SkCodec::Result SkIcoCodec::onStartScanlineDecode(const SkImageInfo& dstInfo,
Leon Scroggins571b30f2017-07-11 17:35:31 +0000286 const SkCodec::Options& options) {
msarettbe8216a2015-12-04 08:00:50 -0800287 int index = 0;
288 SkCodec::Result result = kInvalidScale;
289 while (true) {
290 index = this->chooseCodec(dstInfo.dimensions(), index);
291 if (index < 0) {
292 break;
293 }
294
Ben Wagner145dbcd2016-11-03 14:40:50 -0400295 SkCodec* embeddedCodec = fEmbeddedCodecs->operator[](index).get();
Leon Scroggins571b30f2017-07-11 17:35:31 +0000296 result = embeddedCodec->startScanlineDecode(dstInfo, &options);
msarettbe8216a2015-12-04 08:00:50 -0800297 if (kSuccess == result) {
nagarajan.n477e9d42017-09-25 18:13:06 +0530298 fCurrCodec = embeddedCodec;
msarettbe8216a2015-12-04 08:00:50 -0800299 return result;
300 }
301
302 index++;
303 }
304
305 SkCodecPrintf("Error: No matching candidate image in ico.\n");
306 return result;
307}
308
309int SkIcoCodec::onGetScanlines(void* dst, int count, size_t rowBytes) {
nagarajan.n477e9d42017-09-25 18:13:06 +0530310 SkASSERT(fCurrCodec);
311 return fCurrCodec->getScanlines(dst, count, rowBytes);
msarettbe8216a2015-12-04 08:00:50 -0800312}
313
314bool SkIcoCodec::onSkipScanlines(int count) {
nagarajan.n477e9d42017-09-25 18:13:06 +0530315 SkASSERT(fCurrCodec);
316 return fCurrCodec->skipScanlines(count);
msarettbe8216a2015-12-04 08:00:50 -0800317}
318
scroggo8e6c7ad2016-09-16 08:20:38 -0700319SkCodec::Result SkIcoCodec::onStartIncrementalDecode(const SkImageInfo& dstInfo,
Leon Scroggins571b30f2017-07-11 17:35:31 +0000320 void* pixels, size_t rowBytes, const SkCodec::Options& options) {
scroggo8e6c7ad2016-09-16 08:20:38 -0700321 int index = 0;
322 while (true) {
323 index = this->chooseCodec(dstInfo.dimensions(), index);
324 if (index < 0) {
325 break;
326 }
327
Ben Wagner145dbcd2016-11-03 14:40:50 -0400328 SkCodec* embeddedCodec = fEmbeddedCodecs->operator[](index).get();
scroggo8e6c7ad2016-09-16 08:20:38 -0700329 switch (embeddedCodec->startIncrementalDecode(dstInfo,
Leon Scroggins571b30f2017-07-11 17:35:31 +0000330 pixels, rowBytes, &options)) {
scroggo8e6c7ad2016-09-16 08:20:38 -0700331 case kSuccess:
nagarajan.n477e9d42017-09-25 18:13:06 +0530332 fCurrCodec = embeddedCodec;
scroggo8e6c7ad2016-09-16 08:20:38 -0700333 return kSuccess;
334 case kUnimplemented:
335 // FIXME: embeddedCodec is a BMP. If scanline decoding would work,
336 // return kUnimplemented so that SkSampledCodec will fall through
337 // to use the scanline decoder.
338 // Note that calling startScanlineDecode will require an extra
339 // rewind. The embedded codec has an SkMemoryStream, which is
340 // cheap to rewind, though it will do extra work re-reading the
341 // header.
342 // Also note that we pass nullptr for Options. This is because
343 // Options that are valid for incremental decoding may not be
344 // valid for scanline decoding.
345 // Once BMP supports incremental decoding this workaround can go
346 // away.
Leon Scroggins571b30f2017-07-11 17:35:31 +0000347 if (embeddedCodec->startScanlineDecode(dstInfo) == kSuccess) {
scroggo8e6c7ad2016-09-16 08:20:38 -0700348 return kUnimplemented;
349 }
350 // Move on to the next embedded codec.
351 break;
352 default:
353 break;
354 }
355
356 index++;
357 }
358
359 SkCodecPrintf("Error: No matching candidate image in ico.\n");
360 return kInvalidScale;
361}
362
363SkCodec::Result SkIcoCodec::onIncrementalDecode(int* rowsDecoded) {
nagarajan.n477e9d42017-09-25 18:13:06 +0530364 SkASSERT(fCurrCodec);
365 return fCurrCodec->incrementalDecode(rowsDecoded);
scroggo8e6c7ad2016-09-16 08:20:38 -0700366}
367
msarettbe8216a2015-12-04 08:00:50 -0800368SkCodec::SkScanlineOrder SkIcoCodec::onGetScanlineOrder() const {
369 // FIXME: This function will possibly return the wrong value if it is called
scroggo8e6c7ad2016-09-16 08:20:38 -0700370 // before startScanlineDecode()/startIncrementalDecode().
nagarajan.n477e9d42017-09-25 18:13:06 +0530371 if (fCurrCodec) {
372 return fCurrCodec->getScanlineOrder();
scroggo8e6c7ad2016-09-16 08:20:38 -0700373 }
374
375 return INHERITED::onGetScanlineOrder();
msarettbe8216a2015-12-04 08:00:50 -0800376}
377
378SkSampler* SkIcoCodec::getSampler(bool createIfNecessary) {
nagarajan.n477e9d42017-09-25 18:13:06 +0530379 if (fCurrCodec) {
380 return fCurrCodec->getSampler(createIfNecessary);
scroggo8e6c7ad2016-09-16 08:20:38 -0700381 }
382
383 return nullptr;
msarettbe8216a2015-12-04 08:00:50 -0800384}