blob: 326b9c23c6a188b0545ba6caf11f041f34dc3ccc [file] [log] [blame]
scroggof24f2242015-03-03 08:59:20 -08001/*
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
msarettad8bcfe2016-03-07 07:09:03 -08008#include "SkBitmap.h"
msarett74114382015-03-16 11:55:18 -07009#include "SkCodecPriv.h"
scroggof24f2242015-03-03 08:59:20 -080010#include "SkColorPriv.h"
msarettad8bcfe2016-03-07 07:09:03 -080011#include "SkColorSpace.h"
scroggof24f2242015-03-03 08:59:20 -080012#include "SkColorTable.h"
scroggof24f2242015-03-03 08:59:20 -080013#include "SkMath.h"
msarett13a91232016-02-01 08:03:29 -080014#include "SkOpts.h"
msarettbe1d5552016-01-21 09:05:23 -080015#include "SkPngCodec.h"
scroggof24f2242015-03-03 08:59:20 -080016#include "SkSize.h"
17#include "SkStream.h"
18#include "SkSwizzler.h"
scroggo565901d2015-12-10 10:44:13 -080019#include "SkTemplates.h"
bungeman5d2cd6e2016-02-23 07:34:25 -080020#include "SkUtils.h"
scroggof24f2242015-03-03 08:59:20 -080021
22///////////////////////////////////////////////////////////////////////////////
scroggof24f2242015-03-03 08:59:20 -080023// Callback functions
24///////////////////////////////////////////////////////////////////////////////
25
26static void sk_error_fn(png_structp png_ptr, png_const_charp msg) {
scroggo230d4ac2015-03-26 07:15:55 -070027 SkCodecPrintf("------ png error %s\n", msg);
scroggof24f2242015-03-03 08:59:20 -080028 longjmp(png_jmpbuf(png_ptr), 1);
29}
30
scroggo0eed6df2015-03-26 10:07:56 -070031void sk_warning_fn(png_structp, png_const_charp msg) {
32 SkCodecPrintf("----- png warning %s\n", msg);
33}
34
scroggof24f2242015-03-03 08:59:20 -080035static void sk_read_fn(png_structp png_ptr, png_bytep data,
36 png_size_t length) {
37 SkStream* stream = static_cast<SkStream*>(png_get_io_ptr(png_ptr));
38 const size_t bytes = stream->read(data, length);
39 if (bytes != length) {
40 // FIXME: We want to report the fact that the stream was truncated.
41 // One way to do that might be to pass a enum to longjmp so setjmp can
42 // specify the failure.
43 png_error(png_ptr, "Read Error!");
44 }
45}
46
scroggocf98fa92015-11-23 08:14:40 -080047#ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
48static int sk_read_user_chunk(png_structp png_ptr, png_unknown_chunkp chunk) {
49 SkPngChunkReader* chunkReader = (SkPngChunkReader*)png_get_user_chunk_ptr(png_ptr);
50 // readChunk() returning true means continue decoding
51 return chunkReader->readChunk((const char*)chunk->name, chunk->data, chunk->size) ? 1 : -1;
52}
53#endif
54
scroggof24f2242015-03-03 08:59:20 -080055///////////////////////////////////////////////////////////////////////////////
56// Helpers
57///////////////////////////////////////////////////////////////////////////////
58
59class AutoCleanPng : public SkNoncopyable {
60public:
61 AutoCleanPng(png_structp png_ptr)
62 : fPng_ptr(png_ptr)
halcanary96fcdcc2015-08-27 07:41:13 -070063 , fInfo_ptr(nullptr) {}
scroggof24f2242015-03-03 08:59:20 -080064
65 ~AutoCleanPng() {
halcanary96fcdcc2015-08-27 07:41:13 -070066 // fInfo_ptr will never be non-nullptr unless fPng_ptr is.
scroggof24f2242015-03-03 08:59:20 -080067 if (fPng_ptr) {
halcanary96fcdcc2015-08-27 07:41:13 -070068 png_infopp info_pp = fInfo_ptr ? &fInfo_ptr : nullptr;
msarett13a91232016-02-01 08:03:29 -080069 png_destroy_read_struct(&fPng_ptr, info_pp, nullptr);
scroggof24f2242015-03-03 08:59:20 -080070 }
71 }
72
73 void setInfoPtr(png_infop info_ptr) {
halcanary96fcdcc2015-08-27 07:41:13 -070074 SkASSERT(nullptr == fInfo_ptr);
scroggof24f2242015-03-03 08:59:20 -080075 fInfo_ptr = info_ptr;
76 }
77
mtklein18300a32016-03-16 13:53:35 -070078 void release() {
halcanary96fcdcc2015-08-27 07:41:13 -070079 fPng_ptr = nullptr;
80 fInfo_ptr = nullptr;
scroggof24f2242015-03-03 08:59:20 -080081 }
82
83private:
84 png_structp fPng_ptr;
85 png_infop fInfo_ptr;
86};
87#define AutoCleanPng(...) SK_REQUIRE_LOCAL_VAR(AutoCleanPng)
88
scroggof24f2242015-03-03 08:59:20 -080089// Method for coverting to either an SkPMColor or a similarly packed
90// unpremultiplied color.
91typedef uint32_t (*PackColorProc)(U8CPU a, U8CPU r, U8CPU g, U8CPU b);
92
93// Note: SkColorTable claims to store SkPMColors, which is not necessarily
94// the case here.
msarett13a91232016-02-01 08:03:29 -080095// TODO: If we add support for non-native swizzles, we'll need to handle that here.
scroggo9b2cdbf2015-07-10 12:07:02 -070096bool SkPngCodec::decodePalette(bool premultiply, int* ctableCount) {
scroggof24f2242015-03-03 08:59:20 -080097
msarett13a91232016-02-01 08:03:29 -080098 int numColors;
99 png_color* palette;
100 if (!png_get_PLTE(fPng_ptr, fInfo_ptr, &palette, &numColors)) {
scroggo05245902015-03-25 11:11:52 -0700101 return false;
scroggof24f2242015-03-03 08:59:20 -0800102 }
103
msarett13a91232016-02-01 08:03:29 -0800104 // Note: These are not necessarily SkPMColors.
105 SkPMColor colorPtr[256];
scroggof24f2242015-03-03 08:59:20 -0800106
msarett13a91232016-02-01 08:03:29 -0800107 png_bytep alphas;
108 int numColorsWithAlpha = 0;
109 if (png_get_tRNS(fPng_ptr, fInfo_ptr, &alphas, &numColorsWithAlpha, nullptr)) {
110 // Choose which function to use to create the color table. If the final destination's
111 // colortype is unpremultiplied, the color table will store unpremultiplied colors.
112 PackColorProc proc;
113 if (premultiply) {
114 proc = &SkPremultiplyARGBInline;
115 } else {
116 proc = &SkPackARGB32NoCheck;
117 }
118
119 for (int i = 0; i < numColorsWithAlpha; i++) {
120 // We don't have a function in SkOpts that combines a set of alphas with a set
121 // of RGBs. We could write one, but it's hardly worth it, given that this
122 // is such a small fraction of the total decode time.
123 colorPtr[i] = proc(alphas[i], palette->red, palette->green, palette->blue);
124 palette++;
125 }
scroggof24f2242015-03-03 08:59:20 -0800126 }
127
msarett13a91232016-02-01 08:03:29 -0800128 if (numColorsWithAlpha < numColors) {
129 // The optimized code depends on a 3-byte png_color struct with the colors
130 // in RGB order. These checks make sure it is safe to use.
131 static_assert(3 == sizeof(png_color), "png_color struct has changed. Opts are broken.");
132#ifdef SK_DEBUG
133 SkASSERT(&palette->red < &palette->green);
134 SkASSERT(&palette->green < &palette->blue);
135#endif
136
137#ifdef SK_PMCOLOR_IS_RGBA
138 SkOpts::RGB_to_RGB1(colorPtr + numColorsWithAlpha, palette, numColors - numColorsWithAlpha);
139#else
140 SkOpts::RGB_to_BGR1(colorPtr + numColorsWithAlpha, palette, numColors - numColorsWithAlpha);
141#endif
scroggof24f2242015-03-03 08:59:20 -0800142 }
143
msarett13a91232016-02-01 08:03:29 -0800144 // Pad the color table with the last color in the table (or black) in the case that
145 // invalid pixel indices exceed the number of colors in the table.
146 const int maxColors = 1 << fBitDepth;
147 if (numColors < maxColors) {
148 SkPMColor lastColor = numColors > 0 ? colorPtr[numColors - 1] : SK_ColorBLACK;
149 sk_memset32(colorPtr + numColors, lastColor, maxColors - numColors);
scroggof24f2242015-03-03 08:59:20 -0800150 }
151
msarett13a91232016-02-01 08:03:29 -0800152 // Set the new color count.
halcanary96fcdcc2015-08-27 07:41:13 -0700153 if (ctableCount != nullptr) {
msarett13a91232016-02-01 08:03:29 -0800154 *ctableCount = maxColors;
scroggof24f2242015-03-03 08:59:20 -0800155 }
156
msarett13a91232016-02-01 08:03:29 -0800157 fColorTable.reset(new SkColorTable(colorPtr, maxColors));
scroggo05245902015-03-25 11:11:52 -0700158 return true;
scroggof24f2242015-03-03 08:59:20 -0800159}
160
161///////////////////////////////////////////////////////////////////////////////
162// Creation
163///////////////////////////////////////////////////////////////////////////////
164
scroggodb30be22015-12-08 18:54:13 -0800165bool SkPngCodec::IsPng(const char* buf, size_t bytesRead) {
166 return !png_sig_cmp((png_bytep) buf, (png_size_t)0, bytesRead);
scroggof24f2242015-03-03 08:59:20 -0800167}
168
msarett6a738212016-03-04 13:27:35 -0800169static float png_fixed_point_to_float(png_fixed_point x) {
170 // We multiply by the same factor that libpng used to convert
171 // fixed point -> double. Since we want floats, we choose to
172 // do the conversion ourselves rather than convert
173 // fixed point -> double -> float.
174 return ((float) x) * 0.00001f;
175}
176
177// Returns a colorSpace object that represents any color space information in
178// the encoded data. If the encoded data contains no color space, this will
179// return NULL.
msarettad8bcfe2016-03-07 07:09:03 -0800180sk_sp<SkColorSpace> read_color_space(png_structp png_ptr, png_infop info_ptr) {
msarett6a738212016-03-04 13:27:35 -0800181
msarette2443222016-03-04 14:20:49 -0800182#if (PNG_LIBPNG_VER_MAJOR > 1) || (PNG_LIBPNG_VER_MAJOR == 1 && PNG_LIBPNG_VER_MINOR >= 6)
183
msarett6a738212016-03-04 13:27:35 -0800184 // First check for an ICC profile
185 png_bytep profile;
186 png_uint_32 length;
187 // The below variables are unused, however, we need to pass them in anyway or
188 // png_get_iCCP() will return nothing.
189 // Could knowing the |name| of the profile ever be interesting? Maybe for debugging?
190 png_charp name;
191 // The |compression| is uninteresting since:
192 // (1) libpng has already decompressed the profile for us.
193 // (2) "deflate" is the only mode of decompression that libpng supports.
194 int compression;
195 if (PNG_INFO_iCCP == png_get_iCCP(png_ptr, info_ptr, &name, &compression, &profile,
196 &length)) {
197 return SkColorSpace::NewICC(profile, length);
198 }
199
200 // Second, check for sRGB.
201 if (png_get_valid(png_ptr, info_ptr, PNG_INFO_sRGB)) {
202
203 // sRGB chunks also store a rendering intent: Absolute, Relative,
204 // Perceptual, and Saturation.
205 // FIXME (msarett): Extract this information from the sRGB chunk once
206 // we are able to handle this information in
207 // SkColorSpace.
208 return SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named);
209 }
210
211 // Next, check for chromaticities.
212 png_fixed_point XYZ[9];
213 SkFloat3x3 toXYZD50;
214 png_fixed_point gamma;
215 SkFloat3 gammas;
216 if (png_get_cHRM_XYZ_fixed(png_ptr, info_ptr, &XYZ[0], &XYZ[1], &XYZ[2], &XYZ[3], &XYZ[4],
217 &XYZ[5], &XYZ[6], &XYZ[7], &XYZ[8])) {
218
219 // FIXME (msarett): Here we are treating XYZ values as D50 even though the color
220 // temperature is unspecified. I suspect that this assumption
221 // is most often ok, but we could also calculate the color
222 // temperature (D value) and then convert the XYZ to D50. Maybe
223 // we should add a new constructor to SkColorSpace that accepts
224 // XYZ with D-Unkown?
225 for (int i = 0; i < 9; i++) {
226 toXYZD50.fMat[i] = png_fixed_point_to_float(XYZ[i]);
227 }
228
229 if (PNG_INFO_gAMA != png_get_gAMA_fixed(png_ptr, info_ptr, &gamma)) {
230
231 // If the image does not specify gamma, let's choose linear. Should we default
232 // to sRGB? Most images are intended to be sRGB (gamma = 2.2f).
233 gamma = PNG_GAMMA_LINEAR;
234 }
235 gammas.fVec[0] = gammas.fVec[1] = gammas.fVec[2] = png_fixed_point_to_float(gamma);
236
237 return SkColorSpace::NewRGB(toXYZD50, gammas);
238 }
239
240 // Last, check for gamma.
241 if (PNG_INFO_gAMA == png_get_gAMA_fixed(png_ptr, info_ptr, &gamma)) {
242
243 // Guess a default value for cHRM? Or should we just give up?
244 // Here we use the identity matrix as a default.
245 // FIXME (msarett): Should SkFloat3x3 have a method to set the identity matrix?
246 memset(toXYZD50.fMat, 0, 9 * sizeof(float));
247 toXYZD50.fMat[0] = toXYZD50.fMat[4] = toXYZD50.fMat[8] = 1.0f;
248
249 // Set the gammas.
250 gammas.fVec[0] = gammas.fVec[1] = gammas.fVec[2] = png_fixed_point_to_float(gamma);
251
252 return SkColorSpace::NewRGB(toXYZD50, gammas);
253 }
254
msarette2443222016-03-04 14:20:49 -0800255#endif // LIBPNG >= 1.6
256
msarett6a738212016-03-04 13:27:35 -0800257 // Finally, what should we do if there is no color space information in the PNG?
258 // The specification says that this indicates "gamma is unknown" and that the
259 // "color is device dependent". I'm assuming we can represent this with NULL.
260 // But should we guess sRGB? Most images are sRGB, even if they don't specify.
261 return nullptr;
262}
263
scroggocf98fa92015-11-23 08:14:40 -0800264// Reads the header and initializes the output fields, if not NULL.
265//
266// @param stream Input data. Will be read to get enough information to properly
267// setup the codec.
268// @param chunkReader SkPngChunkReader, for reading unknown chunks. May be NULL.
269// If not NULL, png_ptr will hold an *unowned* pointer to it. The caller is
270// expected to continue to own it for the lifetime of the png_ptr.
271// @param png_ptrp Optional output variable. If non-NULL, will be set to a new
272// png_structp on success.
273// @param info_ptrp Optional output variable. If non-NULL, will be set to a new
274// png_infop on success;
275// @param imageInfo Optional output variable. If non-NULL, will be set to
276// reflect the properties of the encoded image on success.
277// @param bitDepthPtr Optional output variable. If non-NULL, will be set to the
278// bit depth of the encoded image on success.
279// @param numberPassesPtr Optional output variable. If non-NULL, will be set to
280// the number_passes of the encoded image on success.
281// @return true on success, in which case the caller is responsible for calling
282// png_destroy_read_struct(png_ptrp, info_ptrp).
283// If it returns false, the passed in fields (except stream) are unchanged.
284static bool read_header(SkStream* stream, SkPngChunkReader* chunkReader,
285 png_structp* png_ptrp, png_infop* info_ptrp,
286 SkImageInfo* imageInfo, int* bitDepthPtr, int* numberPassesPtr) {
scroggof24f2242015-03-03 08:59:20 -0800287 // The image is known to be a PNG. Decode enough to know the SkImageInfo.
halcanary96fcdcc2015-08-27 07:41:13 -0700288 png_structp png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, nullptr,
scroggo0eed6df2015-03-26 10:07:56 -0700289 sk_error_fn, sk_warning_fn);
scroggof24f2242015-03-03 08:59:20 -0800290 if (!png_ptr) {
scroggo3eada2a2015-04-01 09:33:23 -0700291 return false;
scroggof24f2242015-03-03 08:59:20 -0800292 }
293
294 AutoCleanPng autoClean(png_ptr);
295
296 png_infop info_ptr = png_create_info_struct(png_ptr);
halcanary96fcdcc2015-08-27 07:41:13 -0700297 if (info_ptr == nullptr) {
scroggo3eada2a2015-04-01 09:33:23 -0700298 return false;
scroggof24f2242015-03-03 08:59:20 -0800299 }
300
301 autoClean.setInfoPtr(info_ptr);
302
303 // FIXME: Could we use the return value of setjmp to specify the type of
304 // error?
305 if (setjmp(png_jmpbuf(png_ptr))) {
scroggo3eada2a2015-04-01 09:33:23 -0700306 return false;
scroggof24f2242015-03-03 08:59:20 -0800307 }
308
309 png_set_read_fn(png_ptr, static_cast<void*>(stream), sk_read_fn);
310
scroggocf98fa92015-11-23 08:14:40 -0800311#ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
msarett133eaaa2016-01-07 11:03:25 -0800312 // Hookup our chunkReader so we can see any user-chunks the caller may be interested in.
313 // This needs to be installed before we read the png header. Android may store ninepatch
314 // chunks in the header.
scroggocf98fa92015-11-23 08:14:40 -0800315 if (chunkReader) {
316 png_set_keep_unknown_chunks(png_ptr, PNG_HANDLE_CHUNK_ALWAYS, (png_byte*)"", 0);
317 png_set_read_user_chunk_fn(png_ptr, (png_voidp) chunkReader, sk_read_user_chunk);
318 }
319#endif
scroggof24f2242015-03-03 08:59:20 -0800320
321 // The call to png_read_info() gives us all of the information from the
322 // PNG file before the first IDAT (image data chunk).
323 png_read_info(png_ptr, info_ptr);
324 png_uint_32 origWidth, origHeight;
msarett13a91232016-02-01 08:03:29 -0800325 int bitDepth, encodedColorType;
scroggof24f2242015-03-03 08:59:20 -0800326 png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth,
msarett13a91232016-02-01 08:03:29 -0800327 &encodedColorType, nullptr, nullptr, nullptr);
scroggof24f2242015-03-03 08:59:20 -0800328
scroggo6f29a3c2015-07-07 06:09:08 -0700329 if (bitDepthPtr) {
330 *bitDepthPtr = bitDepth;
331 }
332
msarett13a91232016-02-01 08:03:29 -0800333 // Tell libpng to strip 16 bit/color files down to 8 bits/color.
334 // TODO: Should we handle this in SkSwizzler? Could this also benefit
335 // RAW decodes?
scroggof24f2242015-03-03 08:59:20 -0800336 if (bitDepth == 16) {
msarett13a91232016-02-01 08:03:29 -0800337 SkASSERT(PNG_COLOR_TYPE_PALETTE != encodedColorType);
scroggof24f2242015-03-03 08:59:20 -0800338 png_set_strip_16(png_ptr);
339 }
scroggof24f2242015-03-03 08:59:20 -0800340
msarett13a91232016-02-01 08:03:29 -0800341 // Now determine the default colorType and alphaType and set the required transforms.
342 // Often, we depend on SkSwizzler to perform any transforms that we need. However, we
343 // still depend on libpng for many of the rare and PNG-specific cases.
344 SkColorType colorType = kUnknown_SkColorType;
345 SkAlphaType alphaType = kUnknown_SkAlphaType;
346 switch (encodedColorType) {
scroggof24f2242015-03-03 08:59:20 -0800347 case PNG_COLOR_TYPE_PALETTE:
msarett13a91232016-02-01 08:03:29 -0800348 // Extract multiple pixels with bit depths of 1, 2, and 4 from a single
349 // byte into separate bytes (useful for paletted and grayscale images).
350 if (bitDepth < 8) {
351 // TODO: Should we use SkSwizzler here?
352 png_set_packing(png_ptr);
353 }
354
355 colorType = kIndex_8_SkColorType;
356 // Set the alpha type depending on if a transparency chunk exists.
357 alphaType = png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) ?
scroggof24f2242015-03-03 08:59:20 -0800358 kUnpremul_SkAlphaType : kOpaque_SkAlphaType;
359 break;
scroggo6f29a3c2015-07-07 06:09:08 -0700360 case PNG_COLOR_TYPE_RGB:
msarett13a91232016-02-01 08:03:29 -0800361 if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) {
362 // Convert to RGBA if transparency chunk exists.
scroggo6f29a3c2015-07-07 06:09:08 -0700363 png_set_tRNS_to_alpha(png_ptr);
msarett13a91232016-02-01 08:03:29 -0800364 alphaType = kUnpremul_SkAlphaType;
jvanverth6c90e092015-07-02 10:35:25 -0700365 } else {
msarett13a91232016-02-01 08:03:29 -0800366 alphaType = kOpaque_SkAlphaType;
jvanverth6c90e092015-07-02 10:35:25 -0700367 }
msarett13a91232016-02-01 08:03:29 -0800368 colorType = kN32_SkColorType;
jvanverth6c90e092015-07-02 10:35:25 -0700369 break;
scroggo6f29a3c2015-07-07 06:09:08 -0700370 case PNG_COLOR_TYPE_GRAY:
msarett13a91232016-02-01 08:03:29 -0800371 // Expand grayscale images to the full 8 bits from 1, 2, or 4 bits/pixel.
372 if (bitDepth < 8) {
373 // TODO: Should we use SkSwizzler here?
374 png_set_expand_gray_1_2_4_to_8(png_ptr);
375 }
376
377 if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) {
scroggo6f29a3c2015-07-07 06:09:08 -0700378 png_set_tRNS_to_alpha(png_ptr);
msarett93e613d2016-02-03 10:44:46 -0800379
380 // We will recommend kN32 here since we do not support kGray
381 // with alpha.
msarett13a91232016-02-01 08:03:29 -0800382 colorType = kN32_SkColorType;
383 alphaType = kUnpremul_SkAlphaType;
scroggo6f29a3c2015-07-07 06:09:08 -0700384 } else {
msarett13a91232016-02-01 08:03:29 -0800385 colorType = kGray_8_SkColorType;
386 alphaType = kOpaque_SkAlphaType;
scroggo6f29a3c2015-07-07 06:09:08 -0700387 }
388 break;
389 case PNG_COLOR_TYPE_GRAY_ALPHA:
msarett93e613d2016-02-03 10:44:46 -0800390 // We will recommend kN32 here since we do not support anything
391 // similar to GRAY_ALPHA.
msarett13a91232016-02-01 08:03:29 -0800392 colorType = kN32_SkColorType;
393 alphaType = kUnpremul_SkAlphaType;
scroggo6f29a3c2015-07-07 06:09:08 -0700394 break;
395 case PNG_COLOR_TYPE_RGBA:
msarett13a91232016-02-01 08:03:29 -0800396 colorType = kN32_SkColorType;
397 alphaType = kUnpremul_SkAlphaType;
scroggo6f29a3c2015-07-07 06:09:08 -0700398 break;
399 default:
msarett13a91232016-02-01 08:03:29 -0800400 // All the color types have been covered above.
scroggo6f29a3c2015-07-07 06:09:08 -0700401 SkASSERT(false);
scroggof24f2242015-03-03 08:59:20 -0800402 }
403
scroggo46c57472015-09-30 08:57:13 -0700404 int numberPasses = png_set_interlace_handling(png_ptr);
405 if (numberPassesPtr) {
406 *numberPassesPtr = numberPasses;
407 }
408
msaretta87d6de2016-02-04 15:37:58 -0800409 SkColorProfileType profileType = kLinear_SkColorProfileType;
410 if (png_get_valid(png_ptr, info_ptr, PNG_INFO_sRGB)) {
411 profileType = kSRGB_SkColorProfileType;
412 }
scroggof24f2242015-03-03 08:59:20 -0800413
scroggo3eada2a2015-04-01 09:33:23 -0700414 if (imageInfo) {
msaretta87d6de2016-02-04 15:37:58 -0800415 *imageInfo = SkImageInfo::Make(origWidth, origHeight, colorType, alphaType, profileType);
scroggo3eada2a2015-04-01 09:33:23 -0700416 }
mtklein18300a32016-03-16 13:53:35 -0700417 autoClean.release();
scroggo3eada2a2015-04-01 09:33:23 -0700418 if (png_ptrp) {
419 *png_ptrp = png_ptr;
420 }
421 if (info_ptrp) {
422 *info_ptrp = info_ptr;
423 }
scroggo6f29a3c2015-07-07 06:09:08 -0700424
scroggo3eada2a2015-04-01 09:33:23 -0700425 return true;
426}
427
scroggocf98fa92015-11-23 08:14:40 -0800428SkPngCodec::SkPngCodec(const SkImageInfo& info, SkStream* stream, SkPngChunkReader* chunkReader,
msarett6a738212016-03-04 13:27:35 -0800429 png_structp png_ptr, png_infop info_ptr, int bitDepth, int numberPasses,
msarettad8bcfe2016-03-07 07:09:03 -0800430 sk_sp<SkColorSpace> colorSpace)
msarett6a738212016-03-04 13:27:35 -0800431 : INHERITED(info, stream, colorSpace)
scroggocf98fa92015-11-23 08:14:40 -0800432 , fPngChunkReader(SkSafeRef(chunkReader))
scroggof24f2242015-03-03 08:59:20 -0800433 , fPng_ptr(png_ptr)
scroggo05245902015-03-25 11:11:52 -0700434 , fInfo_ptr(info_ptr)
435 , fSrcConfig(SkSwizzler::kUnknown)
scroggo46c57472015-09-30 08:57:13 -0700436 , fNumberPasses(numberPasses)
scroggo6f29a3c2015-07-07 06:09:08 -0700437 , fBitDepth(bitDepth)
msaretta4970dc2016-01-11 07:23:23 -0800438{}
scroggof24f2242015-03-03 08:59:20 -0800439
440SkPngCodec::~SkPngCodec() {
scroggo3eada2a2015-04-01 09:33:23 -0700441 this->destroyReadStruct();
442}
443
444void SkPngCodec::destroyReadStruct() {
445 if (fPng_ptr) {
halcanary96fcdcc2015-08-27 07:41:13 -0700446 // We will never have a nullptr fInfo_ptr with a non-nullptr fPng_ptr
scroggo3eada2a2015-04-01 09:33:23 -0700447 SkASSERT(fInfo_ptr);
msarett13a91232016-02-01 08:03:29 -0800448 png_destroy_read_struct(&fPng_ptr, &fInfo_ptr, nullptr);
halcanary96fcdcc2015-08-27 07:41:13 -0700449 fPng_ptr = nullptr;
450 fInfo_ptr = nullptr;
scroggo3eada2a2015-04-01 09:33:23 -0700451 }
scroggof24f2242015-03-03 08:59:20 -0800452}
453
454///////////////////////////////////////////////////////////////////////////////
455// Getting the pixels
456///////////////////////////////////////////////////////////////////////////////
457
scroggo05245902015-03-25 11:11:52 -0700458SkCodec::Result SkPngCodec::initializeSwizzler(const SkImageInfo& requestedInfo,
msarett438b2ad2015-04-09 12:43:10 -0700459 const Options& options,
msarett9e43cab2015-04-29 07:38:43 -0700460 SkPMColor ctable[],
msarett438b2ad2015-04-09 12:43:10 -0700461 int* ctableCount) {
scroggof24f2242015-03-03 08:59:20 -0800462 // FIXME: Could we use the return value of setjmp to specify the type of
463 // error?
464 if (setjmp(png_jmpbuf(fPng_ptr))) {
scroggo230d4ac2015-03-26 07:15:55 -0700465 SkCodecPrintf("setjmp long jump!\n");
scroggof24f2242015-03-03 08:59:20 -0800466 return kInvalidInput;
467 }
mtklein372d65c2016-01-27 13:01:41 -0800468 png_read_update_info(fPng_ptr, fInfo_ptr);
scroggof24f2242015-03-03 08:59:20 -0800469
msarett93e613d2016-02-03 10:44:46 -0800470 // suggestedColorType was determined in read_header() based on the encodedColorType
471 const SkColorType suggestedColorType = this->getInfo().colorType();
scroggo6f29a3c2015-07-07 06:09:08 -0700472
msarett93e613d2016-02-03 10:44:46 -0800473 switch (suggestedColorType) {
scroggo6f29a3c2015-07-07 06:09:08 -0700474 case kIndex_8_SkColorType:
475 //decode palette to Skia format
476 fSrcConfig = SkSwizzler::kIndex;
scroggo9b2cdbf2015-07-10 12:07:02 -0700477 if (!this->decodePalette(kPremul_SkAlphaType == requestedInfo.alphaType(),
scroggo6f29a3c2015-07-07 06:09:08 -0700478 ctableCount)) {
479 return kInvalidInput;
480 }
481 break;
482 case kGray_8_SkColorType:
483 fSrcConfig = SkSwizzler::kGray;
mtklein372d65c2016-01-27 13:01:41 -0800484 break;
msarett93e613d2016-02-03 10:44:46 -0800485 case kN32_SkColorType: {
486 const uint8_t encodedColorType = png_get_color_type(fPng_ptr, fInfo_ptr);
487 if (PNG_COLOR_TYPE_GRAY_ALPHA == encodedColorType ||
488 PNG_COLOR_TYPE_GRAY == encodedColorType) {
489 // If encodedColorType is GRAY, there must be a transparent chunk.
490 // Otherwise, suggestedColorType would be kGray. We have already
491 // instructed libpng to convert the transparent chunk to alpha,
492 // so we can treat both GRAY and GRAY_ALPHA as kGrayAlpha.
493 SkASSERT(encodedColorType == PNG_COLOR_TYPE_GRAY_ALPHA ||
494 png_get_valid(fPng_ptr, fInfo_ptr, PNG_INFO_tRNS));
495
496 fSrcConfig = SkSwizzler::kGrayAlpha;
497 } else {
498 if (this->getInfo().alphaType() == kOpaque_SkAlphaType) {
msarettbda86092016-01-19 10:40:12 -0800499 fSrcConfig = SkSwizzler::kRGB;
scroggo6f29a3c2015-07-07 06:09:08 -0700500 } else {
501 fSrcConfig = SkSwizzler::kRGBA;
msarett93e613d2016-02-03 10:44:46 -0800502 }
scroggo6f29a3c2015-07-07 06:09:08 -0700503 }
504 break;
msarett93e613d2016-02-03 10:44:46 -0800505 }
scroggo6f29a3c2015-07-07 06:09:08 -0700506 default:
msarett13a91232016-02-01 08:03:29 -0800507 // We will always recommend one of the above colorTypes.
scroggo6f29a3c2015-07-07 06:09:08 -0700508 SkASSERT(false);
mtklein372d65c2016-01-27 13:01:41 -0800509 }
msarett9e43cab2015-04-29 07:38:43 -0700510
511 // Copy the color table to the client if they request kIndex8 mode
512 copy_color_table(requestedInfo, fColorTable, ctable, ctableCount);
513
514 // Create the swizzler. SkPngCodec retains ownership of the color table.
msarett99f567e2015-08-05 12:58:26 -0700515 const SkPMColor* colors = get_color_ptr(fColorTable.get());
msarettfdb47572015-10-13 12:50:14 -0700516 fSwizzler.reset(SkSwizzler::CreateSwizzler(fSrcConfig, colors, requestedInfo, options));
msarett13a91232016-02-01 08:03:29 -0800517 SkASSERT(fSwizzler);
518
scroggo05245902015-03-25 11:11:52 -0700519 return kSuccess;
520}
521
scroggo6f29a3c2015-07-07 06:09:08 -0700522
scroggob427db12015-08-12 07:24:13 -0700523bool SkPngCodec::onRewind() {
halcanary96fcdcc2015-08-27 07:41:13 -0700524 // This sets fPng_ptr and fInfo_ptr to nullptr. If read_header
scroggob427db12015-08-12 07:24:13 -0700525 // succeeds, they will be repopulated, and if it fails, they will
halcanary96fcdcc2015-08-27 07:41:13 -0700526 // remain nullptr. Any future accesses to fPng_ptr and fInfo_ptr will
scroggob427db12015-08-12 07:24:13 -0700527 // come through this function which will rewind and again attempt
528 // to reinitialize them.
529 this->destroyReadStruct();
530
531 png_structp png_ptr;
532 png_infop info_ptr;
scroggocf98fa92015-11-23 08:14:40 -0800533 if (!read_header(this->stream(), fPngChunkReader.get(), &png_ptr, &info_ptr,
534 nullptr, nullptr, nullptr)) {
scroggob427db12015-08-12 07:24:13 -0700535 return false;
scroggo58421542015-04-01 11:25:20 -0700536 }
scroggob427db12015-08-12 07:24:13 -0700537
538 fPng_ptr = png_ptr;
539 fInfo_ptr = info_ptr;
540 return true;
scroggo58421542015-04-01 11:25:20 -0700541}
542
scroggo05245902015-03-25 11:11:52 -0700543SkCodec::Result SkPngCodec::onGetPixels(const SkImageInfo& requestedInfo, void* dst,
msarett614aa072015-07-27 15:13:17 -0700544 size_t dstRowBytes, const Options& options,
msarette6dd0042015-10-09 11:07:34 -0700545 SkPMColor ctable[], int* ctableCount,
546 int* rowsDecoded) {
scroggo6f29a3c2015-07-07 06:09:08 -0700547 if (!conversion_possible(requestedInfo, this->getInfo())) {
548 return kInvalidConversion;
549 }
scroggob636b452015-07-22 07:16:20 -0700550 if (options.fSubset) {
551 // Subsets are not supported.
552 return kUnimplemented;
553 }
scroggo05245902015-03-25 11:11:52 -0700554
msarett9e43cab2015-04-29 07:38:43 -0700555 // Note that ctable and ctableCount may be modified if there is a color table
msarettfdb47572015-10-13 12:50:14 -0700556 const Result result = this->initializeSwizzler(requestedInfo, options, ctable, ctableCount);
scroggo05245902015-03-25 11:11:52 -0700557 if (result != kSuccess) {
558 return result;
559 }
msarett60dcd3c2016-02-05 15:13:12 -0800560
561 const int width = requestedInfo.width();
562 const int height = requestedInfo.height();
563 const int bpp = SkSwizzler::BytesPerPixel(fSrcConfig);
564 const size_t srcRowBytes = width * bpp;
565
scroggo05245902015-03-25 11:11:52 -0700566 // FIXME: Could we use the return value of setjmp to specify the type of
567 // error?
msarette6dd0042015-10-09 11:07:34 -0700568 int row = 0;
569 // This must be declared above the call to setjmp to avoid memory leaks on incomplete images.
scroggo565901d2015-12-10 10:44:13 -0800570 SkAutoTMalloc<uint8_t> storage;
scroggo05245902015-03-25 11:11:52 -0700571 if (setjmp(png_jmpbuf(fPng_ptr))) {
msarette6dd0042015-10-09 11:07:34 -0700572 // Assume that any error that occurs while reading rows is caused by an incomplete input.
573 if (fNumberPasses > 1) {
574 // FIXME (msarett): Handle incomplete interlaced pngs.
msarett60dcd3c2016-02-05 15:13:12 -0800575 return (row == height) ? kSuccess : kInvalidInput;
msarette6dd0042015-10-09 11:07:34 -0700576 }
577 // FIXME: We do a poor job on incomplete pngs compared to other decoders (ex: Chromium,
578 // Ubuntu Image Viewer). This is because we use the default buffer size in libpng (8192
579 // bytes), and if we can't fill the buffer, we immediately fail.
580 // For example, if we try to read 8192 bytes, and the image (incorrectly) only contains
581 // half that, which may have been enough to contain a non-zero number of lines, we fail
582 // when we could have decoded a few more lines and then failed.
583 // The read function that we provide for libpng has no way of indicating that we have
584 // made a partial read.
585 // Making our buffer size smaller improves our incomplete decodes, but what impact does
586 // it have on regular decode performance? Should we investigate using a different API
msarett60dcd3c2016-02-05 15:13:12 -0800587 // instead of png_read_row? Chromium uses png_process_data.
msarette6dd0042015-10-09 11:07:34 -0700588 *rowsDecoded = row;
msarett60dcd3c2016-02-05 15:13:12 -0800589 return (row == height) ? kSuccess : kIncompleteInput;
scroggo05245902015-03-25 11:11:52 -0700590 }
591
scroggo46c57472015-09-30 08:57:13 -0700592 // FIXME: We could split these out based on subclass.
msarett614aa072015-07-27 15:13:17 -0700593 void* dstRow = dst;
scroggo05245902015-03-25 11:11:52 -0700594 if (fNumberPasses > 1) {
msarett60dcd3c2016-02-05 15:13:12 -0800595 storage.reset(height * srcRowBytes);
scroggo565901d2015-12-10 10:44:13 -0800596 uint8_t* const base = storage.get();
scroggof24f2242015-03-03 08:59:20 -0800597
scroggo05245902015-03-25 11:11:52 -0700598 for (int i = 0; i < fNumberPasses; i++) {
msarett614aa072015-07-27 15:13:17 -0700599 uint8_t* srcRow = base;
scroggof24f2242015-03-03 08:59:20 -0800600 for (int y = 0; y < height; y++) {
msarett60dcd3c2016-02-05 15:13:12 -0800601 png_read_row(fPng_ptr, srcRow, nullptr);
msarett614aa072015-07-27 15:13:17 -0700602 srcRow += srcRowBytes;
scroggof24f2242015-03-03 08:59:20 -0800603 }
604 }
605
606 // Now swizzle it.
msarett614aa072015-07-27 15:13:17 -0700607 uint8_t* srcRow = base;
msarett60dcd3c2016-02-05 15:13:12 -0800608 for (; row < height; row++) {
msaretta4970dc2016-01-11 07:23:23 -0800609 fSwizzler->swizzle(dstRow, srcRow);
msarett614aa072015-07-27 15:13:17 -0700610 dstRow = SkTAddOffset<void>(dstRow, dstRowBytes);
611 srcRow += srcRowBytes;
scroggof24f2242015-03-03 08:59:20 -0800612 }
613 } else {
msarett60dcd3c2016-02-05 15:13:12 -0800614 storage.reset(srcRowBytes);
scroggo565901d2015-12-10 10:44:13 -0800615 uint8_t* srcRow = storage.get();
msarett60dcd3c2016-02-05 15:13:12 -0800616 for (; row < height; row++) {
617 png_read_row(fPng_ptr, srcRow, nullptr);
msaretta4970dc2016-01-11 07:23:23 -0800618 fSwizzler->swizzle(dstRow, srcRow);
msarett614aa072015-07-27 15:13:17 -0700619 dstRow = SkTAddOffset<void>(dstRow, dstRowBytes);
scroggof24f2242015-03-03 08:59:20 -0800620 }
621 }
622
emmaleer973ae862015-07-20 13:38:44 -0700623 // read rest of file, and get additional comment and time chunks in info_ptr
scroggo05245902015-03-25 11:11:52 -0700624 png_read_end(fPng_ptr, fInfo_ptr);
scroggo46c57472015-09-30 08:57:13 -0700625
emmaleer973ae862015-07-20 13:38:44 -0700626 return kSuccess;
scroggo05245902015-03-25 11:11:52 -0700627}
628
scroggoc5560be2016-02-03 09:42:42 -0800629uint32_t SkPngCodec::onGetFillValue(SkColorType colorType) const {
msarette6dd0042015-10-09 11:07:34 -0700630 const SkPMColor* colorPtr = get_color_ptr(fColorTable.get());
631 if (colorPtr) {
632 return get_color_table_fill_value(colorType, colorPtr, 0);
633 }
scroggoc5560be2016-02-03 09:42:42 -0800634 return INHERITED::onGetFillValue(colorType);
msarette6dd0042015-10-09 11:07:34 -0700635}
636
scroggo46c57472015-09-30 08:57:13 -0700637// Subclass of SkPngCodec which supports scanline decoding
638class SkPngScanlineDecoder : public SkPngCodec {
scroggo05245902015-03-25 11:11:52 -0700639public:
scroggo46c57472015-09-30 08:57:13 -0700640 SkPngScanlineDecoder(const SkImageInfo& srcInfo, SkStream* stream,
msarett6a738212016-03-04 13:27:35 -0800641 SkPngChunkReader* chunkReader, png_structp png_ptr, png_infop info_ptr, int bitDepth,
msarettad8bcfe2016-03-07 07:09:03 -0800642 sk_sp<SkColorSpace> colorSpace)
msarett6a738212016-03-04 13:27:35 -0800643 : INHERITED(srcInfo, stream, chunkReader, png_ptr, info_ptr, bitDepth, 1, colorSpace)
msarettf724b992015-10-15 06:41:06 -0700644 , fSrcRow(nullptr)
scroggo1c005e42015-08-04 09:24:45 -0700645 {}
646
scroggo46c57472015-09-30 08:57:13 -0700647 Result onStartScanlineDecode(const SkImageInfo& dstInfo, const Options& options,
648 SkPMColor ctable[], int* ctableCount) override {
scroggo1c005e42015-08-04 09:24:45 -0700649 if (!conversion_possible(dstInfo, this->getInfo())) {
scroggo46c57472015-09-30 08:57:13 -0700650 return kInvalidConversion;
scroggo1c005e42015-08-04 09:24:45 -0700651 }
652
scroggo46c57472015-09-30 08:57:13 -0700653 const Result result = this->initializeSwizzler(dstInfo, options, ctable,
654 ctableCount);
655 if (result != kSuccess) {
scroggo1c005e42015-08-04 09:24:45 -0700656 return result;
657 }
658
scroggo46c57472015-09-30 08:57:13 -0700659 fStorage.reset(this->getInfo().width() * SkSwizzler::BytesPerPixel(this->srcConfig()));
scroggo565901d2015-12-10 10:44:13 -0800660 fSrcRow = fStorage.get();
scroggo1c005e42015-08-04 09:24:45 -0700661
scroggo46c57472015-09-30 08:57:13 -0700662 return kSuccess;
scroggo05245902015-03-25 11:11:52 -0700663 }
664
msarette6dd0042015-10-09 11:07:34 -0700665 int onGetScanlines(void* dst, int count, size_t rowBytes) override {
666 // Assume that an error in libpng indicates an incomplete input.
667 int row = 0;
scroggo46c57472015-09-30 08:57:13 -0700668 if (setjmp(png_jmpbuf(this->png_ptr()))) {
scroggo230d4ac2015-03-26 07:15:55 -0700669 SkCodecPrintf("setjmp long jump!\n");
msarette6dd0042015-10-09 11:07:34 -0700670 return row;
scroggo05245902015-03-25 11:11:52 -0700671 }
672
msarett614aa072015-07-27 15:13:17 -0700673 void* dstRow = dst;
msarette6dd0042015-10-09 11:07:34 -0700674 for (; row < count; row++) {
msarett60dcd3c2016-02-05 15:13:12 -0800675 png_read_row(this->png_ptr(), fSrcRow, nullptr);
msaretta4970dc2016-01-11 07:23:23 -0800676 this->swizzler()->swizzle(dstRow, fSrcRow);
msarett614aa072015-07-27 15:13:17 -0700677 dstRow = SkTAddOffset<void>(dstRow, rowBytes);
scroggo05245902015-03-25 11:11:52 -0700678 }
scroggo46c57472015-09-30 08:57:13 -0700679
msarette6dd0042015-10-09 11:07:34 -0700680 return row;
scroggo05245902015-03-25 11:11:52 -0700681 }
682
msarette6dd0042015-10-09 11:07:34 -0700683 bool onSkipScanlines(int count) override {
684 // Assume that an error in libpng indicates an incomplete input.
scroggo46c57472015-09-30 08:57:13 -0700685 if (setjmp(png_jmpbuf(this->png_ptr()))) {
scroggo230d4ac2015-03-26 07:15:55 -0700686 SkCodecPrintf("setjmp long jump!\n");
msarette6dd0042015-10-09 11:07:34 -0700687 return false;
scroggo05245902015-03-25 11:11:52 -0700688 }
msarett60dcd3c2016-02-05 15:13:12 -0800689
msarette6dd0042015-10-09 11:07:34 -0700690 for (int row = 0; row < count; row++) {
msarett60dcd3c2016-02-05 15:13:12 -0800691 png_read_row(this->png_ptr(), fSrcRow, nullptr);
emmaleer7dc91902015-05-27 08:49:04 -0700692 }
msarette6dd0042015-10-09 11:07:34 -0700693 return true;
scroggo05245902015-03-25 11:11:52 -0700694 }
695
scroggo05245902015-03-25 11:11:52 -0700696private:
scroggo565901d2015-12-10 10:44:13 -0800697 SkAutoTMalloc<uint8_t> fStorage;
scroggo9b2cdbf2015-07-10 12:07:02 -0700698 uint8_t* fSrcRow;
scroggo05245902015-03-25 11:11:52 -0700699
scroggo46c57472015-09-30 08:57:13 -0700700 typedef SkPngCodec INHERITED;
scroggo05245902015-03-25 11:11:52 -0700701};
702
emmaleer0a4c3cb2015-06-22 10:40:21 -0700703
scroggo46c57472015-09-30 08:57:13 -0700704class SkPngInterlacedScanlineDecoder : public SkPngCodec {
emmaleer0a4c3cb2015-06-22 10:40:21 -0700705public:
scroggo46c57472015-09-30 08:57:13 -0700706 SkPngInterlacedScanlineDecoder(const SkImageInfo& srcInfo, SkStream* stream,
scroggocf98fa92015-11-23 08:14:40 -0800707 SkPngChunkReader* chunkReader, png_structp png_ptr, png_infop info_ptr,
msarettad8bcfe2016-03-07 07:09:03 -0800708 int bitDepth, int numberPasses, sk_sp<SkColorSpace> colorSpace)
msarett6a738212016-03-04 13:27:35 -0800709 : INHERITED(srcInfo, stream, chunkReader, png_ptr, info_ptr, bitDepth, numberPasses,
710 colorSpace)
scroggo46c57472015-09-30 08:57:13 -0700711 , fHeight(-1)
scroggo1c005e42015-08-04 09:24:45 -0700712 , fCanSkipRewind(false)
scroggo1c005e42015-08-04 09:24:45 -0700713 {
scroggo46c57472015-09-30 08:57:13 -0700714 SkASSERT(numberPasses != 1);
715 }
716
717 Result onStartScanlineDecode(const SkImageInfo& dstInfo, const Options& options,
msarettfdb47572015-10-13 12:50:14 -0700718 SkPMColor ctable[], int* ctableCount) override {
scroggo1c005e42015-08-04 09:24:45 -0700719 if (!conversion_possible(dstInfo, this->getInfo())) {
mtklein372d65c2016-01-27 13:01:41 -0800720 return kInvalidConversion;
scroggo1c005e42015-08-04 09:24:45 -0700721 }
722
msarettfdb47572015-10-13 12:50:14 -0700723 const Result result = this->initializeSwizzler(dstInfo, options, ctable,
724 ctableCount);
725 if (result != kSuccess) {
scroggo1c005e42015-08-04 09:24:45 -0700726 return result;
727 }
728
scroggo1c005e42015-08-04 09:24:45 -0700729 fHeight = dstInfo.height();
scroggo46c57472015-09-30 08:57:13 -0700730 // FIXME: This need not be called on a second call to onStartScanlineDecode.
731 fSrcRowBytes = this->getInfo().width() * SkSwizzler::BytesPerPixel(this->srcConfig());
scroggo1c005e42015-08-04 09:24:45 -0700732 fGarbageRow.reset(fSrcRowBytes);
733 fGarbageRowPtr = static_cast<uint8_t*>(fGarbageRow.get());
734 fCanSkipRewind = true;
735
736 return SkCodec::kSuccess;
737 }
738
msarette6dd0042015-10-09 11:07:34 -0700739 int onGetScanlines(void* dst, int count, size_t dstRowBytes) override {
scroggo1c005e42015-08-04 09:24:45 -0700740 // rewind stream if have previously called onGetScanlines,
741 // since we need entire progressive image to get scanlines
742 if (fCanSkipRewind) {
scroggo46c57472015-09-30 08:57:13 -0700743 // We already rewound in onStartScanlineDecode, so there is no reason to rewind.
scroggo1c005e42015-08-04 09:24:45 -0700744 // Next time onGetScanlines is called, we will need to rewind.
745 fCanSkipRewind = false;
scroggo46c57472015-09-30 08:57:13 -0700746 } else {
747 // rewindIfNeeded resets fCurrScanline, since it assumes that start
748 // needs to be called again before scanline decoding. PNG scanline
749 // decoding is the exception, since it needs to rewind between
750 // calls to getScanlines. Keep track of fCurrScanline, to undo the
751 // reset.
msarette6dd0042015-10-09 11:07:34 -0700752 const int currScanline = this->nextScanline();
scroggo46c57472015-09-30 08:57:13 -0700753 // This method would never be called if currScanline is -1
754 SkASSERT(currScanline != -1);
755
756 if (!this->rewindIfNeeded()) {
757 return kCouldNotRewind;
758 }
msarettcb0d5c92015-12-03 12:23:43 -0800759 this->updateCurrScanline(currScanline);
scroggo1c005e42015-08-04 09:24:45 -0700760 }
761
scroggo46c57472015-09-30 08:57:13 -0700762 if (setjmp(png_jmpbuf(this->png_ptr()))) {
emmaleer0a4c3cb2015-06-22 10:40:21 -0700763 SkCodecPrintf("setjmp long jump!\n");
msarette6dd0042015-10-09 11:07:34 -0700764 // FIXME (msarett): Returning 0 is pessimistic. If we can complete a single pass,
765 // we may be able to report that all of the memory has been initialized. Even if we
766 // fail on the first pass, we can still report than some scanlines are initialized.
767 return 0;
emmaleer0a4c3cb2015-06-22 10:40:21 -0700768 }
scroggo565901d2015-12-10 10:44:13 -0800769 SkAutoTMalloc<uint8_t> storage(count * fSrcRowBytes);
770 uint8_t* storagePtr = storage.get();
emmaleer0a4c3cb2015-06-22 10:40:21 -0700771 uint8_t* srcRow;
msarette6dd0042015-10-09 11:07:34 -0700772 const int startRow = this->nextScanline();
scroggo46c57472015-09-30 08:57:13 -0700773 for (int i = 0; i < this->numberPasses(); i++) {
774 // read rows we planned to skip into garbage row
775 for (int y = 0; y < startRow; y++){
msarett60dcd3c2016-02-05 15:13:12 -0800776 png_read_row(this->png_ptr(), fGarbageRowPtr, nullptr);
emmaleer0a4c3cb2015-06-22 10:40:21 -0700777 }
scroggo46c57472015-09-30 08:57:13 -0700778 // read rows we care about into buffer
emmaleer0a4c3cb2015-06-22 10:40:21 -0700779 srcRow = storagePtr;
780 for (int y = 0; y < count; y++) {
msarett60dcd3c2016-02-05 15:13:12 -0800781 png_read_row(this->png_ptr(), srcRow, nullptr);
emmaleer0a4c3cb2015-06-22 10:40:21 -0700782 srcRow += fSrcRowBytes;
783 }
scroggo46c57472015-09-30 08:57:13 -0700784 // read rows we don't want into garbage buffer
785 for (int y = 0; y < fHeight - startRow - count; y++) {
msarett60dcd3c2016-02-05 15:13:12 -0800786 png_read_row(this->png_ptr(), fGarbageRowPtr, nullptr);
emmaleer0a4c3cb2015-06-22 10:40:21 -0700787 }
788 }
789 //swizzle the rows we care about
790 srcRow = storagePtr;
msarett614aa072015-07-27 15:13:17 -0700791 void* dstRow = dst;
emmaleer0a4c3cb2015-06-22 10:40:21 -0700792 for (int y = 0; y < count; y++) {
msaretta4970dc2016-01-11 07:23:23 -0800793 this->swizzler()->swizzle(dstRow, srcRow);
msarett614aa072015-07-27 15:13:17 -0700794 dstRow = SkTAddOffset<void>(dstRow, dstRowBytes);
emmaleer0a4c3cb2015-06-22 10:40:21 -0700795 srcRow += fSrcRowBytes;
796 }
scroggo46c57472015-09-30 08:57:13 -0700797
msarette6dd0042015-10-09 11:07:34 -0700798 return count;
emmaleer0a4c3cb2015-06-22 10:40:21 -0700799 }
800
msarette6dd0042015-10-09 11:07:34 -0700801 bool onSkipScanlines(int count) override {
scroggo46c57472015-09-30 08:57:13 -0700802 // The non-virtual version will update fCurrScanline.
msarette6dd0042015-10-09 11:07:34 -0700803 return true;
emmaleer0a4c3cb2015-06-22 10:40:21 -0700804 }
805
msarett5406d6f2015-08-31 06:55:13 -0700806 SkScanlineOrder onGetScanlineOrder() const override {
807 return kNone_SkScanlineOrder;
emmaleer8f4ba762015-08-14 07:44:46 -0700808 }
809
emmaleer0a4c3cb2015-06-22 10:40:21 -0700810private:
scroggo9b2cdbf2015-07-10 12:07:02 -0700811 int fHeight;
812 size_t fSrcRowBytes;
813 SkAutoMalloc fGarbageRow;
814 uint8_t* fGarbageRowPtr;
scroggo1c005e42015-08-04 09:24:45 -0700815 // FIXME: This imitates behavior in SkCodec::rewindIfNeeded. That function
816 // is called whenever some action is taken that reads the stream and
817 // therefore the next call will require a rewind. So it modifies a boolean
818 // to note that the *next* time it is called a rewind is needed.
scroggo46c57472015-09-30 08:57:13 -0700819 // SkPngInterlacedScanlineDecoder has an extra wrinkle - calling
820 // onStartScanlineDecode followed by onGetScanlines does *not* require a
821 // rewind. Since rewindIfNeeded does not have this flexibility, we need to
822 // add another layer.
scroggo1c005e42015-08-04 09:24:45 -0700823 bool fCanSkipRewind;
emmaleer0a4c3cb2015-06-22 10:40:21 -0700824
scroggo46c57472015-09-30 08:57:13 -0700825 typedef SkPngCodec INHERITED;
emmaleer0a4c3cb2015-06-22 10:40:21 -0700826};
827
scroggocf98fa92015-11-23 08:14:40 -0800828SkCodec* SkPngCodec::NewFromStream(SkStream* stream, SkPngChunkReader* chunkReader) {
scroggo46c57472015-09-30 08:57:13 -0700829 SkAutoTDelete<SkStream> streamDeleter(stream);
830 png_structp png_ptr;
831 png_infop info_ptr;
832 SkImageInfo imageInfo;
833 int bitDepth;
834 int numberPasses;
835
scroggocf98fa92015-11-23 08:14:40 -0800836 if (!read_header(stream, chunkReader, &png_ptr, &info_ptr, &imageInfo, &bitDepth,
837 &numberPasses)) {
halcanary96fcdcc2015-08-27 07:41:13 -0700838 return nullptr;
scroggo05245902015-03-25 11:11:52 -0700839 }
840
msarettad8bcfe2016-03-07 07:09:03 -0800841 auto colorSpace = read_color_space(png_ptr, info_ptr);
msarett6a738212016-03-04 13:27:35 -0800842
scroggo46c57472015-09-30 08:57:13 -0700843 if (1 == numberPasses) {
mtklein18300a32016-03-16 13:53:35 -0700844 return new SkPngScanlineDecoder(imageInfo, streamDeleter.release(), chunkReader,
msarett6a738212016-03-04 13:27:35 -0800845 png_ptr, info_ptr, bitDepth, colorSpace);
scroggo05245902015-03-25 11:11:52 -0700846 }
847
mtklein18300a32016-03-16 13:53:35 -0700848 return new SkPngInterlacedScanlineDecoder(imageInfo, streamDeleter.release(), chunkReader,
msarett6a738212016-03-04 13:27:35 -0800849 png_ptr, info_ptr, bitDepth, numberPasses,
850 colorSpace);
scroggo05245902015-03-25 11:11:52 -0700851}