作者: 韩晨旭 10225101440 李畅 10225102463
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

184 linhas
5.9 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. #ifndef STORAGE_LEVELDB_DB_DB_IMPL_H_
  5. #define STORAGE_LEVELDB_DB_DB_IMPL_H_
  6. #include <set>
  7. #include "db/dbformat.h"
  8. #include "db/log_writer.h"
  9. #include "db/snapshot.h"
  10. #include "leveldb/db.h"
  11. #include "leveldb/env.h"
  12. #include "port/port.h"
  13. namespace leveldb {
  14. class MemTable;
  15. class TableCache;
  16. class Version;
  17. class VersionEdit;
  18. class VersionSet;
  19. class DBImpl : public DB {
  20. public:
  21. DBImpl(const Options& options, const std::string& dbname);
  22. virtual ~DBImpl();
  23. // Implementations of the DB interface
  24. virtual Status Put(const WriteOptions&, const Slice& key, const Slice& value);
  25. virtual Status Delete(const WriteOptions&, const Slice& key);
  26. virtual Status Write(const WriteOptions& options, WriteBatch* updates);
  27. virtual Status Get(const ReadOptions& options,
  28. const Slice& key,
  29. std::string* value);
  30. virtual Iterator* NewIterator(const ReadOptions&);
  31. virtual const Snapshot* GetSnapshot();
  32. virtual void ReleaseSnapshot(const Snapshot* snapshot);
  33. virtual bool GetProperty(const Slice& property, std::string* value);
  34. virtual void GetApproximateSizes(const Range* range, int n, uint64_t* sizes);
  35. // Extra methods (for testing) that are not in the public DB interface
  36. // Compact any files in the named level that overlap [begin,end]
  37. void TEST_CompactRange(
  38. int level,
  39. const std::string& begin,
  40. const std::string& end);
  41. // Force current memtable contents to be compacted.
  42. Status TEST_CompactMemTable();
  43. // Return an internal iterator over the current state of the database.
  44. // The keys of this iterator are internal keys (see format.h).
  45. // The returned iterator should be deleted when no longer needed.
  46. Iterator* TEST_NewInternalIterator();
  47. // Return the maximum overlapping data (in bytes) at next level for any
  48. // file at a level >= 1.
  49. int64_t TEST_MaxNextLevelOverlappingBytes();
  50. private:
  51. friend class DB;
  52. Iterator* NewInternalIterator(const ReadOptions&,
  53. SequenceNumber* latest_snapshot);
  54. Status NewDB();
  55. // Recover the descriptor from persistent storage. May do a significant
  56. // amount of work to recover recently logged updates. Any changes to
  57. // be made to the descriptor are added to *edit.
  58. Status Recover(VersionEdit* edit);
  59. void MaybeIgnoreError(Status* s) const;
  60. // Delete any unneeded files and stale in-memory entries.
  61. void DeleteObsoleteFiles();
  62. // Called when an iterator over a particular version of the
  63. // descriptor goes away.
  64. static void Unref(void* arg1, void* arg2);
  65. // Compact the in-memory write buffer to disk. Switches to a new
  66. // log-file/memtable and writes a new descriptor iff successful.
  67. Status CompactMemTable();
  68. Status RecoverLogFile(uint64_t log_number,
  69. VersionEdit* edit,
  70. SequenceNumber* max_sequence);
  71. Status WriteLevel0Table(MemTable* mem, VersionEdit* edit);
  72. Status MakeRoomForWrite(bool force /* compact even if there is room? */);
  73. struct CompactionState;
  74. void MaybeScheduleCompaction();
  75. static void BGWork(void* db);
  76. void BackgroundCall();
  77. void BackgroundCompaction();
  78. void CleanupCompaction(CompactionState* compact);
  79. Status DoCompactionWork(CompactionState* compact);
  80. Status OpenCompactionOutputFile(CompactionState* compact);
  81. Status FinishCompactionOutputFile(CompactionState* compact, Iterator* input);
  82. Status InstallCompactionResults(CompactionState* compact);
  83. // Constant after construction
  84. Env* const env_;
  85. const InternalKeyComparator internal_comparator_;
  86. const Options options_; // options_.comparator == &internal_comparator_
  87. bool owns_info_log_;
  88. bool owns_cache_;
  89. const std::string dbname_;
  90. // table_cache_ provides its own synchronization
  91. TableCache* table_cache_;
  92. // Lock over the persistent DB state. Non-NULL iff successfully acquired.
  93. FileLock* db_lock_;
  94. // State below is protected by mutex_
  95. port::Mutex mutex_;
  96. port::AtomicPointer shutting_down_;
  97. port::CondVar bg_cv_; // Signalled when !bg_compaction_scheduled_
  98. port::CondVar compacting_cv_; // Signalled when !compacting_
  99. MemTable* mem_;
  100. MemTable* imm_; // Memtable being compacted
  101. port::AtomicPointer has_imm_; // So bg thread can detect non-NULL imm_
  102. WritableFile* logfile_;
  103. log::Writer* log_;
  104. SnapshotList snapshots_;
  105. // Set of table files to protect from deletion because they are
  106. // part of ongoing compactions.
  107. std::set<uint64_t> pending_outputs_;
  108. // Has a background compaction been scheduled or is running?
  109. bool bg_compaction_scheduled_;
  110. // Is there a compaction running?
  111. bool compacting_;
  112. VersionSet* versions_;
  113. // Have we encountered a background error in paranoid mode?
  114. Status bg_error_;
  115. // Per level compaction stats. stats_[level] stores the stats for
  116. // compactions that produced data for the specified "level".
  117. struct CompactionStats {
  118. int64_t micros;
  119. int64_t bytes_read;
  120. int64_t bytes_written;
  121. CompactionStats() : micros(0), bytes_read(0), bytes_written(0) { }
  122. void Add(const CompactionStats& c) {
  123. this->micros += c.micros;
  124. this->bytes_read += c.bytes_read;
  125. this->bytes_written += c.bytes_written;
  126. }
  127. };
  128. CompactionStats stats_[config::kNumLevels];
  129. // No copying allowed
  130. DBImpl(const DBImpl&);
  131. void operator=(const DBImpl&);
  132. const Comparator* user_comparator() const {
  133. return internal_comparator_.user_comparator();
  134. }
  135. };
  136. // Sanitize db options. The caller should delete result.info_log if
  137. // it is not equal to src.info_log.
  138. extern Options SanitizeOptions(const std::string& db,
  139. const InternalKeyComparator* icmp,
  140. const Options& src);
  141. }
  142. #endif // STORAGE_LEVELDB_DB_DB_IMPL_H_