2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2014-10-31 16:48:19 +01:00
|
|
|
//
|
|
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "rocksdb/env.h"
|
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
|
|
|
|
class TableCache;
|
|
|
|
class VersionStorageInfo;
|
|
|
|
class VersionEdit;
|
2014-10-31 19:59:54 +01:00
|
|
|
struct FileMetaData;
|
2015-09-02 19:25:20 +02:00
|
|
|
class InternalStats;
|
2014-10-31 16:48:19 +01:00
|
|
|
|
|
|
|
// A helper class so we can efficiently apply a whole sequence
|
|
|
|
// of edits to a particular state without creating intermediate
|
|
|
|
// Versions that contain full copies of the intermediate state.
|
|
|
|
class VersionBuilder {
|
|
|
|
public:
|
|
|
|
VersionBuilder(const EnvOptions& env_options, TableCache* table_cache,
|
2015-10-19 22:07:05 +02:00
|
|
|
VersionStorageInfo* base_vstorage, Logger* info_log = nullptr);
|
2014-10-31 16:48:19 +01:00
|
|
|
~VersionBuilder();
|
|
|
|
void CheckConsistency(VersionStorageInfo* vstorage);
|
|
|
|
void CheckConsistencyForDeletes(VersionEdit* edit, uint64_t number,
|
|
|
|
int level);
|
2017-08-25 01:05:16 +02:00
|
|
|
bool CheckConsistencyForNumLevels();
|
2014-10-31 16:48:19 +01:00
|
|
|
void Apply(VersionEdit* edit);
|
|
|
|
void SaveTo(VersionStorageInfo* vstorage);
|
2016-07-20 20:23:31 +02:00
|
|
|
void LoadTableHandlers(InternalStats* internal_stats, int max_threads,
|
|
|
|
bool prefetch_index_and_filter_in_cache);
|
2014-10-31 16:48:19 +01:00
|
|
|
void MaybeAddFile(VersionStorageInfo* vstorage, int level, FileMetaData* f);
|
|
|
|
|
|
|
|
private:
|
|
|
|
class Rep;
|
|
|
|
Rep* rep_;
|
|
|
|
};
|
2014-10-31 19:54:05 +01:00
|
|
|
|
|
|
|
extern bool NewestFirstBySeqNo(FileMetaData* a, FileMetaData* b);
|
2014-10-31 16:48:19 +01:00
|
|
|
} // namespace rocksdb
|