msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 8 | #include "SkJpegDecoderMgr.h" |
msarett | c1d0312 | 2016-03-25 08:58:55 -0700 | [diff] [blame] | 9 | |
| 10 | #include "SkJpegUtility.h" |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 11 | |
| 12 | /* |
| 13 | * Print information, warning, and error messages |
| 14 | */ |
| 15 | static void print_message(const j_common_ptr info, const char caller[]) { |
| 16 | char buffer[JMSG_LENGTH_MAX]; |
| 17 | info->err->format_message(info, buffer); |
| 18 | SkCodecPrintf("libjpeg error %d <%s> from %s\n", info->err->msg_code, buffer, caller); |
| 19 | } |
| 20 | |
| 21 | /* |
msarett | 6dfe9ac | 2015-11-10 11:22:12 -0800 | [diff] [blame] | 22 | * Reporting function for error and warning messages. |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 23 | */ |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 24 | static void output_message(j_common_ptr info) { |
| 25 | print_message(info, "output_message"); |
| 26 | } |
| 27 | |
Matt Sarett | dbdf6d2 | 2016-11-08 15:26:56 -0500 | [diff] [blame] | 28 | static void progress_monitor(j_common_ptr info) { |
| 29 | int scan = ((j_decompress_ptr)info)->input_scan_number; |
| 30 | // Progressive images with a very large number of scans can cause the |
| 31 | // decoder to hang. Here we use the progress monitor to abort on |
| 32 | // a very large number of scans. 100 is arbitrary, but much larger |
| 33 | // than the number of scans we might expect in a normal image. |
| 34 | if (scan >= 100) { |
| 35 | skjpeg_err_exit(info); |
| 36 | } |
| 37 | } |
| 38 | |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 39 | bool JpegDecoderMgr::returnFalse(const char caller[]) { |
| 40 | print_message((j_common_ptr) &fDInfo, caller); |
| 41 | return false; |
| 42 | } |
| 43 | |
| 44 | SkCodec::Result JpegDecoderMgr::returnFailure(const char caller[], SkCodec::Result result) { |
| 45 | print_message((j_common_ptr) &fDInfo, caller); |
| 46 | return result; |
| 47 | } |
| 48 | |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 49 | bool JpegDecoderMgr::getEncodedColor(SkEncodedInfo::Color* outColor) { |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 50 | switch (fDInfo.jpeg_color_space) { |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 51 | case JCS_GRAYSCALE: |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 52 | *outColor = SkEncodedInfo::kGray_Color; |
| 53 | return true; |
msarett | c30c418 | 2016-04-20 11:53:35 -0700 | [diff] [blame] | 54 | case JCS_YCbCr: |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 55 | *outColor = SkEncodedInfo::kYUV_Color; |
| 56 | return true; |
msarett | c30c418 | 2016-04-20 11:53:35 -0700 | [diff] [blame] | 57 | case JCS_RGB: |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 58 | *outColor = SkEncodedInfo::kRGB_Color; |
| 59 | return true; |
msarett | c30c418 | 2016-04-20 11:53:35 -0700 | [diff] [blame] | 60 | case JCS_YCCK: |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 61 | *outColor = SkEncodedInfo::kYCCK_Color; |
| 62 | return true; |
msarett | c30c418 | 2016-04-20 11:53:35 -0700 | [diff] [blame] | 63 | case JCS_CMYK: |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 64 | *outColor = SkEncodedInfo::kInvertedCMYK_Color; |
| 65 | return true; |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 66 | default: |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 67 | return false; |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 68 | } |
| 69 | } |
| 70 | |
| 71 | JpegDecoderMgr::JpegDecoderMgr(SkStream* stream) |
Matt Sarett | 15f4d02 | 2017-06-06 17:58:33 +0000 | [diff] [blame] | 72 | : fSrcMgr(stream) |
| 73 | , fInit(false) |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 74 | { |
| 75 | // Error manager must be set before any calls to libjeg in order to handle failures |
msarett | fbccb59 | 2015-09-01 06:43:41 -0700 | [diff] [blame] | 76 | fDInfo.err = jpeg_std_error(&fErrorMgr); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 77 | fErrorMgr.error_exit = skjpeg_err_exit; |
| 78 | } |
| 79 | |
| 80 | void JpegDecoderMgr::init() { |
| 81 | jpeg_create_decompress(&fDInfo); |
| 82 | fInit = true; |
Matt Sarett | 15f4d02 | 2017-06-06 17:58:33 +0000 | [diff] [blame] | 83 | fDInfo.src = &fSrcMgr; |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 84 | fDInfo.err->output_message = &output_message; |
Matt Sarett | dbdf6d2 | 2016-11-08 15:26:56 -0500 | [diff] [blame] | 85 | fDInfo.progress = &fProgressMgr; |
| 86 | fProgressMgr.progress_monitor = &progress_monitor; |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | JpegDecoderMgr::~JpegDecoderMgr() { |
| 90 | if (fInit) { |
| 91 | jpeg_destroy_decompress(&fDInfo); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | jmp_buf& JpegDecoderMgr::getJmpBuf() { |
| 96 | return fErrorMgr.fJmpBuf; |
| 97 | } |
| 98 | |
| 99 | jpeg_decompress_struct* JpegDecoderMgr::dinfo() { |
| 100 | return &fDInfo; |
| 101 | } |