blob: d7f446bb5766558eb2f4e5f91f2f99071ec7f740 [file] [log] [blame]
halcanarya096d7a2015-03-27 12:16:53 -07001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkCodec.h"
msarett99f567e2015-08-05 12:58:26 -07009#include "SkCodecPriv.h"
halcanarya096d7a2015-03-27 12:16:53 -070010#include "SkColorPriv.h"
msarett99f567e2015-08-05 12:58:26 -070011#include "SkColorTable.h"
halcanarya096d7a2015-03-27 12:16:53 -070012#include "SkStream.h"
13#include "SkCodec_wbmp.h"
14
msarett99f567e2015-08-05 12:58:26 -070015// Each bit represents a pixel, so width is actually a number of bits.
16// A row will always be stored in bytes, so we round width up to the
17// nearest multiple of 8 to get the number of bits actually in the row.
18// We then divide by 8 to convert to bytes.
19static inline size_t get_src_row_bytes(int width) {
20 return SkAlign8(width) >> 3;
21}
22
23static inline void setup_color_table(SkColorType colorType,
24 SkPMColor* colorPtr, int* colorCount) {
25 if (kIndex_8_SkColorType == colorType) {
26 colorPtr[0] = SK_ColorBLACK;
27 colorPtr[1] = SK_ColorWHITE;
28 *colorCount = 2;
29 }
30}
31
halcanarya096d7a2015-03-27 12:16:53 -070032// http://en.wikipedia.org/wiki/Variable-length_quantity
33static bool read_mbf(SkStream* stream, uint64_t* value) {
34 uint64_t n = 0;
35 uint8_t data;
36 const uint64_t kLimit = 0xFE00000000000000;
37 SkASSERT(kLimit == ~((~static_cast<uint64_t>(0)) >> 7));
38 do {
39 if (n & kLimit) { // Will overflow on shift by 7.
40 return false;
41 }
42 if (stream->read(&data, 1) != 1) {
43 return false;
44 }
45 n = (n << 7) | (data & 0x7F);
46 } while (data & 0x80);
47 *value = n;
48 return true;
49}
50
51static bool read_header(SkStream* stream, SkISize* size) {
52 uint64_t width, height;
53 uint16_t data;
54 if (stream->read(&data, 2) != 2 || data != 0) {
55 return false;
56 }
57 if (!read_mbf(stream, &width) || width > 0xFFFF || !width) {
58 return false;
59 }
msarett99f567e2015-08-05 12:58:26 -070060 if (!read_mbf(stream, &height) || height > 0xFFFF || !height) {
halcanarya096d7a2015-03-27 12:16:53 -070061 return false;
62 }
63 if (size) {
64 *size = SkISize::Make(SkToS32(width), SkToS32(height));
65 }
66 return true;
67}
68
scroggob427db12015-08-12 07:24:13 -070069bool SkWbmpCodec::onRewind() {
halcanary96fcdcc2015-08-27 07:41:13 -070070 return read_header(this->stream(), nullptr);
msarett99f567e2015-08-05 12:58:26 -070071}
72
73SkSwizzler* SkWbmpCodec::initializeSwizzler(const SkImageInfo& info,
74 const SkPMColor* ctable, const Options& opts) {
msarett99f567e2015-08-05 12:58:26 -070075 // Create the swizzler based on the desired color type
76 switch (info.colorType()) {
77 case kIndex_8_SkColorType:
78 case kN32_SkColorType:
scroggocc2feb12015-08-14 08:32:46 -070079 case kRGB_565_SkColorType:
msarett99f567e2015-08-05 12:58:26 -070080 case kGray_8_SkColorType:
scroggoe7fc14b2015-10-02 13:14:46 -070081 break;
msarett99f567e2015-08-05 12:58:26 -070082 default:
halcanary96fcdcc2015-08-27 07:41:13 -070083 return nullptr;
halcanarya096d7a2015-03-27 12:16:53 -070084 }
scroggoe7fc14b2015-10-02 13:14:46 -070085 return SkSwizzler::CreateSwizzler(SkSwizzler::kBit, ctable, info,
86 opts.fZeroInitialized);
halcanarya096d7a2015-03-27 12:16:53 -070087}
88
msarett99f567e2015-08-05 12:58:26 -070089SkCodec::Result SkWbmpCodec::readRow(uint8_t* row) {
90 if (this->stream()->read(row, fSrcRowBytes) != fSrcRowBytes) {
91 return kIncompleteInput;
92 }
93 return kSuccess;
94}
95
halcanarya096d7a2015-03-27 12:16:53 -070096SkWbmpCodec::SkWbmpCodec(const SkImageInfo& info, SkStream* stream)
msarett99f567e2015-08-05 12:58:26 -070097 : INHERITED(info, stream)
98 , fSrcRowBytes(get_src_row_bytes(this->getInfo().width()))
scroggo46c57472015-09-30 08:57:13 -070099 , fColorTable(nullptr)
100 , fSwizzler(nullptr)
msarett99f567e2015-08-05 12:58:26 -0700101{}
halcanarya096d7a2015-03-27 12:16:53 -0700102
103SkEncodedFormat SkWbmpCodec::onGetEncodedFormat() const {
104 return kWBMP_SkEncodedFormat;
105}
106
scroggoeb602a52015-07-09 08:16:03 -0700107SkCodec::Result SkWbmpCodec::onGetPixels(const SkImageInfo& info,
msarett99f567e2015-08-05 12:58:26 -0700108 void* dst,
scroggoeb602a52015-07-09 08:16:03 -0700109 size_t rowBytes,
scroggob636b452015-07-22 07:16:20 -0700110 const Options& options,
scroggoeb602a52015-07-09 08:16:03 -0700111 SkPMColor ctable[],
112 int* ctableCount) {
scroggob636b452015-07-22 07:16:20 -0700113 if (options.fSubset) {
114 // Subsets are not supported.
115 return kUnimplemented;
116 }
msarett99f567e2015-08-05 12:58:26 -0700117
scroggod1bc5742015-08-12 08:31:44 -0700118 if (!valid_alpha(info.alphaType(), this->getInfo().alphaType())) {
scroggo46c57472015-09-30 08:57:13 -0700119 return kInvalidConversion;
scroggod1bc5742015-08-12 08:31:44 -0700120 }
121
msarett99f567e2015-08-05 12:58:26 -0700122 // Prepare a color table if necessary
123 setup_color_table(info.colorType(), ctable, ctableCount);
124
msarett99f567e2015-08-05 12:58:26 -0700125 // Initialize the swizzler
126 SkAutoTDelete<SkSwizzler> swizzler(this->initializeSwizzler(info, ctable, options));
halcanary96fcdcc2015-08-27 07:41:13 -0700127 if (nullptr == swizzler.get()) {
msarett99f567e2015-08-05 12:58:26 -0700128 return kInvalidConversion;
halcanarya096d7a2015-03-27 12:16:53 -0700129 }
msarett99f567e2015-08-05 12:58:26 -0700130
131 // Perform the decode
halcanarya096d7a2015-03-27 12:16:53 -0700132 SkISize size = info.dimensions();
msarett99f567e2015-08-05 12:58:26 -0700133 SkAutoTMalloc<uint8_t> src(fSrcRowBytes);
134 void* dstRow = dst;
halcanarya096d7a2015-03-27 12:16:53 -0700135 for (int y = 0; y < size.height(); ++y) {
msarett99f567e2015-08-05 12:58:26 -0700136 Result rowResult = this->readRow(src.get());
137 if (kSuccess != rowResult) {
138 return rowResult;
halcanarya096d7a2015-03-27 12:16:53 -0700139 }
msarett99f567e2015-08-05 12:58:26 -0700140 swizzler->swizzle(dstRow, src.get());
141 dstRow = SkTAddOffset<void>(dstRow, rowBytes);
halcanarya096d7a2015-03-27 12:16:53 -0700142 }
scroggoeb602a52015-07-09 08:16:03 -0700143 return kSuccess;
halcanarya096d7a2015-03-27 12:16:53 -0700144}
145
146bool SkWbmpCodec::IsWbmp(SkStream* stream) {
halcanary96fcdcc2015-08-27 07:41:13 -0700147 return read_header(stream, nullptr);
halcanarya096d7a2015-03-27 12:16:53 -0700148}
149
150SkCodec* SkWbmpCodec::NewFromStream(SkStream* stream) {
scroggo0a7e69c2015-04-03 07:22:22 -0700151 SkAutoTDelete<SkStream> streamDeleter(stream);
halcanarya096d7a2015-03-27 12:16:53 -0700152 SkISize size;
153 if (!read_header(stream, &size)) {
halcanary96fcdcc2015-08-27 07:41:13 -0700154 return nullptr;
halcanarya096d7a2015-03-27 12:16:53 -0700155 }
msarett99f567e2015-08-05 12:58:26 -0700156 SkImageInfo info = SkImageInfo::Make(size.width(), size.height(),
157 kGray_8_SkColorType, kOpaque_SkAlphaType);
halcanary385fe4d2015-08-26 13:07:48 -0700158 return new SkWbmpCodec(info, streamDeleter.detach());
halcanarya096d7a2015-03-27 12:16:53 -0700159}
msarett99f567e2015-08-05 12:58:26 -0700160
scroggo46c57472015-09-30 08:57:13 -0700161SkCodec::Result SkWbmpCodec::onGetScanlines(void* dst, int count, size_t dstRowBytes) {
162 void* dstRow = dst;
163 for (int y = 0; y < count; ++y) {
164 Result rowResult = this->readRow(fSrcBuffer.get());
165 if (kSuccess != rowResult) {
166 return rowResult;
msarett99f567e2015-08-05 12:58:26 -0700167 }
scroggo46c57472015-09-30 08:57:13 -0700168 fSwizzler->swizzle(dstRow, fSrcBuffer.get());
169 dstRow = SkTAddOffset<void>(dstRow, dstRowBytes);
msarett99f567e2015-08-05 12:58:26 -0700170 }
scroggo46c57472015-09-30 08:57:13 -0700171 return kSuccess;
msarett99f567e2015-08-05 12:58:26 -0700172}
scroggo46c57472015-09-30 08:57:13 -0700173
174SkCodec::Result SkWbmpCodec::onStartScanlineDecode(const SkImageInfo& dstInfo,
175 const Options& options, SkPMColor inputColorTable[], int* inputColorCount) {
scroggo46c57472015-09-30 08:57:13 -0700176 if (options.fSubset) {
177 // Subsets are not supported.
178 return kUnimplemented;
179 }
scroggo46c57472015-09-30 08:57:13 -0700180
181 if (!valid_alpha(dstInfo.alphaType(), this->getInfo().alphaType())) {
182 return kInvalidConversion;
183 }
184
185 // Fill in the color table
186 setup_color_table(dstInfo.colorType(), inputColorTable, inputColorCount);
187
188 // Copy the color table to a pointer that can be owned by the scanline decoder
189 if (kIndex_8_SkColorType == dstInfo.colorType()) {
190 fColorTable.reset(new SkColorTable(inputColorTable, 2));
191 }
192
193 // Initialize the swizzler
194 fSwizzler.reset(this->initializeSwizzler(dstInfo,
195 get_color_ptr(fColorTable.get()), options));
196 if (nullptr == fSwizzler.get()) {
197 return kInvalidConversion;
198 }
199
200 fSrcBuffer.reset(fSrcRowBytes);
201
202 return kSuccess;
203}
204