提供基本的ttl测试用例
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.

141 regels
4.5 KiB

Release 1.18 Changes are: * Update version number to 1.18 * Replace the basic fprintf call with a call to fwrite in order to work around the apparent compiler optimization/rewrite failure that we are seeing with the new toolchain/iOS SDKs provided with Xcode6 and iOS8. * Fix ALL the header guards. * Createed a README.md with the LevelDB project description. * A new CONTRIBUTING file. * Don't implicitly convert uint64_t to size_t or int. Either preserve it as uint64_t, or explicitly cast. This fixes MSVC warnings about possible value truncation when compiling this code in Chromium. * Added a DumpFile() library function that encapsulates the guts of the "leveldbutil dump" command. This will allow clients to dump data to their log files instead of stdout. It will also allow clients to supply their own environment. * leveldb: Remove unused function 'ConsumeChar'. * leveldbutil: Remove unused member variables from WriteBatchItemPrinter. * OpenBSD, NetBSD and DragonflyBSD have _LITTLE_ENDIAN, so define PLATFORM_IS_LITTLE_ENDIAN like on FreeBSD. This fixes: * issue #143 * issue #198 * issue #249 * Switch from <cstdatomic> to <atomic>. The former never made it into the standard and doesn't exist in modern gcc versions at all. The later contains everything that leveldb was using from the former. This problem was noticed when porting to Portable Native Client where no memory barrier is defined. The fact that <cstdatomic> is missing normally goes unnoticed since memory barriers are defined for most architectures. * Make Hash() treat its input as unsigned. Before this change LevelDB files from platforms with different signedness of char were not compatible. This change fixes: issue #243 * Verify checksums of index/meta/filter blocks when paranoid_checks set. * Invoke all tools for iOS with xcrun. (This was causing problems with the new XCode 5.1.1 image on pulse.) * include <sys/stat.h> only once, and fix the following linter warning: "Found C system header after C++ system header" * When encountering a corrupted table file, return Status::Corruption instead of Status::InvalidArgument. * Support cygwin as build platform, patch is from https://code.google.com/p/leveldb/issues/detail?id=188 * Fix typo, merge patch from https://code.google.com/p/leveldb/issues/detail?id=159 * Fix typos and comments, and address the following two issues: * issue #166 * issue #241 * Add missing db synchronize after "fillseq" in the benchmark. * Removed unused variable in SeekRandom: value (issue #201)
10 jaren geleden
  1. // Copyright (c) 2011 The LevelDB Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file. See the AUTHORS file for names of contributors.
  4. #include "table/format.h"
  5. #include "leveldb/env.h"
  6. #include "port/port.h"
  7. #include "table/block.h"
  8. #include "util/coding.h"
  9. #include "util/crc32c.h"
  10. namespace leveldb {
  11. void BlockHandle::EncodeTo(std::string* dst) const {
  12. // Sanity check that all fields have been set
  13. assert(offset_ != ~static_cast<uint64_t>(0));
  14. assert(size_ != ~static_cast<uint64_t>(0));
  15. PutVarint64(dst, offset_);
  16. PutVarint64(dst, size_);
  17. }
  18. Status BlockHandle::DecodeFrom(Slice* input) {
  19. if (GetVarint64(input, &offset_) && GetVarint64(input, &size_)) {
  20. return Status::OK();
  21. } else {
  22. return Status::Corruption("bad block handle");
  23. }
  24. }
  25. void Footer::EncodeTo(std::string* dst) const {
  26. const size_t original_size = dst->size();
  27. metaindex_handle_.EncodeTo(dst);
  28. index_handle_.EncodeTo(dst);
  29. dst->resize(2 * BlockHandle::kMaxEncodedLength); // Padding
  30. PutFixed32(dst, static_cast<uint32_t>(kTableMagicNumber & 0xffffffffu));
  31. PutFixed32(dst, static_cast<uint32_t>(kTableMagicNumber >> 32));
  32. assert(dst->size() == original_size + kEncodedLength);
  33. (void)original_size; // Disable unused variable warning.
  34. }
  35. Status Footer::DecodeFrom(Slice* input) {
  36. const char* magic_ptr = input->data() + kEncodedLength - 8;
  37. const uint32_t magic_lo = DecodeFixed32(magic_ptr);
  38. const uint32_t magic_hi = DecodeFixed32(magic_ptr + 4);
  39. const uint64_t magic = ((static_cast<uint64_t>(magic_hi) << 32) |
  40. (static_cast<uint64_t>(magic_lo)));
  41. if (magic != kTableMagicNumber) {
  42. return Status::Corruption("not an sstable (bad magic number)");
  43. }
  44. Status result = metaindex_handle_.DecodeFrom(input);
  45. if (result.ok()) {
  46. result = index_handle_.DecodeFrom(input);
  47. }
  48. if (result.ok()) {
  49. // We skip over any leftover data (just padding for now) in "input"
  50. const char* end = magic_ptr + 8;
  51. *input = Slice(end, input->data() + input->size() - end);
  52. }
  53. return result;
  54. }
  55. Status ReadBlock(RandomAccessFile* file, const ReadOptions& options,
  56. const BlockHandle& handle, BlockContents* result) {
  57. result->data = Slice();
  58. result->cachable = false;
  59. result->heap_allocated = false;
  60. // Read the block contents as well as the type/crc footer.
  61. // See table_builder.cc for the code that built this structure.
  62. size_t n = static_cast<size_t>(handle.size());
  63. char* buf = new char[n + kBlockTrailerSize];
  64. Slice contents;
  65. Status s = file->Read(handle.offset(), n + kBlockTrailerSize, &contents, buf);
  66. if (!s.ok()) {
  67. delete[] buf;
  68. return s;
  69. }
  70. if (contents.size() != n + kBlockTrailerSize) {
  71. delete[] buf;
  72. return Status::Corruption("truncated block read");
  73. }
  74. // Check the crc of the type and the block contents
  75. const char* data = contents.data(); // Pointer to where Read put the data
  76. if (options.verify_checksums) {
  77. const uint32_t crc = crc32c::Unmask(DecodeFixed32(data + n + 1));
  78. const uint32_t actual = crc32c::Value(data, n + 1);
  79. if (actual != crc) {
  80. delete[] buf;
  81. s = Status::Corruption("block checksum mismatch");
  82. return s;
  83. }
  84. }
  85. switch (data[n]) {
  86. case kNoCompression:
  87. if (data != buf) {
  88. // File implementation gave us pointer to some other data.
  89. // Use it directly under the assumption that it will be live
  90. // while the file is open.
  91. delete[] buf;
  92. result->data = Slice(data, n);
  93. result->heap_allocated = false;
  94. result->cachable = false; // Do not double-cache
  95. } else {
  96. result->data = Slice(buf, n);
  97. result->heap_allocated = true;
  98. result->cachable = true;
  99. }
  100. // Ok
  101. break;
  102. case kSnappyCompression: {
  103. size_t ulength = 0;
  104. if (!port::Snappy_GetUncompressedLength(data, n, &ulength)) {
  105. delete[] buf;
  106. return Status::Corruption("corrupted compressed block contents");
  107. }
  108. char* ubuf = new char[ulength];
  109. if (!port::Snappy_Uncompress(data, n, ubuf)) {
  110. delete[] buf;
  111. delete[] ubuf;
  112. return Status::Corruption("corrupted compressed block contents");
  113. }
  114. delete[] buf;
  115. result->data = Slice(ubuf, ulength);
  116. result->heap_allocated = true;
  117. result->cachable = true;
  118. break;
  119. }
  120. default:
  121. delete[] buf;
  122. return Status::Corruption("bad block type");
  123. }
  124. return Status::OK();
  125. }
  126. } // namespace leveldb