2013-10-16 23:59:46 +02:00
|
|
|
// Copyright (c) 2013, Facebook, Inc. All rights reserved.
|
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
//
|
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.
|
|
|
|
|
|
|
|
#include "table/format.h"
|
|
|
|
|
2014-02-05 01:21:47 +01:00
|
|
|
#include <string>
|
2014-02-08 04:26:49 +01:00
|
|
|
#include <inttypes.h>
|
2014-02-05 01:21:47 +01:00
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
#include "port/port.h"
|
[RocksDB] Added nano second stopwatch and new perf counters to track block read cost
Summary: The pupose of this diff is to expose per user-call level precise timing of block read, so that we can answer questions like: a Get() costs me 100ms, is that somehow related to loading blocks from file system, or sth else? We will answer that with EXACTLY how many blocks have been read, how much time was spent on transfering the bytes from os, how much time was spent on checksum verification and how much time was spent on block decompression, just for that one Get. A nano second stopwatch was introduced to track time with higher precision. The cost/precision of the stopwatch is also measured in unit-test. On my dev box, retrieving one time instance costs about 30ns, on average. The deviation of timing results is good enough to track 100ns-1us level events. And the overhead could be safely ignored for 100us level events (10000 instances/s), for example, a viewstate thrift call.
Test Plan: perf_context_test, also testing with viewstate shadow traffic.
Reviewers: dhruba
Reviewed By: dhruba
CC: leveldb, xjin
Differential Revision: https://reviews.facebook.net/D12351
2013-06-04 08:09:15 +02:00
|
|
|
#include "rocksdb/env.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
#include "table/block.h"
|
|
|
|
#include "util/coding.h"
|
|
|
|
#include "util/crc32c.h"
|
[RocksDB] Added nano second stopwatch and new perf counters to track block read cost
Summary: The pupose of this diff is to expose per user-call level precise timing of block read, so that we can answer questions like: a Get() costs me 100ms, is that somehow related to loading blocks from file system, or sth else? We will answer that with EXACTLY how many blocks have been read, how much time was spent on transfering the bytes from os, how much time was spent on checksum verification and how much time was spent on block decompression, just for that one Get. A nano second stopwatch was introduced to track time with higher precision. The cost/precision of the stopwatch is also measured in unit-test. On my dev box, retrieving one time instance costs about 30ns, on average. The deviation of timing results is good enough to track 100ns-1us level events. And the overhead could be safely ignored for 100us level events (10000 instances/s), for example, a viewstate thrift call.
Test Plan: perf_context_test, also testing with viewstate shadow traffic.
Reviewers: dhruba
Reviewed By: dhruba
CC: leveldb, xjin
Differential Revision: https://reviews.facebook.net/D12351
2013-06-04 08:09:15 +02:00
|
|
|
#include "util/perf_context_imp.h"
|
2014-05-01 20:09:32 +02:00
|
|
|
#include "util/xxhash.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2014-05-01 20:09:32 +02:00
|
|
|
extern const uint64_t kLegacyBlockBasedTableMagicNumber;
|
|
|
|
extern const uint64_t kBlockBasedTableMagicNumber;
|
2014-05-08 02:45:27 +02:00
|
|
|
|
|
|
|
#ifndef ROCKSDB_LITE
|
|
|
|
extern const uint64_t kLegacyPlainTableMagicNumber;
|
2014-05-01 20:09:32 +02:00
|
|
|
extern const uint64_t kPlainTableMagicNumber;
|
2014-05-08 02:45:27 +02:00
|
|
|
#else
|
|
|
|
// ROCKSDB_LITE doesn't have plain table
|
|
|
|
const uint64_t kLegacyPlainTableMagicNumber = 0;
|
|
|
|
const uint64_t kPlainTableMagicNumber = 0;
|
|
|
|
#endif
|
2014-07-31 08:11:59 +02:00
|
|
|
const uint32_t DefaultStackBufferSize = 5000;
|
2014-05-01 20:09:32 +02:00
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
void BlockHandle::EncodeTo(std::string* dst) const {
|
|
|
|
// Sanity check that all fields have been set
|
|
|
|
assert(offset_ != ~static_cast<uint64_t>(0));
|
|
|
|
assert(size_ != ~static_cast<uint64_t>(0));
|
|
|
|
PutVarint64(dst, offset_);
|
|
|
|
PutVarint64(dst, size_);
|
|
|
|
}
|
|
|
|
|
|
|
|
Status BlockHandle::DecodeFrom(Slice* input) {
|
|
|
|
if (GetVarint64(input, &offset_) &&
|
|
|
|
GetVarint64(input, &size_)) {
|
|
|
|
return Status::OK();
|
|
|
|
} else {
|
|
|
|
return Status::Corruption("bad block handle");
|
|
|
|
}
|
|
|
|
}
|
2013-12-05 00:43:09 +01:00
|
|
|
const BlockHandle BlockHandle::kNullBlockHandle(0, 0);
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2014-05-01 20:09:32 +02:00
|
|
|
// legacy footer format:
|
|
|
|
// metaindex handle (varint64 offset, varint64 size)
|
|
|
|
// index handle (varint64 offset, varint64 size)
|
|
|
|
// <padding> to make the total size 2 * BlockHandle::kMaxEncodedLength
|
|
|
|
// table_magic_number (8 bytes)
|
|
|
|
// new footer format:
|
|
|
|
// checksum (char, 1 byte)
|
|
|
|
// metaindex handle (varint64 offset, varint64 size)
|
|
|
|
// index handle (varint64 offset, varint64 size)
|
|
|
|
// <padding> to make the total size 2 * BlockHandle::kMaxEncodedLength + 1
|
|
|
|
// footer version (4 bytes)
|
|
|
|
// table_magic_number (8 bytes)
|
2011-03-18 23:37:00 +01:00
|
|
|
void Footer::EncodeTo(std::string* dst) const {
|
2014-05-01 20:09:32 +02:00
|
|
|
if (version() == kLegacyFooter) {
|
|
|
|
// has to be default checksum with legacy footer
|
|
|
|
assert(checksum_ == kCRC32c);
|
|
|
|
const size_t original_size = dst->size();
|
|
|
|
metaindex_handle_.EncodeTo(dst);
|
|
|
|
index_handle_.EncodeTo(dst);
|
|
|
|
dst->resize(original_size + 2 * BlockHandle::kMaxEncodedLength); // Padding
|
|
|
|
PutFixed32(dst, static_cast<uint32_t>(table_magic_number() & 0xffffffffu));
|
|
|
|
PutFixed32(dst, static_cast<uint32_t>(table_magic_number() >> 32));
|
|
|
|
assert(dst->size() == original_size + kVersion0EncodedLength);
|
|
|
|
} else {
|
|
|
|
const size_t original_size = dst->size();
|
|
|
|
dst->push_back(static_cast<char>(checksum_));
|
|
|
|
metaindex_handle_.EncodeTo(dst);
|
|
|
|
index_handle_.EncodeTo(dst);
|
|
|
|
dst->resize(original_size + kVersion1EncodedLength - 12); // Padding
|
|
|
|
PutFixed32(dst, kFooterVersion);
|
|
|
|
PutFixed32(dst, static_cast<uint32_t>(table_magic_number() & 0xffffffffu));
|
|
|
|
PutFixed32(dst, static_cast<uint32_t>(table_magic_number() >> 32));
|
|
|
|
assert(dst->size() == original_size + kVersion1EncodedLength);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
inline bool IsLegacyFooterFormat(uint64_t magic_number) {
|
|
|
|
return magic_number == kLegacyBlockBasedTableMagicNumber ||
|
|
|
|
magic_number == kLegacyPlainTableMagicNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint64_t UpconvertLegacyFooterFormat(uint64_t magic_number) {
|
|
|
|
if (magic_number == kLegacyBlockBasedTableMagicNumber) {
|
|
|
|
return kBlockBasedTableMagicNumber;
|
|
|
|
}
|
|
|
|
if (magic_number == kLegacyPlainTableMagicNumber) {
|
|
|
|
return kPlainTableMagicNumber;
|
|
|
|
}
|
|
|
|
assert(false);
|
2014-05-01 21:41:49 +02:00
|
|
|
return 0;
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
2014-05-01 20:09:32 +02:00
|
|
|
} // namespace
|
|
|
|
|
2014-11-06 20:14:28 +01:00
|
|
|
Footer::Footer(uint64_t _table_magic_number)
|
|
|
|
: version_(IsLegacyFooterFormat(_table_magic_number) ? kLegacyFooter
|
|
|
|
: kFooterVersion),
|
2014-05-01 20:09:32 +02:00
|
|
|
checksum_(kCRC32c),
|
2014-11-06 20:14:28 +01:00
|
|
|
table_magic_number_(_table_magic_number) {}
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
Status Footer::DecodeFrom(Slice* input) {
|
2013-03-01 03:04:58 +01:00
|
|
|
assert(input != nullptr);
|
2014-05-01 20:09:32 +02:00
|
|
|
assert(input->size() >= kMinEncodedLength);
|
2013-01-09 19:44:30 +01:00
|
|
|
|
2014-05-01 20:09:32 +02:00
|
|
|
const char *magic_ptr =
|
|
|
|
input->data() + input->size() - kMagicNumberLengthByte;
|
2011-03-18 23:37:00 +01:00
|
|
|
const uint32_t magic_lo = DecodeFixed32(magic_ptr);
|
|
|
|
const uint32_t magic_hi = DecodeFixed32(magic_ptr + 4);
|
2014-05-01 20:09:32 +02:00
|
|
|
uint64_t magic = ((static_cast<uint64_t>(magic_hi) << 32) |
|
|
|
|
(static_cast<uint64_t>(magic_lo)));
|
|
|
|
|
|
|
|
// We check for legacy formats here and silently upconvert them
|
|
|
|
bool legacy = IsLegacyFooterFormat(magic);
|
|
|
|
if (legacy) {
|
|
|
|
magic = UpconvertLegacyFooterFormat(magic);
|
|
|
|
}
|
2014-02-05 01:21:47 +01:00
|
|
|
if (HasInitializedTableMagicNumber()) {
|
|
|
|
if (magic != table_magic_number()) {
|
|
|
|
char buffer[80];
|
|
|
|
snprintf(buffer, sizeof(buffer) - 1,
|
2014-02-08 04:47:48 +01:00
|
|
|
"not an sstable (bad magic number --- %lx)",
|
|
|
|
(long)magic);
|
2014-09-11 02:00:00 +02:00
|
|
|
return Status::Corruption(buffer);
|
2014-02-05 01:21:47 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
set_table_magic_number(magic);
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
2014-05-01 20:09:32 +02:00
|
|
|
if (legacy) {
|
|
|
|
// The size is already asserted to be at least kMinEncodedLength
|
|
|
|
// at the beginning of the function
|
|
|
|
input->remove_prefix(input->size() - kVersion0EncodedLength);
|
|
|
|
version_ = kLegacyFooter;
|
|
|
|
checksum_ = kCRC32c;
|
|
|
|
} else {
|
|
|
|
version_ = DecodeFixed32(magic_ptr - 4);
|
|
|
|
if (version_ != kFooterVersion) {
|
|
|
|
return Status::Corruption("bad footer version");
|
|
|
|
}
|
|
|
|
// Footer version 1 will always occupy exactly this many bytes.
|
|
|
|
// It consists of the checksum type, two block handles, padding,
|
|
|
|
// a version number, and a magic number
|
|
|
|
if (input->size() < kVersion1EncodedLength) {
|
2014-09-11 02:00:00 +02:00
|
|
|
return Status::Corruption("input is too short to be an sstable");
|
2014-05-01 20:09:32 +02:00
|
|
|
} else {
|
|
|
|
input->remove_prefix(input->size() - kVersion1EncodedLength);
|
|
|
|
}
|
2014-11-06 20:14:28 +01:00
|
|
|
uint32_t chksum;
|
|
|
|
if (!GetVarint32(input, &chksum)) {
|
2014-05-01 20:09:32 +02:00
|
|
|
return Status::Corruption("bad checksum type");
|
|
|
|
}
|
2014-11-06 20:14:28 +01:00
|
|
|
checksum_ = static_cast<ChecksumType>(chksum);
|
2014-05-01 20:09:32 +02:00
|
|
|
}
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
Status result = metaindex_handle_.DecodeFrom(input);
|
|
|
|
if (result.ok()) {
|
|
|
|
result = index_handle_.DecodeFrom(input);
|
|
|
|
}
|
|
|
|
if (result.ok()) {
|
|
|
|
// We skip over any leftover data (just padding for now) in "input"
|
2014-05-01 20:09:32 +02:00
|
|
|
const char* end = magic_ptr + kMagicNumberLengthByte;
|
2011-03-18 23:37:00 +01:00
|
|
|
*input = Slice(end, input->data() + input->size() - end);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-12-05 01:35:48 +01:00
|
|
|
Status ReadFooterFromFile(RandomAccessFile* file,
|
|
|
|
uint64_t file_size,
|
|
|
|
Footer* footer) {
|
2014-05-01 20:09:32 +02:00
|
|
|
if (file_size < Footer::kMinEncodedLength) {
|
2014-09-11 02:00:00 +02:00
|
|
|
return Status::Corruption("file is too short to be an sstable");
|
2013-12-05 01:35:48 +01:00
|
|
|
}
|
|
|
|
|
2014-05-01 20:09:32 +02:00
|
|
|
char footer_space[Footer::kMaxEncodedLength];
|
2013-12-05 01:35:48 +01:00
|
|
|
Slice footer_input;
|
2014-11-13 20:39:30 +01:00
|
|
|
size_t read_offset =
|
|
|
|
(file_size > Footer::kMaxEncodedLength)
|
|
|
|
? static_cast<size_t>(file_size - Footer::kMaxEncodedLength)
|
|
|
|
: 0;
|
2014-05-01 20:09:32 +02:00
|
|
|
Status s = file->Read(read_offset, Footer::kMaxEncodedLength, &footer_input,
|
2013-12-05 01:35:48 +01:00
|
|
|
footer_space);
|
|
|
|
if (!s.ok()) return s;
|
|
|
|
|
|
|
|
// Check that we actually read the whole footer from the file. It may be
|
|
|
|
// that size isn't correct.
|
2014-05-01 20:09:32 +02:00
|
|
|
if (footer_input.size() < Footer::kMinEncodedLength) {
|
2014-09-11 02:00:00 +02:00
|
|
|
return Status::Corruption("file is too short to be an sstable");
|
2013-12-05 01:35:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return footer->DecodeFrom(&footer_input);
|
|
|
|
}
|
|
|
|
|
2014-11-13 20:39:30 +01:00
|
|
|
// Without anonymous namespace here, we fail the warning -Wmissing-prototypes
|
|
|
|
namespace {
|
|
|
|
|
2014-07-31 08:11:59 +02:00
|
|
|
// Read a block and check its CRC
|
|
|
|
// contents is the result of reading.
|
|
|
|
// According to the implementation of file->Read, contents may not point to buf
|
|
|
|
Status ReadBlock(RandomAccessFile* file, const Footer& footer,
|
2014-08-04 20:25:42 +02:00
|
|
|
const ReadOptions& options, const BlockHandle& handle,
|
|
|
|
Slice* contents, /* result of reading */ char* buf) {
|
2011-04-21 00:48:11 +02:00
|
|
|
size_t n = static_cast<size_t>(handle.size());
|
2014-08-23 00:28:58 +02:00
|
|
|
Status s;
|
|
|
|
|
|
|
|
{
|
|
|
|
PERF_TIMER_GUARD(block_read_time);
|
|
|
|
s = file->Read(handle.offset(), n + kBlockTrailerSize, contents, buf);
|
|
|
|
}
|
[RocksDB] Added nano second stopwatch and new perf counters to track block read cost
Summary: The pupose of this diff is to expose per user-call level precise timing of block read, so that we can answer questions like: a Get() costs me 100ms, is that somehow related to loading blocks from file system, or sth else? We will answer that with EXACTLY how many blocks have been read, how much time was spent on transfering the bytes from os, how much time was spent on checksum verification and how much time was spent on block decompression, just for that one Get. A nano second stopwatch was introduced to track time with higher precision. The cost/precision of the stopwatch is also measured in unit-test. On my dev box, retrieving one time instance costs about 30ns, on average. The deviation of timing results is good enough to track 100ns-1us level events. And the overhead could be safely ignored for 100us level events (10000 instances/s), for example, a viewstate thrift call.
Test Plan: perf_context_test, also testing with viewstate shadow traffic.
Reviewers: dhruba
Reviewed By: dhruba
CC: leveldb, xjin
Differential Revision: https://reviews.facebook.net/D12351
2013-06-04 08:09:15 +02:00
|
|
|
|
2014-04-08 19:58:07 +02:00
|
|
|
PERF_COUNTER_ADD(block_read_count, 1);
|
|
|
|
PERF_COUNTER_ADD(block_read_byte, n + kBlockTrailerSize);
|
[RocksDB] Added nano second stopwatch and new perf counters to track block read cost
Summary: The pupose of this diff is to expose per user-call level precise timing of block read, so that we can answer questions like: a Get() costs me 100ms, is that somehow related to loading blocks from file system, or sth else? We will answer that with EXACTLY how many blocks have been read, how much time was spent on transfering the bytes from os, how much time was spent on checksum verification and how much time was spent on block decompression, just for that one Get. A nano second stopwatch was introduced to track time with higher precision. The cost/precision of the stopwatch is also measured in unit-test. On my dev box, retrieving one time instance costs about 30ns, on average. The deviation of timing results is good enough to track 100ns-1us level events. And the overhead could be safely ignored for 100us level events (10000 instances/s), for example, a viewstate thrift call.
Test Plan: perf_context_test, also testing with viewstate shadow traffic.
Reviewers: dhruba
Reviewed By: dhruba
CC: leveldb, xjin
Differential Revision: https://reviews.facebook.net/D12351
2013-06-04 08:09:15 +02:00
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
if (!s.ok()) {
|
|
|
|
return s;
|
|
|
|
}
|
2014-07-31 08:11:59 +02:00
|
|
|
if (contents->size() != n + kBlockTrailerSize) {
|
2011-03-18 23:37:00 +01:00
|
|
|
return Status::Corruption("truncated block read");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check the crc of the type and the block contents
|
2014-07-31 08:11:59 +02:00
|
|
|
const char* data = contents->data(); // Pointer to where Read put the data
|
2011-03-18 23:37:00 +01:00
|
|
|
if (options.verify_checksums) {
|
2014-08-23 00:28:58 +02:00
|
|
|
PERF_TIMER_GUARD(block_checksum_time);
|
2014-05-01 20:09:32 +02:00
|
|
|
uint32_t value = DecodeFixed32(data + n + 1);
|
2014-05-01 20:12:35 +02:00
|
|
|
uint32_t actual = 0;
|
2014-05-01 20:09:32 +02:00
|
|
|
switch (footer.checksum()) {
|
|
|
|
case kCRC32c:
|
|
|
|
value = crc32c::Unmask(value);
|
|
|
|
actual = crc32c::Value(data, n + 1);
|
|
|
|
break;
|
|
|
|
case kxxHash:
|
2014-11-11 22:47:22 +01:00
|
|
|
actual = XXH32(data, static_cast<int>(n) + 1, 0);
|
2014-05-01 20:09:32 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
s = Status::Corruption("unknown checksum type");
|
|
|
|
}
|
|
|
|
if (s.ok() && actual != value) {
|
2011-03-18 23:37:00 +01:00
|
|
|
s = Status::Corruption("block checksum mismatch");
|
2014-05-01 20:09:32 +02:00
|
|
|
}
|
|
|
|
if (!s.ok()) {
|
2011-03-18 23:37:00 +01:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
}
|
2014-07-31 08:11:59 +02:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2014-11-13 20:39:30 +01:00
|
|
|
} // namespace
|
|
|
|
|
2014-08-16 00:05:09 +02:00
|
|
|
Status ReadBlockContents(RandomAccessFile* file, const Footer& footer,
|
|
|
|
const ReadOptions& options, const BlockHandle& handle,
|
2014-09-18 00:08:19 +02:00
|
|
|
BlockContents* contents, Env* env,
|
2014-08-16 00:05:09 +02:00
|
|
|
bool decompression_requested) {
|
|
|
|
Status status;
|
|
|
|
Slice slice;
|
|
|
|
size_t n = static_cast<size_t>(handle.size());
|
|
|
|
std::unique_ptr<char[]> heap_buf;
|
|
|
|
char stack_buf[DefaultStackBufferSize];
|
2014-09-18 00:08:19 +02:00
|
|
|
char* used_buf = nullptr;
|
2014-08-16 00:05:09 +02:00
|
|
|
rocksdb::CompressionType compression_type;
|
|
|
|
|
2014-09-18 00:08:19 +02:00
|
|
|
if (decompression_requested &&
|
|
|
|
n + kBlockTrailerSize < DefaultStackBufferSize) {
|
|
|
|
// If we've got a small enough hunk of data, read it in to the
|
|
|
|
// trivially allocated stack buffer instead of needing a full malloc()
|
2014-08-16 00:05:09 +02:00
|
|
|
used_buf = &stack_buf[0];
|
2013-09-02 08:23:40 +02:00
|
|
|
} else {
|
2014-08-16 00:05:09 +02:00
|
|
|
heap_buf = std::unique_ptr<char[]>(new char[n + kBlockTrailerSize]);
|
|
|
|
used_buf = heap_buf.get();
|
2013-09-02 08:23:40 +02:00
|
|
|
}
|
|
|
|
|
2014-08-16 00:05:09 +02:00
|
|
|
status = ReadBlock(file, footer, options, handle, &slice, used_buf);
|
2014-07-31 08:11:59 +02:00
|
|
|
|
2014-08-16 00:05:09 +02:00
|
|
|
if (!status.ok()) {
|
|
|
|
return status;
|
2014-07-31 08:11:59 +02:00
|
|
|
}
|
|
|
|
|
2014-08-16 00:05:09 +02:00
|
|
|
PERF_TIMER_GUARD(block_decompress_time);
|
2014-07-31 08:11:59 +02:00
|
|
|
|
2014-08-16 00:05:09 +02:00
|
|
|
compression_type = static_cast<rocksdb::CompressionType>(slice.data()[n]);
|
|
|
|
|
|
|
|
if (decompression_requested && compression_type != kNoCompression) {
|
|
|
|
return UncompressBlockContents(slice.data(), n, contents);
|
2014-07-31 08:11:59 +02:00
|
|
|
}
|
|
|
|
|
2014-08-16 00:05:09 +02:00
|
|
|
if (slice.data() != used_buf) {
|
|
|
|
*contents = BlockContents(Slice(slice.data(), n), false, compression_type);
|
|
|
|
return status;
|
2014-07-31 08:11:59 +02:00
|
|
|
}
|
|
|
|
|
2014-08-16 00:05:09 +02:00
|
|
|
if (used_buf == &stack_buf[0]) {
|
|
|
|
heap_buf = std::unique_ptr<char[]>(new char[n]);
|
|
|
|
memcpy(heap_buf.get(), stack_buf, n);
|
2014-07-31 08:11:59 +02:00
|
|
|
}
|
2014-08-16 00:05:09 +02:00
|
|
|
|
|
|
|
*contents = BlockContents(std::move(heap_buf), n, true, compression_type);
|
|
|
|
return status;
|
2014-07-31 08:11:59 +02:00
|
|
|
}
|
|
|
|
|
2013-09-02 08:23:40 +02:00
|
|
|
//
|
|
|
|
// The 'data' points to the raw block contents that was 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.
|
|
|
|
Status UncompressBlockContents(const char* data, size_t n,
|
2014-08-16 00:05:09 +02:00
|
|
|
BlockContents* contents) {
|
|
|
|
std::unique_ptr<char[]> ubuf;
|
2012-06-29 04:26:43 +02:00
|
|
|
int decompress_size = 0;
|
2013-09-02 08:23:40 +02:00
|
|
|
assert(data[n] != kNoCompression);
|
2011-03-18 23:37:00 +01:00
|
|
|
switch (data[n]) {
|
2011-03-23 00:24:02 +01:00
|
|
|
case kSnappyCompression: {
|
2011-07-21 04:40:18 +02:00
|
|
|
size_t ulength = 0;
|
2012-12-20 23:25:06 +01:00
|
|
|
static char snappy_corrupt_msg[] =
|
|
|
|
"Snappy not supported or corrupted Snappy compressed block contents";
|
2011-07-21 04:40:18 +02:00
|
|
|
if (!port::Snappy_GetUncompressedLength(data, n, &ulength)) {
|
2012-12-20 23:25:06 +01:00
|
|
|
return Status::Corruption(snappy_corrupt_msg);
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
2014-08-16 00:05:09 +02:00
|
|
|
ubuf = std::unique_ptr<char[]>(new char[ulength]);
|
|
|
|
if (!port::Snappy_Uncompress(data, n, ubuf.get())) {
|
2012-12-20 23:25:06 +01:00
|
|
|
return Status::Corruption(snappy_corrupt_msg);
|
2011-07-21 04:40:18 +02:00
|
|
|
}
|
2014-08-16 00:05:09 +02:00
|
|
|
*contents = BlockContents(std::move(ubuf), ulength, true, kNoCompression);
|
2011-03-18 23:37:00 +01:00
|
|
|
break;
|
|
|
|
}
|
2012-06-28 08:41:33 +02:00
|
|
|
case kZlibCompression:
|
2014-09-18 00:08:19 +02:00
|
|
|
ubuf = std::unique_ptr<char[]>(
|
|
|
|
port::Zlib_Uncompress(data, n, &decompress_size));
|
2012-06-28 08:41:33 +02:00
|
|
|
if (!ubuf) {
|
2014-10-01 07:27:39 +02:00
|
|
|
static char zlib_corrupt_msg[] =
|
|
|
|
"Zlib not supported or corrupted Zlib compressed block contents";
|
2012-12-20 23:25:06 +01:00
|
|
|
return Status::Corruption(zlib_corrupt_msg);
|
2012-06-28 08:41:33 +02:00
|
|
|
}
|
2014-09-18 00:08:19 +02:00
|
|
|
*contents =
|
|
|
|
BlockContents(std::move(ubuf), decompress_size, true, kNoCompression);
|
2012-06-28 08:41:33 +02:00
|
|
|
break;
|
2012-06-29 04:26:43 +02:00
|
|
|
case kBZip2Compression:
|
2014-09-18 00:08:19 +02:00
|
|
|
ubuf = std::unique_ptr<char[]>(
|
|
|
|
port::BZip2_Uncompress(data, n, &decompress_size));
|
2012-06-29 04:26:43 +02:00
|
|
|
if (!ubuf) {
|
2014-10-01 07:27:39 +02:00
|
|
|
static char bzip2_corrupt_msg[] =
|
|
|
|
"Bzip2 not supported or corrupted Bzip2 compressed block contents";
|
2012-12-20 23:25:06 +01:00
|
|
|
return Status::Corruption(bzip2_corrupt_msg);
|
2012-06-29 04:26:43 +02:00
|
|
|
}
|
2014-09-18 00:08:19 +02:00
|
|
|
*contents =
|
|
|
|
BlockContents(std::move(ubuf), decompress_size, true, kNoCompression);
|
2012-06-29 04:26:43 +02:00
|
|
|
break;
|
2014-02-08 03:12:30 +01:00
|
|
|
case kLZ4Compression:
|
2014-09-18 00:08:19 +02:00
|
|
|
ubuf = std::unique_ptr<char[]>(
|
|
|
|
port::LZ4_Uncompress(data, n, &decompress_size));
|
2014-02-08 03:12:30 +01:00
|
|
|
if (!ubuf) {
|
2014-10-01 07:27:39 +02:00
|
|
|
static char lz4_corrupt_msg[] =
|
|
|
|
"LZ4 not supported or corrupted LZ4 compressed block contents";
|
2014-02-08 03:12:30 +01:00
|
|
|
return Status::Corruption(lz4_corrupt_msg);
|
|
|
|
}
|
2014-09-18 00:08:19 +02:00
|
|
|
*contents =
|
|
|
|
BlockContents(std::move(ubuf), decompress_size, true, kNoCompression);
|
2014-02-08 03:12:30 +01:00
|
|
|
break;
|
|
|
|
case kLZ4HCCompression:
|
2014-09-18 00:08:19 +02:00
|
|
|
ubuf = std::unique_ptr<char[]>(
|
|
|
|
port::LZ4_Uncompress(data, n, &decompress_size));
|
2014-02-08 03:12:30 +01:00
|
|
|
if (!ubuf) {
|
2014-10-01 07:27:39 +02:00
|
|
|
static char lz4hc_corrupt_msg[] =
|
|
|
|
"LZ4HC not supported or corrupted LZ4HC compressed block contents";
|
2014-02-08 03:12:30 +01:00
|
|
|
return Status::Corruption(lz4hc_corrupt_msg);
|
|
|
|
}
|
2014-09-18 00:08:19 +02:00
|
|
|
*contents =
|
|
|
|
BlockContents(std::move(ubuf), decompress_size, true, kNoCompression);
|
2014-02-08 03:12:30 +01:00
|
|
|
break;
|
2011-03-18 23:37:00 +01:00
|
|
|
default:
|
|
|
|
return Status::Corruption("bad block type");
|
|
|
|
}
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|