提供基本的ttl测试用例
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1682 行
52 KiB

Add Env::Remove{File,Dir} which obsolete Env::Delete{File,Dir}. The "DeleteFile" method name causes pain for Windows developers, because <windows.h> #defines a DeleteFile macro to DeleteFileW or DeleteFileA. Current code uses workarounds, like #undefining DeleteFile everywhere an Env is declared, implemented, or used. This CL removes the need for workarounds by renaming Env::DeleteFile to Env::RemoveFile. For consistency, Env::DeleteDir is also renamed to Env::RemoveDir. A few internal methods are also renamed for consistency. Software that supports Windows is expected to migrate any Env implementations and usage to Remove{File,Dir}, and never use the name Env::Delete{File,Dir} in its code. The renaming is done in a backwards-compatible way, at the risk of making it slightly more difficult to build a new correct Env implementation. The backwards compatibility is achieved using the following hacks: 1) Env::Remove{File,Dir} methods are added, with a default implementation that calls into Env::Delete{File,Dir}. This makes old Env implementations compatible with code that calls into the updated API. 2) The Env::Delete{File,Dir} methods are no longer pure virtuals. Instead, they gain a default implementation that calls into Env::Remove{File,Dir}. This makes updated Env implementations compatible with code that calls into the old API. The cost of this approach is that it's possible to write an Env without overriding either Rename{File,Dir} or Delete{File,Dir}, without getting a compiler warning. However, attempting to run the test suite will immediately fail with an infinite call stack ending in {Remove,Delete}{File,Dir}, making developers aware of the problem. PiperOrigin-RevId: 288710907
4 年前
Add Env::Remove{File,Dir} which obsolete Env::Delete{File,Dir}. The "DeleteFile" method name causes pain for Windows developers, because <windows.h> #defines a DeleteFile macro to DeleteFileW or DeleteFileA. Current code uses workarounds, like #undefining DeleteFile everywhere an Env is declared, implemented, or used. This CL removes the need for workarounds by renaming Env::DeleteFile to Env::RemoveFile. For consistency, Env::DeleteDir is also renamed to Env::RemoveDir. A few internal methods are also renamed for consistency. Software that supports Windows is expected to migrate any Env implementations and usage to Remove{File,Dir}, and never use the name Env::Delete{File,Dir} in its code. The renaming is done in a backwards-compatible way, at the risk of making it slightly more difficult to build a new correct Env implementation. The backwards compatibility is achieved using the following hacks: 1) Env::Remove{File,Dir} methods are added, with a default implementation that calls into Env::Delete{File,Dir}. This makes old Env implementations compatible with code that calls into the updated API. 2) The Env::Delete{File,Dir} methods are no longer pure virtuals. Instead, they gain a default implementation that calls into Env::Remove{File,Dir}. This makes updated Env implementations compatible with code that calls into the old API. The cost of this approach is that it's possible to write an Env without overriding either Rename{File,Dir} or Delete{File,Dir}, without getting a compiler warning. However, attempting to run the test suite will immediately fail with an infinite call stack ending in {Remove,Delete}{File,Dir}, making developers aware of the problem. PiperOrigin-RevId: 288710907
4 年前
Add Env::Remove{File,Dir} which obsolete Env::Delete{File,Dir}. The "DeleteFile" method name causes pain for Windows developers, because <windows.h> #defines a DeleteFile macro to DeleteFileW or DeleteFileA. Current code uses workarounds, like #undefining DeleteFile everywhere an Env is declared, implemented, or used. This CL removes the need for workarounds by renaming Env::DeleteFile to Env::RemoveFile. For consistency, Env::DeleteDir is also renamed to Env::RemoveDir. A few internal methods are also renamed for consistency. Software that supports Windows is expected to migrate any Env implementations and usage to Remove{File,Dir}, and never use the name Env::Delete{File,Dir} in its code. The renaming is done in a backwards-compatible way, at the risk of making it slightly more difficult to build a new correct Env implementation. The backwards compatibility is achieved using the following hacks: 1) Env::Remove{File,Dir} methods are added, with a default implementation that calls into Env::Delete{File,Dir}. This makes old Env implementations compatible with code that calls into the updated API. 2) The Env::Delete{File,Dir} methods are no longer pure virtuals. Instead, they gain a default implementation that calls into Env::Remove{File,Dir}. This makes updated Env implementations compatible with code that calls into the old API. The cost of this approach is that it's possible to write an Env without overriding either Rename{File,Dir} or Delete{File,Dir}, without getting a compiler warning. However, attempting to run the test suite will immediately fail with an infinite call stack ending in {Remove,Delete}{File,Dir}, making developers aware of the problem. PiperOrigin-RevId: 288710907
4 年前
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 年前
Add Env::Remove{File,Dir} which obsolete Env::Delete{File,Dir}. The "DeleteFile" method name causes pain for Windows developers, because <windows.h> #defines a DeleteFile macro to DeleteFileW or DeleteFileA. Current code uses workarounds, like #undefining DeleteFile everywhere an Env is declared, implemented, or used. This CL removes the need for workarounds by renaming Env::DeleteFile to Env::RemoveFile. For consistency, Env::DeleteDir is also renamed to Env::RemoveDir. A few internal methods are also renamed for consistency. Software that supports Windows is expected to migrate any Env implementations and usage to Remove{File,Dir}, and never use the name Env::Delete{File,Dir} in its code. The renaming is done in a backwards-compatible way, at the risk of making it slightly more difficult to build a new correct Env implementation. The backwards compatibility is achieved using the following hacks: 1) Env::Remove{File,Dir} methods are added, with a default implementation that calls into Env::Delete{File,Dir}. This makes old Env implementations compatible with code that calls into the updated API. 2) The Env::Delete{File,Dir} methods are no longer pure virtuals. Instead, they gain a default implementation that calls into Env::Remove{File,Dir}. This makes updated Env implementations compatible with code that calls into the old API. The cost of this approach is that it's possible to write an Env without overriding either Rename{File,Dir} or Delete{File,Dir}, without getting a compiler warning. However, attempting to run the test suite will immediately fail with an infinite call stack ending in {Remove,Delete}{File,Dir}, making developers aware of the problem. PiperOrigin-RevId: 288710907
4 年前
Add Env::Remove{File,Dir} which obsolete Env::Delete{File,Dir}. The "DeleteFile" method name causes pain for Windows developers, because <windows.h> #defines a DeleteFile macro to DeleteFileW or DeleteFileA. Current code uses workarounds, like #undefining DeleteFile everywhere an Env is declared, implemented, or used. This CL removes the need for workarounds by renaming Env::DeleteFile to Env::RemoveFile. For consistency, Env::DeleteDir is also renamed to Env::RemoveDir. A few internal methods are also renamed for consistency. Software that supports Windows is expected to migrate any Env implementations and usage to Remove{File,Dir}, and never use the name Env::Delete{File,Dir} in its code. The renaming is done in a backwards-compatible way, at the risk of making it slightly more difficult to build a new correct Env implementation. The backwards compatibility is achieved using the following hacks: 1) Env::Remove{File,Dir} methods are added, with a default implementation that calls into Env::Delete{File,Dir}. This makes old Env implementations compatible with code that calls into the updated API. 2) The Env::Delete{File,Dir} methods are no longer pure virtuals. Instead, they gain a default implementation that calls into Env::Remove{File,Dir}. This makes updated Env implementations compatible with code that calls into the old API. The cost of this approach is that it's possible to write an Env without overriding either Rename{File,Dir} or Delete{File,Dir}, without getting a compiler warning. However, attempting to run the test suite will immediately fail with an infinite call stack ending in {Remove,Delete}{File,Dir}, making developers aware of the problem. PiperOrigin-RevId: 288710907
4 年前
Add Env::Remove{File,Dir} which obsolete Env::Delete{File,Dir}. The "DeleteFile" method name causes pain for Windows developers, because <windows.h> #defines a DeleteFile macro to DeleteFileW or DeleteFileA. Current code uses workarounds, like #undefining DeleteFile everywhere an Env is declared, implemented, or used. This CL removes the need for workarounds by renaming Env::DeleteFile to Env::RemoveFile. For consistency, Env::DeleteDir is also renamed to Env::RemoveDir. A few internal methods are also renamed for consistency. Software that supports Windows is expected to migrate any Env implementations and usage to Remove{File,Dir}, and never use the name Env::Delete{File,Dir} in its code. The renaming is done in a backwards-compatible way, at the risk of making it slightly more difficult to build a new correct Env implementation. The backwards compatibility is achieved using the following hacks: 1) Env::Remove{File,Dir} methods are added, with a default implementation that calls into Env::Delete{File,Dir}. This makes old Env implementations compatible with code that calls into the updated API. 2) The Env::Delete{File,Dir} methods are no longer pure virtuals. Instead, they gain a default implementation that calls into Env::Remove{File,Dir}. This makes updated Env implementations compatible with code that calls into the old API. The cost of this approach is that it's possible to write an Env without overriding either Rename{File,Dir} or Delete{File,Dir}, without getting a compiler warning. However, attempting to run the test suite will immediately fail with an infinite call stack ending in {Remove,Delete}{File,Dir}, making developers aware of the problem. PiperOrigin-RevId: 288710907
4 年前
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 年前
Add Env::Remove{File,Dir} which obsolete Env::Delete{File,Dir}. The "DeleteFile" method name causes pain for Windows developers, because <windows.h> #defines a DeleteFile macro to DeleteFileW or DeleteFileA. Current code uses workarounds, like #undefining DeleteFile everywhere an Env is declared, implemented, or used. This CL removes the need for workarounds by renaming Env::DeleteFile to Env::RemoveFile. For consistency, Env::DeleteDir is also renamed to Env::RemoveDir. A few internal methods are also renamed for consistency. Software that supports Windows is expected to migrate any Env implementations and usage to Remove{File,Dir}, and never use the name Env::Delete{File,Dir} in its code. The renaming is done in a backwards-compatible way, at the risk of making it slightly more difficult to build a new correct Env implementation. The backwards compatibility is achieved using the following hacks: 1) Env::Remove{File,Dir} methods are added, with a default implementation that calls into Env::Delete{File,Dir}. This makes old Env implementations compatible with code that calls into the updated API. 2) The Env::Delete{File,Dir} methods are no longer pure virtuals. Instead, they gain a default implementation that calls into Env::Remove{File,Dir}. This makes updated Env implementations compatible with code that calls into the old API. The cost of this approach is that it's possible to write an Env without overriding either Rename{File,Dir} or Delete{File,Dir}, without getting a compiler warning. However, attempting to run the test suite will immediately fail with an infinite call stack ending in {Remove,Delete}{File,Dir}, making developers aware of the problem. PiperOrigin-RevId: 288710907
4 年前
Add Env::Remove{File,Dir} which obsolete Env::Delete{File,Dir}. The "DeleteFile" method name causes pain for Windows developers, because <windows.h> #defines a DeleteFile macro to DeleteFileW or DeleteFileA. Current code uses workarounds, like #undefining DeleteFile everywhere an Env is declared, implemented, or used. This CL removes the need for workarounds by renaming Env::DeleteFile to Env::RemoveFile. For consistency, Env::DeleteDir is also renamed to Env::RemoveDir. A few internal methods are also renamed for consistency. Software that supports Windows is expected to migrate any Env implementations and usage to Remove{File,Dir}, and never use the name Env::Delete{File,Dir} in its code. The renaming is done in a backwards-compatible way, at the risk of making it slightly more difficult to build a new correct Env implementation. The backwards compatibility is achieved using the following hacks: 1) Env::Remove{File,Dir} methods are added, with a default implementation that calls into Env::Delete{File,Dir}. This makes old Env implementations compatible with code that calls into the updated API. 2) The Env::Delete{File,Dir} methods are no longer pure virtuals. Instead, they gain a default implementation that calls into Env::Remove{File,Dir}. This makes updated Env implementations compatible with code that calls into the old API. The cost of this approach is that it's possible to write an Env without overriding either Rename{File,Dir} or Delete{File,Dir}, without getting a compiler warning. However, attempting to run the test suite will immediately fail with an infinite call stack ending in {Remove,Delete}{File,Dir}, making developers aware of the problem. PiperOrigin-RevId: 288710907
4 年前
Add Env::Remove{File,Dir} which obsolete Env::Delete{File,Dir}. The "DeleteFile" method name causes pain for Windows developers, because <windows.h> #defines a DeleteFile macro to DeleteFileW or DeleteFileA. Current code uses workarounds, like #undefining DeleteFile everywhere an Env is declared, implemented, or used. This CL removes the need for workarounds by renaming Env::DeleteFile to Env::RemoveFile. For consistency, Env::DeleteDir is also renamed to Env::RemoveDir. A few internal methods are also renamed for consistency. Software that supports Windows is expected to migrate any Env implementations and usage to Remove{File,Dir}, and never use the name Env::Delete{File,Dir} in its code. The renaming is done in a backwards-compatible way, at the risk of making it slightly more difficult to build a new correct Env implementation. The backwards compatibility is achieved using the following hacks: 1) Env::Remove{File,Dir} methods are added, with a default implementation that calls into Env::Delete{File,Dir}. This makes old Env implementations compatible with code that calls into the updated API. 2) The Env::Delete{File,Dir} methods are no longer pure virtuals. Instead, they gain a default implementation that calls into Env::Remove{File,Dir}. This makes updated Env implementations compatible with code that calls into the old API. The cost of this approach is that it's possible to write an Env without overriding either Rename{File,Dir} or Delete{File,Dir}, without getting a compiler warning. However, attempting to run the test suite will immediately fail with an infinite call stack ending in {Remove,Delete}{File,Dir}, making developers aware of the problem. PiperOrigin-RevId: 288710907
4 年前
  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 "db/db_impl.h"
  5. #include <algorithm>
  6. #include <atomic>
  7. #include <cstdint>
  8. #include <cstdio>
  9. #include <set>
  10. #include <string>
  11. #include <vector>
  12. #include "db/builder.h"
  13. #include "db/db_iter.h"
  14. #include "db/dbformat.h"
  15. #include "db/filename.h"
  16. #include "db/log_reader.h"
  17. #include "db/log_writer.h"
  18. #include "db/memtable.h"
  19. #include "db/table_cache.h"
  20. #include "db/version_set.h"
  21. #include "db/write_batch_internal.h"
  22. #include "leveldb/db.h"
  23. #include "leveldb/env.h"
  24. #include "leveldb/status.h"
  25. #include "leveldb/table.h"
  26. #include "leveldb/table_builder.h"
  27. #include "port/port.h"
  28. #include "table/block.h"
  29. #include "table/merger.h"
  30. #include "table/two_level_iterator.h"
  31. #include "util/coding.h"
  32. #include "util/logging.h"
  33. #include "util/mutexlock.h"
  34. namespace leveldb {
  35. const int kNumNonTableCacheFiles = 10;
  36. // Information kept for every waiting writer
  37. struct DBImpl::Writer {
  38. explicit Writer(port::Mutex* mu)
  39. : batch(nullptr), sync(false), done(false), cv(mu) {}
  40. Status status;
  41. WriteBatch* batch;
  42. bool sync;
  43. bool done;
  44. port::CondVar cv;
  45. };
  46. struct DBImpl::CompactionState {
  47. // Files produced by compaction
  48. struct Output {
  49. uint64_t number;
  50. uint64_t file_size;
  51. InternalKey smallest, largest;
  52. };
  53. Output* current_output() { return &outputs[outputs.size() - 1]; }
  54. explicit CompactionState(Compaction* c)
  55. : compaction(c),
  56. smallest_snapshot(0),
  57. outfile(nullptr),
  58. builder(nullptr),
  59. total_bytes(0) {}
  60. Compaction* const compaction;
  61. // Sequence numbers < smallest_snapshot are not significant since we
  62. // will never have to service a snapshot below smallest_snapshot.
  63. // Therefore if we have seen a sequence number S <= smallest_snapshot,
  64. // we can drop all entries for the same key with sequence numbers < S.
  65. SequenceNumber smallest_snapshot;
  66. std::vector<Output> outputs;
  67. // State kept for output being generated
  68. WritableFile* outfile;
  69. TableBuilder* builder;
  70. uint64_t total_bytes;
  71. };
  72. // Fix user-supplied options to be reasonable
  73. template <class T, class V>
  74. static void ClipToRange(T* ptr, V minvalue, V maxvalue) {
  75. if (static_cast<V>(*ptr) > maxvalue) *ptr = maxvalue;
  76. if (static_cast<V>(*ptr) < minvalue) *ptr = minvalue;
  77. }
  78. Options SanitizeOptions(const std::string& dbname,
  79. const InternalKeyComparator* icmp,
  80. const InternalFilterPolicy* ipolicy,
  81. const Options& src) {
  82. Options result = src;
  83. result.comparator = icmp;
  84. result.filter_policy = (src.filter_policy != nullptr) ? ipolicy : nullptr;
  85. ClipToRange(&result.max_open_files, 64 + kNumNonTableCacheFiles, 50000);
  86. ClipToRange(&result.write_buffer_size, 64 << 10, 1 << 30);
  87. ClipToRange(&result.max_file_size, 1 << 20, 1 << 30);
  88. ClipToRange(&result.block_size, 1 << 10, 4 << 20);
  89. if (result.info_log == nullptr) {
  90. // Open a log file in the same directory as the db
  91. src.env->CreateDir(dbname); // In case it does not exist
  92. src.env->RenameFile(InfoLogFileName(dbname), OldInfoLogFileName(dbname));
  93. Status s = src.env->NewLogger(InfoLogFileName(dbname), &result.info_log);
  94. if (!s.ok()) {
  95. // No place suitable for logging
  96. result.info_log = nullptr;
  97. }
  98. }
  99. if (result.block_cache == nullptr) {
  100. result.block_cache = NewLRUCache(8 << 20);
  101. }
  102. return result;
  103. }
  104. static int TableCacheSize(const Options& sanitized_options) {
  105. // Reserve ten files or so for other uses and give the rest to TableCache.
  106. return sanitized_options.max_open_files - kNumNonTableCacheFiles;
  107. }
  108. DBImpl::DBImpl(const Options& raw_options, const std::string& dbname)
  109. : env_(raw_options.env),
  110. internal_comparator_(raw_options.comparator),
  111. internal_filter_policy_(raw_options.filter_policy),
  112. options_(SanitizeOptions(dbname, &internal_comparator_,
  113. &internal_filter_policy_, raw_options)),
  114. owns_info_log_(options_.info_log != raw_options.info_log),
  115. owns_cache_(options_.block_cache != raw_options.block_cache),
  116. dbname_(dbname),
  117. table_cache_(new TableCache(dbname_, options_, TableCacheSize(options_))),
  118. db_lock_(nullptr),
  119. shutting_down_(false),
  120. background_work_finished_signal_(&mutex_),
  121. mem_(nullptr),
  122. imm_(nullptr),
  123. has_imm_(false),
  124. logfile_(nullptr),
  125. logfile_number_(0),
  126. log_(nullptr),
  127. seed_(0),
  128. tmp_batch_(new WriteBatch),
  129. background_compaction_scheduled_(false),
  130. manual_compaction_(nullptr),
  131. versions_(new VersionSet(dbname_, &options_, table_cache_,
  132. &internal_comparator_)) {}
  133. DBImpl::~DBImpl() {
  134. // Wait for background work to finish.
  135. mutex_.Lock();
  136. shutting_down_.store(true, std::memory_order_release);
  137. while (background_compaction_scheduled_) {
  138. background_work_finished_signal_.Wait();
  139. }
  140. mutex_.Unlock();
  141. if (db_lock_ != nullptr) {
  142. env_->UnlockFile(db_lock_);
  143. }
  144. delete versions_;
  145. if (mem_ != nullptr) mem_->Unref();
  146. if (imm_ != nullptr) imm_->Unref();
  147. delete tmp_batch_;
  148. delete log_;
  149. delete logfile_;
  150. delete table_cache_;
  151. if (owns_info_log_) {
  152. delete options_.info_log;
  153. }
  154. if (owns_cache_) {
  155. delete options_.block_cache;
  156. }
  157. }
  158. Status DBImpl::NewDB() {
  159. VersionEdit new_db;
  160. new_db.SetComparatorName(user_comparator()->Name());
  161. new_db.SetLogNumber(0);
  162. new_db.SetNextFile(2);
  163. new_db.SetLastSequence(0);
  164. const std::string manifest = DescriptorFileName(dbname_, 1);
  165. WritableFile* file;
  166. Status s = env_->NewWritableFile(manifest, &file);
  167. if (!s.ok()) {
  168. return s;
  169. }
  170. {
  171. log::Writer log(file);
  172. std::string record;
  173. new_db.EncodeTo(&record);
  174. s = log.AddRecord(record);
  175. if (s.ok()) {
  176. s = file->Sync();
  177. }
  178. if (s.ok()) {
  179. s = file->Close();
  180. }
  181. }
  182. delete file;
  183. if (s.ok()) {
  184. // Make "CURRENT" file that points to the new manifest file.
  185. s = SetCurrentFile(env_, dbname_, 1);
  186. } else {
  187. env_->RemoveFile(manifest);
  188. }
  189. return s;
  190. }
  191. void DBImpl::MaybeIgnoreError(Status* s) const {
  192. if (s->ok() || options_.paranoid_checks) {
  193. // No change needed
  194. } else {
  195. Log(options_.info_log, "Ignoring error %s", s->ToString().c_str());
  196. *s = Status::OK();
  197. }
  198. }
  199. void DBImpl::RemoveObsoleteFiles() {
  200. mutex_.AssertHeld();
  201. if (!bg_error_.ok()) {
  202. // After a background error, we don't know whether a new version may
  203. // or may not have been committed, so we cannot safely garbage collect.
  204. return;
  205. }
  206. // Make a set of all of the live files
  207. std::set<uint64_t> live = pending_outputs_;
  208. versions_->AddLiveFiles(&live);
  209. std::vector<std::string> filenames;
  210. env_->GetChildren(dbname_, &filenames); // Ignoring errors on purpose
  211. uint64_t number;
  212. FileType type;
  213. std::vector<std::string> files_to_delete;
  214. for (std::string& filename : filenames) {
  215. if (ParseFileName(filename, &number, &type)) {
  216. bool keep = true;
  217. switch (type) {
  218. case kLogFile:
  219. keep = ((number >= versions_->LogNumber()) ||
  220. (number == versions_->PrevLogNumber()));
  221. break;
  222. case kDescriptorFile:
  223. // Keep my manifest file, and any newer incarnations'
  224. // (in case there is a race that allows other incarnations)
  225. keep = (number >= versions_->ManifestFileNumber());
  226. break;
  227. case kTableFile:
  228. keep = (live.find(number) != live.end());
  229. break;
  230. case kTempFile:
  231. // Any temp files that are currently being written to must
  232. // be recorded in pending_outputs_, which is inserted into "live"
  233. keep = (live.find(number) != live.end());
  234. break;
  235. case kCurrentFile:
  236. case kDBLockFile:
  237. case kInfoLogFile:
  238. keep = true;
  239. break;
  240. }
  241. if (!keep) {
  242. files_to_delete.push_back(std::move(filename));
  243. if (type == kTableFile) {
  244. table_cache_->Evict(number);
  245. }
  246. Log(options_.info_log, "Delete type=%d #%lld\n", static_cast<int>(type),
  247. static_cast<unsigned long long>(number));
  248. }
  249. }
  250. }
  251. // While deleting all files unblock other threads. All files being deleted
  252. // have unique names which will not collide with newly created files and
  253. // are therefore safe to delete while allowing other threads to proceed.
  254. mutex_.Unlock();
  255. for (const std::string& filename : files_to_delete) {
  256. env_->RemoveFile(dbname_ + "/" + filename);
  257. }
  258. mutex_.Lock();
  259. }
  260. Status DBImpl::Recover(VersionEdit* edit, bool* save_manifest) {
  261. mutex_.AssertHeld();
  262. // Ignore error from CreateDir since the creation of the DB is
  263. // committed only when the descriptor is created, and this directory
  264. // may already exist from a previous failed creation attempt.
  265. env_->CreateDir(dbname_);
  266. assert(db_lock_ == nullptr);
  267. Status s = env_->LockFile(LockFileName(dbname_), &db_lock_);
  268. if (!s.ok()) {
  269. return s;
  270. }
  271. if (!env_->FileExists(CurrentFileName(dbname_))) {
  272. if (options_.create_if_missing) {
  273. Log(options_.info_log, "Creating DB %s since it was missing.",
  274. dbname_.c_str());
  275. s = NewDB();
  276. if (!s.ok()) {
  277. return s;
  278. }
  279. } else {
  280. return Status::InvalidArgument(
  281. dbname_, "does not exist (create_if_missing is false)");
  282. }
  283. } else {
  284. if (options_.error_if_exists) {
  285. return Status::InvalidArgument(dbname_,
  286. "exists (error_if_exists is true)");
  287. }
  288. }
  289. s = versions_->Recover(save_manifest);
  290. if (!s.ok()) {
  291. return s;
  292. }
  293. SequenceNumber max_sequence(0);
  294. // Recover from all newer log files than the ones named in the
  295. // descriptor (new log files may have been added by the previous
  296. // incarnation without registering them in the descriptor).
  297. //
  298. // Note that PrevLogNumber() is no longer used, but we pay
  299. // attention to it in case we are recovering a database
  300. // produced by an older version of leveldb.
  301. const uint64_t min_log = versions_->LogNumber();
  302. const uint64_t prev_log = versions_->PrevLogNumber();
  303. std::vector<std::string> filenames;
  304. s = env_->GetChildren(dbname_, &filenames);
  305. if (!s.ok()) {
  306. return s;
  307. }
  308. std::set<uint64_t> expected;
  309. versions_->AddLiveFiles(&expected);
  310. uint64_t number;
  311. FileType type;
  312. std::vector<uint64_t> logs;
  313. for (size_t i = 0; i < filenames.size(); i++) {
  314. if (ParseFileName(filenames[i], &number, &type)) {
  315. expected.erase(number);
  316. if (type == kLogFile && ((number >= min_log) || (number == prev_log)))
  317. logs.push_back(number);
  318. }
  319. }
  320. if (!expected.empty()) {
  321. char buf[50];
  322. std::snprintf(buf, sizeof(buf), "%d missing files; e.g.",
  323. static_cast<int>(expected.size()));
  324. return Status::Corruption(buf, TableFileName(dbname_, *(expected.begin())));
  325. }
  326. // Recover in the order in which the logs were generated
  327. std::sort(logs.begin(), logs.end());
  328. for (size_t i = 0; i < logs.size(); i++) {
  329. s = RecoverLogFile(logs[i], (i == logs.size() - 1), save_manifest, edit,
  330. &max_sequence);
  331. if (!s.ok()) {
  332. return s;
  333. }
  334. // The previous incarnation may not have written any MANIFEST
  335. // records after allocating this log number. So we manually
  336. // update the file number allocation counter in VersionSet.
  337. versions_->MarkFileNumberUsed(logs[i]);
  338. }
  339. if (versions_->LastSequence() < max_sequence) {
  340. versions_->SetLastSequence(max_sequence);
  341. }
  342. return Status::OK();
  343. }
  344. Status DBImpl::RecoverLogFile(uint64_t log_number, bool last_log,
  345. bool* save_manifest, VersionEdit* edit,
  346. SequenceNumber* max_sequence) {
  347. struct LogReporter : public log::Reader::Reporter {
  348. Env* env;
  349. Logger* info_log;
  350. const char* fname;
  351. Status* status; // null if options_.paranoid_checks==false
  352. void Corruption(size_t bytes, const Status& s) override {
  353. Log(info_log, "%s%s: dropping %d bytes; %s",
  354. (this->status == nullptr ? "(ignoring error) " : ""), fname,
  355. static_cast<int>(bytes), s.ToString().c_str());
  356. if (this->status != nullptr && this->status->ok()) *this->status = s;
  357. }
  358. };
  359. mutex_.AssertHeld();
  360. // Open the log file
  361. std::string fname = LogFileName(dbname_, log_number);
  362. SequentialFile* file;
  363. Status status = env_->NewSequentialFile(fname, &file);
  364. if (!status.ok()) {
  365. MaybeIgnoreError(&status);
  366. return status;
  367. }
  368. // Create the log reader.
  369. LogReporter reporter;
  370. reporter.env = env_;
  371. reporter.info_log = options_.info_log;
  372. reporter.fname = fname.c_str();
  373. reporter.status = (options_.paranoid_checks ? &status : nullptr);
  374. // We intentionally make log::Reader do checksumming even if
  375. // paranoid_checks==false so that corruptions cause entire commits
  376. // to be skipped instead of propagating bad information (like overly
  377. // large sequence numbers).
  378. log::Reader reader(file, &reporter, true /*checksum*/, 0 /*initial_offset*/);
  379. Log(options_.info_log, "Recovering log #%llu",
  380. (unsigned long long)log_number);
  381. // Read all the records and add to a memtable
  382. std::string scratch;
  383. Slice record;
  384. WriteBatch batch;
  385. int compactions = 0;
  386. MemTable* mem = nullptr;
  387. while (reader.ReadRecord(&record, &scratch) && status.ok()) {
  388. if (record.size() < 12) {
  389. reporter.Corruption(record.size(),
  390. Status::Corruption("log record too small"));
  391. continue;
  392. }
  393. WriteBatchInternal::SetContents(&batch, record);
  394. if (mem == nullptr) {
  395. mem = new MemTable(internal_comparator_);
  396. mem->Ref();
  397. }
  398. status = WriteBatchInternal::InsertInto(&batch, mem);
  399. MaybeIgnoreError(&status);
  400. if (!status.ok()) {
  401. break;
  402. }
  403. const SequenceNumber last_seq = WriteBatchInternal::Sequence(&batch) +
  404. WriteBatchInternal::Count(&batch) - 1;
  405. if (last_seq > *max_sequence) {
  406. *max_sequence = last_seq;
  407. }
  408. if (mem->ApproximateMemoryUsage() > options_.write_buffer_size) {
  409. compactions++;
  410. *save_manifest = true;
  411. status = WriteLevel0Table(mem, edit, nullptr);
  412. mem->Unref();
  413. mem = nullptr;
  414. if (!status.ok()) {
  415. // Reflect errors immediately so that conditions like full
  416. // file-systems cause the DB::Open() to fail.
  417. break;
  418. }
  419. }
  420. }
  421. delete file;
  422. // See if we should keep reusing the last log file.
  423. if (status.ok() && options_.reuse_logs && last_log && compactions == 0) {
  424. assert(logfile_ == nullptr);
  425. assert(log_ == nullptr);
  426. assert(mem_ == nullptr);
  427. uint64_t lfile_size;
  428. if (env_->GetFileSize(fname, &lfile_size).ok() &&
  429. env_->NewAppendableFile(fname, &logfile_).ok()) {
  430. Log(options_.info_log, "Reusing old log %s \n", fname.c_str());
  431. log_ = new log::Writer(logfile_, lfile_size);
  432. logfile_number_ = log_number;
  433. if (mem != nullptr) {
  434. mem_ = mem;
  435. mem = nullptr;
  436. } else {
  437. // mem can be nullptr if lognum exists but was empty.
  438. mem_ = new MemTable(internal_comparator_);
  439. mem_->Ref();
  440. }
  441. }
  442. }
  443. if (mem != nullptr) {
  444. // mem did not get reused; compact it.
  445. if (status.ok()) {
  446. *save_manifest = true;
  447. status = WriteLevel0Table(mem, edit, nullptr);
  448. }
  449. mem->Unref();
  450. }
  451. return status;
  452. }
  453. Status DBImpl::WriteLevel0Table(MemTable* mem, VersionEdit* edit,
  454. Version* base) {
  455. mutex_.AssertHeld();
  456. const uint64_t start_micros = env_->NowMicros();
  457. FileMetaData meta;
  458. meta.number = versions_->NewFileNumber();
  459. pending_outputs_.insert(meta.number);
  460. Iterator* iter = mem->NewIterator();
  461. Log(options_.info_log, "Level-0 table #%llu: started",
  462. (unsigned long long)meta.number);
  463. Status s;
  464. {
  465. mutex_.Unlock();
  466. s = BuildTable(dbname_, env_, options_, table_cache_, iter, &meta);
  467. mutex_.Lock();
  468. }
  469. Log(options_.info_log, "Level-0 table #%llu: %lld bytes %s",
  470. (unsigned long long)meta.number, (unsigned long long)meta.file_size,
  471. s.ToString().c_str());
  472. delete iter;
  473. pending_outputs_.erase(meta.number);
  474. // Note that if file_size is zero, the file has been deleted and
  475. // should not be added to the manifest.
  476. int level = 0;
  477. if (s.ok() && meta.file_size > 0) {
  478. const Slice min_user_key = meta.smallest.user_key();
  479. const Slice max_user_key = meta.largest.user_key();
  480. if (base != nullptr) {
  481. level = base->PickLevelForMemTableOutput(min_user_key, max_user_key);
  482. }
  483. edit->AddFile(level, meta.number, meta.file_size, meta.smallest,
  484. meta.largest);
  485. }
  486. CompactionStats stats;
  487. stats.micros = env_->NowMicros() - start_micros;
  488. stats.bytes_written = meta.file_size;
  489. stats_[level].Add(stats);
  490. return s;
  491. }
  492. void DBImpl::CompactMemTable() {
  493. mutex_.AssertHeld();
  494. assert(imm_ != nullptr);
  495. // Save the contents of the memtable as a new Table
  496. VersionEdit edit;
  497. Version* base = versions_->current();
  498. base->Ref();
  499. Status s = WriteLevel0Table(imm_, &edit, base);
  500. base->Unref();
  501. if (s.ok() && shutting_down_.load(std::memory_order_acquire)) {
  502. s = Status::IOError("Deleting DB during memtable compaction");
  503. }
  504. // Replace immutable memtable with the generated Table
  505. if (s.ok()) {
  506. edit.SetPrevLogNumber(0);
  507. edit.SetLogNumber(logfile_number_); // Earlier logs no longer needed
  508. s = versions_->LogAndApply(&edit, &mutex_);
  509. }
  510. if (s.ok()) {
  511. // Commit to the new state
  512. imm_->Unref();
  513. imm_ = nullptr;
  514. has_imm_.store(false, std::memory_order_release);
  515. RemoveObsoleteFiles();
  516. } else {
  517. RecordBackgroundError(s);
  518. }
  519. }
  520. void DBImpl::CompactRange(const Slice* begin, const Slice* end) {
  521. int max_level_with_files = 1;
  522. {
  523. MutexLock l(&mutex_);
  524. Version* base = versions_->current();
  525. for (int level = 1; level < config::kNumLevels; level++) {
  526. if (base->OverlapInLevel(level, begin, end)) {
  527. max_level_with_files = level;
  528. }
  529. }
  530. }
  531. TEST_CompactMemTable(); // TODO(sanjay): Skip if memtable does not overlap
  532. for (int level = 0; level < max_level_with_files; level++) {
  533. TEST_CompactRange(level, begin, end);
  534. }
  535. }
  536. void DBImpl::TEST_CompactRange(int level, const Slice* begin,
  537. const Slice* end) {
  538. assert(level >= 0);
  539. assert(level + 1 < config::kNumLevels);
  540. InternalKey begin_storage, end_storage;
  541. ManualCompaction manual;
  542. manual.level = level;
  543. manual.done = false;
  544. if (begin == nullptr) {
  545. manual.begin = nullptr;
  546. } else {
  547. begin_storage = InternalKey(*begin, kMaxSequenceNumber, kValueTypeForSeek);
  548. manual.begin = &begin_storage;
  549. }
  550. if (end == nullptr) {
  551. manual.end = nullptr;
  552. } else {
  553. end_storage = InternalKey(*end, 0, static_cast<ValueType>(0));
  554. manual.end = &end_storage;
  555. }
  556. MutexLock l(&mutex_);
  557. while (!manual.done && !shutting_down_.load(std::memory_order_acquire) &&
  558. bg_error_.ok()) {
  559. if (manual_compaction_ == nullptr) { // Idle
  560. manual_compaction_ = &manual;
  561. MaybeScheduleCompaction();
  562. } else { // Running either my compaction or another compaction.
  563. background_work_finished_signal_.Wait();
  564. }
  565. }
  566. // Finish current background compaction in the case where
  567. // `background_work_finished_signal_` was signalled due to an error.
  568. while (background_compaction_scheduled_) {
  569. background_work_finished_signal_.Wait();
  570. }
  571. if (manual_compaction_ == &manual) {
  572. // Cancel my manual compaction since we aborted early for some reason.
  573. manual_compaction_ = nullptr;
  574. }
  575. }
  576. Status DBImpl::TEST_CompactMemTable() {
  577. // nullptr batch means just wait for earlier writes to be done
  578. Status s = Write(WriteOptions(), nullptr);
  579. if (s.ok()) {
  580. // Wait until the compaction completes
  581. MutexLock l(&mutex_);
  582. while (imm_ != nullptr && bg_error_.ok()) {
  583. background_work_finished_signal_.Wait();
  584. }
  585. if (imm_ != nullptr) {
  586. s = bg_error_;
  587. }
  588. }
  589. return s;
  590. }
  591. void DBImpl::RecordBackgroundError(const Status& s) {
  592. mutex_.AssertHeld();
  593. if (bg_error_.ok()) {
  594. bg_error_ = s;
  595. background_work_finished_signal_.SignalAll();
  596. }
  597. }
  598. void DBImpl::MaybeScheduleCompaction() {
  599. mutex_.AssertHeld();
  600. if (background_compaction_scheduled_) {
  601. // Already scheduled
  602. } else if (shutting_down_.load(std::memory_order_acquire)) {
  603. // DB is being deleted; no more background compactions
  604. } else if (!bg_error_.ok()) {
  605. // Already got an error; no more changes
  606. } else if (imm_ == nullptr && manual_compaction_ == nullptr &&
  607. !versions_->NeedsCompaction()) {
  608. // No work to be done
  609. } else {
  610. background_compaction_scheduled_ = true;
  611. env_->Schedule(&DBImpl::BGWork, this);
  612. }
  613. }
  614. void DBImpl::BGWork(void* db) {
  615. reinterpret_cast<DBImpl*>(db)->BackgroundCall();
  616. }
  617. void DBImpl::BackgroundCall() {
  618. MutexLock l(&mutex_);
  619. assert(background_compaction_scheduled_);
  620. if (shutting_down_.load(std::memory_order_acquire)) {
  621. // No more background work when shutting down.
  622. } else if (!bg_error_.ok()) {
  623. // No more background work after a background error.
  624. } else {
  625. BackgroundCompaction();
  626. }
  627. background_compaction_scheduled_ = false;
  628. // Previous compaction may have produced too many files in a level,
  629. // so reschedule another compaction if needed.
  630. MaybeScheduleCompaction();
  631. background_work_finished_signal_.SignalAll();
  632. }
  633. void DBImpl::BackgroundCompaction() {
  634. mutex_.AssertHeld();
  635. if (imm_ != nullptr) {
  636. CompactMemTable();
  637. return;
  638. }
  639. Compaction* c;
  640. bool is_manual = (manual_compaction_ != nullptr);
  641. InternalKey manual_end;
  642. if (is_manual) {
  643. ManualCompaction* m = manual_compaction_;
  644. c = versions_->CompactRange(m->level, m->begin, m->end);
  645. m->done = (c == nullptr);
  646. if (c != nullptr) {
  647. manual_end = c->input(0, c->num_input_files(0) - 1)->largest;
  648. }
  649. Log(options_.info_log,
  650. "Manual compaction at level-%d from %s .. %s; will stop at %s\n",
  651. m->level, (m->begin ? m->begin->DebugString().c_str() : "(begin)"),
  652. (m->end ? m->end->DebugString().c_str() : "(end)"),
  653. (m->done ? "(end)" : manual_end.DebugString().c_str()));
  654. } else {
  655. c = versions_->PickCompaction();
  656. }
  657. Status status;
  658. if (c == nullptr) {
  659. // Nothing to do
  660. } else if (!is_manual && c->IsTrivialMove()) {
  661. // Move file to next level
  662. assert(c->num_input_files(0) == 1);
  663. FileMetaData* f = c->input(0, 0);
  664. c->edit()->RemoveFile(c->level(), f->number);
  665. c->edit()->AddFile(c->level() + 1, f->number, f->file_size, f->smallest,
  666. f->largest);
  667. status = versions_->LogAndApply(c->edit(), &mutex_);
  668. if (!status.ok()) {
  669. RecordBackgroundError(status);
  670. }
  671. VersionSet::LevelSummaryStorage tmp;
  672. Log(options_.info_log, "Moved #%lld to level-%d %lld bytes %s: %s\n",
  673. static_cast<unsigned long long>(f->number), c->level() + 1,
  674. static_cast<unsigned long long>(f->file_size),
  675. status.ToString().c_str(), versions_->LevelSummary(&tmp));
  676. } else {
  677. CompactionState* compact = new CompactionState(c);
  678. status = DoCompactionWork(compact);
  679. if (!status.ok()) {
  680. RecordBackgroundError(status);
  681. }
  682. CleanupCompaction(compact);
  683. c->ReleaseInputs();
  684. RemoveObsoleteFiles();
  685. }
  686. delete c;
  687. if (status.ok()) {
  688. // Done
  689. } else if (shutting_down_.load(std::memory_order_acquire)) {
  690. // Ignore compaction errors found during shutting down
  691. } else {
  692. Log(options_.info_log, "Compaction error: %s", status.ToString().c_str());
  693. }
  694. if (is_manual) {
  695. ManualCompaction* m = manual_compaction_;
  696. if (!status.ok()) {
  697. m->done = true;
  698. }
  699. if (!m->done) {
  700. // We only compacted part of the requested range. Update *m
  701. // to the range that is left to be compacted.
  702. m->tmp_storage = manual_end;
  703. m->begin = &m->tmp_storage;
  704. }
  705. manual_compaction_ = nullptr;
  706. }
  707. }
  708. void DBImpl::CleanupCompaction(CompactionState* compact) {
  709. mutex_.AssertHeld();
  710. if (compact->builder != nullptr) {
  711. // May happen if we get a shutdown call in the middle of compaction
  712. compact->builder->Abandon();
  713. delete compact->builder;
  714. } else {
  715. assert(compact->outfile == nullptr);
  716. }
  717. delete compact->outfile;
  718. for (size_t i = 0; i < compact->outputs.size(); i++) {
  719. const CompactionState::Output& out = compact->outputs[i];
  720. pending_outputs_.erase(out.number);
  721. }
  722. delete compact;
  723. }
  724. Status DBImpl::OpenCompactionOutputFile(CompactionState* compact) {
  725. assert(compact != nullptr);
  726. assert(compact->builder == nullptr);
  727. uint64_t file_number;
  728. {
  729. mutex_.Lock();
  730. file_number = versions_->NewFileNumber();
  731. pending_outputs_.insert(file_number);
  732. CompactionState::Output out;
  733. out.number = file_number;
  734. out.smallest.Clear();
  735. out.largest.Clear();
  736. compact->outputs.push_back(out);
  737. mutex_.Unlock();
  738. }
  739. // Make the output file
  740. std::string fname = TableFileName(dbname_, file_number);
  741. Status s = env_->NewWritableFile(fname, &compact->outfile);
  742. if (s.ok()) {
  743. compact->builder = new TableBuilder(options_, compact->outfile);
  744. }
  745. return s;
  746. }
  747. Status DBImpl::FinishCompactionOutputFile(CompactionState* compact,
  748. Iterator* input) {
  749. assert(compact != nullptr);
  750. assert(compact->outfile != nullptr);
  751. assert(compact->builder != nullptr);
  752. const uint64_t output_number = compact->current_output()->number;
  753. assert(output_number != 0);
  754. // Check for iterator errors
  755. Status s = input->status();
  756. const uint64_t current_entries = compact->builder->NumEntries();
  757. if (s.ok()) {
  758. s = compact->builder->Finish();
  759. } else {
  760. compact->builder->Abandon();
  761. }
  762. const uint64_t current_bytes = compact->builder->FileSize();
  763. compact->current_output()->file_size = current_bytes;
  764. compact->total_bytes += current_bytes;
  765. delete compact->builder;
  766. compact->builder = nullptr;
  767. // Finish and check for file errors
  768. if (s.ok()) {
  769. s = compact->outfile->Sync();
  770. }
  771. if (s.ok()) {
  772. s = compact->outfile->Close();
  773. }
  774. delete compact->outfile;
  775. compact->outfile = nullptr;
  776. if (s.ok() && current_entries > 0) {
  777. // Verify that the table is usable
  778. Iterator* iter =
  779. table_cache_->NewIterator(ReadOptions(), output_number, current_bytes);
  780. s = iter->status();
  781. delete iter;
  782. if (s.ok()) {
  783. Log(options_.info_log, "Generated table #%llu@%d: %lld keys, %lld bytes",
  784. (unsigned long long)output_number, compact->compaction->level(),
  785. (unsigned long long)current_entries,
  786. (unsigned long long)current_bytes);
  787. }
  788. }
  789. return s;
  790. }
  791. Status DBImpl::InstallCompactionResults(CompactionState* compact) {
  792. mutex_.AssertHeld();
  793. Log(options_.info_log, "Compacted %d@%d + %d@%d files => %lld bytes",
  794. compact->compaction->num_input_files(0), compact->compaction->level(),
  795. compact->compaction->num_input_files(1), compact->compaction->level() + 1,
  796. static_cast<long long>(compact->total_bytes));
  797. // Add compaction outputs
  798. compact->compaction->AddInputDeletions(compact->compaction->edit());
  799. const int level = compact->compaction->level();
  800. for (size_t i = 0; i < compact->outputs.size(); i++) {
  801. const CompactionState::Output& out = compact->outputs[i];
  802. compact->compaction->edit()->AddFile(level + 1, out.number, out.file_size,
  803. out.smallest, out.largest);
  804. }
  805. return versions_->LogAndApply(compact->compaction->edit(), &mutex_);
  806. }
  807. Status DBImpl::DoCompactionWork(CompactionState* compact) {
  808. const uint64_t start_micros = env_->NowMicros();
  809. int64_t imm_micros = 0; // Micros spent doing imm_ compactions
  810. Log(options_.info_log, "Compacting %d@%d + %d@%d files",
  811. compact->compaction->num_input_files(0), compact->compaction->level(),
  812. compact->compaction->num_input_files(1),
  813. compact->compaction->level() + 1);
  814. assert(versions_->NumLevelFiles(compact->compaction->level()) > 0);
  815. assert(compact->builder == nullptr);
  816. assert(compact->outfile == nullptr);
  817. if (snapshots_.empty()) {
  818. compact->smallest_snapshot = versions_->LastSequence();
  819. } else {
  820. compact->smallest_snapshot = snapshots_.oldest()->sequence_number();
  821. }
  822. Iterator* input = versions_->MakeInputIterator(compact->compaction);
  823. // Release mutex while we're actually doing the compaction work
  824. mutex_.Unlock();
  825. input->SeekToFirst();
  826. Status status;
  827. ParsedInternalKey ikey;
  828. std::string current_user_key;
  829. bool has_current_user_key = false;
  830. SequenceNumber last_sequence_for_key = kMaxSequenceNumber;
  831. while (input->Valid() && !shutting_down_.load(std::memory_order_acquire)) {
  832. // Prioritize immutable compaction work
  833. if (has_imm_.load(std::memory_order_relaxed)) {
  834. const uint64_t imm_start = env_->NowMicros();
  835. mutex_.Lock();
  836. if (imm_ != nullptr) {
  837. CompactMemTable();
  838. // Wake up MakeRoomForWrite() if necessary.
  839. background_work_finished_signal_.SignalAll();
  840. }
  841. mutex_.Unlock();
  842. imm_micros += (env_->NowMicros() - imm_start);
  843. }
  844. Slice key = input->key();
  845. if (compact->compaction->ShouldStopBefore(key) &&
  846. compact->builder != nullptr) {
  847. status = FinishCompactionOutputFile(compact, input);
  848. if (!status.ok()) {
  849. break;
  850. }
  851. }
  852. // Handle key/value, add to state, etc.
  853. bool drop = false;
  854. if (!ParseInternalKey(key, &ikey)) {
  855. // Do not hide error keys
  856. current_user_key.clear();
  857. has_current_user_key = false;
  858. last_sequence_for_key = kMaxSequenceNumber;
  859. } else {
  860. if (!has_current_user_key ||
  861. user_comparator()->Compare(ikey.user_key, Slice(current_user_key)) !=
  862. 0) {
  863. // First occurrence of this user key
  864. current_user_key.assign(ikey.user_key.data(), ikey.user_key.size());
  865. has_current_user_key = true;
  866. last_sequence_for_key = kMaxSequenceNumber;
  867. }
  868. if (last_sequence_for_key <= compact->smallest_snapshot) {
  869. // Hidden by an newer entry for same user key
  870. drop = true; // (A)
  871. } else if (ikey.type == kTypeDeletion &&
  872. ikey.sequence <= compact->smallest_snapshot &&
  873. compact->compaction->IsBaseLevelForKey(ikey.user_key)) {
  874. // For this user key:
  875. // (1) there is no data in higher levels
  876. // (2) data in lower levels will have larger sequence numbers
  877. // (3) data in layers that are being compacted here and have
  878. // smaller sequence numbers will be dropped in the next
  879. // few iterations of this loop (by rule (A) above).
  880. // Therefore this deletion marker is obsolete and can be dropped.
  881. drop = true;
  882. }
  883. last_sequence_for_key = ikey.sequence;
  884. }
  885. #if 0
  886. Log(options_.info_log,
  887. " Compact: %s, seq %d, type: %d %d, drop: %d, is_base: %d, "
  888. "%d smallest_snapshot: %d",
  889. ikey.user_key.ToString().c_str(),
  890. (int)ikey.sequence, ikey.type, kTypeValue, drop,
  891. compact->compaction->IsBaseLevelForKey(ikey.user_key),
  892. (int)last_sequence_for_key, (int)compact->smallest_snapshot);
  893. #endif
  894. //TTL ToDo: modify to add TTL check
  895. // 添加过期时间的检查逻辑
  896. if (!drop) {
  897. // 获取值
  898. Slice value = input->value();
  899. // 检查值是否包含过期时间戳(假设过期时间戳存储在值的前8个字节)
  900. if (value.size() >= sizeof(uint64_t)) {
  901. const char* ptr = value.data();
  902. uint64_t expiration_time = DecodeFixed64(ptr);
  903. // 获取当前时间(单位:秒)
  904. uint64_t current_time = env_->NowMicros() / 1000000;
  905. // 如果当前时间超过过期时间,则丢弃该键值对
  906. if (current_time > expiration_time) {
  907. drop = true;
  908. } else {
  909. // 未过期,继续处理
  910. }
  911. } else {
  912. // 值中没有过期时间戳,视为未过期,继续处理
  913. }
  914. }
  915. //finish modify
  916. if (!drop) {
  917. // Open output file if necessary
  918. if (compact->builder == nullptr) {
  919. status = OpenCompactionOutputFile(compact);
  920. if (!status.ok()) {
  921. break;
  922. }
  923. }
  924. if (compact->builder->NumEntries() == 0) {
  925. compact->current_output()->smallest.DecodeFrom(key);
  926. }
  927. compact->current_output()->largest.DecodeFrom(key);
  928. compact->builder->Add(key, input->value());
  929. // Close output file if it is big enough
  930. if (compact->builder->FileSize() >=
  931. compact->compaction->MaxOutputFileSize()) {
  932. status = FinishCompactionOutputFile(compact, input);
  933. if (!status.ok()) {
  934. break;
  935. }
  936. }
  937. }
  938. input->Next();
  939. }
  940. if (status.ok() && shutting_down_.load(std::memory_order_acquire)) {
  941. status = Status::IOError("Deleting DB during compaction");
  942. }
  943. if (status.ok() && compact->builder != nullptr) {
  944. status = FinishCompactionOutputFile(compact, input);
  945. }
  946. if (status.ok()) {
  947. status = input->status();
  948. }
  949. delete input;
  950. input = nullptr;
  951. CompactionStats stats;
  952. stats.micros = env_->NowMicros() - start_micros - imm_micros;
  953. for (int which = 0; which < 2; which++) {
  954. for (int i = 0; i < compact->compaction->num_input_files(which); i++) {
  955. stats.bytes_read += compact->compaction->input(which, i)->file_size;
  956. }
  957. }
  958. for (size_t i = 0; i < compact->outputs.size(); i++) {
  959. stats.bytes_written += compact->outputs[i].file_size;
  960. }
  961. mutex_.Lock();
  962. stats_[compact->compaction->level() + 1].Add(stats);
  963. if (status.ok()) {
  964. status = InstallCompactionResults(compact);
  965. }
  966. if (!status.ok()) {
  967. RecordBackgroundError(status);
  968. }
  969. VersionSet::LevelSummaryStorage tmp;
  970. Log(options_.info_log, "compacted to: %s", versions_->LevelSummary(&tmp));
  971. return status;
  972. }
  973. namespace {
  974. struct IterState {
  975. port::Mutex* const mu;
  976. Version* const version GUARDED_BY(mu);
  977. MemTable* const mem GUARDED_BY(mu);
  978. MemTable* const imm GUARDED_BY(mu);
  979. IterState(port::Mutex* mutex, MemTable* mem, MemTable* imm, Version* version)
  980. : mu(mutex), version(version), mem(mem), imm(imm) {}
  981. };
  982. static void CleanupIteratorState(void* arg1, void* arg2) {
  983. IterState* state = reinterpret_cast<IterState*>(arg1);
  984. state->mu->Lock();
  985. state->mem->Unref();
  986. if (state->imm != nullptr) state->imm->Unref();
  987. state->version->Unref();
  988. state->mu->Unlock();
  989. delete state;
  990. }
  991. } // anonymous namespace
  992. Iterator* DBImpl::NewInternalIterator(const ReadOptions& options,
  993. SequenceNumber* latest_snapshot,
  994. uint32_t* seed) {
  995. mutex_.Lock();
  996. *latest_snapshot = versions_->LastSequence();
  997. // Collect together all needed child iterators
  998. std::vector<Iterator*> list;
  999. list.push_back(mem_->NewIterator());
  1000. mem_->Ref();
  1001. if (imm_ != nullptr) {
  1002. list.push_back(imm_->NewIterator());
  1003. imm_->Ref();
  1004. }
  1005. versions_->current()->AddIterators(options, &list);
  1006. Iterator* internal_iter =
  1007. NewMergingIterator(&internal_comparator_, &list[0], list.size());
  1008. versions_->current()->Ref();
  1009. IterState* cleanup = new IterState(&mutex_, mem_, imm_, versions_->current());
  1010. internal_iter->RegisterCleanup(CleanupIteratorState, cleanup, nullptr);
  1011. *seed = ++seed_;
  1012. mutex_.Unlock();
  1013. return internal_iter;
  1014. }
  1015. Iterator* DBImpl::TEST_NewInternalIterator() {
  1016. SequenceNumber ignored;
  1017. uint32_t ignored_seed;
  1018. return NewInternalIterator(ReadOptions(), &ignored, &ignored_seed);
  1019. }
  1020. int64_t DBImpl::TEST_MaxNextLevelOverlappingBytes() {
  1021. MutexLock l(&mutex_);
  1022. return versions_->MaxNextLevelOverlappingBytes();
  1023. }
  1024. // TTL ToDo: modify Get function to implement TTL check
  1025. Status DBImpl::Get(const ReadOptions& options, const Slice& key,
  1026. std::string* value) {
  1027. Status s;
  1028. MutexLock l(&mutex_);
  1029. SequenceNumber snapshot;
  1030. if (options.snapshot != nullptr) {
  1031. snapshot =
  1032. static_cast<const SnapshotImpl*>(options.snapshot)->sequence_number();
  1033. } else {
  1034. snapshot = versions_->LastSequence();
  1035. }
  1036. MemTable* mem = mem_;
  1037. MemTable* imm = imm_;
  1038. Version* current = versions_->current();
  1039. mem->Ref();
  1040. if (imm != nullptr) imm->Ref();
  1041. current->Ref();
  1042. bool have_stat_update = false;
  1043. Version::GetStats stats;
  1044. // Unlock while reading from files and memtables
  1045. {
  1046. mutex_.Unlock();
  1047. // First look in the memtable, then in the immutable memtable (if any).
  1048. LookupKey lkey(key, snapshot);
  1049. if (mem->Get(lkey, value, &s)) {
  1050. // Done
  1051. } else if (imm != nullptr && imm->Get(lkey, value, &s)) {
  1052. // Done
  1053. } else {
  1054. s = current->Get(options, lkey, value, &stats);
  1055. have_stat_update = true;
  1056. }
  1057. mutex_.Lock();
  1058. }
  1059. // TTL ToDo : add check for TTL
  1060. // 如果从 memtable、imm 或 sstable 获取到了数据,则需要检查TTL
  1061. if (s.ok()) {
  1062. // 从 value 中解析出过期时间戳(假设值存储格式为:[过期时间戳][实际值])
  1063. uint64_t expiration_time = ParseExpirationTime(*value);
  1064. uint64_t current_time = GetCurrentTime();
  1065. // 如果当前时间已经超过过期时间,则认为数据过期,返回 NotFound
  1066. if (current_time > expiration_time) {
  1067. s = Status::NotFound("Key expired");
  1068. } else {
  1069. // 数据未过期,解析出实际的值
  1070. *value = ParseActualValue(*value);
  1071. }
  1072. }
  1073. //finish modify
  1074. if (have_stat_update && current->UpdateStats(stats)) {
  1075. MaybeScheduleCompaction();
  1076. }
  1077. mem->Unref();
  1078. if (imm != nullptr) imm->Unref();
  1079. current->Unref();
  1080. return s;
  1081. }
  1082. Iterator* DBImpl::NewIterator(const ReadOptions& options) {
  1083. SequenceNumber latest_snapshot;
  1084. uint32_t seed;
  1085. Iterator* iter = NewInternalIterator(options, &latest_snapshot, &seed);
  1086. return NewDBIterator(this, user_comparator(), iter,
  1087. (options.snapshot != nullptr
  1088. ? static_cast<const SnapshotImpl*>(options.snapshot)
  1089. ->sequence_number()
  1090. : latest_snapshot),
  1091. seed);
  1092. }
  1093. void DBImpl::RecordReadSample(Slice key) {
  1094. MutexLock l(&mutex_);
  1095. if (versions_->current()->RecordReadSample(key)) {
  1096. MaybeScheduleCompaction();
  1097. }
  1098. }
  1099. const Snapshot* DBImpl::GetSnapshot() {
  1100. MutexLock l(&mutex_);
  1101. return snapshots_.New(versions_->LastSequence());
  1102. }
  1103. void DBImpl::ReleaseSnapshot(const Snapshot* snapshot) {
  1104. MutexLock l(&mutex_);
  1105. snapshots_.Delete(static_cast<const SnapshotImpl*>(snapshot));
  1106. }
  1107. // Convenience methods
  1108. Status DBImpl::Put(const WriteOptions& o, const Slice& key, const Slice& val) {
  1109. return DB::Put(o, key, val);
  1110. }
  1111. // TTL ToDo: add DBImpl for Put
  1112. // 新增支持TTL的Put方法
  1113. Status DBImpl::Put(const WriteOptions& o, const Slice& key, const Slice& val, uint64_t ttl) {
  1114. return DB::Put(o, key, val, ttl);
  1115. }
  1116. //finish modify
  1117. Status DBImpl::Delete(const WriteOptions& options, const Slice& key) {
  1118. return DB::Delete(options, key);
  1119. }
  1120. Status DBImpl::Write(const WriteOptions& options, WriteBatch* updates) {
  1121. Writer w(&mutex_);
  1122. w.batch = updates;
  1123. w.sync = options.sync;
  1124. w.done = false;
  1125. MutexLock l(&mutex_);
  1126. writers_.push_back(&w);
  1127. while (!w.done && &w != writers_.front()) {
  1128. w.cv.Wait();
  1129. }
  1130. if (w.done) {
  1131. return w.status;
  1132. }
  1133. // May temporarily unlock and wait.
  1134. Status status = MakeRoomForWrite(updates == nullptr);
  1135. uint64_t last_sequence = versions_->LastSequence();
  1136. Writer* last_writer = &w;
  1137. if (status.ok() && updates != nullptr) { // nullptr batch is for compactions
  1138. WriteBatch* write_batch = BuildBatchGroup(&last_writer);
  1139. WriteBatchInternal::SetSequence(write_batch, last_sequence + 1);
  1140. last_sequence += WriteBatchInternal::Count(write_batch);
  1141. // Add to log and apply to memtable. We can release the lock
  1142. // during this phase since &w is currently responsible for logging
  1143. // and protects against concurrent loggers and concurrent writes
  1144. // into mem_.
  1145. {
  1146. mutex_.Unlock();
  1147. status = log_->AddRecord(WriteBatchInternal::Contents(write_batch));
  1148. bool sync_error = false;
  1149. if (status.ok() && options.sync) {
  1150. status = logfile_->Sync();
  1151. if (!status.ok()) {
  1152. sync_error = true;
  1153. }
  1154. }
  1155. if (status.ok()) {
  1156. status = WriteBatchInternal::InsertInto(write_batch, mem_);
  1157. }
  1158. mutex_.Lock();
  1159. if (sync_error) {
  1160. // The state of the log file is indeterminate: the log record we
  1161. // just added may or may not show up when the DB is re-opened.
  1162. // So we force the DB into a mode where all future writes fail.
  1163. RecordBackgroundError(status);
  1164. }
  1165. }
  1166. if (write_batch == tmp_batch_) tmp_batch_->Clear();
  1167. versions_->SetLastSequence(last_sequence);
  1168. }
  1169. while (true) {
  1170. Writer* ready = writers_.front();
  1171. writers_.pop_front();
  1172. if (ready != &w) {
  1173. ready->status = status;
  1174. ready->done = true;
  1175. ready->cv.Signal();
  1176. }
  1177. if (ready == last_writer) break;
  1178. }
  1179. // Notify new head of write queue
  1180. if (!writers_.empty()) {
  1181. writers_.front()->cv.Signal();
  1182. }
  1183. return status;
  1184. }
  1185. // REQUIRES: Writer list must be non-empty
  1186. // REQUIRES: First writer must have a non-null batch
  1187. WriteBatch* DBImpl::BuildBatchGroup(Writer** last_writer) {
  1188. mutex_.AssertHeld();
  1189. assert(!writers_.empty());
  1190. Writer* first = writers_.front();
  1191. WriteBatch* result = first->batch;
  1192. assert(result != nullptr);
  1193. size_t size = WriteBatchInternal::ByteSize(first->batch);
  1194. // Allow the group to grow up to a maximum size, but if the
  1195. // original write is small, limit the growth so we do not slow
  1196. // down the small write too much.
  1197. size_t max_size = 1 << 20;
  1198. if (size <= (128 << 10)) {
  1199. max_size = size + (128 << 10);
  1200. }
  1201. *last_writer = first;
  1202. std::deque<Writer*>::iterator iter = writers_.begin();
  1203. ++iter; // Advance past "first"
  1204. for (; iter != writers_.end(); ++iter) {
  1205. Writer* w = *iter;
  1206. if (w->sync && !first->sync) {
  1207. // Do not include a sync write into a batch handled by a non-sync write.
  1208. break;
  1209. }
  1210. if (w->batch != nullptr) {
  1211. size += WriteBatchInternal::ByteSize(w->batch);
  1212. if (size > max_size) {
  1213. // Do not make batch too big
  1214. break;
  1215. }
  1216. // Append to *result
  1217. if (result == first->batch) {
  1218. // Switch to temporary batch instead of disturbing caller's batch
  1219. result = tmp_batch_;
  1220. assert(WriteBatchInternal::Count(result) == 0);
  1221. WriteBatchInternal::Append(result, first->batch);
  1222. }
  1223. WriteBatchInternal::Append(result, w->batch);
  1224. }
  1225. *last_writer = w;
  1226. }
  1227. return result;
  1228. }
  1229. // REQUIRES: mutex_ is held
  1230. // REQUIRES: this thread is currently at the front of the writer queue
  1231. Status DBImpl::MakeRoomForWrite(bool force) {
  1232. mutex_.AssertHeld();
  1233. assert(!writers_.empty());
  1234. bool allow_delay = !force;
  1235. Status s;
  1236. while (true) {
  1237. if (!bg_error_.ok()) {
  1238. // Yield previous error
  1239. s = bg_error_;
  1240. break;
  1241. } else if (allow_delay && versions_->NumLevelFiles(0) >=
  1242. config::kL0_SlowdownWritesTrigger) {
  1243. // We are getting close to hitting a hard limit on the number of
  1244. // L0 files. Rather than delaying a single write by several
  1245. // seconds when we hit the hard limit, start delaying each
  1246. // individual write by 1ms to reduce latency variance. Also,
  1247. // this delay hands over some CPU to the compaction thread in
  1248. // case it is sharing the same core as the writer.
  1249. mutex_.Unlock();
  1250. env_->SleepForMicroseconds(1000);
  1251. allow_delay = false; // Do not delay a single write more than once
  1252. mutex_.Lock();
  1253. } else if (!force &&
  1254. (mem_->ApproximateMemoryUsage() <= options_.write_buffer_size)) {
  1255. // There is room in current memtable
  1256. break;
  1257. } else if (imm_ != nullptr) {
  1258. // We have filled up the current memtable, but the previous
  1259. // one is still being compacted, so we wait.
  1260. Log(options_.info_log, "Current memtable full; waiting...\n");
  1261. background_work_finished_signal_.Wait();
  1262. } else if (versions_->NumLevelFiles(0) >= config::kL0_StopWritesTrigger) {
  1263. // There are too many level-0 files.
  1264. Log(options_.info_log, "Too many L0 files; waiting...\n");
  1265. background_work_finished_signal_.Wait();
  1266. } else {
  1267. // Attempt to switch to a new memtable and trigger compaction of old
  1268. assert(versions_->PrevLogNumber() == 0);
  1269. uint64_t new_log_number = versions_->NewFileNumber();
  1270. WritableFile* lfile = nullptr;
  1271. s = env_->NewWritableFile(LogFileName(dbname_, new_log_number), &lfile);
  1272. if (!s.ok()) {
  1273. // Avoid chewing through file number space in a tight loop.
  1274. versions_->ReuseFileNumber(new_log_number);
  1275. break;
  1276. }
  1277. delete log_;
  1278. s = logfile_->Close();
  1279. if (!s.ok()) {
  1280. // We may have lost some data written to the previous log file.
  1281. // Switch to the new log file anyway, but record as a background
  1282. // error so we do not attempt any more writes.
  1283. //
  1284. // We could perhaps attempt to save the memtable corresponding
  1285. // to log file and suppress the error if that works, but that
  1286. // would add more complexity in a critical code path.
  1287. RecordBackgroundError(s);
  1288. }
  1289. delete logfile_;
  1290. logfile_ = lfile;
  1291. logfile_number_ = new_log_number;
  1292. log_ = new log::Writer(lfile);
  1293. imm_ = mem_;
  1294. has_imm_.store(true, std::memory_order_release);
  1295. mem_ = new MemTable(internal_comparator_);
  1296. mem_->Ref();
  1297. force = false; // Do not force another compaction if have room
  1298. MaybeScheduleCompaction();
  1299. }
  1300. }
  1301. return s;
  1302. }
  1303. bool DBImpl::GetProperty(const Slice& property, std::string* value) {
  1304. value->clear();
  1305. MutexLock l(&mutex_);
  1306. Slice in = property;
  1307. Slice prefix("leveldb.");
  1308. if (!in.starts_with(prefix)) return false;
  1309. in.remove_prefix(prefix.size());
  1310. if (in.starts_with("num-files-at-level")) {
  1311. in.remove_prefix(strlen("num-files-at-level"));
  1312. uint64_t level;
  1313. bool ok = ConsumeDecimalNumber(&in, &level) && in.empty();
  1314. if (!ok || level >= config::kNumLevels) {
  1315. return false;
  1316. } else {
  1317. char buf[100];
  1318. std::snprintf(buf, sizeof(buf), "%d",
  1319. versions_->NumLevelFiles(static_cast<int>(level)));
  1320. *value = buf;
  1321. return true;
  1322. }
  1323. } else if (in == "stats") {
  1324. char buf[200];
  1325. std::snprintf(buf, sizeof(buf),
  1326. " Compactions\n"
  1327. "Level Files Size(MB) Time(sec) Read(MB) Write(MB)\n"
  1328. "--------------------------------------------------\n");
  1329. value->append(buf);
  1330. for (int level = 0; level < config::kNumLevels; level++) {
  1331. int files = versions_->NumLevelFiles(level);
  1332. if (stats_[level].micros > 0 || files > 0) {
  1333. std::snprintf(buf, sizeof(buf), "%3d %8d %8.0f %9.0f %8.0f %9.0f\n",
  1334. level, files, versions_->NumLevelBytes(level) / 1048576.0,
  1335. stats_[level].micros / 1e6,
  1336. stats_[level].bytes_read / 1048576.0,
  1337. stats_[level].bytes_written / 1048576.0);
  1338. value->append(buf);
  1339. }
  1340. }
  1341. return true;
  1342. } else if (in == "sstables") {
  1343. *value = versions_->current()->DebugString();
  1344. return true;
  1345. } else if (in == "approximate-memory-usage") {
  1346. size_t total_usage = options_.block_cache->TotalCharge();
  1347. if (mem_) {
  1348. total_usage += mem_->ApproximateMemoryUsage();
  1349. }
  1350. if (imm_) {
  1351. total_usage += imm_->ApproximateMemoryUsage();
  1352. }
  1353. char buf[50];
  1354. std::snprintf(buf, sizeof(buf), "%llu",
  1355. static_cast<unsigned long long>(total_usage));
  1356. value->append(buf);
  1357. return true;
  1358. }
  1359. return false;
  1360. }
  1361. void DBImpl::GetApproximateSizes(const Range* range, int n, uint64_t* sizes) {
  1362. // TODO(opt): better implementation
  1363. MutexLock l(&mutex_);
  1364. Version* v = versions_->current();
  1365. v->Ref();
  1366. for (int i = 0; i < n; i++) {
  1367. // Convert user_key into a corresponding internal key.
  1368. InternalKey k1(range[i].start, kMaxSequenceNumber, kValueTypeForSeek);
  1369. InternalKey k2(range[i].limit, kMaxSequenceNumber, kValueTypeForSeek);
  1370. uint64_t start = versions_->ApproximateOffsetOf(v, k1);
  1371. uint64_t limit = versions_->ApproximateOffsetOf(v, k2);
  1372. sizes[i] = (limit >= start ? limit - start : 0);
  1373. }
  1374. v->Unref();
  1375. }
  1376. // Default implementations of convenience methods that subclasses of DB
  1377. // can call if they wish
  1378. Status DB::Put(const WriteOptions& opt, const Slice& key, const Slice& value) {
  1379. WriteBatch batch;
  1380. batch.Put(key, value);
  1381. return Write(opt, &batch);
  1382. }
  1383. //TTL ToDo: add a func for TTL Put
  1384. Status DB::Put(const WriteOptions& opt, const Slice& key, const Slice& value, uint64_t ttl) {
  1385. // 获取当前时间并计算过期时间戳
  1386. uint64_t expiration_time = GetCurrentTime() + ttl;
  1387. // 将过期时间戳和值一起存储(假设值前面附加过期时间戳)
  1388. std::string new_value;
  1389. AppendExpirationTime(&new_value, expiration_time);
  1390. new_value.append(value.data(), value.size());
  1391. // 构造 WriteBatch,并将键值对加入到批处理中
  1392. WriteBatch batch;
  1393. batch.Put(key, new_value);
  1394. // 执行写操作
  1395. return Write(opt, &batch);
  1396. }
  1397. //finish modify
  1398. Status DB::Delete(const WriteOptions& opt, const Slice& key) {
  1399. WriteBatch batch;
  1400. batch.Delete(key);
  1401. return Write(opt, &batch);
  1402. }
  1403. DB::~DB() = default;
  1404. Status DB::Open(const Options& options, const std::string& dbname, DB** dbptr) {
  1405. *dbptr = nullptr;
  1406. DBImpl* impl = new DBImpl(options, dbname);
  1407. impl->mutex_.Lock();
  1408. VersionEdit edit;
  1409. // Recover handles create_if_missing, error_if_exists
  1410. bool save_manifest = false;
  1411. Status s = impl->Recover(&edit, &save_manifest);
  1412. if (s.ok() && impl->mem_ == nullptr) {
  1413. // Create new log and a corresponding memtable.
  1414. uint64_t new_log_number = impl->versions_->NewFileNumber();
  1415. WritableFile* lfile;
  1416. s = options.env->NewWritableFile(LogFileName(dbname, new_log_number),
  1417. &lfile);
  1418. if (s.ok()) {
  1419. edit.SetLogNumber(new_log_number);
  1420. impl->logfile_ = lfile;
  1421. impl->logfile_number_ = new_log_number;
  1422. impl->log_ = new log::Writer(lfile);
  1423. impl->mem_ = new MemTable(impl->internal_comparator_);
  1424. impl->mem_->Ref();
  1425. }
  1426. }
  1427. if (s.ok() && save_manifest) {
  1428. edit.SetPrevLogNumber(0); // No older logs needed after recovery.
  1429. edit.SetLogNumber(impl->logfile_number_);
  1430. s = impl->versions_->LogAndApply(&edit, &impl->mutex_);
  1431. }
  1432. if (s.ok()) {
  1433. impl->RemoveObsoleteFiles();
  1434. impl->MaybeScheduleCompaction();
  1435. }
  1436. impl->mutex_.Unlock();
  1437. if (s.ok()) {
  1438. assert(impl->mem_ != nullptr);
  1439. *dbptr = impl;
  1440. } else {
  1441. delete impl;
  1442. }
  1443. return s;
  1444. }
  1445. Snapshot::~Snapshot() = default;
  1446. Status DestroyDB(const std::string& dbname, const Options& options) {
  1447. Env* env = options.env;
  1448. std::vector<std::string> filenames;
  1449. Status result = env->GetChildren(dbname, &filenames);
  1450. if (!result.ok()) {
  1451. // Ignore error in case directory does not exist
  1452. return Status::OK();
  1453. }
  1454. FileLock* lock;
  1455. const std::string lockname = LockFileName(dbname);
  1456. result = env->LockFile(lockname, &lock);
  1457. if (result.ok()) {
  1458. uint64_t number;
  1459. FileType type;
  1460. for (size_t i = 0; i < filenames.size(); i++) {
  1461. if (ParseFileName(filenames[i], &number, &type) &&
  1462. type != kDBLockFile) { // Lock file will be deleted at end
  1463. Status del = env->RemoveFile(dbname + "/" + filenames[i]);
  1464. if (result.ok() && !del.ok()) {
  1465. result = del;
  1466. }
  1467. }
  1468. }
  1469. env->UnlockFile(lock); // Ignore error since state is already gone
  1470. env->RemoveFile(lockname);
  1471. env->RemoveDir(dbname); // Ignore error in case dir contains other files
  1472. }
  1473. return result;
  1474. }
  1475. // TTL ToDo: add func for TTL get
  1476. uint64_t ParseExpirationTime(const std::string& value) {
  1477. // 假设时间戳存储在值的前8个字节(64位整数)
  1478. uint64_t expiration_time;
  1479. memcpy(&expiration_time, value.data(), sizeof(uint64_t));
  1480. return expiration_time;
  1481. }
  1482. std::string ParseActualValue(const std::string& value) {
  1483. // 假设实际值存储在过期时间戳之后
  1484. return value.substr(sizeof(uint64_t));
  1485. }
  1486. //finish modify
  1487. //TTL ToDo : add func for TTL Put
  1488. void AppendExpirationTime(std::string* value, uint64_t expiration_time) {
  1489. // 将过期时间戳(64位整数)附加到值的前面
  1490. value->append(reinterpret_cast<const char*>(&expiration_time), sizeof(expiration_time));
  1491. }
  1492. uint64_t GetCurrentTime() {
  1493. // 返回当前的Unix时间戳
  1494. return static_cast<uint64_t>(time(nullptr));
  1495. }
  1496. //finish modify
  1497. } // namespace leveldb