2015-01-21 11:39:48 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
#include <atomic>
|
|
|
|
#include <variant>
|
|
|
|
#include <vector>
|
2020-12-18 21:43:08 +00:00
|
|
|
#include <optional>
|
2021-01-10 21:15:55 +00:00
|
|
|
|
2021-01-03 10:07:21 +00:00
|
|
|
#include <Common/HashTable/HashSet.h>
|
2021-01-10 21:15:55 +00:00
|
|
|
#include <Common/Arena.h>
|
2018-10-08 19:45:17 +00:00
|
|
|
#include <Columns/ColumnDecimal.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Columns/ColumnString.h>
|
2020-12-18 21:43:08 +00:00
|
|
|
#include <Columns/ColumnArray.h>
|
|
|
|
#include <DataTypes/IDataType.h>
|
2019-05-17 14:34:25 +00:00
|
|
|
#include <Core/Block.h>
|
2017-06-06 17:18:32 +00:00
|
|
|
#include <ext/range.h>
|
|
|
|
#include <ext/size.h>
|
2021-01-10 21:15:55 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
#include "DictionaryStructure.h"
|
|
|
|
#include "IDictionary.h"
|
|
|
|
#include "IDictionarySource.h"
|
2021-01-23 13:18:24 +00:00
|
|
|
#include "DictionaryHelpers.h"
|
2015-11-19 13:15:02 +00:00
|
|
|
|
2015-01-21 11:39:48 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2021-01-22 14:54:51 +00:00
|
|
|
|
2015-01-26 15:27:51 +00:00
|
|
|
class FlatDictionary final : public IDictionary
|
2015-01-21 11:39:48 +00:00
|
|
|
{
|
|
|
|
public:
|
2018-12-10 15:25:45 +00:00
|
|
|
FlatDictionary(
|
2020-07-14 18:46:29 +00:00
|
|
|
const StorageID & dict_id_,
|
2019-08-03 11:02:40 +00:00
|
|
|
const DictionaryStructure & dict_struct_,
|
|
|
|
DictionarySourcePtr source_ptr_,
|
|
|
|
const DictionaryLifetime dict_lifetime_,
|
|
|
|
bool require_nonempty_,
|
|
|
|
BlockPtr saved_block_ = nullptr);
|
2015-01-22 14:32:38 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
std::string getTypeName() const override { return "Flat"; }
|
2015-01-29 14:46:15 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
size_t getBytesAllocated() const override { return bytes_allocated; }
|
2015-03-24 11:30:16 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
size_t getQueryCount() const override { return query_count.load(std::memory_order_relaxed); }
|
2015-05-08 12:31:00 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
double getHitRate() const override { return 1.0; }
|
2015-03-24 17:02:56 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
size_t getElementCount() const override { return element_count; }
|
2015-03-24 17:02:56 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
double getLoadFactor() const override { return static_cast<double>(element_count) / bucket_count; }
|
2015-03-24 17:02:56 +00:00
|
|
|
|
2019-06-02 12:11:01 +00:00
|
|
|
std::shared_ptr<const IExternalLoadable> clone() const override
|
2019-01-19 23:27:52 +00:00
|
|
|
{
|
2020-07-16 14:25:39 +00:00
|
|
|
return std::make_shared<FlatDictionary>(getDictionaryID(), dict_struct, source_ptr->clone(), dict_lifetime, require_nonempty, saved_block);
|
2019-01-19 23:27:52 +00:00
|
|
|
}
|
2015-01-30 13:43:16 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const IDictionarySource * getSource() const override { return source_ptr.get(); }
|
2015-01-29 15:47:21 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const DictionaryLifetime & getLifetime() const override { return dict_lifetime; }
|
2015-01-30 15:18:13 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const DictionaryStructure & getStructure() const override { return dict_struct; }
|
2015-03-24 13:59:19 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
bool isInjective(const std::string & attribute_name) const override
|
|
|
|
{
|
|
|
|
return dict_struct.attributes[&getAttribute(attribute_name) - attributes.data()].injective;
|
|
|
|
}
|
2015-05-13 16:11:07 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
bool hasHierarchy() const override { return hierarchical_attribute; }
|
2015-01-29 13:53:48 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void toParent(const PaddedPODArray<Key> & ids, PaddedPODArray<Key> & out) const override;
|
2015-01-28 13:20:20 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
void isInVectorVector(
|
|
|
|
const PaddedPODArray<Key> & child_ids, const PaddedPODArray<Key> & ancestor_ids, PaddedPODArray<UInt8> & out) const override;
|
2017-04-01 07:20:54 +00:00
|
|
|
void isInVectorConstant(const PaddedPODArray<Key> & child_ids, const Key ancestor_id, PaddedPODArray<UInt8> & out) const override;
|
|
|
|
void isInConstantVector(const Key child_id, const PaddedPODArray<Key> & ancestor_ids, PaddedPODArray<UInt8> & out) const override;
|
2016-12-12 21:37:57 +00:00
|
|
|
|
2021-01-23 13:18:24 +00:00
|
|
|
DictionaryKeyType getKeyType() const override { return DictionaryKeyType::simple; }
|
2018-10-08 19:45:17 +00:00
|
|
|
|
2020-12-19 13:24:51 +00:00
|
|
|
ColumnPtr getColumn(
|
|
|
|
const std::string& attribute_name,
|
|
|
|
const DataTypePtr & result_type,
|
|
|
|
const Columns & key_columns,
|
|
|
|
const DataTypes & key_types,
|
2021-01-22 14:54:51 +00:00
|
|
|
const ColumnPtr default_values_column) const override;
|
2020-12-18 21:43:08 +00:00
|
|
|
|
2021-01-23 13:18:24 +00:00
|
|
|
ColumnUInt8::Ptr hasKeys(const Columns & key_columns, const DataTypes & key_types) const override;
|
2015-01-28 13:20:20 +00:00
|
|
|
|
2019-02-18 18:51:46 +00:00
|
|
|
BlockInputStreamPtr getBlockInputStream(const Names & column_names, size_t max_block_size) const override;
|
2017-04-28 18:33:31 +00:00
|
|
|
|
2015-01-30 13:43:16 +00:00
|
|
|
private:
|
2018-12-10 15:25:45 +00:00
|
|
|
template <typename Value>
|
|
|
|
using ContainerType = PaddedPODArray<Value>;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2021-01-03 10:07:21 +00:00
|
|
|
using NullableSet = HashSet<Key, DefaultHash<Key>>;
|
2021-01-02 22:08:54 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
struct Attribute final
|
|
|
|
{
|
|
|
|
AttributeUnderlyingType type;
|
2021-01-10 21:15:55 +00:00
|
|
|
std::optional<NullableSet> nullable_set;
|
2020-12-18 21:43:08 +00:00
|
|
|
|
2018-11-11 19:29:52 +00:00
|
|
|
std::variant<
|
2018-12-10 15:25:45 +00:00
|
|
|
UInt8,
|
|
|
|
UInt16,
|
|
|
|
UInt32,
|
|
|
|
UInt64,
|
2017-11-14 00:08:54 +00:00
|
|
|
UInt128,
|
2018-12-10 15:25:45 +00:00
|
|
|
Int8,
|
|
|
|
Int16,
|
|
|
|
Int32,
|
|
|
|
Int64,
|
|
|
|
Decimal32,
|
|
|
|
Decimal64,
|
|
|
|
Decimal128,
|
|
|
|
Float32,
|
|
|
|
Float64,
|
|
|
|
StringRef>
|
|
|
|
null_values;
|
2018-11-11 19:29:52 +00:00
|
|
|
std::variant<
|
2018-12-10 15:25:45 +00:00
|
|
|
ContainerType<UInt8>,
|
|
|
|
ContainerType<UInt16>,
|
|
|
|
ContainerType<UInt32>,
|
|
|
|
ContainerType<UInt64>,
|
2018-11-13 19:43:17 +00:00
|
|
|
ContainerType<UInt128>,
|
2018-12-10 15:25:45 +00:00
|
|
|
ContainerType<Int8>,
|
|
|
|
ContainerType<Int16>,
|
|
|
|
ContainerType<Int32>,
|
|
|
|
ContainerType<Int64>,
|
|
|
|
ContainerType<Decimal32>,
|
|
|
|
ContainerType<Decimal64>,
|
|
|
|
ContainerType<Decimal128>,
|
|
|
|
ContainerType<Float32>,
|
|
|
|
ContainerType<Float64>,
|
|
|
|
ContainerType<StringRef>>
|
|
|
|
arrays;
|
2020-12-18 21:43:08 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
std::unique_ptr<Arena> string_arena;
|
|
|
|
};
|
|
|
|
|
|
|
|
void createAttributes();
|
2018-02-15 13:08:23 +00:00
|
|
|
void blockToAttributes(const Block & block);
|
2018-01-15 12:44:39 +00:00
|
|
|
void updateData();
|
2017-04-01 07:20:54 +00:00
|
|
|
void loadData();
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void addAttributeSize(const Attribute & attribute);
|
|
|
|
|
|
|
|
void calculateBytesAllocated();
|
|
|
|
|
|
|
|
template <typename T>
|
2021-01-26 10:47:12 +00:00
|
|
|
static void createAttributeImpl(Attribute & attribute, const Field & null_value);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2021-01-26 10:47:12 +00:00
|
|
|
static Attribute createAttribute(const DictionaryAttribute& attribute, const Field & null_value);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2021-01-23 16:47:33 +00:00
|
|
|
template <typename AttributeType, typename OutputType, typename ValueSetter, typename DefaultValueExtractor>
|
2017-04-01 07:20:54 +00:00
|
|
|
void getItemsImpl(
|
2021-01-23 13:18:24 +00:00
|
|
|
const Attribute & attribute,
|
|
|
|
const PaddedPODArray<Key> & ids,
|
|
|
|
ValueSetter && set_value,
|
2021-01-23 16:47:33 +00:00
|
|
|
DefaultValueExtractor & default_value_extractor) const;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void resize(Attribute & attribute, const Key id);
|
|
|
|
|
|
|
|
template <typename T>
|
2018-08-24 05:25:00 +00:00
|
|
|
void setAttributeValueImpl(Attribute & attribute, const Key id, const T & value);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
void setAttributeValue(Attribute & attribute, const Key id, const Field & value);
|
|
|
|
|
|
|
|
const Attribute & getAttribute(const std::string & attribute_name) const;
|
|
|
|
|
|
|
|
template <typename ChildType, typename AncestorType>
|
2018-12-10 15:25:45 +00:00
|
|
|
void isInImpl(const ChildType & child_ids, const AncestorType & ancestor_ids, PaddedPODArray<UInt8> & out) const;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-04-28 18:33:31 +00:00
|
|
|
PaddedPODArray<Key> getIds() const;
|
2017-04-27 17:16:24 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const DictionaryStructure dict_struct;
|
|
|
|
const DictionarySourcePtr source_ptr;
|
|
|
|
const DictionaryLifetime dict_lifetime;
|
|
|
|
const bool require_nonempty;
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
std::map<std::string, size_t> attribute_index_by_name;
|
2017-04-01 07:20:54 +00:00
|
|
|
std::vector<Attribute> attributes;
|
|
|
|
const Attribute * hierarchical_attribute = nullptr;
|
|
|
|
std::vector<bool> loaded_ids;
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
size_t bytes_allocated = 0;
|
|
|
|
size_t element_count = 0;
|
|
|
|
size_t bucket_count = 0;
|
|
|
|
mutable std::atomic<size_t> query_count{0};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-01-15 12:44:39 +00:00
|
|
|
BlockPtr saved_block;
|
2015-01-21 11:39:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|