10225501448 李度 10225101546 陈胤遒 10215501422 高宇菲
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.

370 lines
13 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. namespace log { class Writer; }
  24. class Compaction;
  25. class Iterator;
  26. class MemTable;
  27. class TableBuilder;
  28. class TableCache;
  29. class Version;
  30. class VersionSet;
  31. class WritableFile;
  32. // Return the smallest index i such that files[i]->largest >= key.
  33. // Return files.size() if there is no such file.
  34. // REQUIRES: "files" contains a sorted list of non-overlapping files.
  35. extern int FindFile(const InternalKeyComparator& icmp,
  36. const std::vector<FileMetaData*>& files,
  37. const Slice& key);
  38. // Returns true iff some file in "files" overlaps the user key range
  39. // [*smallest,*largest].
  40. // smallest==NULL represents a key smaller than all keys in the DB.
  41. // largest==NULL represents a key largest than all keys in the DB.
  42. // REQUIRES: If disjoint_sorted_files, files[] contains disjoint ranges
  43. // in sorted order.
  44. extern bool SomeFileOverlapsRange(
  45. const InternalKeyComparator& icmp,
  46. bool disjoint_sorted_files,
  47. const std::vector<FileMetaData*>& files,
  48. const Slice* smallest_user_key,
  49. const Slice* largest_user_key);
  50. class Version {
  51. public:
  52. // Append to *iters a sequence of iterators that will
  53. // yield the contents of this Version when merged together.
  54. // REQUIRES: This version has been saved (see VersionSet::SaveTo)
  55. void AddIterators(const ReadOptions&, std::vector<Iterator*>* iters);
  56. // Lookup the value for key. If found, store it in *val and
  57. // return OK. Else return a non-OK status. Fills *stats.
  58. // REQUIRES: lock is not held
  59. struct GetStats {
  60. FileMetaData* seek_file;
  61. int seek_file_level;
  62. };
  63. Status Get(const ReadOptions&, const LookupKey& key, std::string* val,
  64. GetStats* stats);
  65. // Adds "stats" into the current state. Returns true if a new
  66. // compaction may need to be triggered, false otherwise.
  67. // REQUIRES: lock is held
  68. bool UpdateStats(const GetStats& stats);
  69. // Reference count management (so Versions do not disappear out from
  70. // under live iterators)
  71. void Ref();
  72. void Unref();
  73. void GetOverlappingInputs(
  74. int level,
  75. const InternalKey* begin, // NULL means before all keys
  76. const InternalKey* end, // NULL means after all keys
  77. std::vector<FileMetaData*>* inputs);
  78. // Returns true iff some file in the specified level overlaps
  79. // some part of [*smallest_user_key,*largest_user_key].
  80. // smallest_user_key==NULL represents a key smaller than all keys in the DB.
  81. // largest_user_key==NULL represents a key largest than all keys in the DB.
  82. bool OverlapInLevel(int level,
  83. const Slice* smallest_user_key,
  84. const Slice* largest_user_key);
  85. // Return the level at which we should place a new memtable compaction
  86. // result that covers the range [smallest_user_key,largest_user_key].
  87. int PickLevelForMemTableOutput(const Slice& smallest_user_key,
  88. const Slice& largest_user_key);
  89. int NumFiles(int level) const { return files_[level].size(); }
  90. // Return a human readable string that describes this version's contents.
  91. std::string DebugString() const;
  92. private:
  93. friend class Compaction;
  94. friend class VersionSet;
  95. class LevelFileNumIterator;
  96. Iterator* NewConcatenatingIterator(const ReadOptions&, int level) const;
  97. VersionSet* vset_; // VersionSet to which this Version belongs
  98. Version* next_; // Next version in linked list
  99. Version* prev_; // Previous version in linked list
  100. int refs_; // Number of live refs to this version
  101. // List of files per level
  102. std::vector<FileMetaData*> files_[config::kNumLevels];
  103. // Next file to compact based on seek stats.
  104. FileMetaData* file_to_compact_;
  105. int file_to_compact_level_;
  106. // Level that should be compacted next and its compaction score.
  107. // Score < 1 means compaction is not strictly needed. These fields
  108. // are initialized by Finalize().
  109. double compaction_score_;
  110. int compaction_level_;
  111. explicit Version(VersionSet* vset)
  112. : vset_(vset), next_(this), prev_(this), refs_(0),
  113. file_to_compact_(NULL),
  114. file_to_compact_level_(-1),
  115. compaction_score_(-1),
  116. compaction_level_(-1) {
  117. }
  118. ~Version();
  119. // No copying allowed
  120. Version(const Version&);
  121. void operator=(const Version&);
  122. };
  123. class VersionSet {
  124. public:
  125. VersionSet(const std::string& dbname,
  126. const Options* options,
  127. TableCache* table_cache,
  128. const InternalKeyComparator*);
  129. ~VersionSet();
  130. // Apply *edit to the current version to form a new descriptor that
  131. // is both saved to persistent state and installed as the new
  132. // current version. Will release *mu while actually writing to the file.
  133. // REQUIRES: *mu is held on entry.
  134. // REQUIRES: no other thread concurrently calls LogAndApply()
  135. Status LogAndApply(VersionEdit* edit, port::Mutex* mu);
  136. // Recover the last saved descriptor from persistent storage.
  137. Status Recover();
  138. // Return the current version.
  139. Version* current() const { return current_; }
  140. // Return the current manifest file number
  141. uint64_t ManifestFileNumber() const { return manifest_file_number_; }
  142. // Allocate and return a new file number
  143. uint64_t NewFileNumber() { return next_file_number_++; }
  144. // Return the number of Table files at the specified level.
  145. int NumLevelFiles(int level) const;
  146. // Return the combined file size of all files at the specified level.
  147. int64_t NumLevelBytes(int level) const;
  148. // Return the last sequence number.
  149. uint64_t LastSequence() const { return last_sequence_; }
  150. // Set the last sequence number to s.
  151. void SetLastSequence(uint64_t s) {
  152. assert(s >= last_sequence_);
  153. last_sequence_ = s;
  154. }
  155. // Mark the specified file number as used.
  156. void MarkFileNumberUsed(uint64_t number);
  157. // Return the current log file number.
  158. uint64_t LogNumber() const { return log_number_; }
  159. // Return the log file number for the log file that is currently
  160. // being compacted, or zero if there is no such log file.
  161. uint64_t PrevLogNumber() const { return prev_log_number_; }
  162. // Pick level and inputs for a new compaction.
  163. // Returns NULL if there is no compaction to be done.
  164. // Otherwise returns a pointer to a heap-allocated object that
  165. // describes the compaction. Caller should delete the result.
  166. Compaction* PickCompaction();
  167. // Return a compaction object for compacting the range [begin,end] in
  168. // the specified level. Returns NULL if there is nothing in that
  169. // level that overlaps the specified range. Caller should delete
  170. // the result.
  171. Compaction* CompactRange(
  172. int level,
  173. const InternalKey* begin,
  174. const InternalKey* end);
  175. // Return the maximum overlapping data (in bytes) at next level for any
  176. // file at a level >= 1.
  177. int64_t MaxNextLevelOverlappingBytes();
  178. // Create an iterator that reads over the compaction inputs for "*c".
  179. // The caller should delete the iterator when no longer needed.
  180. Iterator* MakeInputIterator(Compaction* c);
  181. // Returns true iff some level needs a compaction.
  182. bool NeedsCompaction() const {
  183. Version* v = current_;
  184. return (v->compaction_score_ >= 1) || (v->file_to_compact_ != NULL);
  185. }
  186. // Add all files listed in any live version to *live.
  187. // May also mutate some internal state.
  188. void AddLiveFiles(std::set<uint64_t>* live);
  189. // Return the approximate offset in the database of the data for
  190. // "key" as of version "v".
  191. uint64_t ApproximateOffsetOf(Version* v, const InternalKey& key);
  192. // Return a human-readable short (single-line) summary of the number
  193. // of files per level. Uses *scratch as backing store.
  194. struct LevelSummaryStorage {
  195. char buffer[100];
  196. };
  197. const char* LevelSummary(LevelSummaryStorage* scratch) const;
  198. private:
  199. class Builder;
  200. friend class Compaction;
  201. friend class Version;
  202. void Finalize(Version* v);
  203. void GetRange(const std::vector<FileMetaData*>& inputs,
  204. InternalKey* smallest,
  205. InternalKey* largest);
  206. void GetRange2(const std::vector<FileMetaData*>& inputs1,
  207. const std::vector<FileMetaData*>& inputs2,
  208. InternalKey* smallest,
  209. InternalKey* largest);
  210. void SetupOtherInputs(Compaction* c);
  211. // Save current contents to *log
  212. Status WriteSnapshot(log::Writer* log);
  213. void AppendVersion(Version* v);
  214. Env* const env_;
  215. const std::string dbname_;
  216. const Options* const options_;
  217. TableCache* const table_cache_;
  218. const InternalKeyComparator icmp_;
  219. uint64_t next_file_number_;
  220. uint64_t manifest_file_number_;
  221. uint64_t last_sequence_;
  222. uint64_t log_number_;
  223. uint64_t prev_log_number_; // 0 or backing store for memtable being compacted
  224. // Opened lazily
  225. WritableFile* descriptor_file_;
  226. log::Writer* descriptor_log_;
  227. Version dummy_versions_; // Head of circular doubly-linked list of versions.
  228. Version* current_; // == dummy_versions_.prev_
  229. // Per-level key at which the next compaction at that level should start.
  230. // Either an empty string, or a valid InternalKey.
  231. std::string compact_pointer_[config::kNumLevels];
  232. // No copying allowed
  233. VersionSet(const VersionSet&);
  234. void operator=(const VersionSet&);
  235. };
  236. // A Compaction encapsulates information about a compaction.
  237. class Compaction {
  238. public:
  239. ~Compaction();
  240. // Return the level that is being compacted. Inputs from "level"
  241. // and "level+1" will be merged to produce a set of "level+1" files.
  242. int level() const { return level_; }
  243. // Return the object that holds the edits to the descriptor done
  244. // by this compaction.
  245. VersionEdit* edit() { return &edit_; }
  246. // "which" must be either 0 or 1
  247. int num_input_files(int which) const { return inputs_[which].size(); }
  248. // Return the ith input file at "level()+which" ("which" must be 0 or 1).
  249. FileMetaData* input(int which, int i) const { return inputs_[which][i]; }
  250. // Maximum size of files to build during this compaction.
  251. uint64_t MaxOutputFileSize() const { return max_output_file_size_; }
  252. // Is this a trivial compaction that can be implemented by just
  253. // moving a single input file to the next level (no merging or splitting)
  254. bool IsTrivialMove() const;
  255. // Add all inputs to this compaction as delete operations to *edit.
  256. void AddInputDeletions(VersionEdit* edit);
  257. // Returns true if the information we have available guarantees that
  258. // the compaction is producing data in "level+1" for which no data exists
  259. // in levels greater than "level+1".
  260. bool IsBaseLevelForKey(const Slice& user_key);
  261. // Returns true iff we should stop building the current output
  262. // before processing "internal_key".
  263. bool ShouldStopBefore(const Slice& internal_key);
  264. // Release the input version for the compaction, once the compaction
  265. // is successful.
  266. void ReleaseInputs();
  267. private:
  268. friend class Version;
  269. friend class VersionSet;
  270. explicit Compaction(int level);
  271. int level_;
  272. uint64_t max_output_file_size_;
  273. Version* input_version_;
  274. VersionEdit edit_;
  275. // Each compaction reads inputs from "level_" and "level_+1"
  276. std::vector<FileMetaData*> inputs_[2]; // The two sets of inputs
  277. // State used to check for number of of overlapping grandparent files
  278. // (parent == level_ + 1, grandparent == level_ + 2)
  279. std::vector<FileMetaData*> grandparents_;
  280. size_t grandparent_index_; // Index in grandparent_starts_
  281. bool seen_key_; // Some output key has been seen
  282. int64_t overlapped_bytes_; // Bytes of overlap between current output
  283. // and grandparent files
  284. // State for implementing IsBaseLevelForKey
  285. // level_ptrs_ holds indices into input_version_->levels_: our state
  286. // is that we are positioned at one of the file ranges for each
  287. // higher level than the ones involved in this compaction (i.e. for
  288. // all L >= level_ + 2).
  289. size_t level_ptrs_[config::kNumLevels];
  290. };
  291. } // namespace leveldb
  292. #endif // STORAGE_LEVELDB_DB_VERSION_SET_H_