blob: 23f7bee0cfed33cd0f4c7c45caaca4f4e1d7aa5c [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
msarett74114382015-03-16 11:55:18 -07008#include "SkCodecPriv.h"
scroggof24f2242015-03-03 08:59:20 -08009#include "SkColorPriv.h"
10#include "SkColorTable.h"
11#include "SkBitmap.h"
12#include "SkMath.h"
msarett13a91232016-02-01 08:03:29 -080013#include "SkOpts.h"
msarettbe1d5552016-01-21 09:05:23 -080014#include "SkPngCodec.h"
scroggof24f2242015-03-03 08:59:20 -080015#include "SkSize.h"
16#include "SkStream.h"
17#include "SkSwizzler.h"
scroggo565901d2015-12-10 10:44:13 -080018#include "SkTemplates.h"
bungeman5d2cd6e2016-02-23 07:34:25 -080019#include "SkUtils.h"
scroggof24f2242015-03-03 08:59:20 -080020
21///////////////////////////////////////////////////////////////////////////////
scroggof24f2242015-03-03 08:59:20 -080022// Callback functions
23///////////////////////////////////////////////////////////////////////////////
24
25static void sk_error_fn(png_structp png_ptr, png_const_charp msg) {
scroggo230d4ac2015-03-26 07:15:55 -070026 SkCodecPrintf("------ png error %s\n", msg);
scroggof24f2242015-03-03 08:59:20 -080027 longjmp(png_jmpbuf(png_ptr), 1);
28}
29
scroggo0eed6df2015-03-26 10:07:56 -070030void sk_warning_fn(png_structp, png_const_charp msg) {
31 SkCodecPrintf("----- png warning %s\n", msg);
32}
33
scroggof24f2242015-03-03 08:59:20 -080034static void sk_read_fn(png_structp png_ptr, png_bytep data,
35 png_size_t length) {
36 SkStream* stream = static_cast<SkStream*>(png_get_io_ptr(png_ptr));
37 const size_t bytes = stream->read(data, length);
38 if (bytes != length) {
39 // FIXME: We want to report the fact that the stream was truncated.
40 // One way to do that might be to pass a enum to longjmp so setjmp can
41 // specify the failure.
42 png_error(png_ptr, "Read Error!");
43 }
44}
45
scroggocf98fa92015-11-23 08:14:40 -080046#ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
47static int sk_read_user_chunk(png_structp png_ptr, png_unknown_chunkp chunk) {
48 SkPngChunkReader* chunkReader = (SkPngChunkReader*)png_get_user_chunk_ptr(png_ptr);
49 // readChunk() returning true means continue decoding
50 return chunkReader->readChunk((const char*)chunk->name, chunk->data, chunk->size) ? 1 : -1;
51}
52#endif
53
scroggof24f2242015-03-03 08:59:20 -080054///////////////////////////////////////////////////////////////////////////////
55// Helpers
56///////////////////////////////////////////////////////////////////////////////
57
58class AutoCleanPng : public SkNoncopyable {
59public:
60 AutoCleanPng(png_structp png_ptr)
61 : fPng_ptr(png_ptr)
halcanary96fcdcc2015-08-27 07:41:13 -070062 , fInfo_ptr(nullptr) {}
scroggof24f2242015-03-03 08:59:20 -080063
64 ~AutoCleanPng() {
halcanary96fcdcc2015-08-27 07:41:13 -070065 // fInfo_ptr will never be non-nullptr unless fPng_ptr is.
scroggof24f2242015-03-03 08:59:20 -080066 if (fPng_ptr) {
halcanary96fcdcc2015-08-27 07:41:13 -070067 png_infopp info_pp = fInfo_ptr ? &fInfo_ptr : nullptr;
msarett13a91232016-02-01 08:03:29 -080068 png_destroy_read_struct(&fPng_ptr, info_pp, nullptr);
scroggof24f2242015-03-03 08:59:20 -080069 }
70 }
71
72 void setInfoPtr(png_infop info_ptr) {
halcanary96fcdcc2015-08-27 07:41:13 -070073 SkASSERT(nullptr == fInfo_ptr);
scroggof24f2242015-03-03 08:59:20 -080074 fInfo_ptr = info_ptr;
75 }
76
77 void detach() {
halcanary96fcdcc2015-08-27 07:41:13 -070078 fPng_ptr = nullptr;
79 fInfo_ptr = nullptr;
scroggof24f2242015-03-03 08:59:20 -080080 }
81
82private:
83 png_structp fPng_ptr;
84 png_infop fInfo_ptr;
85};
86#define AutoCleanPng(...) SK_REQUIRE_LOCAL_VAR(AutoCleanPng)
87
scroggof24f2242015-03-03 08:59:20 -080088// Method for coverting to either an SkPMColor or a similarly packed
89// unpremultiplied color.
90typedef uint32_t (*PackColorProc)(U8CPU a, U8CPU r, U8CPU g, U8CPU b);
91
92// Note: SkColorTable claims to store SkPMColors, which is not necessarily
93// the case here.
msarett13a91232016-02-01 08:03:29 -080094// TODO: If we add support for non-native swizzles, we'll need to handle that here.
scroggo9b2cdbf2015-07-10 12:07:02 -070095bool SkPngCodec::decodePalette(bool premultiply, int* ctableCount) {
scroggof24f2242015-03-03 08:59:20 -080096
msarett13a91232016-02-01 08:03:29 -080097 int numColors;
98 png_color* palette;
99 if (!png_get_PLTE(fPng_ptr, fInfo_ptr, &palette, &numColors)) {
scroggo05245902015-03-25 11:11:52 -0700100 return false;
scroggof24f2242015-03-03 08:59:20 -0800101 }
102
msarett13a91232016-02-01 08:03:29 -0800103 // Note: These are not necessarily SkPMColors.
104 SkPMColor colorPtr[256];
scroggof24f2242015-03-03 08:59:20 -0800105
msarett13a91232016-02-01 08:03:29 -0800106 png_bytep alphas;
107 int numColorsWithAlpha = 0;
108 if (png_get_tRNS(fPng_ptr, fInfo_ptr, &alphas, &numColorsWithAlpha, nullptr)) {
109 // Choose which function to use to create the color table. If the final destination's
110 // colortype is unpremultiplied, the color table will store unpremultiplied colors.
111 PackColorProc proc;
112 if (premultiply) {
113 proc = &SkPremultiplyARGBInline;
114 } else {
115 proc = &SkPackARGB32NoCheck;
116 }
117
118 for (int i = 0; i < numColorsWithAlpha; i++) {
119 // We don't have a function in SkOpts that combines a set of alphas with a set
120 // of RGBs. We could write one, but it's hardly worth it, given that this
121 // is such a small fraction of the total decode time.
122 colorPtr[i] = proc(alphas[i], palette->red, palette->green, palette->blue);
123 palette++;
124 }
scroggof24f2242015-03-03 08:59:20 -0800125 }
126
msarett13a91232016-02-01 08:03:29 -0800127 if (numColorsWithAlpha < numColors) {
128 // The optimized code depends on a 3-byte png_color struct with the colors
129 // in RGB order. These checks make sure it is safe to use.
130 static_assert(3 == sizeof(png_color), "png_color struct has changed. Opts are broken.");
131#ifdef SK_DEBUG
132 SkASSERT(&palette->red < &palette->green);
133 SkASSERT(&palette->green < &palette->blue);
134#endif
135
136#ifdef SK_PMCOLOR_IS_RGBA
137 SkOpts::RGB_to_RGB1(colorPtr + numColorsWithAlpha, palette, numColors - numColorsWithAlpha);
138#else
139 SkOpts::RGB_to_BGR1(colorPtr + numColorsWithAlpha, palette, numColors - numColorsWithAlpha);
140#endif
scroggof24f2242015-03-03 08:59:20 -0800141 }
142
msarett13a91232016-02-01 08:03:29 -0800143 // Pad the color table with the last color in the table (or black) in the case that
144 // invalid pixel indices exceed the number of colors in the table.
145 const int maxColors = 1 << fBitDepth;
146 if (numColors < maxColors) {
147 SkPMColor lastColor = numColors > 0 ? colorPtr[numColors - 1] : SK_ColorBLACK;
148 sk_memset32(colorPtr + numColors, lastColor, maxColors - numColors);
scroggof24f2242015-03-03 08:59:20 -0800149 }
150
msarett13a91232016-02-01 08:03:29 -0800151 // Set the new color count.
halcanary96fcdcc2015-08-27 07:41:13 -0700152 if (ctableCount != nullptr) {
msarett13a91232016-02-01 08:03:29 -0800153 *ctableCount = maxColors;
scroggof24f2242015-03-03 08:59:20 -0800154 }
155
msarett13a91232016-02-01 08:03:29 -0800156 fColorTable.reset(new SkColorTable(colorPtr, maxColors));
scroggo05245902015-03-25 11:11:52 -0700157 return true;
scroggof24f2242015-03-03 08:59:20 -0800158}
159
160///////////////////////////////////////////////////////////////////////////////
161// Creation
162///////////////////////////////////////////////////////////////////////////////
163
scroggodb30be22015-12-08 18:54:13 -0800164bool SkPngCodec::IsPng(const char* buf, size_t bytesRead) {
165 return !png_sig_cmp((png_bytep) buf, (png_size_t)0, bytesRead);
scroggof24f2242015-03-03 08:59:20 -0800166}
167
msarett6a738212016-03-04 13:27:35 -0800168static float png_fixed_point_to_float(png_fixed_point x) {
169 // We multiply by the same factor that libpng used to convert
170 // fixed point -> double. Since we want floats, we choose to
171 // do the conversion ourselves rather than convert
172 // fixed point -> double -> float.
173 return ((float) x) * 0.00001f;
174}
175
176// Returns a colorSpace object that represents any color space information in
177// the encoded data. If the encoded data contains no color space, this will
178// return NULL.
179SkColorSpace* read_color_space(png_structp png_ptr, png_infop info_ptr) {
180
msarette2443222016-03-04 14:20:49 -0800181#if (PNG_LIBPNG_VER_MAJOR > 1) || (PNG_LIBPNG_VER_MAJOR == 1 && PNG_LIBPNG_VER_MINOR >= 6)
182
msarett6a738212016-03-04 13:27:35 -0800183 // First check for an ICC profile
184 png_bytep profile;
185 png_uint_32 length;
186 // The below variables are unused, however, we need to pass them in anyway or
187 // png_get_iCCP() will return nothing.
188 // Could knowing the |name| of the profile ever be interesting? Maybe for debugging?
189 png_charp name;
190 // The |compression| is uninteresting since:
191 // (1) libpng has already decompressed the profile for us.
192 // (2) "deflate" is the only mode of decompression that libpng supports.
193 int compression;
194 if (PNG_INFO_iCCP == png_get_iCCP(png_ptr, info_ptr, &name, &compression, &profile,
195 &length)) {
196 return SkColorSpace::NewICC(profile, length);
197 }
198
199 // Second, check for sRGB.
200 if (png_get_valid(png_ptr, info_ptr, PNG_INFO_sRGB)) {
201
202 // sRGB chunks also store a rendering intent: Absolute, Relative,
203 // Perceptual, and Saturation.
204 // FIXME (msarett): Extract this information from the sRGB chunk once
205 // we are able to handle this information in
206 // SkColorSpace.
207 return SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named);
208 }
209
210 // Next, check for chromaticities.
211 png_fixed_point XYZ[9];
212 SkFloat3x3 toXYZD50;
213 png_fixed_point gamma;
214 SkFloat3 gammas;
215 if (png_get_cHRM_XYZ_fixed(png_ptr, info_ptr, &XYZ[0], &XYZ[1], &XYZ[2], &XYZ[3], &XYZ[4],
216 &XYZ[5], &XYZ[6], &XYZ[7], &XYZ[8])) {
217
218 // FIXME (msarett): Here we are treating XYZ values as D50 even though the color
219 // temperature is unspecified. I suspect that this assumption
220 // is most often ok, but we could also calculate the color
221 // temperature (D value) and then convert the XYZ to D50. Maybe
222 // we should add a new constructor to SkColorSpace that accepts
223 // XYZ with D-Unkown?
224 for (int i = 0; i < 9; i++) {
225 toXYZD50.fMat[i] = png_fixed_point_to_float(XYZ[i]);
226 }
227
228 if (PNG_INFO_gAMA != png_get_gAMA_fixed(png_ptr, info_ptr, &gamma)) {
229
230 // If the image does not specify gamma, let's choose linear. Should we default
231 // to sRGB? Most images are intended to be sRGB (gamma = 2.2f).
232 gamma = PNG_GAMMA_LINEAR;
233 }
234 gammas.fVec[0] = gammas.fVec[1] = gammas.fVec[2] = png_fixed_point_to_float(gamma);
235
236 return SkColorSpace::NewRGB(toXYZD50, gammas);
237 }
238
239 // Last, check for gamma.
240 if (PNG_INFO_gAMA == png_get_gAMA_fixed(png_ptr, info_ptr, &gamma)) {
241
242 // Guess a default value for cHRM? Or should we just give up?
243 // Here we use the identity matrix as a default.
244 // FIXME (msarett): Should SkFloat3x3 have a method to set the identity matrix?
245 memset(toXYZD50.fMat, 0, 9 * sizeof(float));
246 toXYZD50.fMat[0] = toXYZD50.fMat[4] = toXYZD50.fMat[8] = 1.0f;
247
248 // Set the gammas.
249 gammas.fVec[0] = gammas.fVec[1] = gammas.fVec[2] = png_fixed_point_to_float(gamma);
250
251 return SkColorSpace::NewRGB(toXYZD50, gammas);
252 }
253
msarette2443222016-03-04 14:20:49 -0800254#endif // LIBPNG >= 1.6
255
msarett6a738212016-03-04 13:27:35 -0800256 // Finally, what should we do if there is no color space information in the PNG?
257 // The specification says that this indicates "gamma is unknown" and that the
258 // "color is device dependent". I'm assuming we can represent this with NULL.
259 // But should we guess sRGB? Most images are sRGB, even if they don't specify.
260 return nullptr;
261}
262
scroggocf98fa92015-11-23 08:14:40 -0800263// Reads the header and initializes the output fields, if not NULL.
264//
265// @param stream Input data. Will be read to get enough information to properly
266// setup the codec.
267// @param chunkReader SkPngChunkReader, for reading unknown chunks. May be NULL.
268// If not NULL, png_ptr will hold an *unowned* pointer to it. The caller is
269// expected to continue to own it for the lifetime of the png_ptr.
270// @param png_ptrp Optional output variable. If non-NULL, will be set to a new
271// png_structp on success.
272// @param info_ptrp Optional output variable. If non-NULL, will be set to a new
273// png_infop on success;
274// @param imageInfo Optional output variable. If non-NULL, will be set to
275// reflect the properties of the encoded image on success.
276// @param bitDepthPtr Optional output variable. If non-NULL, will be set to the
277// bit depth of the encoded image on success.
278// @param numberPassesPtr Optional output variable. If non-NULL, will be set to
279// the number_passes of the encoded image on success.
280// @return true on success, in which case the caller is responsible for calling
281// png_destroy_read_struct(png_ptrp, info_ptrp).
282// If it returns false, the passed in fields (except stream) are unchanged.
283static bool read_header(SkStream* stream, SkPngChunkReader* chunkReader,
284 png_structp* png_ptrp, png_infop* info_ptrp,
285 SkImageInfo* imageInfo, int* bitDepthPtr, int* numberPassesPtr) {
scroggof24f2242015-03-03 08:59:20 -0800286 // The image is known to be a PNG. Decode enough to know the SkImageInfo.
halcanary96fcdcc2015-08-27 07:41:13 -0700287 png_structp png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, nullptr,
scroggo0eed6df2015-03-26 10:07:56 -0700288 sk_error_fn, sk_warning_fn);
scroggof24f2242015-03-03 08:59:20 -0800289 if (!png_ptr) {
scroggo3eada2a2015-04-01 09:33:23 -0700290 return false;
scroggof24f2242015-03-03 08:59:20 -0800291 }
292
293 AutoCleanPng autoClean(png_ptr);
294
295 png_infop info_ptr = png_create_info_struct(png_ptr);
halcanary96fcdcc2015-08-27 07:41:13 -0700296 if (info_ptr == nullptr) {
scroggo3eada2a2015-04-01 09:33:23 -0700297 return false;
scroggof24f2242015-03-03 08:59:20 -0800298 }
299
300 autoClean.setInfoPtr(info_ptr);
301
302 // FIXME: Could we use the return value of setjmp to specify the type of
303 // error?
304 if (setjmp(png_jmpbuf(png_ptr))) {
scroggo3eada2a2015-04-01 09:33:23 -0700305 return false;
scroggof24f2242015-03-03 08:59:20 -0800306 }
307
308 png_set_read_fn(png_ptr, static_cast<void*>(stream), sk_read_fn);
309
scroggocf98fa92015-11-23 08:14:40 -0800310#ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
msarett133eaaa2016-01-07 11:03:25 -0800311 // Hookup our chunkReader so we can see any user-chunks the caller may be interested in.
312 // This needs to be installed before we read the png header. Android may store ninepatch
313 // chunks in the header.
scroggocf98fa92015-11-23 08:14:40 -0800314 if (chunkReader) {
315 png_set_keep_unknown_chunks(png_ptr, PNG_HANDLE_CHUNK_ALWAYS, (png_byte*)"", 0);
316 png_set_read_user_chunk_fn(png_ptr, (png_voidp) chunkReader, sk_read_user_chunk);
317 }
318#endif
scroggof24f2242015-03-03 08:59:20 -0800319
320 // The call to png_read_info() gives us all of the information from the
321 // PNG file before the first IDAT (image data chunk).
322 png_read_info(png_ptr, info_ptr);
323 png_uint_32 origWidth, origHeight;
msarett13a91232016-02-01 08:03:29 -0800324 int bitDepth, encodedColorType;
scroggof24f2242015-03-03 08:59:20 -0800325 png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth,
msarett13a91232016-02-01 08:03:29 -0800326 &encodedColorType, nullptr, nullptr, nullptr);
scroggof24f2242015-03-03 08:59:20 -0800327
scroggo6f29a3c2015-07-07 06:09:08 -0700328 if (bitDepthPtr) {
329 *bitDepthPtr = bitDepth;
330 }
331
msarett13a91232016-02-01 08:03:29 -0800332 // Tell libpng to strip 16 bit/color files down to 8 bits/color.
333 // TODO: Should we handle this in SkSwizzler? Could this also benefit
334 // RAW decodes?
scroggof24f2242015-03-03 08:59:20 -0800335 if (bitDepth == 16) {
msarett13a91232016-02-01 08:03:29 -0800336 SkASSERT(PNG_COLOR_TYPE_PALETTE != encodedColorType);
scroggof24f2242015-03-03 08:59:20 -0800337 png_set_strip_16(png_ptr);
338 }
scroggof24f2242015-03-03 08:59:20 -0800339
msarett13a91232016-02-01 08:03:29 -0800340 // Now determine the default colorType and alphaType and set the required transforms.
341 // Often, we depend on SkSwizzler to perform any transforms that we need. However, we
342 // still depend on libpng for many of the rare and PNG-specific cases.
343 SkColorType colorType = kUnknown_SkColorType;
344 SkAlphaType alphaType = kUnknown_SkAlphaType;
345 switch (encodedColorType) {
scroggof24f2242015-03-03 08:59:20 -0800346 case PNG_COLOR_TYPE_PALETTE:
msarett13a91232016-02-01 08:03:29 -0800347 // Extract multiple pixels with bit depths of 1, 2, and 4 from a single
348 // byte into separate bytes (useful for paletted and grayscale images).
349 if (bitDepth < 8) {
350 // TODO: Should we use SkSwizzler here?
351 png_set_packing(png_ptr);
352 }
353
354 colorType = kIndex_8_SkColorType;
355 // Set the alpha type depending on if a transparency chunk exists.
356 alphaType = png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) ?
scroggof24f2242015-03-03 08:59:20 -0800357 kUnpremul_SkAlphaType : kOpaque_SkAlphaType;
358 break;
scroggo6f29a3c2015-07-07 06:09:08 -0700359 case PNG_COLOR_TYPE_RGB:
msarett13a91232016-02-01 08:03:29 -0800360 if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) {
361 // Convert to RGBA if transparency chunk exists.
scroggo6f29a3c2015-07-07 06:09:08 -0700362 png_set_tRNS_to_alpha(png_ptr);
msarett13a91232016-02-01 08:03:29 -0800363 alphaType = kUnpremul_SkAlphaType;
jvanverth6c90e092015-07-02 10:35:25 -0700364 } else {
msarett13a91232016-02-01 08:03:29 -0800365 alphaType = kOpaque_SkAlphaType;
jvanverth6c90e092015-07-02 10:35:25 -0700366 }
msarett13a91232016-02-01 08:03:29 -0800367 colorType = kN32_SkColorType;
jvanverth6c90e092015-07-02 10:35:25 -0700368 break;
scroggo6f29a3c2015-07-07 06:09:08 -0700369 case PNG_COLOR_TYPE_GRAY:
msarett13a91232016-02-01 08:03:29 -0800370 // Expand grayscale images to the full 8 bits from 1, 2, or 4 bits/pixel.
371 if (bitDepth < 8) {
372 // TODO: Should we use SkSwizzler here?
373 png_set_expand_gray_1_2_4_to_8(png_ptr);
374 }
375
376 if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) {
scroggo6f29a3c2015-07-07 06:09:08 -0700377 png_set_tRNS_to_alpha(png_ptr);
msarett93e613d2016-02-03 10:44:46 -0800378
379 // We will recommend kN32 here since we do not support kGray
380 // with alpha.
msarett13a91232016-02-01 08:03:29 -0800381 colorType = kN32_SkColorType;
382 alphaType = kUnpremul_SkAlphaType;
scroggo6f29a3c2015-07-07 06:09:08 -0700383 } else {
msarett13a91232016-02-01 08:03:29 -0800384 colorType = kGray_8_SkColorType;
385 alphaType = kOpaque_SkAlphaType;
scroggo6f29a3c2015-07-07 06:09:08 -0700386 }
387 break;
388 case PNG_COLOR_TYPE_GRAY_ALPHA:
msarett93e613d2016-02-03 10:44:46 -0800389 // We will recommend kN32 here since we do not support anything
390 // similar to GRAY_ALPHA.
msarett13a91232016-02-01 08:03:29 -0800391 colorType = kN32_SkColorType;
392 alphaType = kUnpremul_SkAlphaType;
scroggo6f29a3c2015-07-07 06:09:08 -0700393 break;
394 case PNG_COLOR_TYPE_RGBA:
msarett13a91232016-02-01 08:03:29 -0800395 colorType = kN32_SkColorType;
396 alphaType = kUnpremul_SkAlphaType;
scroggo6f29a3c2015-07-07 06:09:08 -0700397 break;
398 default:
msarett13a91232016-02-01 08:03:29 -0800399 // All the color types have been covered above.
scroggo6f29a3c2015-07-07 06:09:08 -0700400 SkASSERT(false);
scroggof24f2242015-03-03 08:59:20 -0800401 }
402
scroggo46c57472015-09-30 08:57:13 -0700403 int numberPasses = png_set_interlace_handling(png_ptr);
404 if (numberPassesPtr) {
405 *numberPassesPtr = numberPasses;
406 }
407
msaretta87d6de2016-02-04 15:37:58 -0800408 SkColorProfileType profileType = kLinear_SkColorProfileType;
409 if (png_get_valid(png_ptr, info_ptr, PNG_INFO_sRGB)) {
410 profileType = kSRGB_SkColorProfileType;
411 }
scroggof24f2242015-03-03 08:59:20 -0800412
scroggo3eada2a2015-04-01 09:33:23 -0700413 if (imageInfo) {
msaretta87d6de2016-02-04 15:37:58 -0800414 *imageInfo = SkImageInfo::Make(origWidth, origHeight, colorType, alphaType, profileType);
scroggo3eada2a2015-04-01 09:33:23 -0700415 }
scroggof24f2242015-03-03 08:59:20 -0800416 autoClean.detach();
scroggo3eada2a2015-04-01 09:33:23 -0700417 if (png_ptrp) {
418 *png_ptrp = png_ptr;
419 }
420 if (info_ptrp) {
421 *info_ptrp = info_ptr;
422 }
scroggo6f29a3c2015-07-07 06:09:08 -0700423
scroggo3eada2a2015-04-01 09:33:23 -0700424 return true;
425}
426
scroggocf98fa92015-11-23 08:14:40 -0800427SkPngCodec::SkPngCodec(const SkImageInfo& info, SkStream* stream, SkPngChunkReader* chunkReader,
msarett6a738212016-03-04 13:27:35 -0800428 png_structp png_ptr, png_infop info_ptr, int bitDepth, int numberPasses,
429 SkColorSpace* colorSpace)
430 : INHERITED(info, stream, colorSpace)
scroggocf98fa92015-11-23 08:14:40 -0800431 , fPngChunkReader(SkSafeRef(chunkReader))
scroggof24f2242015-03-03 08:59:20 -0800432 , fPng_ptr(png_ptr)
scroggo05245902015-03-25 11:11:52 -0700433 , fInfo_ptr(info_ptr)
434 , fSrcConfig(SkSwizzler::kUnknown)
scroggo46c57472015-09-30 08:57:13 -0700435 , fNumberPasses(numberPasses)
scroggo6f29a3c2015-07-07 06:09:08 -0700436 , fBitDepth(bitDepth)
msaretta4970dc2016-01-11 07:23:23 -0800437{}
scroggof24f2242015-03-03 08:59:20 -0800438
439SkPngCodec::~SkPngCodec() {
scroggo3eada2a2015-04-01 09:33:23 -0700440 this->destroyReadStruct();
441}
442
443void SkPngCodec::destroyReadStruct() {
444 if (fPng_ptr) {
halcanary96fcdcc2015-08-27 07:41:13 -0700445 // We will never have a nullptr fInfo_ptr with a non-nullptr fPng_ptr
scroggo3eada2a2015-04-01 09:33:23 -0700446 SkASSERT(fInfo_ptr);
msarett13a91232016-02-01 08:03:29 -0800447 png_destroy_read_struct(&fPng_ptr, &fInfo_ptr, nullptr);
halcanary96fcdcc2015-08-27 07:41:13 -0700448 fPng_ptr = nullptr;
449 fInfo_ptr = nullptr;
scroggo3eada2a2015-04-01 09:33:23 -0700450 }
scroggof24f2242015-03-03 08:59:20 -0800451}
452
453///////////////////////////////////////////////////////////////////////////////
454// Getting the pixels
455///////////////////////////////////////////////////////////////////////////////
456
scroggo05245902015-03-25 11:11:52 -0700457SkCodec::Result SkPngCodec::initializeSwizzler(const SkImageInfo& requestedInfo,
msarett438b2ad2015-04-09 12:43:10 -0700458 const Options& options,
msarett9e43cab2015-04-29 07:38:43 -0700459 SkPMColor ctable[],
msarett438b2ad2015-04-09 12:43:10 -0700460 int* ctableCount) {
scroggof24f2242015-03-03 08:59:20 -0800461 // FIXME: Could we use the return value of setjmp to specify the type of
462 // error?
463 if (setjmp(png_jmpbuf(fPng_ptr))) {
scroggo230d4ac2015-03-26 07:15:55 -0700464 SkCodecPrintf("setjmp long jump!\n");
scroggof24f2242015-03-03 08:59:20 -0800465 return kInvalidInput;
466 }
mtklein372d65c2016-01-27 13:01:41 -0800467 png_read_update_info(fPng_ptr, fInfo_ptr);
scroggof24f2242015-03-03 08:59:20 -0800468
msarett93e613d2016-02-03 10:44:46 -0800469 // suggestedColorType was determined in read_header() based on the encodedColorType
470 const SkColorType suggestedColorType = this->getInfo().colorType();
scroggo6f29a3c2015-07-07 06:09:08 -0700471
msarett93e613d2016-02-03 10:44:46 -0800472 switch (suggestedColorType) {
scroggo6f29a3c2015-07-07 06:09:08 -0700473 case kIndex_8_SkColorType:
474 //decode palette to Skia format
475 fSrcConfig = SkSwizzler::kIndex;
scroggo9b2cdbf2015-07-10 12:07:02 -0700476 if (!this->decodePalette(kPremul_SkAlphaType == requestedInfo.alphaType(),
scroggo6f29a3c2015-07-07 06:09:08 -0700477 ctableCount)) {
478 return kInvalidInput;
479 }
480 break;
481 case kGray_8_SkColorType:
482 fSrcConfig = SkSwizzler::kGray;
mtklein372d65c2016-01-27 13:01:41 -0800483 break;
msarett93e613d2016-02-03 10:44:46 -0800484 case kN32_SkColorType: {
485 const uint8_t encodedColorType = png_get_color_type(fPng_ptr, fInfo_ptr);
486 if (PNG_COLOR_TYPE_GRAY_ALPHA == encodedColorType ||
487 PNG_COLOR_TYPE_GRAY == encodedColorType) {
488 // If encodedColorType is GRAY, there must be a transparent chunk.
489 // Otherwise, suggestedColorType would be kGray. We have already
490 // instructed libpng to convert the transparent chunk to alpha,
491 // so we can treat both GRAY and GRAY_ALPHA as kGrayAlpha.
492 SkASSERT(encodedColorType == PNG_COLOR_TYPE_GRAY_ALPHA ||
493 png_get_valid(fPng_ptr, fInfo_ptr, PNG_INFO_tRNS));
494
495 fSrcConfig = SkSwizzler::kGrayAlpha;
496 } else {
497 if (this->getInfo().alphaType() == kOpaque_SkAlphaType) {
msarettbda86092016-01-19 10:40:12 -0800498 fSrcConfig = SkSwizzler::kRGB;
scroggo6f29a3c2015-07-07 06:09:08 -0700499 } else {
500 fSrcConfig = SkSwizzler::kRGBA;
msarett93e613d2016-02-03 10:44:46 -0800501 }
scroggo6f29a3c2015-07-07 06:09:08 -0700502 }
503 break;
msarett93e613d2016-02-03 10:44:46 -0800504 }
scroggo6f29a3c2015-07-07 06:09:08 -0700505 default:
msarett13a91232016-02-01 08:03:29 -0800506 // We will always recommend one of the above colorTypes.
scroggo6f29a3c2015-07-07 06:09:08 -0700507 SkASSERT(false);
mtklein372d65c2016-01-27 13:01:41 -0800508 }
msarett9e43cab2015-04-29 07:38:43 -0700509
510 // Copy the color table to the client if they request kIndex8 mode
511 copy_color_table(requestedInfo, fColorTable, ctable, ctableCount);
512
513 // Create the swizzler. SkPngCodec retains ownership of the color table.
msarett99f567e2015-08-05 12:58:26 -0700514 const SkPMColor* colors = get_color_ptr(fColorTable.get());
msarettfdb47572015-10-13 12:50:14 -0700515 fSwizzler.reset(SkSwizzler::CreateSwizzler(fSrcConfig, colors, requestedInfo, options));
msarett13a91232016-02-01 08:03:29 -0800516 SkASSERT(fSwizzler);
517
scroggo05245902015-03-25 11:11:52 -0700518 return kSuccess;
519}
520
scroggo6f29a3c2015-07-07 06:09:08 -0700521
scroggob427db12015-08-12 07:24:13 -0700522bool SkPngCodec::onRewind() {
halcanary96fcdcc2015-08-27 07:41:13 -0700523 // This sets fPng_ptr and fInfo_ptr to nullptr. If read_header
scroggob427db12015-08-12 07:24:13 -0700524 // succeeds, they will be repopulated, and if it fails, they will
halcanary96fcdcc2015-08-27 07:41:13 -0700525 // remain nullptr. Any future accesses to fPng_ptr and fInfo_ptr will
scroggob427db12015-08-12 07:24:13 -0700526 // come through this function which will rewind and again attempt
527 // to reinitialize them.
528 this->destroyReadStruct();
529
530 png_structp png_ptr;
531 png_infop info_ptr;
scroggocf98fa92015-11-23 08:14:40 -0800532 if (!read_header(this->stream(), fPngChunkReader.get(), &png_ptr, &info_ptr,
533 nullptr, nullptr, nullptr)) {
scroggob427db12015-08-12 07:24:13 -0700534 return false;
scroggo58421542015-04-01 11:25:20 -0700535 }
scroggob427db12015-08-12 07:24:13 -0700536
537 fPng_ptr = png_ptr;
538 fInfo_ptr = info_ptr;
539 return true;
scroggo58421542015-04-01 11:25:20 -0700540}
541
scroggo05245902015-03-25 11:11:52 -0700542SkCodec::Result SkPngCodec::onGetPixels(const SkImageInfo& requestedInfo, void* dst,
msarett614aa072015-07-27 15:13:17 -0700543 size_t dstRowBytes, const Options& options,
msarette6dd0042015-10-09 11:07:34 -0700544 SkPMColor ctable[], int* ctableCount,
545 int* rowsDecoded) {
scroggo6f29a3c2015-07-07 06:09:08 -0700546 if (!conversion_possible(requestedInfo, this->getInfo())) {
547 return kInvalidConversion;
548 }
scroggob636b452015-07-22 07:16:20 -0700549 if (options.fSubset) {
550 // Subsets are not supported.
551 return kUnimplemented;
552 }
scroggo05245902015-03-25 11:11:52 -0700553
msarett9e43cab2015-04-29 07:38:43 -0700554 // Note that ctable and ctableCount may be modified if there is a color table
msarettfdb47572015-10-13 12:50:14 -0700555 const Result result = this->initializeSwizzler(requestedInfo, options, ctable, ctableCount);
scroggo05245902015-03-25 11:11:52 -0700556 if (result != kSuccess) {
557 return result;
558 }
msarett60dcd3c2016-02-05 15:13:12 -0800559
560 const int width = requestedInfo.width();
561 const int height = requestedInfo.height();
562 const int bpp = SkSwizzler::BytesPerPixel(fSrcConfig);
563 const size_t srcRowBytes = width * bpp;
564
scroggo05245902015-03-25 11:11:52 -0700565 // FIXME: Could we use the return value of setjmp to specify the type of
566 // error?
msarette6dd0042015-10-09 11:07:34 -0700567 int row = 0;
568 // This must be declared above the call to setjmp to avoid memory leaks on incomplete images.
scroggo565901d2015-12-10 10:44:13 -0800569 SkAutoTMalloc<uint8_t> storage;
scroggo05245902015-03-25 11:11:52 -0700570 if (setjmp(png_jmpbuf(fPng_ptr))) {
msarette6dd0042015-10-09 11:07:34 -0700571 // Assume that any error that occurs while reading rows is caused by an incomplete input.
572 if (fNumberPasses > 1) {
573 // FIXME (msarett): Handle incomplete interlaced pngs.
msarett60dcd3c2016-02-05 15:13:12 -0800574 return (row == height) ? kSuccess : kInvalidInput;
msarette6dd0042015-10-09 11:07:34 -0700575 }
576 // FIXME: We do a poor job on incomplete pngs compared to other decoders (ex: Chromium,
577 // Ubuntu Image Viewer). This is because we use the default buffer size in libpng (8192
578 // bytes), and if we can't fill the buffer, we immediately fail.
579 // For example, if we try to read 8192 bytes, and the image (incorrectly) only contains
580 // half that, which may have been enough to contain a non-zero number of lines, we fail
581 // when we could have decoded a few more lines and then failed.
582 // The read function that we provide for libpng has no way of indicating that we have
583 // made a partial read.
584 // Making our buffer size smaller improves our incomplete decodes, but what impact does
585 // it have on regular decode performance? Should we investigate using a different API
msarett60dcd3c2016-02-05 15:13:12 -0800586 // instead of png_read_row? Chromium uses png_process_data.
msarette6dd0042015-10-09 11:07:34 -0700587 *rowsDecoded = row;
msarett60dcd3c2016-02-05 15:13:12 -0800588 return (row == height) ? kSuccess : kIncompleteInput;
scroggo05245902015-03-25 11:11:52 -0700589 }
590
scroggo46c57472015-09-30 08:57:13 -0700591 // FIXME: We could split these out based on subclass.
msarett614aa072015-07-27 15:13:17 -0700592 void* dstRow = dst;
scroggo05245902015-03-25 11:11:52 -0700593 if (fNumberPasses > 1) {
msarett60dcd3c2016-02-05 15:13:12 -0800594 storage.reset(height * srcRowBytes);
scroggo565901d2015-12-10 10:44:13 -0800595 uint8_t* const base = storage.get();
scroggof24f2242015-03-03 08:59:20 -0800596
scroggo05245902015-03-25 11:11:52 -0700597 for (int i = 0; i < fNumberPasses; i++) {
msarett614aa072015-07-27 15:13:17 -0700598 uint8_t* srcRow = base;
scroggof24f2242015-03-03 08:59:20 -0800599 for (int y = 0; y < height; y++) {
msarett60dcd3c2016-02-05 15:13:12 -0800600 png_read_row(fPng_ptr, srcRow, nullptr);
msarett614aa072015-07-27 15:13:17 -0700601 srcRow += srcRowBytes;
scroggof24f2242015-03-03 08:59:20 -0800602 }
603 }
604
605 // Now swizzle it.
msarett614aa072015-07-27 15:13:17 -0700606 uint8_t* srcRow = base;
msarett60dcd3c2016-02-05 15:13:12 -0800607 for (; row < height; row++) {
msaretta4970dc2016-01-11 07:23:23 -0800608 fSwizzler->swizzle(dstRow, srcRow);
msarett614aa072015-07-27 15:13:17 -0700609 dstRow = SkTAddOffset<void>(dstRow, dstRowBytes);
610 srcRow += srcRowBytes;
scroggof24f2242015-03-03 08:59:20 -0800611 }
612 } else {
msarett60dcd3c2016-02-05 15:13:12 -0800613 storage.reset(srcRowBytes);
scroggo565901d2015-12-10 10:44:13 -0800614 uint8_t* srcRow = storage.get();
msarett60dcd3c2016-02-05 15:13:12 -0800615 for (; row < height; row++) {
616 png_read_row(fPng_ptr, srcRow, nullptr);
msaretta4970dc2016-01-11 07:23:23 -0800617 fSwizzler->swizzle(dstRow, srcRow);
msarett614aa072015-07-27 15:13:17 -0700618 dstRow = SkTAddOffset<void>(dstRow, dstRowBytes);
scroggof24f2242015-03-03 08:59:20 -0800619 }
620 }
621
emmaleer973ae862015-07-20 13:38:44 -0700622 // read rest of file, and get additional comment and time chunks in info_ptr
scroggo05245902015-03-25 11:11:52 -0700623 png_read_end(fPng_ptr, fInfo_ptr);
scroggo46c57472015-09-30 08:57:13 -0700624
emmaleer973ae862015-07-20 13:38:44 -0700625 return kSuccess;
scroggo05245902015-03-25 11:11:52 -0700626}
627
scroggoc5560be2016-02-03 09:42:42 -0800628uint32_t SkPngCodec::onGetFillValue(SkColorType colorType) const {
msarette6dd0042015-10-09 11:07:34 -0700629 const SkPMColor* colorPtr = get_color_ptr(fColorTable.get());
630 if (colorPtr) {
631 return get_color_table_fill_value(colorType, colorPtr, 0);
632 }
scroggoc5560be2016-02-03 09:42:42 -0800633 return INHERITED::onGetFillValue(colorType);
msarette6dd0042015-10-09 11:07:34 -0700634}
635
scroggo46c57472015-09-30 08:57:13 -0700636// Subclass of SkPngCodec which supports scanline decoding
637class SkPngScanlineDecoder : public SkPngCodec {
scroggo05245902015-03-25 11:11:52 -0700638public:
scroggo46c57472015-09-30 08:57:13 -0700639 SkPngScanlineDecoder(const SkImageInfo& srcInfo, SkStream* stream,
msarett6a738212016-03-04 13:27:35 -0800640 SkPngChunkReader* chunkReader, png_structp png_ptr, png_infop info_ptr, int bitDepth,
641 SkColorSpace* colorSpace)
642 : INHERITED(srcInfo, stream, chunkReader, png_ptr, info_ptr, bitDepth, 1, colorSpace)
msarettf724b992015-10-15 06:41:06 -0700643 , fSrcRow(nullptr)
scroggo1c005e42015-08-04 09:24:45 -0700644 {}
645
scroggo46c57472015-09-30 08:57:13 -0700646 Result onStartScanlineDecode(const SkImageInfo& dstInfo, const Options& options,
647 SkPMColor ctable[], int* ctableCount) override {
scroggo1c005e42015-08-04 09:24:45 -0700648 if (!conversion_possible(dstInfo, this->getInfo())) {
scroggo46c57472015-09-30 08:57:13 -0700649 return kInvalidConversion;
scroggo1c005e42015-08-04 09:24:45 -0700650 }
651
scroggo46c57472015-09-30 08:57:13 -0700652 const Result result = this->initializeSwizzler(dstInfo, options, ctable,
653 ctableCount);
654 if (result != kSuccess) {
scroggo1c005e42015-08-04 09:24:45 -0700655 return result;
656 }
657
scroggo46c57472015-09-30 08:57:13 -0700658 fStorage.reset(this->getInfo().width() * SkSwizzler::BytesPerPixel(this->srcConfig()));
scroggo565901d2015-12-10 10:44:13 -0800659 fSrcRow = fStorage.get();
scroggo1c005e42015-08-04 09:24:45 -0700660
scroggo46c57472015-09-30 08:57:13 -0700661 return kSuccess;
scroggo05245902015-03-25 11:11:52 -0700662 }
663
msarette6dd0042015-10-09 11:07:34 -0700664 int onGetScanlines(void* dst, int count, size_t rowBytes) override {
665 // Assume that an error in libpng indicates an incomplete input.
666 int row = 0;
scroggo46c57472015-09-30 08:57:13 -0700667 if (setjmp(png_jmpbuf(this->png_ptr()))) {
scroggo230d4ac2015-03-26 07:15:55 -0700668 SkCodecPrintf("setjmp long jump!\n");
msarette6dd0042015-10-09 11:07:34 -0700669 return row;
scroggo05245902015-03-25 11:11:52 -0700670 }
671
msarett614aa072015-07-27 15:13:17 -0700672 void* dstRow = dst;
msarette6dd0042015-10-09 11:07:34 -0700673 for (; row < count; row++) {
msarett60dcd3c2016-02-05 15:13:12 -0800674 png_read_row(this->png_ptr(), fSrcRow, nullptr);
msaretta4970dc2016-01-11 07:23:23 -0800675 this->swizzler()->swizzle(dstRow, fSrcRow);
msarett614aa072015-07-27 15:13:17 -0700676 dstRow = SkTAddOffset<void>(dstRow, rowBytes);
scroggo05245902015-03-25 11:11:52 -0700677 }
scroggo46c57472015-09-30 08:57:13 -0700678
msarette6dd0042015-10-09 11:07:34 -0700679 return row;
scroggo05245902015-03-25 11:11:52 -0700680 }
681
msarette6dd0042015-10-09 11:07:34 -0700682 bool onSkipScanlines(int count) override {
683 // Assume that an error in libpng indicates an incomplete input.
scroggo46c57472015-09-30 08:57:13 -0700684 if (setjmp(png_jmpbuf(this->png_ptr()))) {
scroggo230d4ac2015-03-26 07:15:55 -0700685 SkCodecPrintf("setjmp long jump!\n");
msarette6dd0042015-10-09 11:07:34 -0700686 return false;
scroggo05245902015-03-25 11:11:52 -0700687 }
msarett60dcd3c2016-02-05 15:13:12 -0800688
msarette6dd0042015-10-09 11:07:34 -0700689 for (int row = 0; row < count; row++) {
msarett60dcd3c2016-02-05 15:13:12 -0800690 png_read_row(this->png_ptr(), fSrcRow, nullptr);
emmaleer7dc91902015-05-27 08:49:04 -0700691 }
msarette6dd0042015-10-09 11:07:34 -0700692 return true;
scroggo05245902015-03-25 11:11:52 -0700693 }
694
scroggo05245902015-03-25 11:11:52 -0700695private:
scroggo565901d2015-12-10 10:44:13 -0800696 SkAutoTMalloc<uint8_t> fStorage;
scroggo9b2cdbf2015-07-10 12:07:02 -0700697 uint8_t* fSrcRow;
scroggo05245902015-03-25 11:11:52 -0700698
scroggo46c57472015-09-30 08:57:13 -0700699 typedef SkPngCodec INHERITED;
scroggo05245902015-03-25 11:11:52 -0700700};
701
emmaleer0a4c3cb2015-06-22 10:40:21 -0700702
scroggo46c57472015-09-30 08:57:13 -0700703class SkPngInterlacedScanlineDecoder : public SkPngCodec {
emmaleer0a4c3cb2015-06-22 10:40:21 -0700704public:
scroggo46c57472015-09-30 08:57:13 -0700705 SkPngInterlacedScanlineDecoder(const SkImageInfo& srcInfo, SkStream* stream,
scroggocf98fa92015-11-23 08:14:40 -0800706 SkPngChunkReader* chunkReader, png_structp png_ptr, png_infop info_ptr,
msarett6a738212016-03-04 13:27:35 -0800707 int bitDepth, int numberPasses, SkColorSpace* colorSpace)
708 : INHERITED(srcInfo, stream, chunkReader, png_ptr, info_ptr, bitDepth, numberPasses,
709 colorSpace)
scroggo46c57472015-09-30 08:57:13 -0700710 , fHeight(-1)
scroggo1c005e42015-08-04 09:24:45 -0700711 , fCanSkipRewind(false)
scroggo1c005e42015-08-04 09:24:45 -0700712 {
scroggo46c57472015-09-30 08:57:13 -0700713 SkASSERT(numberPasses != 1);
714 }
715
716 Result onStartScanlineDecode(const SkImageInfo& dstInfo, const Options& options,
msarettfdb47572015-10-13 12:50:14 -0700717 SkPMColor ctable[], int* ctableCount) override {
scroggo1c005e42015-08-04 09:24:45 -0700718 if (!conversion_possible(dstInfo, this->getInfo())) {
mtklein372d65c2016-01-27 13:01:41 -0800719 return kInvalidConversion;
scroggo1c005e42015-08-04 09:24:45 -0700720 }
721
msarettfdb47572015-10-13 12:50:14 -0700722 const Result result = this->initializeSwizzler(dstInfo, options, ctable,
723 ctableCount);
724 if (result != kSuccess) {
scroggo1c005e42015-08-04 09:24:45 -0700725 return result;
726 }
727
scroggo1c005e42015-08-04 09:24:45 -0700728 fHeight = dstInfo.height();
scroggo46c57472015-09-30 08:57:13 -0700729 // FIXME: This need not be called on a second call to onStartScanlineDecode.
730 fSrcRowBytes = this->getInfo().width() * SkSwizzler::BytesPerPixel(this->srcConfig());
scroggo1c005e42015-08-04 09:24:45 -0700731 fGarbageRow.reset(fSrcRowBytes);
732 fGarbageRowPtr = static_cast<uint8_t*>(fGarbageRow.get());
733 fCanSkipRewind = true;
734
735 return SkCodec::kSuccess;
736 }
737
msarette6dd0042015-10-09 11:07:34 -0700738 int onGetScanlines(void* dst, int count, size_t dstRowBytes) override {
scroggo1c005e42015-08-04 09:24:45 -0700739 // rewind stream if have previously called onGetScanlines,
740 // since we need entire progressive image to get scanlines
741 if (fCanSkipRewind) {
scroggo46c57472015-09-30 08:57:13 -0700742 // We already rewound in onStartScanlineDecode, so there is no reason to rewind.
scroggo1c005e42015-08-04 09:24:45 -0700743 // Next time onGetScanlines is called, we will need to rewind.
744 fCanSkipRewind = false;
scroggo46c57472015-09-30 08:57:13 -0700745 } else {
746 // rewindIfNeeded resets fCurrScanline, since it assumes that start
747 // needs to be called again before scanline decoding. PNG scanline
748 // decoding is the exception, since it needs to rewind between
749 // calls to getScanlines. Keep track of fCurrScanline, to undo the
750 // reset.
msarette6dd0042015-10-09 11:07:34 -0700751 const int currScanline = this->nextScanline();
scroggo46c57472015-09-30 08:57:13 -0700752 // This method would never be called if currScanline is -1
753 SkASSERT(currScanline != -1);
754
755 if (!this->rewindIfNeeded()) {
756 return kCouldNotRewind;
757 }
msarettcb0d5c92015-12-03 12:23:43 -0800758 this->updateCurrScanline(currScanline);
scroggo1c005e42015-08-04 09:24:45 -0700759 }
760
scroggo46c57472015-09-30 08:57:13 -0700761 if (setjmp(png_jmpbuf(this->png_ptr()))) {
emmaleer0a4c3cb2015-06-22 10:40:21 -0700762 SkCodecPrintf("setjmp long jump!\n");
msarette6dd0042015-10-09 11:07:34 -0700763 // FIXME (msarett): Returning 0 is pessimistic. If we can complete a single pass,
764 // we may be able to report that all of the memory has been initialized. Even if we
765 // fail on the first pass, we can still report than some scanlines are initialized.
766 return 0;
emmaleer0a4c3cb2015-06-22 10:40:21 -0700767 }
scroggo565901d2015-12-10 10:44:13 -0800768 SkAutoTMalloc<uint8_t> storage(count * fSrcRowBytes);
769 uint8_t* storagePtr = storage.get();
emmaleer0a4c3cb2015-06-22 10:40:21 -0700770 uint8_t* srcRow;
msarette6dd0042015-10-09 11:07:34 -0700771 const int startRow = this->nextScanline();
scroggo46c57472015-09-30 08:57:13 -0700772 for (int i = 0; i < this->numberPasses(); i++) {
773 // read rows we planned to skip into garbage row
774 for (int y = 0; y < startRow; y++){
msarett60dcd3c2016-02-05 15:13:12 -0800775 png_read_row(this->png_ptr(), fGarbageRowPtr, nullptr);
emmaleer0a4c3cb2015-06-22 10:40:21 -0700776 }
scroggo46c57472015-09-30 08:57:13 -0700777 // read rows we care about into buffer
emmaleer0a4c3cb2015-06-22 10:40:21 -0700778 srcRow = storagePtr;
779 for (int y = 0; y < count; y++) {
msarett60dcd3c2016-02-05 15:13:12 -0800780 png_read_row(this->png_ptr(), srcRow, nullptr);
emmaleer0a4c3cb2015-06-22 10:40:21 -0700781 srcRow += fSrcRowBytes;
782 }
scroggo46c57472015-09-30 08:57:13 -0700783 // read rows we don't want into garbage buffer
784 for (int y = 0; y < fHeight - startRow - count; y++) {
msarett60dcd3c2016-02-05 15:13:12 -0800785 png_read_row(this->png_ptr(), fGarbageRowPtr, nullptr);
emmaleer0a4c3cb2015-06-22 10:40:21 -0700786 }
787 }
788 //swizzle the rows we care about
789 srcRow = storagePtr;
msarett614aa072015-07-27 15:13:17 -0700790 void* dstRow = dst;
emmaleer0a4c3cb2015-06-22 10:40:21 -0700791 for (int y = 0; y < count; y++) {
msaretta4970dc2016-01-11 07:23:23 -0800792 this->swizzler()->swizzle(dstRow, srcRow);
msarett614aa072015-07-27 15:13:17 -0700793 dstRow = SkTAddOffset<void>(dstRow, dstRowBytes);
emmaleer0a4c3cb2015-06-22 10:40:21 -0700794 srcRow += fSrcRowBytes;
795 }
scroggo46c57472015-09-30 08:57:13 -0700796
msarette6dd0042015-10-09 11:07:34 -0700797 return count;
emmaleer0a4c3cb2015-06-22 10:40:21 -0700798 }
799
msarette6dd0042015-10-09 11:07:34 -0700800 bool onSkipScanlines(int count) override {
scroggo46c57472015-09-30 08:57:13 -0700801 // The non-virtual version will update fCurrScanline.
msarette6dd0042015-10-09 11:07:34 -0700802 return true;
emmaleer0a4c3cb2015-06-22 10:40:21 -0700803 }
804
msarett5406d6f2015-08-31 06:55:13 -0700805 SkScanlineOrder onGetScanlineOrder() const override {
806 return kNone_SkScanlineOrder;
emmaleer8f4ba762015-08-14 07:44:46 -0700807 }
808
emmaleer0a4c3cb2015-06-22 10:40:21 -0700809private:
scroggo9b2cdbf2015-07-10 12:07:02 -0700810 int fHeight;
811 size_t fSrcRowBytes;
812 SkAutoMalloc fGarbageRow;
813 uint8_t* fGarbageRowPtr;
scroggo1c005e42015-08-04 09:24:45 -0700814 // FIXME: This imitates behavior in SkCodec::rewindIfNeeded. That function
815 // is called whenever some action is taken that reads the stream and
816 // therefore the next call will require a rewind. So it modifies a boolean
817 // to note that the *next* time it is called a rewind is needed.
scroggo46c57472015-09-30 08:57:13 -0700818 // SkPngInterlacedScanlineDecoder has an extra wrinkle - calling
819 // onStartScanlineDecode followed by onGetScanlines does *not* require a
820 // rewind. Since rewindIfNeeded does not have this flexibility, we need to
821 // add another layer.
scroggo1c005e42015-08-04 09:24:45 -0700822 bool fCanSkipRewind;
emmaleer0a4c3cb2015-06-22 10:40:21 -0700823
scroggo46c57472015-09-30 08:57:13 -0700824 typedef SkPngCodec INHERITED;
emmaleer0a4c3cb2015-06-22 10:40:21 -0700825};
826
scroggocf98fa92015-11-23 08:14:40 -0800827SkCodec* SkPngCodec::NewFromStream(SkStream* stream, SkPngChunkReader* chunkReader) {
scroggo46c57472015-09-30 08:57:13 -0700828 SkAutoTDelete<SkStream> streamDeleter(stream);
829 png_structp png_ptr;
830 png_infop info_ptr;
831 SkImageInfo imageInfo;
832 int bitDepth;
833 int numberPasses;
834
scroggocf98fa92015-11-23 08:14:40 -0800835 if (!read_header(stream, chunkReader, &png_ptr, &info_ptr, &imageInfo, &bitDepth,
836 &numberPasses)) {
halcanary96fcdcc2015-08-27 07:41:13 -0700837 return nullptr;
scroggo05245902015-03-25 11:11:52 -0700838 }
839
msarett6a738212016-03-04 13:27:35 -0800840 SkAutoTUnref<SkColorSpace> colorSpace(read_color_space(png_ptr, info_ptr));
841
scroggo46c57472015-09-30 08:57:13 -0700842 if (1 == numberPasses) {
scroggocf98fa92015-11-23 08:14:40 -0800843 return new SkPngScanlineDecoder(imageInfo, streamDeleter.detach(), chunkReader,
msarett6a738212016-03-04 13:27:35 -0800844 png_ptr, info_ptr, bitDepth, colorSpace);
scroggo05245902015-03-25 11:11:52 -0700845 }
846
scroggocf98fa92015-11-23 08:14:40 -0800847 return new SkPngInterlacedScanlineDecoder(imageInfo, streamDeleter.detach(), chunkReader,
msarett6a738212016-03-04 13:27:35 -0800848 png_ptr, info_ptr, bitDepth, numberPasses,
849 colorSpace);
scroggo05245902015-03-25 11:11:52 -0700850}