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-07-19 01:58:13 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include "util/dynamic_bloom.h"
|
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
class Logger;
|
|
|
|
|
|
|
|
class BloomBlockBuilder {
|
|
|
|
public:
|
|
|
|
static const std::string kBloomBlock;
|
|
|
|
|
2019-01-24 19:11:19 +01:00
|
|
|
explicit BloomBlockBuilder(uint32_t num_probes = 6) : bloom_(num_probes) {}
|
2014-07-19 01:58:13 +02:00
|
|
|
|
2014-12-02 21:09:20 +01:00
|
|
|
void SetTotalBits(Allocator* allocator, uint32_t total_bits,
|
|
|
|
uint32_t locality, size_t huge_page_tlb_size,
|
|
|
|
Logger* logger) {
|
|
|
|
bloom_.SetTotalBits(allocator, total_bits, locality, huge_page_tlb_size,
|
2014-07-19 01:58:13 +02:00
|
|
|
logger);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t GetNumBlocks() const { return bloom_.GetNumBlocks(); }
|
|
|
|
|
2014-09-26 18:03:12 +02:00
|
|
|
void AddKeysHashes(const std::vector<uint32_t>& keys_hashes);
|
2014-07-19 01:58:13 +02:00
|
|
|
|
|
|
|
Slice Finish();
|
|
|
|
|
|
|
|
private:
|
|
|
|
DynamicBloom bloom_;
|
|
|
|
};
|
|
|
|
|
|
|
|
}; // namespace rocksdb
|