2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// 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).
|
2013-10-16 23:59:46 +02:00
|
|
|
//
|
2011-03-18 23:37:00 +01:00
|
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
|
2013-10-05 07:32:05 +02:00
|
|
|
#pragma once
|
2011-03-18 23:37:00 +01:00
|
|
|
#include <stdint.h>
|
2018-04-13 02:55:14 +02:00
|
|
|
#include <string>
|
2018-06-29 17:55:33 +02:00
|
|
|
#ifdef ROCKSDB_MALLOC_USABLE_SIZE
|
|
|
|
#ifdef OS_FREEBSD
|
|
|
|
#include <malloc_np.h>
|
|
|
|
#else
|
|
|
|
#include <malloc.h>
|
|
|
|
#endif
|
|
|
|
#endif
|
2018-04-13 02:55:14 +02:00
|
|
|
#include "rocksdb/options.h"
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/slice.h"
|
|
|
|
#include "rocksdb/status.h"
|
2013-10-29 01:54:09 +01:00
|
|
|
#include "rocksdb/table.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2017-04-06 04:02:00 +02:00
|
|
|
#include "options/cf_options.h"
|
2017-03-04 03:09:43 +01:00
|
|
|
#include "port/port.h" // noexcept
|
|
|
|
#include "table/persistent_cache_options.h"
|
2018-10-04 22:00:10 +02:00
|
|
|
#include "util/file_reader_writer.h"
|
2018-10-26 23:27:09 +02:00
|
|
|
#include "util/memory_allocator.h"
|
2016-04-28 20:39:12 +02:00
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
class RandomAccessFile;
|
|
|
|
struct ReadOptions;
|
|
|
|
|
2016-07-19 18:44:03 +02:00
|
|
|
extern bool ShouldReportDetailedTime(Env* env, Statistics* stats);
|
|
|
|
|
2014-02-05 01:21:47 +01:00
|
|
|
// the length of the magic number in bytes.
|
|
|
|
const int kMagicNumberLengthByte = 8;
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
// BlockHandle is a pointer to the extent of a file that stores a data
|
|
|
|
// block or a meta block.
|
|
|
|
class BlockHandle {
|
|
|
|
public:
|
|
|
|
BlockHandle();
|
2013-12-05 00:43:09 +01:00
|
|
|
BlockHandle(uint64_t offset, uint64_t size);
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
// The offset of the block in the file.
|
|
|
|
uint64_t offset() const { return offset_; }
|
2014-11-06 20:14:28 +01:00
|
|
|
void set_offset(uint64_t _offset) { offset_ = _offset; }
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
// The size of the stored block
|
|
|
|
uint64_t size() const { return size_; }
|
2014-11-06 20:14:28 +01:00
|
|
|
void set_size(uint64_t _size) { size_ = _size; }
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
void EncodeTo(std::string* dst) const;
|
|
|
|
Status DecodeFrom(Slice* input);
|
2018-08-10 01:49:45 +02:00
|
|
|
Status DecodeSizeFrom(uint64_t offset, Slice* input);
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2014-12-23 22:24:07 +01:00
|
|
|
// Return a string that contains the copy of handle.
|
|
|
|
std::string ToString(bool hex = true) const;
|
|
|
|
|
2013-12-05 00:43:09 +01:00
|
|
|
// if the block handle's offset and size are both "0", we will view it
|
|
|
|
// as a null block handle that points to no where.
|
2018-04-13 02:55:14 +02:00
|
|
|
bool IsNull() const { return offset_ == 0 && size_ == 0; }
|
2013-12-05 00:43:09 +01:00
|
|
|
|
2018-04-13 02:55:14 +02:00
|
|
|
static const BlockHandle& NullBlockHandle() { return kNullBlockHandle; }
|
2013-12-05 00:43:09 +01:00
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
// Maximum encoding length of a BlockHandle
|
|
|
|
enum { kMaxEncodedLength = 10 + 10 };
|
|
|
|
|
|
|
|
private:
|
2016-11-05 17:10:51 +01:00
|
|
|
uint64_t offset_;
|
|
|
|
uint64_t size_;
|
2013-12-05 00:43:09 +01:00
|
|
|
|
|
|
|
static const BlockHandle kNullBlockHandle;
|
2011-03-18 23:37:00 +01:00
|
|
|
};
|
|
|
|
|
2019-03-28 00:13:08 +01:00
|
|
|
inline uint32_t GetCompressFormatForVersion(CompressionType compression_type,
|
|
|
|
uint32_t version) {
|
2018-04-13 02:55:14 +02:00
|
|
|
#ifdef NDEBUG
|
|
|
|
(void)compression_type;
|
|
|
|
#endif
|
2015-01-15 01:24:24 +01:00
|
|
|
// snappy is not versioned
|
|
|
|
assert(compression_type != kSnappyCompression &&
|
2016-04-20 07:54:24 +02:00
|
|
|
compression_type != kXpressCompression &&
|
2015-01-15 01:24:24 +01:00
|
|
|
compression_type != kNoCompression);
|
|
|
|
// As of version 2, we encode compressed block with
|
|
|
|
// compress_format_version == 2. Before that, the version is 1.
|
|
|
|
// DO NOT CHANGE THIS FUNCTION, it affects disk format
|
|
|
|
return version >= 2 ? 2 : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool BlockBasedTableSupportedVersion(uint32_t version) {
|
2018-08-10 01:49:45 +02:00
|
|
|
return version <= 4;
|
2015-01-15 01:24:24 +01:00
|
|
|
}
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
// Footer encapsulates the fixed information stored at the tail
|
|
|
|
// end of every table file.
|
|
|
|
class Footer {
|
|
|
|
public:
|
2014-02-05 01:21:47 +01:00
|
|
|
// Constructs a footer without specifying its table magic number.
|
|
|
|
// In such case, the table magic number of such footer should be
|
|
|
|
// initialized via @ReadFooterFromFile().
|
2015-01-13 23:33:04 +01:00
|
|
|
// Use this when you plan to load Footer with DecodeFrom(). Never use this
|
|
|
|
// when you plan to EncodeTo.
|
|
|
|
Footer() : Footer(kInvalidTableMagicNumber, 0) {}
|
2014-02-05 01:21:47 +01:00
|
|
|
|
2015-01-13 23:33:04 +01:00
|
|
|
// Use this constructor when you plan to write out the footer using
|
|
|
|
// EncodeTo(). Never use this constructor with DecodeFrom().
|
|
|
|
Footer(uint64_t table_magic_number, uint32_t version);
|
2014-05-01 20:09:32 +02:00
|
|
|
|
|
|
|
// The version of the footer in this file
|
|
|
|
uint32_t version() const { return version_; }
|
|
|
|
|
|
|
|
// The checksum type used in this file
|
|
|
|
ChecksumType checksum() const { return checksum_; }
|
|
|
|
void set_checksum(const ChecksumType c) { checksum_ = c; }
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
// The block handle for the metaindex block of the table
|
|
|
|
const BlockHandle& metaindex_handle() const { return metaindex_handle_; }
|
|
|
|
void set_metaindex_handle(const BlockHandle& h) { metaindex_handle_ = h; }
|
|
|
|
|
|
|
|
// The block handle for the index block of the table
|
2014-05-01 20:09:32 +02:00
|
|
|
const BlockHandle& index_handle() const { return index_handle_; }
|
2014-02-05 01:21:47 +01:00
|
|
|
|
2014-05-01 20:09:32 +02:00
|
|
|
void set_index_handle(const BlockHandle& h) { index_handle_ = h; }
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2014-02-05 01:21:47 +01:00
|
|
|
uint64_t table_magic_number() const { return table_magic_number_; }
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
void EncodeTo(std::string* dst) const;
|
2014-02-05 01:21:47 +01:00
|
|
|
|
2015-01-13 23:33:04 +01:00
|
|
|
// Set the current footer based on the input slice.
|
|
|
|
//
|
|
|
|
// REQUIRES: table_magic_number_ is not set (i.e.,
|
|
|
|
// HasInitializedTableMagicNumber() is true). The function will initialize the
|
|
|
|
// magic number
|
2011-03-18 23:37:00 +01:00
|
|
|
Status DecodeFrom(Slice* input);
|
|
|
|
|
2014-05-01 20:09:32 +02:00
|
|
|
// Encoded length of a Footer. Note that the serialization of a Footer will
|
|
|
|
// always occupy at least kMinEncodedLength bytes. If fields are changed
|
|
|
|
// the version number should be incremented and kMaxEncodedLength should be
|
|
|
|
// increased accordingly.
|
2011-03-18 23:37:00 +01:00
|
|
|
enum {
|
2014-05-01 20:09:32 +02:00
|
|
|
// Footer version 0 (legacy) will always occupy exactly this many bytes.
|
|
|
|
// It consists of two block handles, padding, and a magic number.
|
|
|
|
kVersion0EncodedLength = 2 * BlockHandle::kMaxEncodedLength + 8,
|
2015-01-13 23:33:04 +01:00
|
|
|
// Footer of versions 1 and higher will always occupy exactly this many
|
|
|
|
// bytes. It consists of the checksum type, two block handles, padding,
|
|
|
|
// a version number (bigger than 1), and a magic number
|
|
|
|
kNewVersionsEncodedLength = 1 + 2 * BlockHandle::kMaxEncodedLength + 4 + 8,
|
2014-05-01 20:09:32 +02:00
|
|
|
kMinEncodedLength = kVersion0EncodedLength,
|
2015-01-13 23:33:04 +01:00
|
|
|
kMaxEncodedLength = kNewVersionsEncodedLength,
|
2011-03-18 23:37:00 +01:00
|
|
|
};
|
|
|
|
|
2014-02-11 23:12:58 +01:00
|
|
|
static const uint64_t kInvalidTableMagicNumber = 0;
|
2014-02-05 01:21:47 +01:00
|
|
|
|
2014-12-23 22:24:07 +01:00
|
|
|
// convert this object to a human readable form
|
|
|
|
std::string ToString() const;
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
private:
|
2014-03-20 00:04:51 +01:00
|
|
|
// REQUIRES: magic number wasn't initialized.
|
|
|
|
void set_table_magic_number(uint64_t magic_number) {
|
|
|
|
assert(!HasInitializedTableMagicNumber());
|
|
|
|
table_magic_number_ = magic_number;
|
2014-02-05 01:21:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// return true if @table_magic_number_ is set to a value different
|
|
|
|
// from @kInvalidTableMagicNumber.
|
|
|
|
bool HasInitializedTableMagicNumber() const {
|
|
|
|
return (table_magic_number_ != kInvalidTableMagicNumber);
|
|
|
|
}
|
|
|
|
|
2014-05-01 20:09:32 +02:00
|
|
|
uint32_t version_;
|
|
|
|
ChecksumType checksum_;
|
2011-03-18 23:37:00 +01:00
|
|
|
BlockHandle metaindex_handle_;
|
|
|
|
BlockHandle index_handle_;
|
2014-03-20 00:04:51 +01:00
|
|
|
uint64_t table_magic_number_ = 0;
|
2011-03-18 23:37:00 +01:00
|
|
|
};
|
|
|
|
|
2013-12-05 01:35:48 +01:00
|
|
|
// Read the footer from file
|
2015-01-13 23:33:04 +01:00
|
|
|
// If enforce_table_magic_number != 0, ReadFooterFromFile() will return
|
|
|
|
// corruption if table_magic number is not equal to enforce_table_magic_number
|
2017-08-11 20:59:13 +02:00
|
|
|
Status ReadFooterFromFile(RandomAccessFileReader* file,
|
|
|
|
FilePrefetchBuffer* prefetch_buffer,
|
|
|
|
uint64_t file_size, Footer* footer,
|
2015-01-13 23:33:04 +01:00
|
|
|
uint64_t enforce_table_magic_number = 0);
|
2013-12-05 01:35:48 +01:00
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
// 1-byte type + 32-bit crc
|
|
|
|
static const size_t kBlockTrailerSize = 5;
|
|
|
|
|
2018-11-14 02:00:49 +01:00
|
|
|
inline CompressionType get_block_compression_type(const char* block_data,
|
|
|
|
size_t block_size) {
|
|
|
|
return static_cast<CompressionType>(block_data[block_size]);
|
|
|
|
}
|
|
|
|
|
2012-04-17 17:36:46 +02:00
|
|
|
struct BlockContents {
|
2019-03-28 00:13:08 +01:00
|
|
|
Slice data; // Actual contents of data
|
2018-10-03 02:21:54 +02:00
|
|
|
CacheAllocationPtr allocation;
|
2014-08-16 00:05:09 +02:00
|
|
|
|
2018-11-14 02:00:49 +01:00
|
|
|
#ifndef NDEBUG
|
|
|
|
// Whether the block is a raw block, which contains compression type
|
|
|
|
// byte. It is only used for assertion.
|
|
|
|
bool is_raw_block = false;
|
|
|
|
#endif // NDEBUG
|
2014-09-18 00:08:19 +02:00
|
|
|
|
2018-11-14 02:00:49 +01:00
|
|
|
BlockContents() {}
|
2014-09-18 00:08:19 +02:00
|
|
|
|
2018-11-14 02:00:49 +01:00
|
|
|
BlockContents(const Slice& _data) : data(_data) {}
|
2015-07-13 21:11:05 +02:00
|
|
|
|
2018-11-14 02:00:49 +01:00
|
|
|
BlockContents(CacheAllocationPtr&& _data, size_t _size)
|
|
|
|
: data(_data.get(), _size), allocation(std::move(_data)) {}
|
|
|
|
|
|
|
|
BlockContents(std::unique_ptr<char[]>&& _data, size_t _size)
|
|
|
|
: data(_data.get(), _size) {
|
2018-10-03 02:21:54 +02:00
|
|
|
allocation.reset(_data.release());
|
|
|
|
}
|
|
|
|
|
2018-11-14 02:00:49 +01:00
|
|
|
bool own_bytes() const { return allocation.get() != nullptr; }
|
|
|
|
|
|
|
|
// It's the caller's responsibility to make sure that this is
|
|
|
|
// for raw block contents, which contains the compression
|
|
|
|
// byte in the end.
|
|
|
|
CompressionType get_compression_type() const {
|
|
|
|
assert(is_raw_block);
|
|
|
|
return get_block_compression_type(data.data(), data.size());
|
|
|
|
}
|
|
|
|
|
2018-06-29 17:55:33 +02:00
|
|
|
// The additional memory space taken by the block data.
|
|
|
|
size_t usable_size() const {
|
|
|
|
if (allocation.get() != nullptr) {
|
2018-10-03 02:21:54 +02:00
|
|
|
auto allocator = allocation.get_deleter().allocator;
|
|
|
|
if (allocator) {
|
|
|
|
return allocator->UsableSize(allocation.get(), data.size());
|
|
|
|
}
|
2018-06-29 17:55:33 +02:00
|
|
|
#ifdef ROCKSDB_MALLOC_USABLE_SIZE
|
|
|
|
return malloc_usable_size(allocation.get());
|
|
|
|
#else
|
2018-08-09 02:40:05 +02:00
|
|
|
return data.size();
|
2018-06-29 17:55:33 +02:00
|
|
|
#endif // ROCKSDB_MALLOC_USABLE_SIZE
|
|
|
|
} else {
|
|
|
|
return 0; // no extra memory is occupied by the data
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-14 02:00:49 +01:00
|
|
|
size_t ApproximateMemoryUsage() const {
|
|
|
|
return usable_size() + sizeof(*this);
|
|
|
|
}
|
|
|
|
|
2018-04-13 02:55:14 +02:00
|
|
|
BlockContents(BlockContents&& other) ROCKSDB_NOEXCEPT {
|
|
|
|
*this = std::move(other);
|
|
|
|
}
|
2015-07-02 01:13:49 +02:00
|
|
|
|
|
|
|
BlockContents& operator=(BlockContents&& other) {
|
2015-07-08 01:58:20 +02:00
|
|
|
data = std::move(other.data);
|
|
|
|
allocation = std::move(other.allocation);
|
2018-11-14 02:00:49 +01:00
|
|
|
#ifndef NDEBUG
|
|
|
|
is_raw_block = other.is_raw_block;
|
|
|
|
#endif // NDEBUG
|
2015-07-08 01:58:20 +02:00
|
|
|
return *this;
|
2015-07-02 01:13:49 +02:00
|
|
|
}
|
2012-04-17 17:36:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// Read the block identified by "handle" from "file". On failure
|
|
|
|
// return non-OK. On success fill *result and return OK.
|
2015-12-16 03:20:10 +01:00
|
|
|
extern Status ReadBlockContents(
|
2017-08-11 20:59:13 +02:00
|
|
|
RandomAccessFileReader* file, FilePrefetchBuffer* prefetch_buffer,
|
|
|
|
const Footer& footer, const ReadOptions& options, const BlockHandle& handle,
|
|
|
|
BlockContents* contents, const ImmutableCFOptions& ioptions,
|
2016-07-19 18:44:03 +02:00
|
|
|
bool do_uncompress = true, const Slice& compression_dict = Slice(),
|
|
|
|
const PersistentCacheOptions& cache_options = PersistentCacheOptions());
|
2013-09-02 08:23:40 +02:00
|
|
|
|
|
|
|
// The 'data' points to the raw block contents read in from file.
|
|
|
|
// This method allocates a new heap buffer and the raw block
|
|
|
|
// contents are uncompresed into this buffer. This buffer is
|
|
|
|
// returned via 'result' and it is upto the caller to
|
|
|
|
// free this buffer.
|
2015-01-15 01:24:24 +01:00
|
|
|
// For description of compress_format_version and possible values, see
|
|
|
|
// util/compression.h
|
2019-01-19 04:10:17 +01:00
|
|
|
extern Status UncompressBlockContents(const UncompressionInfo& info,
|
|
|
|
const char* data, size_t n,
|
|
|
|
BlockContents* contents,
|
|
|
|
uint32_t compress_format_version,
|
|
|
|
const ImmutableCFOptions& ioptions,
|
|
|
|
MemoryAllocator* allocator = nullptr);
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2016-06-11 03:20:54 +02:00
|
|
|
// This is an extension to UncompressBlockContents that accepts
|
|
|
|
// a specific compression type. This is used by un-wrapped blocks
|
|
|
|
// with no compression header.
|
|
|
|
extern Status UncompressBlockContentsForCompressionType(
|
2019-01-19 04:10:17 +01:00
|
|
|
const UncompressionInfo& info, const char* data, size_t n,
|
2018-06-05 21:51:05 +02:00
|
|
|
BlockContents* contents, uint32_t compress_format_version,
|
2018-10-26 23:27:09 +02:00
|
|
|
const ImmutableCFOptions& ioptions, MemoryAllocator* allocator = nullptr);
|
2016-06-11 03:20:54 +02:00
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
// Implementation details follow. Clients should ignore,
|
|
|
|
|
2016-11-05 17:10:51 +01:00
|
|
|
// TODO(andrewkr): we should prefer one way of representing a null/uninitialized
|
|
|
|
// BlockHandle. Currently we use zeros for null and use negation-of-zeros for
|
|
|
|
// uninitialized.
|
2011-03-18 23:37:00 +01:00
|
|
|
inline BlockHandle::BlockHandle()
|
2018-04-13 02:55:14 +02:00
|
|
|
: BlockHandle(~static_cast<uint64_t>(0), ~static_cast<uint64_t>(0)) {}
|
2013-12-05 00:43:09 +01:00
|
|
|
|
2014-11-06 20:14:28 +01:00
|
|
|
inline BlockHandle::BlockHandle(uint64_t _offset, uint64_t _size)
|
|
|
|
: offset_(_offset), size_(_size) {}
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|