fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.5 KiB
44 lines
1.5 KiB
// 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
|
|
|
|
#include "rocksdb/status.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace rocksdb {
|
|
|
|
// MemoryAllocator is an interface that a client can implement to supply custom
|
|
// memory allocation and deallocation methods. See rocksdb/cache.h for more
|
|
// information.
|
|
// All methods should be thread-safe.
|
|
class MemoryAllocator {
|
|
public:
|
|
virtual ~MemoryAllocator() = default;
|
|
|
|
// Name of the cache allocator, printed in the log
|
|
virtual const char* Name() const = 0;
|
|
|
|
// Allocate a block of at least size. Has to be thread-safe.
|
|
virtual void* Allocate(size_t size) = 0;
|
|
|
|
// Deallocate previously allocated block. Has to be thread-safe.
|
|
virtual void Deallocate(void* p) = 0;
|
|
|
|
// Returns the memory size of the block allocated at p. The default
|
|
// implementation that just returns the original allocation_size is fine.
|
|
virtual size_t UsableSize(void* /*p*/, size_t allocation_size) const {
|
|
// default implementation just returns the allocation size
|
|
return allocation_size;
|
|
}
|
|
};
|
|
|
|
// Generate cache allocators which allocates through Jemalloc and utilize
|
|
// MADV_DONTDUMP through madvice to exclude cache items from core dump.
|
|
extern Status NewJemallocNodumpAllocator(
|
|
std::shared_ptr<MemoryAllocator>* memory_allocator);
|
|
|
|
} // namespace rocksdb
|
|
|