mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 20:12:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
210 lines
6.8 KiB
C++
210 lines
6.8 KiB
C++
#pragma once
|
|
|
|
#include <Interpreters/BloomFilter.h>
|
|
#include <Storages/MergeTree/MergeTreeIndices.h>
|
|
#include <Storages/MergeTree/KeyCondition.h>
|
|
|
|
#include <memory>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class MergeTreeIndexFullText;
|
|
|
|
|
|
struct MergeTreeIndexGranuleFullText : public IMergeTreeIndexGranule
|
|
{
|
|
explicit MergeTreeIndexGranuleFullText(
|
|
const MergeTreeIndexFullText & index_);
|
|
|
|
~MergeTreeIndexGranuleFullText() override = default;
|
|
|
|
void serializeBinary(WriteBuffer & ostr) const override;
|
|
void deserializeBinary(ReadBuffer & istr) override;
|
|
|
|
bool empty() const override { return !has_elems; }
|
|
|
|
const MergeTreeIndexFullText & index;
|
|
std::vector<BloomFilter> bloom_filters;
|
|
bool has_elems;
|
|
};
|
|
|
|
using MergeTreeIndexGranuleFullTextPtr = std::shared_ptr<MergeTreeIndexGranuleFullText>;
|
|
|
|
|
|
struct MergeTreeIndexAggregatorFullText : IMergeTreeIndexAggregator
|
|
{
|
|
explicit MergeTreeIndexAggregatorFullText(const MergeTreeIndexFullText & index);
|
|
|
|
~MergeTreeIndexAggregatorFullText() override = default;
|
|
|
|
bool empty() const override { return !granule || granule->empty(); }
|
|
MergeTreeIndexGranulePtr getGranuleAndReset() override;
|
|
|
|
void update(const Block & block, size_t * pos, size_t limit) override;
|
|
|
|
const MergeTreeIndexFullText & index;
|
|
MergeTreeIndexGranuleFullTextPtr granule;
|
|
};
|
|
|
|
|
|
class MergeTreeConditionFullText : public IMergeTreeIndexCondition
|
|
{
|
|
public:
|
|
MergeTreeConditionFullText(
|
|
const SelectQueryInfo & query_info,
|
|
const Context & context,
|
|
const MergeTreeIndexFullText & index_);
|
|
|
|
~MergeTreeConditionFullText() override = default;
|
|
|
|
bool alwaysUnknownOrTrue() const override;
|
|
bool mayBeTrueOnGranule(MergeTreeIndexGranulePtr idx_granule) const override;
|
|
private:
|
|
struct KeyTuplePositionMapping
|
|
{
|
|
KeyTuplePositionMapping(size_t tuple_index_, size_t key_index_) : tuple_index(tuple_index_), key_index(key_index_) {}
|
|
|
|
size_t tuple_index;
|
|
size_t key_index;
|
|
};
|
|
/// Uses RPN like KeyCondition
|
|
struct RPNElement
|
|
{
|
|
enum Function
|
|
{
|
|
/// Atoms of a Boolean expression.
|
|
FUNCTION_EQUALS,
|
|
FUNCTION_NOT_EQUALS,
|
|
FUNCTION_IN,
|
|
FUNCTION_NOT_IN,
|
|
FUNCTION_MULTI_SEARCH,
|
|
FUNCTION_UNKNOWN, /// Can take any value.
|
|
/// Operators of the logical expression.
|
|
FUNCTION_NOT,
|
|
FUNCTION_AND,
|
|
FUNCTION_OR,
|
|
/// Constants
|
|
ALWAYS_FALSE,
|
|
ALWAYS_TRUE,
|
|
};
|
|
|
|
RPNElement(
|
|
Function function_ = FUNCTION_UNKNOWN, size_t key_column_ = 0, std::unique_ptr<BloomFilter> && const_bloom_filter_ = nullptr)
|
|
: function(function_), key_column(key_column_), bloom_filter(std::move(const_bloom_filter_)) {}
|
|
|
|
Function function = FUNCTION_UNKNOWN;
|
|
/// For FUNCTION_EQUALS, FUNCTION_NOT_EQUALS and FUNCTION_MULTI_SEARCH
|
|
size_t key_column;
|
|
|
|
/// For FUNCTION_EQUALS, FUNCTION_NOT_EQUALS
|
|
std::unique_ptr<BloomFilter> bloom_filter;
|
|
|
|
/// For FUNCTION_IN, FUNCTION_NOT_IN and FUNCTION_MULTI_SEARCH
|
|
std::vector<std::vector<BloomFilter>> set_bloom_filters;
|
|
|
|
/// For FUNCTION_IN and FUNCTION_NOT_IN
|
|
std::vector<size_t> set_key_position;
|
|
};
|
|
|
|
using RPN = std::vector<RPNElement>;
|
|
|
|
bool atomFromAST(const ASTPtr & node, Block & block_with_constants, RPNElement & out);
|
|
|
|
bool getKey(const ASTPtr & node, size_t & key_column_num);
|
|
bool tryPrepareSetBloomFilter(const ASTs & args, RPNElement & out);
|
|
|
|
static bool createFunctionEqualsCondition(RPNElement & out, const Field & value, const MergeTreeIndexFullText & idx);
|
|
|
|
const MergeTreeIndexFullText & index;
|
|
RPN rpn;
|
|
/// Sets from syntax analyzer.
|
|
PreparedSets prepared_sets;
|
|
};
|
|
|
|
|
|
/// Interface for string parsers.
|
|
struct ITokenExtractor
|
|
{
|
|
virtual ~ITokenExtractor() = default;
|
|
/// Fast inplace implementation for regular use.
|
|
/// Gets string (data ptr and len) and start position for extracting next token (state of extractor).
|
|
/// Returns false if parsing is finished, otherwise returns true.
|
|
virtual bool next(const char * data, size_t len, size_t * pos, size_t * token_start, size_t * token_len) const = 0;
|
|
/// Special implementation for creating bloom filter for LIKE function.
|
|
/// It skips unescaped `%` and `_` and supports escaping symbols, but it is less lightweight.
|
|
virtual bool nextLike(const String & str, size_t * pos, String & out) const = 0;
|
|
|
|
virtual bool supportLike() const = 0;
|
|
};
|
|
|
|
/// Parser extracting all ngrams from string.
|
|
struct NgramTokenExtractor : public ITokenExtractor
|
|
{
|
|
NgramTokenExtractor(size_t n_) : n(n_) {}
|
|
|
|
static String getName() { return "ngrambf_v1"; }
|
|
|
|
bool next(const char * data, size_t len, size_t * pos, size_t * token_start, size_t * token_len) const override;
|
|
bool nextLike(const String & str, size_t * pos, String & token) const override;
|
|
|
|
bool supportLike() const override { return true; }
|
|
|
|
size_t n;
|
|
};
|
|
|
|
/// Parser extracting tokens (sequences of numbers and ascii letters).
|
|
struct SplitTokenExtractor : public ITokenExtractor
|
|
{
|
|
static String getName() { return "tokenbf_v1"; }
|
|
|
|
bool next(const char * data, size_t len, size_t * pos, size_t * token_start, size_t * token_len) const override;
|
|
bool nextLike(const String & str, size_t * pos, String & token) const override;
|
|
|
|
bool supportLike() const override { return true; }
|
|
};
|
|
|
|
|
|
class MergeTreeIndexFullText : public IMergeTreeIndex
|
|
{
|
|
public:
|
|
MergeTreeIndexFullText(
|
|
String name_,
|
|
ExpressionActionsPtr expr_,
|
|
const Names & columns_,
|
|
const DataTypes & data_types_,
|
|
const Block & header_,
|
|
size_t granularity_,
|
|
size_t bloom_filter_size_,
|
|
size_t bloom_filter_hashes_,
|
|
size_t seed_,
|
|
std::unique_ptr<ITokenExtractor> && token_extractor_func_)
|
|
: IMergeTreeIndex(name_, expr_, columns_, data_types_, header_, granularity_)
|
|
, bloom_filter_size(bloom_filter_size_)
|
|
, bloom_filter_hashes(bloom_filter_hashes_)
|
|
, seed(seed_)
|
|
, token_extractor_func(std::move(token_extractor_func_)) {}
|
|
|
|
~MergeTreeIndexFullText() override = default;
|
|
|
|
MergeTreeIndexGranulePtr createIndexGranule() const override;
|
|
MergeTreeIndexAggregatorPtr createIndexAggregator() const override;
|
|
|
|
MergeTreeIndexConditionPtr createIndexCondition(
|
|
const SelectQueryInfo & query, const Context & context) const override;
|
|
|
|
bool mayBenefitFromIndexForIn(const ASTPtr & node) const override;
|
|
|
|
/// Bloom filter size in bytes.
|
|
size_t bloom_filter_size;
|
|
/// Number of bloom filter hash functions.
|
|
size_t bloom_filter_hashes;
|
|
/// Bloom filter seed.
|
|
size_t seed;
|
|
/// Function for selecting next token.
|
|
std::unique_ptr<ITokenExtractor> token_extractor_func;
|
|
};
|
|
|
|
}
|