2018-11-28 11:37:12 +00:00
|
|
|
#include "TrieDictionary.h"
|
2018-12-10 15:25:45 +00:00
|
|
|
#include <stack>
|
2017-06-05 09:02:05 +00:00
|
|
|
#include <Columns/ColumnFixedString.h>
|
2018-12-10 15:25:45 +00:00
|
|
|
#include <Columns/ColumnVector.h>
|
2019-08-21 02:28:04 +00:00
|
|
|
#include <Common/assert_cast.h>
|
2020-11-08 16:01:12 +00:00
|
|
|
#include <Common/IPv6ToBinary.h>
|
2017-06-05 09:02:05 +00:00
|
|
|
#include <DataTypes/DataTypeFixedString.h>
|
2017-06-13 05:14:24 +00:00
|
|
|
#include <DataTypes/DataTypeString.h>
|
2017-06-05 09:02:05 +00:00
|
|
|
#include <IO/WriteIntText.h>
|
2018-12-10 15:25:45 +00:00
|
|
|
#include <Poco/ByteOrder.h>
|
2017-06-13 05:14:24 +00:00
|
|
|
#include <Common/formatIPv6.h>
|
2018-12-29 18:39:55 +00:00
|
|
|
#include <common/itoa.h>
|
2018-12-10 15:25:45 +00:00
|
|
|
#include <ext/map.h>
|
|
|
|
#include <ext/range.h>
|
|
|
|
#include "DictionaryBlockInputStream.h"
|
2018-11-28 11:37:12 +00:00
|
|
|
#include "DictionaryFactory.h"
|
2017-05-12 21:23:12 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2020-02-25 18:02:41 +00:00
|
|
|
extern const int LOGICAL_ERROR;
|
2017-05-12 21:23:12 +00:00
|
|
|
extern const int TYPE_MISMATCH;
|
|
|
|
extern const int BAD_ARGUMENTS;
|
|
|
|
extern const int DICTIONARY_IS_EMPTY;
|
|
|
|
}
|
|
|
|
|
2020-03-18 00:57:00 +00:00
|
|
|
static void validateKeyTypes(const DataTypes & key_types)
|
|
|
|
{
|
|
|
|
if (key_types.size() != 1)
|
|
|
|
throw Exception{"Expected a single IP address", ErrorCodes::TYPE_MISMATCH};
|
|
|
|
|
|
|
|
const auto & actual_type = key_types[0]->getName();
|
|
|
|
|
|
|
|
if (actual_type != "UInt32" && actual_type != "FixedString(16)")
|
|
|
|
throw Exception{"Key does not match, expected either UInt32 or FixedString(16)", ErrorCodes::TYPE_MISMATCH};
|
|
|
|
}
|
|
|
|
|
2020-11-08 16:01:12 +00:00
|
|
|
/// Create IPAddress from 16 byte array converting to ipv4 if possible
|
|
|
|
static Poco::Net::IPAddress ip4or6fromBytes(const uint8_t * data)
|
|
|
|
{
|
|
|
|
Poco::Net::IPAddress ipaddr(reinterpret_cast<const uint8_t *>(data), IPV6_BINARY_LENGTH);
|
|
|
|
|
|
|
|
// try to consider as ipv4
|
|
|
|
bool is_v4 = false;
|
|
|
|
if (auto addr_v4 = IPv4ToBinary(ipaddr, is_v4); is_v4)
|
|
|
|
return Poco::Net::IPAddress(reinterpret_cast<const uint8_t *>(&addr_v4), IPV4_BINARY_LENGTH);
|
|
|
|
|
|
|
|
return ipaddr;
|
|
|
|
}
|
2020-03-18 00:57:00 +00:00
|
|
|
|
2017-05-12 21:23:12 +00:00
|
|
|
TrieDictionary::TrieDictionary(
|
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_)
|
2020-07-14 18:46:29 +00:00
|
|
|
: IDictionaryBase(dict_id_)
|
2019-08-03 11:02:40 +00:00
|
|
|
, dict_struct(dict_struct_)
|
|
|
|
, source_ptr{std::move(source_ptr_)}
|
|
|
|
, dict_lifetime(dict_lifetime_)
|
|
|
|
, require_nonempty(require_nonempty_)
|
2020-11-08 16:01:12 +00:00
|
|
|
, total_ip_length(0)
|
2018-12-10 15:25:45 +00:00
|
|
|
, logger(&Poco::Logger::get("TrieDictionary"))
|
2017-05-12 21:23:12 +00:00
|
|
|
{
|
|
|
|
createAttributes();
|
2020-07-08 10:55:39 +00:00
|
|
|
loadData();
|
|
|
|
calculateBytesAllocated();
|
2017-05-12 21:23:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TrieDictionary::~TrieDictionary()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-12-10 15:50:58 +00:00
|
|
|
#define DECLARE(TYPE) \
|
|
|
|
void TrieDictionary::get##TYPE( \
|
2018-12-10 15:25:45 +00:00
|
|
|
const std::string & attribute_name, const Columns & key_columns, const DataTypes & key_types, ResultArrayType<TYPE> & out) const \
|
2018-12-10 15:50:58 +00:00
|
|
|
{ \
|
|
|
|
validateKeyTypes(key_types); \
|
|
|
|
\
|
|
|
|
const auto & attribute = getAttribute(attribute_name); \
|
2020-07-14 18:46:54 +00:00
|
|
|
checkAttributeType(this, attribute_name, attribute.type, AttributeUnderlyingType::ut##TYPE); \
|
2018-12-10 15:50:58 +00:00
|
|
|
\
|
|
|
|
const auto null_value = std::get<TYPE>(attribute.null_values); \
|
|
|
|
\
|
2019-05-28 19:30:01 +00:00
|
|
|
getItemsImpl<TYPE, TYPE>( \
|
2018-12-10 15:50:58 +00:00
|
|
|
attribute, \
|
|
|
|
key_columns, \
|
|
|
|
[&](const size_t row, const auto value) { out[row] = value; }, \
|
|
|
|
[&](const size_t) { return null_value; }); \
|
2018-12-10 15:25:45 +00:00
|
|
|
}
|
2017-05-12 21:23:12 +00:00
|
|
|
DECLARE(UInt8)
|
|
|
|
DECLARE(UInt16)
|
|
|
|
DECLARE(UInt32)
|
|
|
|
DECLARE(UInt64)
|
2017-11-14 00:08:54 +00:00
|
|
|
DECLARE(UInt128)
|
2017-05-12 21:23:12 +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)
|
2017-05-12 21:23:12 +00:00
|
|
|
#undef DECLARE
|
|
|
|
|
|
|
|
void TrieDictionary::getString(
|
2018-12-10 15:25:45 +00:00
|
|
|
const std::string & attribute_name, const Columns & key_columns, const DataTypes & key_types, ColumnString * out) const
|
2017-05-12 21:23:12 +00:00
|
|
|
{
|
|
|
|
validateKeyTypes(key_types);
|
|
|
|
|
|
|
|
const auto & attribute = getAttribute(attribute_name);
|
2020-07-14 18:46:54 +00:00
|
|
|
checkAttributeType(this, attribute_name, attribute.type, AttributeUnderlyingType::utString);
|
2017-05-12 21:23:12 +00:00
|
|
|
|
|
|
|
const auto & null_value = StringRef{std::get<String>(attribute.null_values)};
|
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
getItemsImpl<StringRef, StringRef>(
|
|
|
|
attribute,
|
|
|
|
key_columns,
|
|
|
|
[&](const size_t, const StringRef value) { out->insertData(value.data, value.size); },
|
|
|
|
[&](const size_t) { return null_value; });
|
2017-05-12 21:23:12 +00:00
|
|
|
}
|
|
|
|
|
2018-12-10 15:50:58 +00:00
|
|
|
#define DECLARE(TYPE) \
|
|
|
|
void TrieDictionary::get##TYPE( \
|
|
|
|
const std::string & attribute_name, \
|
|
|
|
const Columns & key_columns, \
|
|
|
|
const DataTypes & key_types, \
|
|
|
|
const PaddedPODArray<TYPE> & def, \
|
|
|
|
ResultArrayType<TYPE> & out) const \
|
|
|
|
{ \
|
|
|
|
validateKeyTypes(key_types); \
|
|
|
|
\
|
|
|
|
const auto & attribute = getAttribute(attribute_name); \
|
2020-07-14 18:46:54 +00:00
|
|
|
checkAttributeType(this, attribute_name, attribute.type, AttributeUnderlyingType::ut##TYPE); \
|
2018-12-10 15:50:58 +00:00
|
|
|
\
|
2019-05-28 19:30:01 +00:00
|
|
|
getItemsImpl<TYPE, TYPE>( \
|
2018-12-10 15:50:58 +00:00
|
|
|
attribute, \
|
|
|
|
key_columns, \
|
|
|
|
[&](const size_t row, const auto value) { out[row] = value; }, \
|
|
|
|
[&](const size_t row) { return def[row]; }); \
|
2018-12-10 15:25:45 +00:00
|
|
|
}
|
2017-05-12 21:23:12 +00:00
|
|
|
DECLARE(UInt8)
|
|
|
|
DECLARE(UInt16)
|
|
|
|
DECLARE(UInt32)
|
|
|
|
DECLARE(UInt64)
|
2017-11-14 00:08:54 +00:00
|
|
|
DECLARE(UInt128)
|
2017-05-12 21:23:12 +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)
|
2017-05-12 21:23:12 +00:00
|
|
|
#undef DECLARE
|
|
|
|
|
|
|
|
void TrieDictionary::getString(
|
2018-12-10 15:25:45 +00:00
|
|
|
const std::string & attribute_name,
|
|
|
|
const Columns & key_columns,
|
|
|
|
const DataTypes & key_types,
|
|
|
|
const ColumnString * const def,
|
|
|
|
ColumnString * const out) const
|
2017-05-12 21:23:12 +00:00
|
|
|
{
|
|
|
|
validateKeyTypes(key_types);
|
|
|
|
|
|
|
|
const auto & attribute = getAttribute(attribute_name);
|
2020-07-14 18:46:54 +00:00
|
|
|
checkAttributeType(this, attribute_name, attribute.type, AttributeUnderlyingType::utString);
|
2018-12-10 15:25:45 +00:00
|
|
|
|
|
|
|
getItemsImpl<StringRef, StringRef>(
|
|
|
|
attribute,
|
|
|
|
key_columns,
|
|
|
|
[&](const size_t, const StringRef value) { out->insertData(value.data, value.size); },
|
|
|
|
[&](const size_t row) { return def->getDataAt(row); });
|
2017-05-12 21:23:12 +00:00
|
|
|
}
|
|
|
|
|
2018-12-10 15:50:58 +00:00
|
|
|
#define DECLARE(TYPE) \
|
|
|
|
void TrieDictionary::get##TYPE( \
|
|
|
|
const std::string & attribute_name, \
|
|
|
|
const Columns & key_columns, \
|
|
|
|
const DataTypes & key_types, \
|
|
|
|
const TYPE def, \
|
|
|
|
ResultArrayType<TYPE> & out) const \
|
|
|
|
{ \
|
|
|
|
validateKeyTypes(key_types); \
|
|
|
|
\
|
|
|
|
const auto & attribute = getAttribute(attribute_name); \
|
2020-07-14 18:46:54 +00:00
|
|
|
checkAttributeType(this, attribute_name, attribute.type, AttributeUnderlyingType::ut##TYPE); \
|
2018-12-10 15:50:58 +00:00
|
|
|
\
|
2019-05-28 19:30:01 +00:00
|
|
|
getItemsImpl<TYPE, TYPE>( \
|
2018-12-10 15:25:45 +00:00
|
|
|
attribute, key_columns, [&](const size_t row, const auto value) { out[row] = value; }, [&](const size_t) { return def; }); \
|
|
|
|
}
|
2017-05-12 21:23:12 +00:00
|
|
|
DECLARE(UInt8)
|
|
|
|
DECLARE(UInt16)
|
|
|
|
DECLARE(UInt32)
|
|
|
|
DECLARE(UInt64)
|
2017-11-14 00:08:54 +00:00
|
|
|
DECLARE(UInt128)
|
2017-05-12 21:23:12 +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)
|
2017-05-12 21:23:12 +00:00
|
|
|
#undef DECLARE
|
|
|
|
|
|
|
|
void TrieDictionary::getString(
|
2018-12-10 15:25:45 +00:00
|
|
|
const std::string & attribute_name,
|
|
|
|
const Columns & key_columns,
|
|
|
|
const DataTypes & key_types,
|
|
|
|
const String & def,
|
|
|
|
ColumnString * const out) const
|
2017-05-12 21:23:12 +00:00
|
|
|
{
|
|
|
|
validateKeyTypes(key_types);
|
|
|
|
|
|
|
|
const auto & attribute = getAttribute(attribute_name);
|
2020-07-14 18:46:54 +00:00
|
|
|
checkAttributeType(this, attribute_name, attribute.type, AttributeUnderlyingType::utString);
|
2018-12-10 15:25:45 +00:00
|
|
|
|
|
|
|
getItemsImpl<StringRef, StringRef>(
|
|
|
|
attribute,
|
|
|
|
key_columns,
|
|
|
|
[&](const size_t, const StringRef value) { out->insertData(value.data, value.size); },
|
|
|
|
[&](const size_t) { return StringRef{def}; });
|
2017-05-12 21:23:12 +00:00
|
|
|
}
|
|
|
|
|
2017-05-25 19:52:05 +00:00
|
|
|
void TrieDictionary::has(const Columns & key_columns, const DataTypes & key_types, PaddedPODArray<UInt8> & out) const
|
2017-05-12 21:23:12 +00:00
|
|
|
{
|
|
|
|
validateKeyTypes(key_types);
|
|
|
|
|
|
|
|
const auto & attribute = attributes.front();
|
|
|
|
|
|
|
|
switch (attribute.type)
|
|
|
|
{
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt8:
|
2018-12-10 15:25:45 +00:00
|
|
|
has<UInt8>(attribute, key_columns, out);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt16:
|
2018-12-10 15:25:45 +00:00
|
|
|
has<UInt16>(attribute, key_columns, out);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt32:
|
2018-12-10 15:25:45 +00:00
|
|
|
has<UInt32>(attribute, key_columns, out);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt64:
|
2018-12-10 15:25:45 +00:00
|
|
|
has<UInt64>(attribute, key_columns, out);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt128:
|
2018-12-10 15:25:45 +00:00
|
|
|
has<UInt128>(attribute, key_columns, out);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utInt8:
|
2018-12-10 15:25:45 +00:00
|
|
|
has<Int8>(attribute, key_columns, out);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utInt16:
|
2018-12-10 15:25:45 +00:00
|
|
|
has<Int16>(attribute, key_columns, out);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utInt32:
|
2018-12-10 15:25:45 +00:00
|
|
|
has<Int32>(attribute, key_columns, out);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utInt64:
|
2018-12-10 15:25:45 +00:00
|
|
|
has<Int64>(attribute, key_columns, out);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utFloat32:
|
2018-12-10 15:25:45 +00:00
|
|
|
has<Float32>(attribute, key_columns, out);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utFloat64:
|
2018-12-10 15:25:45 +00:00
|
|
|
has<Float64>(attribute, key_columns, out);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utString:
|
2018-12-10 15:25:45 +00:00
|
|
|
has<StringRef>(attribute, key_columns, out);
|
|
|
|
break;
|
|
|
|
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utDecimal32:
|
2018-12-10 15:25:45 +00:00
|
|
|
has<Decimal32>(attribute, key_columns, out);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utDecimal64:
|
2018-12-10 15:25:45 +00:00
|
|
|
has<Decimal64>(attribute, key_columns, out);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utDecimal128:
|
2018-12-10 15:25:45 +00:00
|
|
|
has<Decimal128>(attribute, key_columns, out);
|
|
|
|
break;
|
2017-05-12 21:23:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrieDictionary::createAttributes()
|
|
|
|
{
|
|
|
|
const auto size = dict_struct.attributes.size();
|
|
|
|
attributes.reserve(size);
|
|
|
|
|
|
|
|
for (const auto & attribute : dict_struct.attributes)
|
|
|
|
{
|
|
|
|
attribute_index_by_name.emplace(attribute.name, attributes.size());
|
|
|
|
attributes.push_back(createAttributeWithType(attribute.underlying_type, attribute.null_value));
|
|
|
|
|
|
|
|
if (attribute.hierarchical)
|
2019-12-25 23:12:12 +00:00
|
|
|
throw Exception{full_name + ": hierarchical attributes not supported for dictionary of type " + getTypeName(),
|
2018-12-10 15:25:45 +00:00
|
|
|
ErrorCodes::TYPE_MISMATCH};
|
2017-05-12 21:23:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrieDictionary::loadData()
|
|
|
|
{
|
|
|
|
auto stream = source_ptr->loadAll();
|
|
|
|
stream->readPrefix();
|
|
|
|
|
|
|
|
/// created upfront to avoid excess allocations
|
2017-10-04 00:22:00 +00:00
|
|
|
const auto keys_size = dict_struct.key->size();
|
2020-11-08 16:01:12 +00:00
|
|
|
|
|
|
|
ip_records.reserve(keys_size);
|
2017-05-12 21:23:12 +00:00
|
|
|
|
|
|
|
const auto attributes_size = attributes.size();
|
|
|
|
|
|
|
|
while (const auto block = stream->read())
|
|
|
|
{
|
|
|
|
const auto rows = block.rows();
|
|
|
|
element_count += rows;
|
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
const auto key_column_ptrs = ext::map<Columns>(
|
|
|
|
ext::range(0, keys_size), [&](const size_t attribute_idx) { return block.safeGetByPosition(attribute_idx).column; });
|
2017-05-12 21:23:12 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
const auto attribute_column_ptrs = ext::map<Columns>(ext::range(0, attributes_size), [&](const size_t attribute_idx)
|
|
|
|
{
|
|
|
|
return block.safeGetByPosition(keys_size + attribute_idx).column;
|
|
|
|
});
|
2017-05-12 21:23:12 +00:00
|
|
|
|
|
|
|
for (const auto row_idx : ext::range(0, rows))
|
|
|
|
{
|
|
|
|
/// calculate key once per row
|
|
|
|
const auto key_column = key_column_ptrs.front();
|
|
|
|
|
|
|
|
for (const auto attribute_idx : ext::range(0, attributes_size))
|
|
|
|
{
|
|
|
|
const auto & attribute_column = *attribute_column_ptrs[attribute_idx];
|
|
|
|
auto & attribute = attributes[attribute_idx];
|
2020-11-08 16:01:12 +00:00
|
|
|
|
|
|
|
setAttributeValue(attribute, attribute_column[row_idx]);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t row_number = ip_records.size();
|
|
|
|
|
|
|
|
std::string addr_str(key_column->getDataAt(row_idx).toString());
|
|
|
|
size_t pos = addr_str.find('/');
|
|
|
|
if (pos != std::string::npos)
|
|
|
|
{
|
|
|
|
IPAddress addr(addr_str.substr(0, pos));
|
|
|
|
UInt8 prefix = std::stoi(addr_str.substr(pos + 1), nullptr, 10);
|
|
|
|
addr = addr & IPAddress(prefix, addr.family());
|
|
|
|
ip_records.emplace_back(IPRecord{addr, prefix, row_number});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
IPAddress addr(addr_str);
|
|
|
|
UInt8 prefix = addr.length() * 8;
|
|
|
|
ip_records.emplace_back(IPRecord{addr, prefix, row_number});
|
2017-05-12 21:23:12 +00:00
|
|
|
}
|
2020-11-08 16:01:12 +00:00
|
|
|
total_ip_length += ip_records.back().addr.length();
|
2017-05-12 21:23:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-08 16:01:12 +00:00
|
|
|
LOG_TRACE(logger, "{} ip records are read", ip_records.size());
|
|
|
|
|
|
|
|
std::sort(ip_records.begin(), ip_records.end(), [](const auto & a, const auto & b)
|
|
|
|
{
|
|
|
|
if (a.addr.family() != b.addr.family())
|
|
|
|
return a.addr.family() < b.addr.family();
|
2020-11-08 20:21:13 +00:00
|
|
|
|
|
|
|
// prefer IPs with more narrow subnet
|
2020-11-08 16:01:12 +00:00
|
|
|
if (a.addr == b.addr)
|
2020-11-08 20:21:13 +00:00
|
|
|
return a.prefix < b.prefix;
|
2020-11-08 16:01:12 +00:00
|
|
|
return a.addr < b.addr;
|
|
|
|
});
|
|
|
|
|
2017-05-12 21:23:12 +00:00
|
|
|
stream->readSuffix();
|
|
|
|
|
|
|
|
if (require_nonempty && 0 == element_count)
|
2019-12-25 23:12:12 +00:00
|
|
|
throw Exception{full_name + ": dictionary source is empty and 'require_nonempty' property is set.", ErrorCodes::DICTIONARY_IS_EMPTY};
|
2017-05-12 21:23:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void TrieDictionary::addAttributeSize(const Attribute & attribute)
|
|
|
|
{
|
2018-11-13 19:43:17 +00:00
|
|
|
const auto & vec = std::get<ContainerType<T>>(attribute.maps);
|
2017-05-12 21:23:12 +00:00
|
|
|
bytes_allocated += sizeof(ContainerType<T>) + (vec.capacity() * sizeof(T));
|
|
|
|
bucket_count = vec.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrieDictionary::calculateBytesAllocated()
|
|
|
|
{
|
2020-11-08 16:01:12 +00:00
|
|
|
bytes_allocated += ip_records.size() * sizeof(ip_records.front());
|
|
|
|
bytes_allocated += total_ip_length;
|
2017-05-12 21:23:12 +00:00
|
|
|
bytes_allocated += attributes.size() * sizeof(attributes.front());
|
|
|
|
|
|
|
|
for (const auto & attribute : attributes)
|
|
|
|
{
|
|
|
|
switch (attribute.type)
|
|
|
|
{
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt8:
|
2018-12-10 15:25:45 +00:00
|
|
|
addAttributeSize<UInt8>(attribute);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt16:
|
2018-12-10 15:25:45 +00:00
|
|
|
addAttributeSize<UInt16>(attribute);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt32:
|
2018-12-10 15:25:45 +00:00
|
|
|
addAttributeSize<UInt32>(attribute);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt64:
|
2018-12-10 15:25:45 +00:00
|
|
|
addAttributeSize<UInt64>(attribute);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt128:
|
2018-12-10 15:25:45 +00:00
|
|
|
addAttributeSize<UInt128>(attribute);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utInt8:
|
2018-12-10 15:25:45 +00:00
|
|
|
addAttributeSize<Int8>(attribute);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utInt16:
|
2018-12-10 15:25:45 +00:00
|
|
|
addAttributeSize<Int16>(attribute);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utInt32:
|
2018-12-10 15:25:45 +00:00
|
|
|
addAttributeSize<Int32>(attribute);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utInt64:
|
2018-12-10 15:25:45 +00:00
|
|
|
addAttributeSize<Int64>(attribute);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utFloat32:
|
2018-12-10 15:25:45 +00:00
|
|
|
addAttributeSize<Float32>(attribute);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utFloat64:
|
2018-12-10 15:25:45 +00:00
|
|
|
addAttributeSize<Float64>(attribute);
|
|
|
|
break;
|
|
|
|
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utDecimal32:
|
2018-12-10 15:25:45 +00:00
|
|
|
addAttributeSize<Decimal32>(attribute);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utDecimal64:
|
2018-12-10 15:25:45 +00:00
|
|
|
addAttributeSize<Decimal64>(attribute);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utDecimal128:
|
2018-12-10 15:25:45 +00:00
|
|
|
addAttributeSize<Decimal128>(attribute);
|
|
|
|
break;
|
2018-10-08 19:45:17 +00:00
|
|
|
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utString:
|
2017-05-12 21:23:12 +00:00
|
|
|
{
|
|
|
|
addAttributeSize<StringRef>(attribute);
|
|
|
|
bytes_allocated += sizeof(Arena) + attribute.string_arena->size();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void TrieDictionary::createAttributeImpl(Attribute & attribute, const Field & null_value)
|
|
|
|
{
|
2018-11-20 20:09:20 +00:00
|
|
|
attribute.null_values = T(null_value.get<NearestFieldType<T>>());
|
2018-11-13 19:43:17 +00:00
|
|
|
attribute.maps.emplace<ContainerType<T>>();
|
2017-05-12 21:23:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TrieDictionary::Attribute TrieDictionary::createAttributeWithType(const AttributeUnderlyingType type, const Field & null_value)
|
|
|
|
{
|
2017-12-01 20:21:35 +00:00
|
|
|
Attribute attr{type, {}, {}, {}};
|
2017-05-12 21:23:12 +00:00
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt8:
|
2018-12-10 15:25:45 +00:00
|
|
|
createAttributeImpl<UInt8>(attr, null_value);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt16:
|
2018-12-10 15:25:45 +00:00
|
|
|
createAttributeImpl<UInt16>(attr, null_value);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt32:
|
2018-12-10 15:25:45 +00:00
|
|
|
createAttributeImpl<UInt32>(attr, null_value);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt64:
|
2018-12-10 15:25:45 +00:00
|
|
|
createAttributeImpl<UInt64>(attr, null_value);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt128:
|
2018-12-10 15:25:45 +00:00
|
|
|
createAttributeImpl<UInt128>(attr, null_value);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utInt8:
|
2018-12-10 15:25:45 +00:00
|
|
|
createAttributeImpl<Int8>(attr, null_value);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utInt16:
|
2018-12-10 15:25:45 +00:00
|
|
|
createAttributeImpl<Int16>(attr, null_value);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utInt32:
|
2018-12-10 15:25:45 +00:00
|
|
|
createAttributeImpl<Int32>(attr, null_value);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utInt64:
|
2018-12-10 15:25:45 +00:00
|
|
|
createAttributeImpl<Int64>(attr, null_value);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utFloat32:
|
2018-12-10 15:25:45 +00:00
|
|
|
createAttributeImpl<Float32>(attr, null_value);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utFloat64:
|
2018-12-10 15:25:45 +00:00
|
|
|
createAttributeImpl<Float64>(attr, null_value);
|
|
|
|
break;
|
|
|
|
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utDecimal32:
|
2018-12-10 15:25:45 +00:00
|
|
|
createAttributeImpl<Decimal32>(attr, null_value);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utDecimal64:
|
2018-12-10 15:25:45 +00:00
|
|
|
createAttributeImpl<Decimal64>(attr, null_value);
|
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utDecimal128:
|
2018-12-10 15:25:45 +00:00
|
|
|
createAttributeImpl<Decimal128>(attr, null_value);
|
|
|
|
break;
|
2018-10-08 19:45:17 +00:00
|
|
|
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utString:
|
2017-05-12 21:23:12 +00:00
|
|
|
{
|
2018-11-13 18:41:07 +00:00
|
|
|
attr.null_values = null_value.get<String>();
|
2018-11-13 19:43:17 +00:00
|
|
|
attr.maps.emplace<ContainerType<StringRef>>();
|
2017-05-12 21:23:12 +00:00
|
|
|
attr.string_arena = std::make_unique<Arena>();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return attr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename AttributeType, typename OutputType, typename ValueSetter, typename DefaultGetter>
|
|
|
|
void TrieDictionary::getItemsImpl(
|
2018-12-10 15:25:45 +00:00
|
|
|
const Attribute & attribute, const Columns & key_columns, ValueSetter && set_value, DefaultGetter && get_default) const
|
2017-05-12 21:23:12 +00:00
|
|
|
{
|
2018-11-13 19:43:17 +00:00
|
|
|
auto & vec = std::get<ContainerType<AttributeType>>(attribute.maps);
|
2017-05-12 21:23:12 +00:00
|
|
|
|
|
|
|
const auto first_column = key_columns.front();
|
|
|
|
const auto rows = first_column->size();
|
2020-11-08 16:01:12 +00:00
|
|
|
|
2017-05-12 21:23:12 +00:00
|
|
|
if (first_column->isNumeric())
|
|
|
|
{
|
|
|
|
for (const auto i : ext::range(0, rows))
|
|
|
|
{
|
2020-11-08 16:01:12 +00:00
|
|
|
auto addr = Poco::ByteOrder::toNetwork(UInt32(first_column->get64(i)));
|
|
|
|
auto ipaddr = IPAddress(reinterpret_cast<const uint8_t *>(&addr), IPV4_BINARY_LENGTH);
|
|
|
|
auto found = lookupIPRecord(ipaddr);
|
|
|
|
set_value(i, (found != ipRecordNotFound()) ? static_cast<OutputType>(vec[found->row]) : get_default(i));
|
2017-05-12 21:23:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (const auto i : ext::range(0, rows))
|
|
|
|
{
|
|
|
|
auto addr = first_column->getDataAt(i);
|
2020-11-08 16:01:12 +00:00
|
|
|
if (addr.size != IPV6_BINARY_LENGTH)
|
2017-05-12 21:23:12 +00:00
|
|
|
throw Exception("Expected key to be FixedString(16)", ErrorCodes::LOGICAL_ERROR);
|
2017-06-05 09:02:05 +00:00
|
|
|
|
2020-11-08 16:01:12 +00:00
|
|
|
auto ipaddr = ip4or6fromBytes(reinterpret_cast<const uint8_t *>(addr.data));
|
|
|
|
auto found = lookupIPRecord(ipaddr);
|
|
|
|
set_value(i, (found != ipRecordNotFound()) ? static_cast<OutputType>(vec[found->row]) : get_default(i));
|
2017-05-12 21:23:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
query_count.fetch_add(rows, std::memory_order_relaxed);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2020-11-08 16:01:12 +00:00
|
|
|
void TrieDictionary::setAttributeValueImpl(Attribute & attribute, const T value)
|
2017-05-12 21:23:12 +00:00
|
|
|
{
|
2018-11-13 19:43:17 +00:00
|
|
|
auto & vec = std::get<ContainerType<T>>(attribute.maps);
|
2017-05-12 21:23:12 +00:00
|
|
|
vec.push_back(value);
|
|
|
|
}
|
|
|
|
|
2020-11-08 16:01:12 +00:00
|
|
|
void TrieDictionary::setAttributeValue(Attribute & attribute, const Field & value)
|
2017-05-12 21:23:12 +00:00
|
|
|
{
|
|
|
|
switch (attribute.type)
|
|
|
|
{
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt8:
|
2020-11-08 16:01:12 +00:00
|
|
|
return setAttributeValueImpl<UInt8>(attribute, value.get<UInt64>());
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt16:
|
2020-11-08 16:01:12 +00:00
|
|
|
return setAttributeValueImpl<UInt16>(attribute, value.get<UInt64>());
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt32:
|
2020-11-08 16:01:12 +00:00
|
|
|
return setAttributeValueImpl<UInt32>(attribute, value.get<UInt64>());
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt64:
|
2020-11-08 16:01:12 +00:00
|
|
|
return setAttributeValueImpl<UInt64>(attribute, value.get<UInt64>());
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utUInt128:
|
2020-11-08 16:01:12 +00:00
|
|
|
return setAttributeValueImpl<UInt128>(attribute, value.get<UInt128>());
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utInt8:
|
2020-11-08 16:01:12 +00:00
|
|
|
return setAttributeValueImpl<Int8>(attribute, value.get<Int64>());
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utInt16:
|
2020-11-08 16:01:12 +00:00
|
|
|
return setAttributeValueImpl<Int16>(attribute, value.get<Int64>());
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utInt32:
|
2020-11-08 16:01:12 +00:00
|
|
|
return setAttributeValueImpl<Int32>(attribute, value.get<Int64>());
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utInt64:
|
2020-11-08 16:01:12 +00:00
|
|
|
return setAttributeValueImpl<Int64>(attribute, value.get<Int64>());
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utFloat32:
|
2020-11-08 16:01:12 +00:00
|
|
|
return setAttributeValueImpl<Float32>(attribute, value.get<Float64>());
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utFloat64:
|
2020-11-08 16:01:12 +00:00
|
|
|
return setAttributeValueImpl<Float64>(attribute, value.get<Float64>());
|
2018-12-10 15:25:45 +00:00
|
|
|
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utDecimal32:
|
2020-11-08 16:01:12 +00:00
|
|
|
return setAttributeValueImpl<Decimal32>(attribute, value.get<Decimal32>());
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utDecimal64:
|
2020-11-08 16:01:12 +00:00
|
|
|
return setAttributeValueImpl<Decimal64>(attribute, value.get<Decimal64>());
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utDecimal128:
|
2020-11-08 16:01:12 +00:00
|
|
|
return setAttributeValueImpl<Decimal128>(attribute, value.get<Decimal128>());
|
2018-10-08 19:45:17 +00:00
|
|
|
|
2019-08-03 11:02:40 +00:00
|
|
|
case AttributeUnderlyingType::utString:
|
2017-05-12 21:23:12 +00:00
|
|
|
{
|
|
|
|
const auto & string = value.get<String>();
|
2020-04-22 07:03:43 +00:00
|
|
|
const auto * string_in_arena = attribute.string_arena->insert(string.data(), string.size());
|
2020-11-08 16:01:12 +00:00
|
|
|
return setAttributeValueImpl<StringRef>(attribute, StringRef{string_in_arena, string.size()});
|
2017-05-12 21:23:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const TrieDictionary::Attribute & TrieDictionary::getAttribute(const std::string & attribute_name) const
|
|
|
|
{
|
|
|
|
const auto it = attribute_index_by_name.find(attribute_name);
|
|
|
|
if (it == std::end(attribute_index_by_name))
|
2019-12-25 23:12:12 +00:00
|
|
|
throw Exception{full_name + ": no such attribute '" + attribute_name + "'", ErrorCodes::BAD_ARGUMENTS};
|
2017-05-12 21:23:12 +00:00
|
|
|
|
|
|
|
return attributes[it->second];
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2017-12-01 20:21:35 +00:00
|
|
|
void TrieDictionary::has(const Attribute &, const Columns & key_columns, PaddedPODArray<UInt8> & out) const
|
2017-05-12 21:23:12 +00:00
|
|
|
{
|
|
|
|
const auto first_column = key_columns.front();
|
|
|
|
const auto rows = first_column->size();
|
|
|
|
if (first_column->isNumeric())
|
|
|
|
{
|
|
|
|
for (const auto i : ext::range(0, rows))
|
|
|
|
{
|
|
|
|
auto addr = Int32(first_column->get64(i));
|
2020-11-08 16:01:12 +00:00
|
|
|
auto ipaddr = IPAddress(reinterpret_cast<const uint8_t *>(&addr), IPV4_BINARY_LENGTH);
|
|
|
|
auto found = lookupIPRecord(ipaddr);
|
|
|
|
out[i] = (found != ipRecordNotFound());
|
2017-05-12 21:23:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (const auto i : ext::range(0, rows))
|
|
|
|
{
|
|
|
|
auto addr = first_column->getDataAt(i);
|
|
|
|
if (unlikely(addr.size != 16))
|
|
|
|
throw Exception("Expected key to be FixedString(16)", ErrorCodes::LOGICAL_ERROR);
|
2017-06-05 09:02:05 +00:00
|
|
|
|
2020-11-08 16:01:12 +00:00
|
|
|
auto ipaddr = ip4or6fromBytes(reinterpret_cast<const uint8_t *>(addr.data));
|
|
|
|
auto found = lookupIPRecord(ipaddr);
|
|
|
|
out[i] = (found != ipRecordNotFound());
|
2017-05-12 21:23:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-05 09:02:05 +00:00
|
|
|
query_count.fetch_add(rows, std::memory_order_relaxed);
|
|
|
|
}
|
|
|
|
|
|
|
|
Columns TrieDictionary::getKeyColumns() const
|
|
|
|
{
|
2017-12-14 01:43:19 +00:00
|
|
|
auto ip_column = ColumnFixedString::create(IPV6_BINARY_LENGTH);
|
|
|
|
auto mask_column = ColumnVector<UInt8>::create();
|
2017-06-05 09:02:05 +00:00
|
|
|
|
2020-11-08 16:01:12 +00:00
|
|
|
for (const auto & record : ip_records)
|
2018-01-10 00:04:08 +00:00
|
|
|
{
|
2020-11-08 16:01:12 +00:00
|
|
|
auto ip_array = IPv6ToBinary(record.addr);
|
|
|
|
ip_column->insertData(ip_array.data(), IPV6_BINARY_LENGTH);
|
|
|
|
mask_column->insertValue(record.prefix);
|
|
|
|
}
|
2017-06-05 09:02:05 +00:00
|
|
|
|
2017-12-15 03:19:14 +00:00
|
|
|
return {std::move(ip_column), std::move(mask_column)};
|
2017-06-05 09:02:05 +00:00
|
|
|
}
|
|
|
|
|
2019-02-18 18:51:46 +00:00
|
|
|
BlockInputStreamPtr TrieDictionary::getBlockInputStream(const Names & column_names, size_t max_block_size) const
|
2017-06-05 09:02:05 +00:00
|
|
|
{
|
|
|
|
using BlockInputStreamType = DictionaryBlockInputStream<TrieDictionary, UInt64>;
|
|
|
|
|
2020-03-23 02:12:31 +00:00
|
|
|
auto get_keys = [](const Columns & columns, const std::vector<DictionaryAttribute> & dict_attributes)
|
2017-06-05 09:02:05 +00:00
|
|
|
{
|
2019-01-04 12:10:00 +00:00
|
|
|
const auto & attr = dict_attributes.front();
|
2018-12-10 15:25:45 +00:00
|
|
|
return ColumnsWithTypeAndName(
|
|
|
|
{ColumnWithTypeAndName(columns.front(), std::make_shared<DataTypeFixedString>(IPV6_BINARY_LENGTH), attr.name)});
|
2017-06-05 09:02:05 +00:00
|
|
|
};
|
2020-03-23 02:12:31 +00:00
|
|
|
auto get_view = [](const Columns & columns, const std::vector<DictionaryAttribute> & dict_attributes)
|
2017-06-05 09:02:05 +00:00
|
|
|
{
|
2017-12-14 01:43:19 +00:00
|
|
|
auto column = ColumnString::create();
|
2019-08-21 02:28:04 +00:00
|
|
|
const auto & ip_column = assert_cast<const ColumnFixedString &>(*columns.front());
|
|
|
|
const auto & mask_column = assert_cast<const ColumnVector<UInt8> &>(*columns.back());
|
2017-06-05 09:02:05 +00:00
|
|
|
char buffer[48];
|
2017-12-15 03:19:14 +00:00
|
|
|
for (size_t row : ext::range(0, ip_column.size()))
|
2017-06-05 09:02:05 +00:00
|
|
|
{
|
2017-12-15 03:19:14 +00:00
|
|
|
UInt8 mask = mask_column.getElement(row);
|
2017-06-05 09:02:05 +00:00
|
|
|
char * ptr = buffer;
|
2017-12-15 03:19:14 +00:00
|
|
|
formatIPv6(reinterpret_cast<const unsigned char *>(ip_column.getDataAt(row).data), ptr);
|
2017-06-05 09:02:05 +00:00
|
|
|
*(ptr - 1) = '/';
|
2018-12-29 18:39:55 +00:00
|
|
|
ptr = itoa(mask, ptr);
|
|
|
|
column->insertData(buffer, ptr - buffer);
|
2017-06-05 09:02:05 +00:00
|
|
|
}
|
2018-12-10 15:25:45 +00:00
|
|
|
return ColumnsWithTypeAndName{
|
2019-01-04 12:10:00 +00:00
|
|
|
ColumnWithTypeAndName(std::move(column), std::make_shared<DataTypeString>(), dict_attributes.front().name)};
|
2017-06-05 09:02:05 +00:00
|
|
|
};
|
2018-12-10 15:25:45 +00:00
|
|
|
return std::make_shared<BlockInputStreamType>(
|
2020-03-23 02:12:31 +00:00
|
|
|
shared_from_this(), max_block_size, getKeyColumns(), column_names, std::move(get_keys), std::move(get_view));
|
2017-06-05 09:02:05 +00:00
|
|
|
}
|
2017-05-12 21:23:12 +00:00
|
|
|
|
2020-11-08 16:01:12 +00:00
|
|
|
int TrieDictionary::matchIPAddrWithRecord(const IPAddress & ipaddr, const IPRecord & record) const
|
|
|
|
{
|
|
|
|
if (ipaddr.family() != record.addr.family())
|
|
|
|
return ipaddr.family() < record.addr.family() ? -1 : 1;
|
|
|
|
|
|
|
|
auto masked_ipaddr = ipaddr & IPAddress(record.prefix, record.addr.family());
|
|
|
|
if (masked_ipaddr < record.addr)
|
|
|
|
return -1;
|
|
|
|
if (masked_ipaddr == record.addr)
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
TrieDictionary::IPRecordConstIt TrieDictionary::ipRecordNotFound() const
|
|
|
|
{
|
|
|
|
return ip_records.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
TrieDictionary::IPRecordConstIt TrieDictionary::lookupIPRecord(const IPAddress & target) const
|
|
|
|
{
|
|
|
|
if (ip_records.empty())
|
|
|
|
return ipRecordNotFound();
|
|
|
|
|
|
|
|
auto comp = [&](const IPAddress & needle, const IPRecord & record) -> bool
|
|
|
|
{
|
|
|
|
return matchIPAddrWithRecord(needle, record) < 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
auto next_it = std::upper_bound(ip_records.begin(), ip_records.end(), target, comp);
|
|
|
|
|
|
|
|
if (next_it == ip_records.begin())
|
|
|
|
return ipRecordNotFound();
|
|
|
|
|
|
|
|
auto found = next_it - 1;
|
|
|
|
if (matchIPAddrWithRecord(target, *found) == 0)
|
|
|
|
return found;
|
|
|
|
|
|
|
|
return ipRecordNotFound();
|
|
|
|
}
|
2018-11-28 11:37:12 +00:00
|
|
|
|
|
|
|
void registerDictionaryTrie(DictionaryFactory & factory)
|
|
|
|
{
|
2019-12-25 23:12:12 +00:00
|
|
|
auto create_layout = [=](const std::string &,
|
2018-12-10 15:25:45 +00:00
|
|
|
const DictionaryStructure & dict_struct,
|
|
|
|
const Poco::Util::AbstractConfiguration & config,
|
|
|
|
const std::string & config_prefix,
|
2018-12-10 15:50:58 +00:00
|
|
|
DictionarySourcePtr source_ptr) -> DictionaryPtr
|
|
|
|
{
|
2018-11-28 11:37:12 +00:00
|
|
|
if (!dict_struct.key)
|
2018-12-10 15:25:45 +00:00
|
|
|
throw Exception{"'key' is required for dictionary of layout 'ip_trie'", ErrorCodes::BAD_ARGUMENTS};
|
2018-11-28 11:37:12 +00:00
|
|
|
|
2020-07-14 19:19:17 +00:00
|
|
|
const auto dict_id = StorageID::fromDictionaryConfig(config, config_prefix);
|
2018-12-10 15:25:45 +00:00
|
|
|
const DictionaryLifetime dict_lifetime{config, config_prefix + ".lifetime"};
|
2018-11-28 11:37:12 +00:00
|
|
|
const bool require_nonempty = config.getBool(config_prefix + ".require_nonempty", false);
|
|
|
|
// This is specialised trie for storing IPv4 and IPv6 prefixes.
|
2020-07-14 19:19:17 +00:00
|
|
|
return std::make_unique<TrieDictionary>(dict_id, dict_struct, std::move(source_ptr), dict_lifetime, require_nonempty);
|
2018-11-28 11:37:12 +00:00
|
|
|
};
|
2019-10-21 16:05:45 +00:00
|
|
|
factory.registerLayout("ip_trie", create_layout, true);
|
2018-11-28 11:37:12 +00:00
|
|
|
}
|
|
|
|
|
2017-05-12 21:23:12 +00:00
|
|
|
}
|