2015-01-21 11:39:48 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
#include <atomic>
|
|
|
|
#include <variant>
|
|
|
|
#include <vector>
|
2018-10-08 19:45:17 +00:00
|
|
|
#include <Columns/ColumnDecimal.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Columns/ColumnString.h>
|
|
|
|
#include <Common/Arena.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>
|
2018-12-10 15:25:45 +00:00
|
|
|
#include "DictionaryStructure.h"
|
|
|
|
#include "IDictionary.h"
|
|
|
|
#include "IDictionarySource.h"
|
2015-01-21 11:39:48 +00:00
|
|
|
|
2015-11-19 13:15:02 +00:00
|
|
|
|
2015-01-21 11:39:48 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2018-01-15 12:44:39 +00:00
|
|
|
using BlockPtr = std::shared_ptr<Block>;
|
|
|
|
|
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(
|
2019-12-25 23:12:12 +00:00
|
|
|
const std::string & database_,
|
2019-08-03 11:02:40 +00:00
|
|
|
const std::string & name_,
|
|
|
|
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
|
|
|
|
2019-12-25 23:12:12 +00:00
|
|
|
const std::string & getDatabase() const override { return database; }
|
|
|
|
const std::string & getName() const override { return name; }
|
|
|
|
const std::string & getFullName() const override { return full_name; }
|
2015-01-29 15:47:21 +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
|
|
|
{
|
2019-12-25 23:12:12 +00:00
|
|
|
return std::make_shared<FlatDictionary>(database, name, 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
|
|
|
|
2018-10-08 19:45:17 +00:00
|
|
|
template <typename T>
|
|
|
|
using ResultArrayType = std::conditional_t<IsDecimalNumber<T>, DecimalPaddedPODArray<T>, PaddedPODArray<T>>;
|
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
#define DECLARE(TYPE) \
|
2018-10-08 19:45:17 +00:00
|
|
|
void get##TYPE(const std::string & attribute_name, const PaddedPODArray<Key> & ids, ResultArrayType<TYPE> & out) const;
|
2017-04-01 07:20:54 +00:00
|
|
|
DECLARE(UInt8)
|
|
|
|
DECLARE(UInt16)
|
|
|
|
DECLARE(UInt32)
|
|
|
|
DECLARE(UInt64)
|
2017-11-14 00:08:54 +00:00
|
|
|
DECLARE(UInt128)
|
2017-04-01 07:20:54 +00:00
|
|
|
DECLARE(Int8)
|
|
|
|
DECLARE(Int16)
|
|
|
|
DECLARE(Int32)
|
|
|
|
DECLARE(Int64)
|
|
|
|
DECLARE(Float32)
|
|
|
|
DECLARE(Float64)
|
2018-10-08 19:45:17 +00:00
|
|
|
DECLARE(Decimal32)
|
|
|
|
DECLARE(Decimal64)
|
|
|
|
DECLARE(Decimal128)
|
2015-11-20 15:53:23 +00:00
|
|
|
#undef DECLARE
|
2015-01-28 13:20:20 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void getString(const std::string & attribute_name, const PaddedPODArray<Key> & ids, ColumnString * out) const;
|
2015-11-06 14:49:54 +00:00
|
|
|
|
2018-12-10 15:50:58 +00:00
|
|
|
#define DECLARE(TYPE) \
|
|
|
|
void get##TYPE( \
|
2018-12-10 15:25:45 +00:00
|
|
|
const std::string & attribute_name, \
|
2018-12-10 15:50:58 +00:00
|
|
|
const PaddedPODArray<Key> & ids, \
|
|
|
|
const PaddedPODArray<TYPE> & def, \
|
2018-10-08 19:45:17 +00:00
|
|
|
ResultArrayType<TYPE> & out) const;
|
2017-04-01 07:20:54 +00:00
|
|
|
DECLARE(UInt8)
|
|
|
|
DECLARE(UInt16)
|
|
|
|
DECLARE(UInt32)
|
|
|
|
DECLARE(UInt64)
|
2017-11-14 00:08:54 +00:00
|
|
|
DECLARE(UInt128)
|
2017-04-01 07:20:54 +00:00
|
|
|
DECLARE(Int8)
|
|
|
|
DECLARE(Int16)
|
|
|
|
DECLARE(Int32)
|
|
|
|
DECLARE(Int64)
|
|
|
|
DECLARE(Float32)
|
|
|
|
DECLARE(Float64)
|
2018-10-08 19:45:17 +00:00
|
|
|
DECLARE(Decimal32)
|
|
|
|
DECLARE(Decimal64)
|
|
|
|
DECLARE(Decimal128)
|
2015-11-20 15:53:23 +00:00
|
|
|
#undef DECLARE
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
void
|
|
|
|
getString(const std::string & attribute_name, const PaddedPODArray<Key> & ids, const ColumnString * const def, ColumnString * const out)
|
|
|
|
const;
|
2015-11-06 14:49:54 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
#define DECLARE(TYPE) \
|
|
|
|
void get##TYPE(const std::string & attribute_name, const PaddedPODArray<Key> & ids, const TYPE def, ResultArrayType<TYPE> & out) const;
|
2017-04-01 07:20:54 +00:00
|
|
|
DECLARE(UInt8)
|
|
|
|
DECLARE(UInt16)
|
|
|
|
DECLARE(UInt32)
|
|
|
|
DECLARE(UInt64)
|
2017-11-14 00:08:54 +00:00
|
|
|
DECLARE(UInt128)
|
2017-04-01 07:20:54 +00:00
|
|
|
DECLARE(Int8)
|
|
|
|
DECLARE(Int16)
|
|
|
|
DECLARE(Int32)
|
|
|
|
DECLARE(Int64)
|
|
|
|
DECLARE(Float32)
|
|
|
|
DECLARE(Float64)
|
2018-10-08 19:45:17 +00:00
|
|
|
DECLARE(Decimal32)
|
|
|
|
DECLARE(Decimal64)
|
|
|
|
DECLARE(Decimal128)
|
2015-11-20 15:53:23 +00:00
|
|
|
#undef DECLARE
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
void getString(const std::string & attribute_name, const PaddedPODArray<Key> & ids, const String & def, ColumnString * const out) const;
|
2015-11-20 15:53:23 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void has(const PaddedPODArray<Key> & ids, PaddedPODArray<UInt8> & out) 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
|
|
|
|
|
|
|
struct Attribute final
|
|
|
|
{
|
|
|
|
AttributeUnderlyingType type;
|
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;
|
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>
|
|
|
|
void createAttributeImpl(Attribute & attribute, const Field & null_value);
|
|
|
|
|
|
|
|
Attribute createAttributeWithType(const AttributeUnderlyingType type, const Field & null_value);
|
|
|
|
|
|
|
|
template <typename AttributeType, typename OutputType, typename ValueSetter, typename DefaultGetter>
|
|
|
|
void getItemsImpl(
|
2018-12-10 15:25:45 +00:00
|
|
|
const Attribute & attribute, const PaddedPODArray<Key> & ids, ValueSetter && set_value, DefaultGetter && get_default) 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 T>
|
|
|
|
void has(const Attribute & attribute, const PaddedPODArray<Key> & ids, PaddedPODArray<UInt8> & out) 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
|
|
|
|
2019-12-25 23:12:12 +00:00
|
|
|
const std::string database;
|
2017-04-01 07:20:54 +00:00
|
|
|
const std::string name;
|
2019-12-25 23:12:12 +00:00
|
|
|
const std::string full_name;
|
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
|
|
|
};
|
|
|
|
|
|
|
|
}
|