/* * Copyright 2011 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "include/core/SkMallocPixelRef.h" #include "include/core/SkData.h" #include "include/core/SkImageInfo.h" #include "include/private/SkMalloc.h" static bool is_valid(const SkImageInfo& info) { if (info.width() < 0 || info.height() < 0 || (unsigned)info.colorType() > (unsigned)kLastEnum_SkColorType || (unsigned)info.alphaType() > (unsigned)kLastEnum_SkAlphaType) { return false; } return true; } sk_sp SkMallocPixelRef::MakeAllocate(const SkImageInfo& info, size_t rowBytes) { if (rowBytes == 0) { rowBytes = info.minRowBytes(); // rowBytes can still be zero, if it overflowed (width * bytesPerPixel > size_t) // or if colortype is unknown } if (!is_valid(info) || !info.validRowBytes(rowBytes)) { return nullptr; } size_t size = 0; if (!info.isEmpty() && rowBytes) { size = info.computeByteSize(rowBytes); if (SkImageInfo::ByteSizeOverflowed(size)) { return nullptr; } } void* addr = sk_calloc_canfail(size); if (nullptr == addr) { return nullptr; } struct PixelRef final : public SkPixelRef { PixelRef(int w, int h, void* s, size_t r) : SkPixelRef(w, h, s, r) {} ~PixelRef() override { sk_free(this->pixels()); } }; return sk_sp(new PixelRef(info.width(), info.height(), addr, rowBytes)); } sk_sp SkMallocPixelRef::MakeWithData(const SkImageInfo& info, size_t rowBytes, sk_sp data) { SkASSERT(data != nullptr); if (!is_valid(info)) { return nullptr; } // TODO: what should we return if computeByteSize returns 0? // - the info was empty? // - we overflowed computing the size? if ((rowBytes < info.minRowBytes()) || (data->size() < info.computeByteSize(rowBytes))) { return nullptr; } struct PixelRef final : public SkPixelRef { sk_sp fData; PixelRef(int w, int h, void* s, size_t r, sk_sp d) : SkPixelRef(w, h, s, r), fData(std::move(d)) {} }; void* pixels = const_cast(data->data()); sk_sp pr(new PixelRef(info.width(), info.height(), pixels, rowBytes, std::move(data))); pr->setImmutable(); // since we were created with (immutable) data return pr; }