2017-04-01 09:19:00 +00:00
|
|
|
#include <Dictionaries/DictionaryStructure.h>
|
2018-06-10 19:22:49 +00:00
|
|
|
#include <Formats/FormatSettings.h>
|
2017-12-09 06:32:22 +00:00
|
|
|
#include <DataTypes/DataTypeFactory.h>
|
2017-07-13 16:49:09 +00:00
|
|
|
#include <Columns/IColumn.h>
|
2018-01-15 19:07:47 +00:00
|
|
|
#include <Common/StringUtils/StringUtils.h>
|
2017-12-09 06:32:22 +00:00
|
|
|
#include <IO/WriteHelpers.h>
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2017-12-09 06:32:22 +00:00
|
|
|
#include <ext/range.h>
|
|
|
|
#include <numeric>
|
2017-01-31 13:27:02 +00:00
|
|
|
#include <unordered_set>
|
2017-12-09 06:32:22 +00:00
|
|
|
#include <unordered_map>
|
|
|
|
|
2016-06-07 21:07:44 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int UNKNOWN_TYPE;
|
|
|
|
extern const int ARGUMENT_OUT_OF_BOUND;
|
|
|
|
extern const int TYPE_MISMATCH;
|
2017-04-08 01:32:05 +00:00
|
|
|
extern const int BAD_ARGUMENTS;
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool isAttributeTypeConvertibleTo(AttributeUnderlyingType from, AttributeUnderlyingType to)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (from == to)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
/** This enum can be somewhat incomplete and the meaning may not coincide with NumberTraits.h.
|
|
|
|
* (for example, because integers can not be converted to floats)
|
|
|
|
* This is normal for a limited usage scope.
|
|
|
|
*/
|
|
|
|
if ( (from == AttributeUnderlyingType::UInt8 && to == AttributeUnderlyingType::UInt16)
|
|
|
|
|| (from == AttributeUnderlyingType::UInt8 && to == AttributeUnderlyingType::UInt32)
|
|
|
|
|| (from == AttributeUnderlyingType::UInt8 && to == AttributeUnderlyingType::UInt64)
|
|
|
|
|| (from == AttributeUnderlyingType::UInt16 && to == AttributeUnderlyingType::UInt32)
|
|
|
|
|| (from == AttributeUnderlyingType::UInt16 && to == AttributeUnderlyingType::UInt64)
|
|
|
|
|| (from == AttributeUnderlyingType::UInt32 && to == AttributeUnderlyingType::UInt64)
|
|
|
|
|| (from == AttributeUnderlyingType::UInt8 && to == AttributeUnderlyingType::Int16)
|
|
|
|
|| (from == AttributeUnderlyingType::UInt8 && to == AttributeUnderlyingType::Int32)
|
|
|
|
|| (from == AttributeUnderlyingType::UInt8 && to == AttributeUnderlyingType::Int64)
|
|
|
|
|| (from == AttributeUnderlyingType::UInt16 && to == AttributeUnderlyingType::Int32)
|
|
|
|
|| (from == AttributeUnderlyingType::UInt16 && to == AttributeUnderlyingType::Int64)
|
|
|
|
|| (from == AttributeUnderlyingType::UInt32 && to == AttributeUnderlyingType::Int64)
|
|
|
|
|
|
|
|
|| (from == AttributeUnderlyingType::Int8 && to == AttributeUnderlyingType::Int16)
|
|
|
|
|| (from == AttributeUnderlyingType::Int8 && to == AttributeUnderlyingType::Int32)
|
|
|
|
|| (from == AttributeUnderlyingType::Int8 && to == AttributeUnderlyingType::Int64)
|
|
|
|
|| (from == AttributeUnderlyingType::Int16 && to == AttributeUnderlyingType::Int32)
|
|
|
|
|| (from == AttributeUnderlyingType::Int16 && to == AttributeUnderlyingType::Int64)
|
|
|
|
|| (from == AttributeUnderlyingType::Int32 && to == AttributeUnderlyingType::Int64)
|
|
|
|
|
|
|
|
|| (from == AttributeUnderlyingType::Float32 && to == AttributeUnderlyingType::Float64))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
AttributeUnderlyingType getAttributeUnderlyingType(const std::string & type)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
static const std::unordered_map<std::string, AttributeUnderlyingType> dictionary{
|
|
|
|
{ "UInt8", AttributeUnderlyingType::UInt8 },
|
|
|
|
{ "UInt16", AttributeUnderlyingType::UInt16 },
|
|
|
|
{ "UInt32", AttributeUnderlyingType::UInt32 },
|
|
|
|
{ "UInt64", AttributeUnderlyingType::UInt64 },
|
2017-11-14 00:08:54 +00:00
|
|
|
{ "UUID", AttributeUnderlyingType::UInt128 },
|
2017-04-01 07:20:54 +00:00
|
|
|
{ "Int8", AttributeUnderlyingType::Int8 },
|
|
|
|
{ "Int16", AttributeUnderlyingType::Int16 },
|
|
|
|
{ "Int32", AttributeUnderlyingType::Int32 },
|
|
|
|
{ "Int64", AttributeUnderlyingType::Int64 },
|
|
|
|
{ "Float32", AttributeUnderlyingType::Float32 },
|
|
|
|
{ "Float64", AttributeUnderlyingType::Float64 },
|
|
|
|
{ "String", AttributeUnderlyingType::String },
|
|
|
|
{ "Date", AttributeUnderlyingType::UInt16 },
|
|
|
|
{ "DateTime", AttributeUnderlyingType::UInt32 },
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto it = dictionary.find(type);
|
|
|
|
if (it != std::end(dictionary))
|
|
|
|
return it->second;
|
|
|
|
|
2018-05-07 02:01:11 +00:00
|
|
|
throw Exception{"Unknown type " + type, ErrorCodes::UNKNOWN_TYPE};
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::string toString(const AttributeUnderlyingType type)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case AttributeUnderlyingType::UInt8: return "UInt8";
|
|
|
|
case AttributeUnderlyingType::UInt16: return "UInt16";
|
|
|
|
case AttributeUnderlyingType::UInt32: return "UInt32";
|
|
|
|
case AttributeUnderlyingType::UInt64: return "UInt64";
|
2017-11-14 00:08:54 +00:00
|
|
|
case AttributeUnderlyingType::UInt128: return "UUID";
|
2017-04-01 07:20:54 +00:00
|
|
|
case AttributeUnderlyingType::Int8: return "Int8";
|
|
|
|
case AttributeUnderlyingType::Int16: return "Int16";
|
|
|
|
case AttributeUnderlyingType::Int32: return "Int32";
|
|
|
|
case AttributeUnderlyingType::Int64: return "Int64";
|
|
|
|
case AttributeUnderlyingType::Float32: return "Float32";
|
|
|
|
case AttributeUnderlyingType::Float64: return "Float64";
|
|
|
|
case AttributeUnderlyingType::String: return "String";
|
|
|
|
}
|
|
|
|
|
2018-05-07 02:01:11 +00:00
|
|
|
throw Exception{"Unknown attribute_type " + toString(static_cast<int>(type)), ErrorCodes::ARGUMENT_OUT_OF_BOUND};
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
DictionarySpecialAttribute::DictionarySpecialAttribute(const Poco::Util::AbstractConfiguration & config, const std::string & config_prefix)
|
2017-04-01 07:20:54 +00:00
|
|
|
: name{config.getString(config_prefix + ".name", "")},
|
|
|
|
expression{config.getString(config_prefix + ".expression", "")}
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (name.empty() && !expression.empty())
|
2018-05-07 02:01:11 +00:00
|
|
|
throw Exception{"Element " + config_prefix + ".name is empty", ErrorCodes::BAD_ARGUMENTS};
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
DictionaryStructure::DictionaryStructure(const Poco::Util::AbstractConfiguration & config, const std::string & config_prefix)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto has_id = config.has(config_prefix + ".id");
|
|
|
|
const auto has_key = config.has(config_prefix + ".key");
|
|
|
|
|
|
|
|
if (has_key && has_id)
|
|
|
|
throw Exception{"Only one of 'id' and 'key' should be specified", ErrorCodes::BAD_ARGUMENTS};
|
|
|
|
|
|
|
|
if (has_id)
|
|
|
|
id.emplace(config, config_prefix + ".id");
|
|
|
|
else if (has_key)
|
|
|
|
{
|
|
|
|
key.emplace(getAttributes(config, config_prefix + ".key", false, false));
|
|
|
|
if (key->empty())
|
|
|
|
throw Exception{"Empty 'key' supplied", ErrorCodes::BAD_ARGUMENTS};
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw Exception{"Dictionary structure should specify either 'id' or 'key'", ErrorCodes::BAD_ARGUMENTS};
|
|
|
|
|
|
|
|
if (id)
|
|
|
|
{
|
|
|
|
if (id->name.empty())
|
|
|
|
throw Exception{"'id' cannot be empty", ErrorCodes::BAD_ARGUMENTS};
|
|
|
|
|
|
|
|
if (config.has(config_prefix + ".range_min"))
|
|
|
|
range_min.emplace(config, config_prefix + ".range_min");
|
|
|
|
|
|
|
|
if (config.has(config_prefix + ".range_max"))
|
|
|
|
range_max.emplace(config, config_prefix + ".range_max");
|
|
|
|
|
|
|
|
if (!id->expression.empty() ||
|
|
|
|
(range_min && !range_min->expression.empty()) ||
|
|
|
|
(range_max && !range_max->expression.empty()))
|
|
|
|
has_expressions = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
attributes = getAttributes(config, config_prefix);
|
|
|
|
if (attributes.empty())
|
|
|
|
throw Exception{"Dictionary has no attributes defined", ErrorCodes::BAD_ARGUMENTS};
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DictionaryStructure::validateKeyTypes(const DataTypes & key_types) const
|
|
|
|
{
|
2017-10-04 00:22:00 +00:00
|
|
|
if (key_types.size() != key->size())
|
2018-05-07 02:01:11 +00:00
|
|
|
throw Exception{"Key structure does not match, expected " + getKeyDescription(), ErrorCodes::TYPE_MISMATCH};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
for (const auto i : ext::range(0, key_types.size()))
|
|
|
|
{
|
|
|
|
const auto & expected_type = (*key)[i].type->getName();
|
|
|
|
const auto & actual_type = key_types[i]->getName();
|
|
|
|
|
|
|
|
if (expected_type != actual_type)
|
2018-05-07 02:01:11 +00:00
|
|
|
throw Exception{"Key type at position " + std::to_string(i) + " does not match, expected " + expected_type +
|
|
|
|
", found " + actual_type, ErrorCodes::TYPE_MISMATCH};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::string DictionaryStructure::getKeyDescription() const
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (id)
|
|
|
|
return "UInt64";
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
std::ostringstream out;
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
out << '(';
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
auto first = true;
|
|
|
|
for (const auto & key_i : *key)
|
|
|
|
{
|
|
|
|
if (!first)
|
|
|
|
out << ", ";
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
first = false;
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
out << key_i.type->getName();
|
|
|
|
}
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
out << ')';
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
return out.str();
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool DictionaryStructure::isKeySizeFixed() const
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!key)
|
|
|
|
return true;
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2017-09-08 03:47:27 +00:00
|
|
|
for (const auto & key_i : *key)
|
2017-04-01 07:20:54 +00:00
|
|
|
if (key_i.underlying_type == AttributeUnderlyingType::String)
|
|
|
|
return false;
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
return true;
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
size_t DictionaryStructure::getKeySize() const
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
return std::accumulate(std::begin(*key), std::end(*key), size_t{},
|
2017-12-09 06:32:22 +00:00
|
|
|
[] (const auto running_size, const auto & key_i) {return running_size + key_i.type->getSizeOfValueInMemory(); });
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-08 01:51:55 +00:00
|
|
|
static void checkAttributeKeys(const Poco::Util::AbstractConfiguration::Keys & keys)
|
2017-01-31 13:27:02 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
static const std::unordered_set<std::string> valid_keys =
|
2018-02-06 22:35:47 +00:00
|
|
|
{ "name", "type", "expression", "null_value", "hierarchical", "injective", "is_object_id" };
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
for (const auto & key : keys)
|
|
|
|
{
|
|
|
|
if (valid_keys.find(key) == valid_keys.end())
|
2018-05-07 02:01:11 +00:00
|
|
|
throw Exception{"Unknown key '" + key + "' inside attribute section", ErrorCodes::BAD_ARGUMENTS};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2017-01-31 13:27:02 +00:00
|
|
|
}
|
|
|
|
|
2018-06-08 01:51:55 +00:00
|
|
|
|
2016-06-07 21:07:44 +00:00
|
|
|
std::vector<DictionaryAttribute> DictionaryStructure::getAttributes(
|
2017-04-01 07:20:54 +00:00
|
|
|
const Poco::Util::AbstractConfiguration & config, const std::string & config_prefix,
|
|
|
|
const bool hierarchy_allowed, const bool allow_null_values)
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2018-08-10 04:02:56 +00:00
|
|
|
Poco::Util::AbstractConfiguration::Keys config_elems;
|
|
|
|
config.keys(config_prefix, config_elems);
|
2017-04-01 07:20:54 +00:00
|
|
|
auto has_hierarchy = false;
|
|
|
|
|
2018-08-10 04:02:56 +00:00
|
|
|
std::vector<DictionaryAttribute> res_attributes;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-06-08 01:51:55 +00:00
|
|
|
const FormatSettings format_settings;
|
|
|
|
|
2018-08-10 04:02:56 +00:00
|
|
|
for (const auto & config_elem : config_elems)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-08-10 04:02:56 +00:00
|
|
|
if (!startsWith(config_elem.data(), "attribute"))
|
2017-04-01 07:20:54 +00:00
|
|
|
continue;
|
|
|
|
|
2018-08-10 04:02:56 +00:00
|
|
|
const auto prefix = config_prefix + '.' + config_elem + '.';
|
2017-04-01 07:20:54 +00:00
|
|
|
Poco::Util::AbstractConfiguration::Keys attribute_keys;
|
2018-08-10 04:02:56 +00:00
|
|
|
config.keys(config_prefix + '.' + config_elem, attribute_keys);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-06-08 01:51:55 +00:00
|
|
|
checkAttributeKeys(attribute_keys);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
const auto name = config.getString(prefix + "name");
|
|
|
|
const auto type_string = config.getString(prefix + "type");
|
|
|
|
const auto type = DataTypeFactory::instance().get(type_string);
|
|
|
|
const auto underlying_type = getAttributeUnderlyingType(type_string);
|
|
|
|
|
|
|
|
const auto expression = config.getString(prefix + "expression", "");
|
|
|
|
if (!expression.empty())
|
|
|
|
has_expressions = true;
|
|
|
|
|
|
|
|
Field null_value;
|
|
|
|
if (allow_null_values)
|
|
|
|
{
|
|
|
|
const auto null_value_string = config.getString(prefix + "null_value");
|
|
|
|
try
|
|
|
|
{
|
|
|
|
ReadBufferFromString null_value_buffer{null_value_string};
|
2017-12-15 03:04:33 +00:00
|
|
|
auto column_with_null_value = type->createColumn();
|
2018-06-08 01:51:55 +00:00
|
|
|
type->deserializeTextEscaped(*column_with_null_value, null_value_buffer, format_settings);
|
2017-04-01 07:20:54 +00:00
|
|
|
null_value = (*column_with_null_value)[0];
|
|
|
|
}
|
2017-12-15 03:04:33 +00:00
|
|
|
catch (Exception & e)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-12-15 03:04:33 +00:00
|
|
|
e.addMessage("error parsing null_value");
|
|
|
|
throw;
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto hierarchical = config.getBool(prefix + "hierarchical", false);
|
|
|
|
const auto injective = config.getBool(prefix + "injective", false);
|
2018-02-06 21:34:56 +00:00
|
|
|
const auto is_object_id = config.getBool(prefix + "is_object_id", false);
|
2017-04-01 07:20:54 +00:00
|
|
|
if (name.empty())
|
2018-05-07 02:01:11 +00:00
|
|
|
throw Exception{"Properties 'name' and 'type' of an attribute cannot be empty", ErrorCodes::BAD_ARGUMENTS};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
if (has_hierarchy && !hierarchy_allowed)
|
2018-05-07 02:01:11 +00:00
|
|
|
throw Exception{"Hierarchy not allowed in '" + prefix, ErrorCodes::BAD_ARGUMENTS};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
if (has_hierarchy && hierarchical)
|
2018-05-07 02:01:11 +00:00
|
|
|
throw Exception{"Only one hierarchical attribute supported", ErrorCodes::BAD_ARGUMENTS};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
has_hierarchy = has_hierarchy || hierarchical;
|
|
|
|
|
2018-08-10 04:02:56 +00:00
|
|
|
res_attributes.emplace_back(DictionaryAttribute{
|
2018-02-06 21:34:56 +00:00
|
|
|
name, underlying_type, type, expression, null_value, hierarchical, injective, is_object_id
|
2017-04-01 07:20:54 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-08-10 04:02:56 +00:00
|
|
|
return res_attributes;
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|