作者: 谢瑞阳 10225101483 徐翔宇 10225101535
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

290 行
9.6 KiB

  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. //
  5. // The representation of a DBImpl consists of a set of Versions. The
  6. // newest version is called "current". Older versions may be kept
  7. // around to provide a consistent view to live iterators.
  8. //
  9. // Each Version keeps track of a set of Table files per level. The
  10. // entire set of versions is maintained in a VersionSet.
  11. //
  12. // Version,VersionSet are thread-compatible, but require external
  13. // synchronization on all accesses.
  14. #ifndef STORAGE_LEVELDB_DB_VERSION_SET_H_
  15. #define STORAGE_LEVELDB_DB_VERSION_SET_H_
  16. #include <map>
  17. #include <set>
  18. #include <vector>
  19. #include "db/dbformat.h"
  20. #include "db/version_edit.h"
  21. #include "port/port.h"
  22. namespace leveldb {
  23. // Grouping of constants. We may want to make some of these
  24. // parameters set via options.
  25. namespace config {
  26. static const int kNumLevels = 7;
  27. }
  28. namespace log { class Writer; }
  29. class Compaction;
  30. class Iterator;
  31. class MemTable;
  32. class TableBuilder;
  33. class TableCache;
  34. class Version;
  35. class VersionSet;
  36. class WritableFile;
  37. class Version {
  38. public:
  39. // Append to *iters a sequence of iterators that will
  40. // yield the contents of this Version when merged together.
  41. // REQUIRES: This version has been saved (see VersionSet::SaveTo)
  42. void AddIterators(const ReadOptions&, std::vector<Iterator*>* iters);
  43. // Reference count management (so Versions do not disappear out from
  44. // under live iterators)
  45. void Ref();
  46. void Unref();
  47. // Return a human readable string that describes this version's contents.
  48. std::string DebugString() const;
  49. private:
  50. friend class Compaction;
  51. friend class VersionSet;
  52. class LevelFileNumIterator;
  53. Iterator* NewConcatenatingIterator(const ReadOptions&, int level) const;
  54. VersionSet* vset_; // VersionSet to which this Version belongs
  55. Version* next_; // Next version in linked list
  56. int refs_; // Number of live refs to this version
  57. MemTable* cleanup_mem_; // NULL, or table to delete when version dropped
  58. // List of files per level
  59. std::vector<FileMetaData*> files_[config::kNumLevels];
  60. // Level that should be compacted next and its compaction score.
  61. // Score < 1 means compaction is not strictly needed. These fields
  62. // are initialized by Finalize().
  63. double compaction_score_;
  64. int compaction_level_;
  65. explicit Version(VersionSet* vset)
  66. : vset_(vset), next_(NULL), refs_(0),
  67. cleanup_mem_(NULL),
  68. compaction_score_(-1),
  69. compaction_level_(-1) {
  70. }
  71. ~Version();
  72. // No copying allowed
  73. Version(const Version&);
  74. void operator=(const Version&);
  75. };
  76. class VersionSet {
  77. public:
  78. VersionSet(const std::string& dbname,
  79. const Options* options,
  80. TableCache* table_cache,
  81. const InternalKeyComparator*);
  82. ~VersionSet();
  83. // Apply *edit to the current version to form a new descriptor that
  84. // is both saved to persistent state and installed as the new
  85. // current version. Iff Apply() returns OK, arrange to delete
  86. // cleanup_mem (if cleanup_mem != NULL) when it is no longer needed
  87. // by older versions.
  88. Status LogAndApply(VersionEdit* edit, MemTable* cleanup_mem);
  89. // Recover the last saved descriptor from persistent storage.
  90. Status Recover(uint64_t* log_number, SequenceNumber* last_sequence);
  91. // Save current contents to *log
  92. Status WriteSnapshot(log::Writer* log);
  93. // Return the current version.
  94. Version* current() const { return current_; }
  95. // Return the current manifest file number
  96. uint64_t ManifestFileNumber() const { return manifest_file_number_; }
  97. // Allocate and return a new file number
  98. uint64_t NewFileNumber() { return next_file_number_++; }
  99. // Return the number of Table files at the specified level.
  100. int NumLevelFiles(int level) const;
  101. // Pick level and inputs for a new compaction.
  102. // Returns NULL if there is no compaction to be done.
  103. // Otherwise returns a pointer to a heap-allocated object that
  104. // describes the compaction. Caller should delete the result.
  105. Compaction* PickCompaction();
  106. // Return a compaction object for compacting the range [begin,end] in
  107. // the specified level. Returns NULL if there is nothing in that
  108. // level that overlaps the specified range. Caller should delete
  109. // the result.
  110. Compaction* CompactRange(
  111. int level,
  112. const InternalKey& begin,
  113. const InternalKey& end);
  114. // Create an iterator that reads over the compaction inputs for "*c".
  115. // The caller should delete the iterator when no longer needed.
  116. Iterator* MakeInputIterator(Compaction* c);
  117. // Returns true iff some level needs a compaction.
  118. bool NeedsCompaction() const { return current_->compaction_score_ >= 1; }
  119. // Add all files listed in any live version to *live.
  120. // May also mutate some internal state.
  121. void AddLiveFiles(std::set<uint64_t>* live);
  122. // Return the approximate offset in the database of the data for
  123. // "key" as of version "v".
  124. uint64_t ApproximateOffsetOf(Version* v, const InternalKey& key);
  125. // Register a reference to a large value with the specified
  126. // large_ref from the specified file number. Returns "true" if this
  127. // is the first recorded reference to the "large_ref" value in the
  128. // database, and false otherwise.
  129. bool RegisterLargeValueRef(const LargeValueRef& large_ref,
  130. uint64_t filenum,
  131. const InternalKey& internal_key);
  132. // Cleanup the large value reference state by eliminating any
  133. // references from files that are not includes in either "live_tables"
  134. // or "log_file".
  135. void CleanupLargeValueRefs(const std::set<uint64_t>& live_tables,
  136. uint64_t log_file_num);
  137. // Returns true if a large value with the given reference is live.
  138. bool LargeValueIsLive(const LargeValueRef& large_ref);
  139. private:
  140. class Builder;
  141. friend class Compaction;
  142. friend class Version;
  143. Status Finalize(Version* v);
  144. // Delete any old versions that are no longer needed.
  145. void MaybeDeleteOldVersions();
  146. struct BySmallestKey;
  147. Status SortLevel(Version* v, uint64_t level);
  148. void GetOverlappingInputs(
  149. int level,
  150. const InternalKey& begin,
  151. const InternalKey& end,
  152. std::vector<FileMetaData*>* inputs);
  153. void GetRange(const std::vector<FileMetaData*>& inputs,
  154. InternalKey* smallest,
  155. InternalKey* largest);
  156. Env* const env_;
  157. const std::string dbname_;
  158. const Options* const options_;
  159. TableCache* const table_cache_;
  160. const InternalKeyComparator icmp_;
  161. uint64_t next_file_number_;
  162. uint64_t manifest_file_number_;
  163. // Opened lazily
  164. WritableFile* descriptor_file_;
  165. log::Writer* descriptor_log_;
  166. // Versions are kept in a singly linked list that is never empty
  167. Version* current_; // Pointer to the last (newest) list entry
  168. Version* oldest_; // Pointer to the first (oldest) list entry
  169. // Map from large value reference to the set of <file numbers,internal_key>
  170. // values containing references to the value. We keep the
  171. // internal key as a std::string rather than as an InternalKey because
  172. // we want to be able to easily use a set.
  173. typedef std::set<std::pair<uint64_t, std::string> > LargeReferencesSet;
  174. typedef std::map<LargeValueRef, LargeReferencesSet> LargeValueMap;
  175. LargeValueMap large_value_refs_;
  176. // Per-level key at which the next compaction at that level should start.
  177. // Either an empty string, or a valid InternalKey.
  178. std::string compact_pointer_[config::kNumLevels];
  179. // No copying allowed
  180. VersionSet(const VersionSet&);
  181. void operator=(const VersionSet&);
  182. };
  183. // A Compaction encapsulates information about a compaction.
  184. class Compaction {
  185. public:
  186. ~Compaction();
  187. // Return the level that is being compacted. Inputs from "level"
  188. // and "level+1" will be merged to produce a set of "level+1" files.
  189. int level() const { return level_; }
  190. // Return the object that holds the edits to the descriptor done
  191. // by this compaction.
  192. VersionEdit* edit() { return &edit_; }
  193. // "which" must be either 0 or 1
  194. int num_input_files(int which) const { return inputs_[which].size(); }
  195. // Return the ith input file at "level()+which" ("which" must be 0 or 1).
  196. FileMetaData* input(int which, int i) const { return inputs_[which][i]; }
  197. // Maximum size of files to build during this compaction.
  198. uint64_t MaxOutputFileSize() const { return max_output_file_size_; }
  199. // Add all inputs to this compaction as delete operations to *edit.
  200. void AddInputDeletions(VersionEdit* edit);
  201. // Returns true if the information we have available guarantees that
  202. // the compaction is producing data in "level+1" for which no data exists
  203. // in levels greater than "level+1".
  204. bool IsBaseLevelForKey(const Slice& user_key);
  205. // Release the input version for the compaction, once the compaction
  206. // is successful.
  207. void ReleaseInputs();
  208. private:
  209. friend class Version;
  210. friend class VersionSet;
  211. explicit Compaction(int level);
  212. int level_;
  213. uint64_t max_output_file_size_;
  214. Version* input_version_;
  215. VersionEdit edit_;
  216. // Each compaction reads inputs from "level_" and "level_+1"
  217. std::vector<FileMetaData*> inputs_[2]; // The two sets of inputs
  218. // State for implementing IsBaseLevelForKey
  219. // level_ptrs_ holds indices into input_version_->levels_: our state
  220. // is that we are positioned at one of the file ranges for each
  221. // higher level than the ones involved in this compaction (i.e. for
  222. // all L >= level_ + 2).
  223. int level_ptrs_[config::kNumLevels];
  224. };
  225. }
  226. #endif // STORAGE_LEVELDB_DB_VERSION_SET_H_