2018-10-03 02:21:54 +02:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-10-26 23:27:09 +02:00
|
|
|
#include "rocksdb/memory_allocator.h"
|
2018-10-03 02:21:54 +02:00
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2018-10-03 02:21:54 +02:00
|
|
|
|
|
|
|
struct CustomDeleter {
|
2018-10-26 23:27:09 +02:00
|
|
|
CustomDeleter(MemoryAllocator* a = nullptr) : allocator(a) {}
|
2018-10-03 02:21:54 +02:00
|
|
|
|
|
|
|
void operator()(char* ptr) const {
|
|
|
|
if (allocator) {
|
|
|
|
allocator->Deallocate(reinterpret_cast<void*>(ptr));
|
|
|
|
} else {
|
|
|
|
delete[] ptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-26 23:27:09 +02:00
|
|
|
MemoryAllocator* allocator;
|
2018-10-03 02:21:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
using CacheAllocationPtr = std::unique_ptr<char[], CustomDeleter>;
|
|
|
|
|
|
|
|
inline CacheAllocationPtr AllocateBlock(size_t size,
|
2018-10-26 23:27:09 +02:00
|
|
|
MemoryAllocator* allocator) {
|
2018-10-03 02:21:54 +02:00
|
|
|
if (allocator) {
|
|
|
|
auto block = reinterpret_cast<char*>(allocator->Allocate(size));
|
|
|
|
return CacheAllocationPtr(block, allocator);
|
|
|
|
}
|
|
|
|
return CacheAllocationPtr(new char[size]);
|
|
|
|
}
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|