提供基本的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.

57 lines
1.7 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 years ago
  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. #ifndef STORAGE_LEVELDB_TABLE_BLOCK_BUILDER_H_
  5. #define STORAGE_LEVELDB_TABLE_BLOCK_BUILDER_H_
  6. #include <vector>
  7. #include <stdint.h>
  8. #include "leveldb/slice.h"
  9. namespace leveldb {
  10. struct Options;
  11. class BlockBuilder {
  12. public:
  13. explicit BlockBuilder(const Options* options);
  14. // Reset the contents as if the BlockBuilder was just constructed.
  15. void Reset();
  16. // REQUIRES: Finish() has not been called since the last call to Reset().
  17. // REQUIRES: key is larger than any previously added key
  18. void Add(const Slice& key, const Slice& value);
  19. // Finish building the block and return a slice that refers to the
  20. // block contents. The returned slice will remain valid for the
  21. // lifetime of this builder or until Reset() is called.
  22. Slice Finish();
  23. // Returns an estimate of the current (uncompressed) size of the block
  24. // we are building.
  25. size_t CurrentSizeEstimate() const;
  26. // Return true iff no entries have been added since the last Reset()
  27. bool empty() const {
  28. return buffer_.empty();
  29. }
  30. private:
  31. const Options* options_;
  32. std::string buffer_; // Destination buffer
  33. std::vector<uint32_t> restarts_; // Restart points
  34. int counter_; // Number of entries emitted since restart
  35. bool finished_; // Has Finish() been called?
  36. std::string last_key_;
  37. // No copying allowed
  38. BlockBuilder(const BlockBuilder&);
  39. void operator=(const BlockBuilder&);
  40. };
  41. } // namespace leveldb
  42. #endif // STORAGE_LEVELDB_TABLE_BLOCK_BUILDER_H_