OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright 2016 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" | |
9 #include "SkCodecPriv.h" | |
10 #include "SkColorPriv.h" | |
11 #include "SkData.h" | |
12 #if !defined(GOOGLE3) | |
13 #include "SkJpegCodec.h" | |
14 #endif | |
15 #include "SkRawCodec.h" | |
16 #include "SkRefCnt.h" | |
17 #include "SkStream.h" | |
18 #include "SkStreamPriv.h" | |
19 #include "SkSwizzler.h" | |
20 #include "SkTemplates.h" | |
21 #include "SkTypes.h" | |
22 | |
23 #include "dng_color_space.h" | |
24 #include "dng_exceptions.h" | |
25 #include "dng_host.h" | |
26 #include "dng_info.h" | |
27 #include "dng_memory.h" | |
28 #include "dng_render.h" | |
29 #include "dng_stream.h" | |
30 | |
31 #include "src/piex.h" | |
32 | |
33 #include <cmath> // for std::round,floor,ceil | |
34 #include <limits> | |
35 | |
36 namespace { | |
37 | |
38 // T must be unsigned type. | |
39 template <class T> | |
40 bool safe_add_to_size_t(T arg1, T arg2, size_t* result) { | |
41 SkASSERT(arg1 >= 0); | |
42 SkASSERT(arg2 >= 0); | |
43 if (arg1 >= 0 && arg2 <= std::numeric_limits<T>::max() - arg1) { | |
44 T sum = arg1 + arg2; | |
45 if (sum <= std::numeric_limits<size_t>::max()) { | |
46 *result = static_cast<size_t>(sum); | |
47 return true; | |
48 } | |
49 } | |
50 return false; | |
51 } | |
52 | |
53 class SkDngMemoryAllocator : public dng_memory_allocator { | |
54 public: | |
55 ~SkDngMemoryAllocator() override {} | |
56 | |
57 dng_memory_block* Allocate(uint32 size) override { | |
58 // To avoid arbitary allocation requests which might lead to out-of-memo ry, limit the | |
59 // amount of memory that can be allocated at once. The memory limit is b ased on experiments | |
60 // and supposed to be sufficient for all valid DNG images. | |
61 if (size > 300 * 1024 * 1024) { // 300 MB | |
62 ThrowMemoryFull(); | |
63 } | |
64 return dng_memory_allocator::Allocate(size); | |
65 } | |
66 }; | |
67 | |
68 } // namespace | |
69 | |
70 // Note: this class could throw exception if it is used as dng_stream. | |
71 class SkRawStream : public dng_stream, public ::piex::StreamInterface { | |
72 public: | |
73 // Note that this call will take the ownership of stream. | |
74 explicit SkRawStream(SkStream* stream) | |
75 : fStream(stream), fWholeStreamRead(false) {} | |
76 | |
77 ~SkRawStream() override {} | |
78 | |
79 /* | |
80 * Creates an SkMemoryStream from the offset with size. | |
81 * Note: for performance reason, this function is destructive to the SkRawSt ream. One should | |
82 * abandon current object after the function call. | |
83 */ | |
84 SkMemoryStream* transferBuffer(size_t offset, size_t size) { | |
85 SkAutoTUnref<SkData> data(SkData::NewUninitialized(size)); | |
86 if (offset > fStreamBuffer.bytesWritten()) { | |
87 // If the offset is not buffered, read from fStream directly and ski p the buffering. | |
88 const size_t skipLength = offset - fStreamBuffer.bytesWritten(); | |
89 if (fStream->skip(skipLength) != skipLength) { | |
90 return nullptr; | |
91 } | |
92 const size_t bytesRead = fStream->read(data->writable_data(), size); | |
93 if (bytesRead < size) { | |
94 data.reset(SkData::NewSubset(data.get(), 0, bytesRead)); | |
95 } | |
96 } else { | |
97 const size_t alreadyBuffered = SkTMin(fStreamBuffer.bytesWritten() - offset, size); | |
98 if (alreadyBuffered > 0 && | |
99 !fStreamBuffer.read(data->writable_data(), offset, alreadyBuffer ed)) { | |
100 return nullptr; | |
101 } | |
102 | |
103 const size_t remaining = size - alreadyBuffered; | |
104 if (remaining) { | |
105 auto* dst = static_cast<uint8_t*>(data->writable_data()) + alrea dyBuffered; | |
106 const size_t bytesRead = fStream->read(dst, remaining); | |
107 size_t newSize; | |
108 if (bytesRead < remaining) { | |
109 if (!safe_add_to_size_t(alreadyBuffered, bytesRead, &newSize )) { | |
110 return nullptr; | |
111 } | |
112 data.reset(SkData::NewSubset(data.get(), 0, newSize)); | |
113 } | |
114 } | |
115 } | |
116 return new SkMemoryStream(data); | |
117 } | |
118 | |
119 // For PIEX | |
120 ::piex::Error GetData(const size_t offset, const size_t length, | |
121 uint8* data) override { | |
122 if (offset == 0 && length == 0) { | |
123 return ::piex::Error::kOk; | |
124 } | |
125 size_t sum; | |
126 if (!safe_add_to_size_t(offset, length, &sum) || !this->bufferMoreData(s um)) { | |
127 return ::piex::Error::kFail; | |
128 } | |
129 if (!fStreamBuffer.read(data, offset, length)) { | |
130 return ::piex::Error::kFail; | |
131 } | |
132 return ::piex::Error::kOk; | |
133 } | |
134 | |
135 protected: | |
136 // For dng_stream | |
137 uint64 DoGetLength() override { | |
138 if (!this->bufferMoreData(kReadToEnd)) { // read whole stream | |
139 ThrowReadFile(); | |
140 } | |
141 return fStreamBuffer.bytesWritten(); | |
142 } | |
143 | |
144 // For dng_stream | |
145 void DoRead(void* data, uint32 count, uint64 offset) override { | |
146 if (count == 0 && offset == 0) { | |
147 return; | |
148 } | |
149 size_t sum; | |
150 if (!safe_add_to_size_t(static_cast<uint64>(count), offset, &sum) || | |
151 !this->bufferMoreData(sum)) { | |
152 ThrowReadFile(); | |
153 } | |
154 | |
155 if (!fStreamBuffer.read(data, offset, count)) { | |
156 ThrowReadFile(); | |
157 } | |
158 } | |
159 | |
160 private: | |
161 // Note: if the newSize == kReadToEnd (0), this function will read to the en d of stream. | |
162 bool bufferMoreData(size_t newSize) { | |
163 if (newSize == kReadToEnd) { | |
164 if (fWholeStreamRead) { // already read-to-end. | |
165 return true; | |
166 } | |
167 | |
168 // TODO: optimize for the special case when the input is SkMemoryStr eam. | |
169 return SkStreamCopy(&fStreamBuffer, fStream.get()); | |
170 } | |
171 | |
172 if (newSize <= fStreamBuffer.bytesWritten()) { // already buffered to n ewSize | |
173 return true; | |
174 } | |
175 if (fWholeStreamRead) { // newSize is larger than the whole stream. | |
176 return false; | |
177 } | |
178 | |
179 const size_t sizeToRead = newSize - fStreamBuffer.bytesWritten(); | |
180 SkAutoTMalloc<uint8> tempBuffer(sizeToRead); | |
181 const size_t bytesRead = fStream->read(tempBuffer.get(), sizeToRead); | |
182 if (bytesRead != sizeToRead) { | |
183 return false; | |
184 } | |
185 return fStreamBuffer.write(tempBuffer.get(), bytesRead); | |
186 } | |
187 | |
188 SkAutoTDelete<SkStream> fStream; | |
189 bool fWholeStreamRead; | |
190 | |
191 SkDynamicMemoryWStream fStreamBuffer; | |
192 | |
193 const size_t kReadToEnd = 0; | |
194 }; | |
195 | |
196 class SkDngImage { | |
197 public: | |
198 static SkDngImage* NewFromStream(SkRawStream* stream) { | |
199 SkAutoTDelete<SkDngImage> dngImage(new SkDngImage(stream)); | |
200 if (!dngImage->readDng()) { | |
201 return nullptr; | |
202 } | |
203 | |
204 SkASSERT(dngImage->fNegative); | |
205 return dngImage.release(); | |
206 } | |
207 | |
208 /* | |
209 * Renders the DNG image to the size. The DNG SDK only allows scaling close to integer factors | |
210 * down to 80 pixels on the short edge. The rendered image will be close to the specified size, | |
211 * but there is no guarantee that any of the edges will match the requested size. E.g. | |
212 * 100% size: 4000 x 3000 | |
213 * requested size: 1600 x 1200 | |
214 * returned size could be: 2000 x 1500 | |
215 */ | |
216 dng_image* render(int width, int height) { | |
217 // render() takes ownership of fHost, fInfo and fNegative when available . | |
218 SkAutoTDelete<dng_host> host; | |
219 SkAutoTDelete<dng_info> info; | |
220 SkAutoTDelete<dng_negative> negative; | |
221 if (!fHost || !fInfo || !fNegative) { | |
222 if (!this->readDng()) { | |
223 return nullptr; | |
224 } | |
225 } else { | |
226 host.reset(fHost.release()); | |
227 info.reset(fInfo.release()); | |
228 negative.reset(fNegative.release()); | |
229 } | |
230 | |
231 // DNG SDK preserves the aspect ratio, so it only needs to know the long er dimension. | |
232 const int preferredSize = SkTMax(width, height); | |
233 try { | |
234 host->SetPreferredSize(preferredSize); | |
235 host->ValidateSizes(); | |
236 | |
237 negative->ReadStage1Image(*host, *fStream, *info); | |
238 | |
239 if (info->fMaskIndex != -1) { | |
240 negative->ReadTransparencyMask(*host, *fStream, *info); | |
241 } | |
242 | |
243 negative->ValidateRawImageDigest(*host); | |
244 if (negative->IsDamaged()) { | |
245 return nullptr; | |
246 } | |
247 | |
248 const int32 kMosaicPlane = -1; | |
249 negative->BuildStage2Image(*host); | |
250 negative->BuildStage3Image(*host, kMosaicPlane); | |
251 | |
252 dng_render render(*host, *negative); | |
253 render.SetFinalSpace(dng_space_sRGB::Get()); | |
254 render.SetFinalPixelType(ttByte); | |
255 | |
256 dng_point stage3_size = negative->Stage3Image()->Size(); | |
257 render.SetMaximumSize(SkTMax(stage3_size.h, stage3_size.v)); | |
258 | |
259 return render.Render(); | |
260 } catch (...) { | |
261 return nullptr; | |
262 } | |
263 } | |
264 | |
265 const SkImageInfo& getImageInfo() const { | |
266 return fImageInfo; | |
267 } | |
268 | |
269 bool isXtransImage() const { | |
270 return fIsXtransImage; | |
271 } | |
272 | |
273 private: | |
274 bool readDng() { | |
275 // Due to the limit of DNG SDK, we need to reset host and info. | |
276 fHost.reset(new dng_host(&fAllocator)); | |
277 fInfo.reset(new dng_info); | |
278 try { | |
279 fHost->ValidateSizes(); | |
280 fInfo->Parse(*fHost, *fStream); | |
281 fInfo->PostParse(*fHost); | |
282 if (!fInfo->IsValidDNG()) { | |
283 return false; | |
284 } | |
285 | |
286 fNegative.reset(fHost->Make_dng_negative()); | |
287 fNegative->Parse(*fHost, *fStream, *fInfo); | |
288 fNegative->PostParse(*fHost, *fStream, *fInfo); | |
289 fNegative->SynchronizeMetadata(); | |
290 | |
291 fImageInfo = SkImageInfo::Make(fNegative->DefaultCropSizeH().As_real 64(), | |
292 fNegative->DefaultCropSizeV().As_real 64(), | |
293 kN32_SkColorType, kOpaque_SkAlphaType ); | |
294 fIsXtransImage = fNegative->GetMosaicInfo() != nullptr | |
295 ? (fNegative->GetMosaicInfo()->fCFAPatternSize.v == 6 | |
296 && fNegative->GetMosaicInfo()->fCFAPatternSize.h == 6) | |
297 : false; | |
298 return true; | |
299 } catch (...) { | |
300 fNegative.reset(nullptr); | |
301 return false; | |
302 } | |
303 } | |
304 | |
305 SkDngImage(SkRawStream* stream) | |
306 : fStream(stream) {} | |
307 | |
308 SkDngMemoryAllocator fAllocator; | |
309 SkAutoTDelete<SkRawStream> fStream; | |
310 SkAutoTDelete<dng_host> fHost; | |
311 SkAutoTDelete<dng_info> fInfo; | |
312 SkAutoTDelete<dng_negative> fNegative; | |
313 | |
314 SkImageInfo fImageInfo; | |
315 bool fIsXtransImage; | |
316 }; | |
317 | |
318 /* | |
319 * Tries to handle the image with PIEX. If PIEX returns kOk and finds the previe w image, create a | |
320 * SkJpegCodec. If PIEX returns kFail, then the file is invalid, return nullptr. In other cases, | |
321 * fallback to create SkRawCodec for DNG images. | |
322 */ | |
323 SkCodec* SkRawCodec::NewFromStream(SkStream* stream) { | |
324 SkAutoTDelete<SkRawStream> rawStream(new SkRawStream(stream)); | |
325 ::piex::PreviewImageData imageData; | |
326 // FIXME: the ::piex::GetPreviewImageData() may "reallocate" the SkRawStream ->fStreamBuffer | |
327 // too often (depends on the image format). | |
328 if (::piex::IsRaw(rawStream.get())) { | |
329 ::piex::Error error = ::piex::GetPreviewImageData(rawStream.get(), &imag eData); | |
330 | |
331 if (error == ::piex::Error::kOk && imageData.preview_length > 0) { | |
332 #if !defined(GOOGLE3) | |
333 // transferBuffer() is destructive to the rawStream. Abandon the raw Stream after this | |
334 // function call. | |
335 // FIXME: one may avoid the copy of memoryStream and use the buffere d rawStream. | |
336 SkMemoryStream* memoryStream = | |
337 rawStream->transferBuffer(imageData.preview_offset, imageDat a.preview_length); | |
338 return memoryStream ? SkJpegCodec::NewFromStream(memoryStream) : nul lptr; | |
339 #else | |
340 return nullptr; | |
341 #endif | |
342 } else if (error == ::piex::Error::kFail) { | |
343 return nullptr; | |
344 } | |
345 } | |
346 | |
347 SkAutoTDelete<SkDngImage> dngImage(SkDngImage::NewFromStream(rawStream.relea se())); | |
348 if (!dngImage) { | |
349 return nullptr; | |
350 } | |
351 | |
352 return new SkRawCodec(dngImage.release()); | |
353 } | |
354 | |
355 SkCodec::Result SkRawCodec::onGetPixels(const SkImageInfo& requestedInfo, void* dst, | |
356 size_t dstRowBytes, const Options& optio ns, | |
357 SkPMColor ctable[], int* ctableCount, | |
358 int* rowsDecoded) { | |
359 if (!conversion_possible(requestedInfo, this->getInfo())) { | |
360 SkCodecPrintf("Error: cannot convert input type to output type.\n"); | |
361 return kInvalidConversion; | |
362 } | |
363 | |
364 SkAutoTDelete<SkSwizzler> swizzler(SkSwizzler::CreateSwizzler( | |
365 SkSwizzler::kRGB, nullptr, requestedInfo, options)); | |
scroggo
2016/01/21 17:36:08
SkASSERT(swizzler)?
yujieqin
2016/01/21 17:44:26
Done.
| |
366 | |
367 const int width = requestedInfo.width(); | |
368 const int height = requestedInfo.height(); | |
369 SkAutoTDelete<dng_image> image(fDngImage->render(width, height)); | |
370 if (!image) { | |
371 return kInvalidInput; | |
372 } | |
373 | |
374 // Because the DNG SDK can not guarantee to render to requested size, we all ow a small | |
375 // difference. Only the overlapping region will be converted. | |
376 const float maxDiffRatio = 1.03f; | |
377 const dng_point& imageSize = image->Size(); | |
378 if (imageSize.h / width > maxDiffRatio || imageSize.h < width || | |
379 imageSize.v / height > maxDiffRatio || imageSize.v < height) { | |
380 return SkCodec::kInvalidScale; | |
381 } | |
382 | |
383 void* dstRow = dst; | |
384 uint8_t srcRow[width * 3]; | |
385 | |
386 dng_pixel_buffer buffer; | |
387 buffer.fData = &srcRow[0]; | |
388 buffer.fPlane = 0; | |
389 buffer.fPlanes = 3; | |
390 buffer.fColStep = buffer.fPlanes; | |
391 buffer.fPlaneStep = 1; | |
392 buffer.fPixelType = ttByte; | |
393 buffer.fPixelSize = sizeof(uint8_t); | |
394 buffer.fRowStep = sizeof(srcRow); | |
395 | |
396 for (int i = 0; i < height; ++i) { | |
397 buffer.fArea = dng_rect(i, 0, i + 1, width); | |
398 | |
399 try { | |
400 image->Get(buffer, dng_image::edge_zero); | |
401 } catch (...) { | |
402 *rowsDecoded = i; | |
403 return kIncompleteInput; | |
404 } | |
405 | |
406 swizzler->swizzle(dstRow, &srcRow[0]); | |
407 dstRow = SkTAddOffset<void>(dstRow, dstRowBytes); | |
408 } | |
409 return kSuccess; | |
410 } | |
411 | |
412 SkISize SkRawCodec::onGetScaledDimensions(float desiredScale) const { | |
413 SkASSERT(desiredScale <= 1.f); | |
414 const SkISize dim = this->getInfo().dimensions(); | |
415 | |
416 // Limits the minimum size to be 80 on the short edge. | |
417 const float shortEdge = SkTMin(dim.fWidth, dim.fHeight); | |
418 if (desiredScale < 80.f / shortEdge) { | |
419 desiredScale = 80.f / shortEdge; | |
420 } | |
421 | |
422 // For Xtrans images, the integer-factor scaling does not support the half-s ize scaling case | |
423 // (stronger downscalings are fine). In this case, returns the non-scaled ve rsion. | |
424 if (fDngImage->isXtransImage() && desiredScale >= 0.5f) { | |
425 return dim; | |
426 } | |
427 | |
428 // Round to integer-factors. | |
429 const float finalScale = std::floor(1.f/ desiredScale); | |
430 return SkISize::Make(std::floor(dim.fWidth / finalScale), | |
431 std::floor(dim.fHeight / finalScale)); | |
432 } | |
433 | |
434 bool SkRawCodec::onDimensionsSupported(const SkISize& dim) { | |
435 const SkISize fullDim = this->getInfo().dimensions(); | |
436 const float fullShortEdge = SkTMin(fullDim.fWidth, fullDim.fHeight); | |
437 const float shortEdge = SkTMin(dim.fWidth, dim.fHeight); | |
438 | |
439 SkISize sizeFloor = this->onGetScaledDimensions(1.f / std::floor(fullShortEd ge / shortEdge)); | |
440 SkISize sizeCeil = this->onGetScaledDimensions(1.f / std::ceil(fullShortEdge / shortEdge)); | |
441 return sizeFloor == dim || sizeCeil == dim; | |
442 } | |
443 | |
444 SkRawCodec::~SkRawCodec() {} | |
445 | |
446 SkRawCodec::SkRawCodec(SkDngImage* dngImage) | |
447 : INHERITED(dngImage->getImageInfo(), nullptr) | |
448 , fDngImage(dngImage) {} | |
OLD | NEW |