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).
|
2013-10-16 23:59:46 +02:00
|
|
|
//
|
2011-03-18 23:37:00 +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.
|
|
|
|
|
2013-10-05 07:32:05 +02:00
|
|
|
#pragma once
|
2011-03-18 23:37:00 +01:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/slice.h"
|
2018-08-15 23:27:47 +02:00
|
|
|
#include "rocksdb/table.h"
|
2019-05-30 23:47:29 +02:00
|
|
|
#include "table/block_based/data_block_hash_index.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
class BlockBuilder {
|
|
|
|
public:
|
2014-08-28 07:37:10 +02:00
|
|
|
BlockBuilder(const BlockBuilder&) = delete;
|
|
|
|
void operator=(const BlockBuilder&) = delete;
|
2014-09-04 03:10:13 +02:00
|
|
|
|
2015-12-16 21:08:30 +01:00
|
|
|
explicit BlockBuilder(int block_restart_interval,
|
2018-08-10 01:49:45 +02:00
|
|
|
bool use_delta_encoding = true,
|
2018-08-15 23:27:47 +02:00
|
|
|
bool use_value_delta_encoding = false,
|
|
|
|
BlockBasedTableOptions::DataBlockIndexType index_type =
|
|
|
|
BlockBasedTableOptions::kDataBlockBinarySearch,
|
|
|
|
double data_block_hash_table_util_ratio = 0.75);
|
2014-09-04 03:10:13 +02:00
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
// Reset the contents as if the BlockBuilder was just constructed.
|
|
|
|
void Reset();
|
|
|
|
|
2020-04-02 01:37:54 +02:00
|
|
|
// Swap the contents in BlockBuilder with buffer, then reset the BlockBuilder.
|
|
|
|
void SwapAndReset(std::string& buffer);
|
|
|
|
|
2016-08-20 00:10:31 +02:00
|
|
|
// REQUIRES: Finish() has not been called since the last call to Reset().
|
2011-03-18 23:37:00 +01:00
|
|
|
// REQUIRES: key is larger than any previously added key
|
2018-08-10 01:49:45 +02:00
|
|
|
void Add(const Slice& key, const Slice& value,
|
|
|
|
const Slice* const delta_value = nullptr);
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
// Finish building the block and return a slice that refers to the
|
|
|
|
// block contents. The returned slice will remain valid for the
|
|
|
|
// lifetime of this builder or until Reset() is called.
|
|
|
|
Slice Finish();
|
|
|
|
|
|
|
|
// Returns an estimate of the current (uncompressed) size of the block
|
|
|
|
// we are building.
|
2018-08-15 23:27:47 +02:00
|
|
|
inline size_t CurrentSizeEstimate() const {
|
|
|
|
return estimate_ + (data_block_hash_index_builder_.Valid()
|
|
|
|
? data_block_hash_index_builder_.EstimateSize()
|
|
|
|
: 0);
|
|
|
|
}
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2013-05-15 19:34:02 +02:00
|
|
|
// Returns an estimated block size after appending key and value.
|
|
|
|
size_t EstimateSizeAfterKV(const Slice& key, const Slice& value) const;
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
// Return true iff no entries have been added since the last Reset()
|
2019-03-28 00:13:08 +01:00
|
|
|
bool empty() const { return buffer_.empty(); }
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
private:
|
2019-03-28 00:13:08 +01:00
|
|
|
const int block_restart_interval_;
|
2018-08-23 19:04:10 +02:00
|
|
|
// TODO(myabandeh): put it into a separate IndexBlockBuilder
|
2019-03-28 00:13:08 +01:00
|
|
|
const bool use_delta_encoding_;
|
2018-08-10 01:49:45 +02:00
|
|
|
// Refer to BlockIter::DecodeCurrentValue for format of delta encoded values
|
|
|
|
const bool use_value_delta_encoding_;
|
2013-10-08 03:33:49 +02:00
|
|
|
|
2019-03-28 00:13:08 +01:00
|
|
|
std::string buffer_; // Destination buffer
|
2013-10-08 03:33:49 +02:00
|
|
|
std::vector<uint32_t> restarts_; // Restart points
|
2019-03-28 00:13:08 +01:00
|
|
|
size_t estimate_;
|
|
|
|
int counter_; // Number of entries emitted since restart
|
|
|
|
bool finished_; // Has Finish() been called?
|
|
|
|
std::string last_key_;
|
2018-08-15 23:27:47 +02:00
|
|
|
DataBlockHashIndexBuilder data_block_hash_index_builder_;
|
2011-03-18 23:37:00 +01:00
|
|
|
};
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|