95e3c058ef
* SkAutoFree moved to SkTemplates.h (now implmented with unique_ptr).
* SkAutoMalloc and SkAutoSMalloc moved to SkAutoMalloc.h
* "SkAutoFree X(sk_malloc_throw(N));" --> "SkAutoMalloc X(N);"
Revert "Revert 'SkTypes.h : move SkAutoMalloc into SkAutoMalloc.h'"
This reverts commit c456b73fef
.
Change-Id: Ie2c1a17c20134b8ceab85a68b3ae3e61c24fbaab
Reviewed-on: https://skia-review.googlesource.com/6886
Reviewed-by: Hal Canary <halcanary@google.com>
Commit-Queue: Hal Canary <halcanary@google.com>
108 lines
3.9 KiB
C++
108 lines
3.9 KiB
C++
/*
|
|
* Copyright 2013 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "SkAutoMalloc.h"
|
|
#include "SkData.h"
|
|
#include "SkMallocPixelRef.h"
|
|
#include "Test.h"
|
|
|
|
static void delete_uint8_proc(void* ptr, void*) {
|
|
delete[] static_cast<uint8_t*>(ptr);
|
|
}
|
|
|
|
static void set_to_one_proc(void*, void* context) {
|
|
*(static_cast<int*>(context)) = 1;
|
|
}
|
|
|
|
/**
|
|
* This test contains basic sanity checks concerning SkMallocPixelRef.
|
|
*/
|
|
DEF_TEST(MallocPixelRef, reporter) {
|
|
REPORTER_ASSERT(reporter, true);
|
|
SkImageInfo info = SkImageInfo::MakeN32Premul(10, 13);
|
|
{
|
|
sk_sp<SkMallocPixelRef> pr(
|
|
SkMallocPixelRef::NewAllocate(info, info.minRowBytes() - 1, nullptr));
|
|
// rowbytes too small.
|
|
REPORTER_ASSERT(reporter, nullptr == pr.get());
|
|
}
|
|
{
|
|
size_t rowBytes = info.minRowBytes() - 1;
|
|
size_t size = info.getSafeSize(rowBytes);
|
|
sk_sp<SkData> data(SkData::MakeUninitialized(size));
|
|
sk_sp<SkMallocPixelRef> pr(
|
|
SkMallocPixelRef::NewWithData(info, rowBytes, nullptr, data.get()));
|
|
// rowbytes too small.
|
|
REPORTER_ASSERT(reporter, nullptr == pr.get());
|
|
}
|
|
{
|
|
size_t rowBytes = info.minRowBytes() + 2;
|
|
size_t size = info.getSafeSize(rowBytes) - 1;
|
|
sk_sp<SkData> data(SkData::MakeUninitialized(size));
|
|
sk_sp<SkMallocPixelRef> pr(
|
|
SkMallocPixelRef::NewWithData(info, rowBytes, nullptr, data.get()));
|
|
// data too small.
|
|
REPORTER_ASSERT(reporter, nullptr == pr.get());
|
|
}
|
|
size_t rowBytes = info.minRowBytes() + 7;
|
|
size_t size = info.getSafeSize(rowBytes) + 9;
|
|
{
|
|
SkAutoMalloc memory(size);
|
|
sk_sp<SkMallocPixelRef> pr(
|
|
SkMallocPixelRef::NewDirect(info, memory.get(), rowBytes, nullptr));
|
|
REPORTER_ASSERT(reporter, pr.get() != nullptr);
|
|
REPORTER_ASSERT(reporter, memory.get() == pr->pixels());
|
|
}
|
|
{
|
|
sk_sp<SkMallocPixelRef> pr(
|
|
SkMallocPixelRef::NewAllocate(info, rowBytes, nullptr));
|
|
REPORTER_ASSERT(reporter, pr.get() != nullptr);
|
|
REPORTER_ASSERT(reporter, pr->pixels());
|
|
}
|
|
{
|
|
void* addr = static_cast<void*>(new uint8_t[size]);
|
|
sk_sp<SkMallocPixelRef> pr(
|
|
SkMallocPixelRef::NewWithProc(info, rowBytes, nullptr, addr,
|
|
delete_uint8_proc, nullptr));
|
|
REPORTER_ASSERT(reporter, pr.get() != nullptr);
|
|
REPORTER_ASSERT(reporter, addr == pr->pixels());
|
|
}
|
|
{
|
|
int x = 0;
|
|
SkAutoMalloc memory(size);
|
|
sk_sp<SkMallocPixelRef> pr(
|
|
SkMallocPixelRef::NewWithProc(info, rowBytes, nullptr,
|
|
memory.get(), set_to_one_proc,
|
|
static_cast<void*>(&x)));
|
|
REPORTER_ASSERT(reporter, pr.get() != nullptr);
|
|
REPORTER_ASSERT(reporter, memory.get() == pr->pixels());
|
|
REPORTER_ASSERT(reporter, 0 == x);
|
|
pr.reset(nullptr);
|
|
// make sure that set_to_one_proc was called.
|
|
REPORTER_ASSERT(reporter, 1 == x);
|
|
}
|
|
{
|
|
void* addr = static_cast<void*>(new uint8_t[size]);
|
|
REPORTER_ASSERT(reporter, addr != nullptr);
|
|
sk_sp<SkMallocPixelRef> pr(
|
|
SkMallocPixelRef::NewWithProc(info, rowBytes, nullptr, addr,
|
|
delete_uint8_proc, nullptr));
|
|
REPORTER_ASSERT(reporter, addr == pr->pixels());
|
|
}
|
|
{
|
|
sk_sp<SkData> data(SkData::MakeUninitialized(size));
|
|
SkData* dataPtr = data.get();
|
|
REPORTER_ASSERT(reporter, dataPtr->unique());
|
|
sk_sp<SkMallocPixelRef> pr(
|
|
SkMallocPixelRef::NewWithData(info, rowBytes, nullptr, data.get()));
|
|
REPORTER_ASSERT(reporter, !(dataPtr->unique()));
|
|
data.reset(nullptr);
|
|
REPORTER_ASSERT(reporter, dataPtr->unique());
|
|
REPORTER_ASSERT(reporter, dataPtr->data() == pr->pixels());
|
|
}
|
|
}
|