2015-02-10 14:50:43 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <DB/Dictionaries/IDictionary.h>
|
|
|
|
#include <DB/Dictionaries/IDictionarySource.h>
|
|
|
|
#include <DB/Dictionaries/DictionaryStructure.h>
|
2015-02-26 14:53:33 +00:00
|
|
|
#include <DB/Common/HashTable/HashMap.h>
|
2015-11-24 12:47:51 +00:00
|
|
|
#include <DB/Common/ArenaWithFreeLists.h>
|
2015-02-19 14:51:39 +00:00
|
|
|
#include <DB/Columns/ColumnString.h>
|
2015-10-05 00:33:43 +00:00
|
|
|
#include <ext/scope_guard.hpp>
|
2015-11-06 14:49:54 +00:00
|
|
|
#include <ext/bit_cast.hpp>
|
2015-11-20 15:53:23 +00:00
|
|
|
#include <ext/range.hpp>
|
|
|
|
#include <ext/size.hpp>
|
2015-11-06 14:49:54 +00:00
|
|
|
#include <ext/map.hpp>
|
2015-02-26 14:53:33 +00:00
|
|
|
#include <Poco/RWLock.h>
|
2015-02-19 14:51:39 +00:00
|
|
|
#include <cmath>
|
2015-03-24 17:02:56 +00:00
|
|
|
#include <atomic>
|
2015-02-19 14:51:39 +00:00
|
|
|
#include <chrono>
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
2015-02-26 14:53:33 +00:00
|
|
|
#include <tuple>
|
2015-02-10 14:50:43 +00:00
|
|
|
|
2015-11-20 15:53:23 +00:00
|
|
|
|
2015-02-10 14:50:43 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
class CacheDictionary final : public IDictionary
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CacheDictionary(const std::string & name, const DictionaryStructure & dict_struct,
|
|
|
|
DictionarySourcePtr source_ptr, const DictionaryLifetime dict_lifetime,
|
|
|
|
const std::size_t size)
|
|
|
|
: name{name}, dict_struct(dict_struct),
|
|
|
|
source_ptr{std::move(source_ptr)}, dict_lifetime(dict_lifetime),
|
2015-02-19 14:51:39 +00:00
|
|
|
size{round_up_to_power_of_two(size)},
|
2015-02-26 14:53:33 +00:00
|
|
|
cells{this->size}
|
2015-02-10 14:50:43 +00:00
|
|
|
{
|
|
|
|
if (!this->source_ptr->supportsSelectiveLoad())
|
|
|
|
throw Exception{
|
2015-08-19 13:06:21 +00:00
|
|
|
name + ": source cannot be used with CacheDictionary",
|
2015-02-10 14:50:43 +00:00
|
|
|
ErrorCodes::UNSUPPORTED_METHOD
|
|
|
|
};
|
2015-02-19 14:51:39 +00:00
|
|
|
|
|
|
|
createAttributes();
|
2015-02-10 14:50:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CacheDictionary(const CacheDictionary & other)
|
|
|
|
: CacheDictionary{other.name, other.dict_struct, other.source_ptr->clone(), other.dict_lifetime, other.size}
|
|
|
|
{}
|
|
|
|
|
2015-06-09 16:12:51 +00:00
|
|
|
std::exception_ptr getCreationException() const override { return {}; }
|
|
|
|
|
2015-02-10 14:50:43 +00:00
|
|
|
std::string getName() const override { return name; }
|
|
|
|
|
2015-03-24 12:26:19 +00:00
|
|
|
std::string getTypeName() const override { return "Cache"; }
|
2015-02-10 14:50:43 +00:00
|
|
|
|
2015-11-24 12:47:51 +00:00
|
|
|
std::size_t getBytesAllocated() const override { return bytes_allocated + (string_arena ? string_arena->size() : 0); }
|
2015-03-24 11:30:16 +00:00
|
|
|
|
2015-05-08 12:31:00 +00:00
|
|
|
std::size_t getQueryCount() const override { return query_count.load(std::memory_order_relaxed); }
|
|
|
|
|
2015-03-24 17:02:56 +00:00
|
|
|
double getHitRate() const override
|
|
|
|
{
|
|
|
|
return static_cast<double>(hit_count.load(std::memory_order_acquire)) /
|
|
|
|
query_count.load(std::memory_order_relaxed);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::size_t getElementCount() const override { return element_count.load(std::memory_order_relaxed); }
|
|
|
|
|
|
|
|
double getLoadFactor() const override
|
|
|
|
{
|
|
|
|
return static_cast<double>(element_count.load(std::memory_order_relaxed)) / size;
|
|
|
|
}
|
|
|
|
|
2015-02-10 14:50:43 +00:00
|
|
|
bool isCached() const override { return true; }
|
|
|
|
|
2015-02-10 21:14:11 +00:00
|
|
|
DictionaryPtr clone() const override { return std::make_unique<CacheDictionary>(*this); }
|
2015-02-10 14:50:43 +00:00
|
|
|
|
|
|
|
const IDictionarySource * getSource() const override { return source_ptr.get(); }
|
|
|
|
|
|
|
|
const DictionaryLifetime & getLifetime() const override { return dict_lifetime; }
|
|
|
|
|
2015-03-24 13:59:19 +00:00
|
|
|
const DictionaryStructure & getStructure() const override { return dict_struct; }
|
|
|
|
|
2015-03-24 17:02:56 +00:00
|
|
|
std::chrono::time_point<std::chrono::system_clock> getCreationTime() const override
|
|
|
|
{
|
|
|
|
return creation_time;
|
|
|
|
}
|
|
|
|
|
2015-05-13 16:11:07 +00:00
|
|
|
bool isInjective(const std::string & attribute_name) const override
|
|
|
|
{
|
|
|
|
return dict_struct.attributes[&getAttribute(attribute_name) - attributes.data()].injective;
|
|
|
|
}
|
|
|
|
|
2015-02-27 11:57:14 +00:00
|
|
|
bool hasHierarchy() const override { return hierarchical_attribute; }
|
2015-02-10 14:50:43 +00:00
|
|
|
|
2015-02-27 11:57:14 +00:00
|
|
|
void toParent(const PODArray<id_t> & ids, PODArray<id_t> & out) const override
|
|
|
|
{
|
2015-11-20 15:53:23 +00:00
|
|
|
const auto null_value = std::get<UInt64>(hierarchical_attribute->null_values);
|
|
|
|
|
|
|
|
getItems<UInt64>(*hierarchical_attribute, ids, out, [&] (const std::size_t) { return null_value; });
|
2015-02-27 11:57:14 +00:00
|
|
|
}
|
2015-02-10 14:50:43 +00:00
|
|
|
|
2015-11-20 15:53:23 +00:00
|
|
|
#define DECLARE(TYPE)\
|
|
|
|
void get##TYPE(const std::string & attribute_name, const PODArray<id_t> & ids, PODArray<TYPE> & out) const\
|
2015-02-10 14:50:43 +00:00
|
|
|
{\
|
2015-02-27 11:57:14 +00:00
|
|
|
auto & attribute = getAttribute(attribute_name);\
|
2015-03-20 15:21:29 +00:00
|
|
|
if (attribute.type != AttributeUnderlyingType::TYPE)\
|
2015-02-19 14:51:39 +00:00
|
|
|
throw Exception{\
|
2015-08-19 13:06:21 +00:00
|
|
|
name + ": type mismatch: attribute " + attribute_name + " has type " + toString(attribute.type),\
|
2015-02-19 14:51:39 +00:00
|
|
|
ErrorCodes::TYPE_MISMATCH\
|
|
|
|
};\
|
|
|
|
\
|
2015-11-20 15:53:23 +00:00
|
|
|
const auto null_value = std::get<TYPE>(attribute.null_values);\
|
|
|
|
\
|
|
|
|
getItems<TYPE>(attribute, ids, out, [&] (const std::size_t) { return null_value; });\
|
2015-02-10 14:50:43 +00:00
|
|
|
}
|
2015-11-20 15:53:23 +00:00
|
|
|
DECLARE(UInt8)
|
|
|
|
DECLARE(UInt16)
|
|
|
|
DECLARE(UInt32)
|
|
|
|
DECLARE(UInt64)
|
|
|
|
DECLARE(Int8)
|
|
|
|
DECLARE(Int16)
|
|
|
|
DECLARE(Int32)
|
|
|
|
DECLARE(Int64)
|
|
|
|
DECLARE(Float32)
|
|
|
|
DECLARE(Float64)
|
|
|
|
#undef DECLARE
|
|
|
|
void getString(const std::string & attribute_name, const PODArray<id_t> & ids, ColumnString * out) const
|
2015-02-19 14:51:39 +00:00
|
|
|
{
|
2015-02-27 11:57:14 +00:00
|
|
|
auto & attribute = getAttribute(attribute_name);
|
2015-03-20 15:21:29 +00:00
|
|
|
if (attribute.type != AttributeUnderlyingType::String)
|
2015-02-19 14:51:39 +00:00
|
|
|
throw Exception{
|
2015-08-19 13:06:21 +00:00
|
|
|
name + ": type mismatch: attribute " + attribute_name + " has type " + toString(attribute.type),
|
2015-02-19 14:51:39 +00:00
|
|
|
ErrorCodes::TYPE_MISMATCH
|
|
|
|
};
|
|
|
|
|
2015-11-20 15:53:23 +00:00
|
|
|
const auto null_value = StringRef{std::get<String>(attribute.null_values)};
|
|
|
|
|
|
|
|
getItems(attribute, ids, out, [&] (const std::size_t) { return null_value; });
|
2015-02-10 14:50:43 +00:00
|
|
|
}
|
|
|
|
|
2015-11-20 15:53:23 +00:00
|
|
|
#define DECLARE(TYPE)\
|
2015-11-06 14:49:54 +00:00
|
|
|
void get##TYPE(\
|
|
|
|
const std::string & attribute_name, const PODArray<id_t> & ids, const PODArray<TYPE> & def,\
|
2015-11-20 15:53:23 +00:00
|
|
|
PODArray<TYPE> & out) const\
|
2015-11-06 14:49:54 +00:00
|
|
|
{\
|
|
|
|
auto & attribute = getAttribute(attribute_name);\
|
|
|
|
if (attribute.type != AttributeUnderlyingType::TYPE)\
|
|
|
|
throw Exception{\
|
|
|
|
name + ": type mismatch: attribute " + attribute_name + " has type " + toString(attribute.type),\
|
|
|
|
ErrorCodes::TYPE_MISMATCH\
|
|
|
|
};\
|
|
|
|
\
|
2015-11-20 15:53:23 +00:00
|
|
|
getItems<TYPE>(attribute, ids, out, [&] (const std::size_t row) { return def[row]; });\
|
2015-11-06 14:49:54 +00:00
|
|
|
}
|
2015-11-20 15:53:23 +00:00
|
|
|
DECLARE(UInt8)
|
|
|
|
DECLARE(UInt16)
|
|
|
|
DECLARE(UInt32)
|
|
|
|
DECLARE(UInt64)
|
|
|
|
DECLARE(Int8)
|
|
|
|
DECLARE(Int16)
|
|
|
|
DECLARE(Int32)
|
|
|
|
DECLARE(Int64)
|
|
|
|
DECLARE(Float32)
|
|
|
|
DECLARE(Float64)
|
|
|
|
#undef DECLARE
|
2015-11-06 14:49:54 +00:00
|
|
|
void getString(
|
|
|
|
const std::string & attribute_name, const PODArray<id_t> & ids, const ColumnString * const def,
|
2015-11-20 15:53:23 +00:00
|
|
|
ColumnString * const out) const
|
2015-11-06 14:49:54 +00:00
|
|
|
{
|
|
|
|
auto & attribute = getAttribute(attribute_name);
|
|
|
|
if (attribute.type != AttributeUnderlyingType::String)
|
|
|
|
throw Exception{
|
|
|
|
name + ": type mismatch: attribute " + attribute_name + " has type " + toString(attribute.type),
|
|
|
|
ErrorCodes::TYPE_MISMATCH
|
|
|
|
};
|
|
|
|
|
2015-11-20 15:53:23 +00:00
|
|
|
getItems(attribute, ids, out, [&] (const std::size_t row) { return def->getDataAt(row); });
|
|
|
|
}
|
|
|
|
|
|
|
|
#define DECLARE(TYPE)\
|
|
|
|
void get##TYPE(\
|
|
|
|
const std::string & attribute_name, const PODArray<id_t> & ids, const TYPE def, PODArray<TYPE> & out) const\
|
|
|
|
{\
|
|
|
|
auto & attribute = getAttribute(attribute_name);\
|
|
|
|
if (attribute.type != AttributeUnderlyingType::TYPE)\
|
|
|
|
throw Exception{\
|
|
|
|
name + ": type mismatch: attribute " + attribute_name + " has type " + toString(attribute.type),\
|
|
|
|
ErrorCodes::TYPE_MISMATCH\
|
|
|
|
};\
|
|
|
|
\
|
|
|
|
getItems<TYPE>(attribute, ids, out, [&] (const std::size_t) { return def; });\
|
|
|
|
}
|
|
|
|
DECLARE(UInt8)
|
|
|
|
DECLARE(UInt16)
|
|
|
|
DECLARE(UInt32)
|
|
|
|
DECLARE(UInt64)
|
|
|
|
DECLARE(Int8)
|
|
|
|
DECLARE(Int16)
|
|
|
|
DECLARE(Int32)
|
|
|
|
DECLARE(Int64)
|
|
|
|
DECLARE(Float32)
|
|
|
|
DECLARE(Float64)
|
|
|
|
#undef DECLARE
|
|
|
|
void getString(
|
|
|
|
const std::string & attribute_name, const PODArray<id_t> & ids, const String & def,
|
|
|
|
ColumnString * const out) const
|
|
|
|
{
|
|
|
|
auto & attribute = getAttribute(attribute_name);
|
|
|
|
if (attribute.type != AttributeUnderlyingType::String)
|
|
|
|
throw Exception{
|
|
|
|
name + ": type mismatch: attribute " + attribute_name + " has type " + toString(attribute.type),
|
|
|
|
ErrorCodes::TYPE_MISMATCH
|
|
|
|
};
|
|
|
|
|
|
|
|
getItems(attribute, ids, out, [&] (const std::size_t) { return StringRef{def}; });
|
2015-11-06 14:49:54 +00:00
|
|
|
}
|
|
|
|
|
2015-11-19 13:15:02 +00:00
|
|
|
void has(const PODArray<id_t> & ids, PODArray<UInt8> & out) const override
|
|
|
|
{
|
|
|
|
/// Mapping: <id> -> { all indices `i` of `ids` such that `ids[i]` = <id> }
|
|
|
|
MapType<std::vector<std::size_t>> outdated_ids;
|
|
|
|
|
|
|
|
const auto rows = ext::size(ids);
|
|
|
|
{
|
|
|
|
const Poco::ScopedReadRWLock read_lock{rw_lock};
|
|
|
|
|
|
|
|
const auto now = std::chrono::system_clock::now();
|
|
|
|
/// fetch up-to-date values, decide which ones require update
|
2015-11-20 15:53:23 +00:00
|
|
|
for (const auto row : ext::range(0, rows))
|
2015-11-19 13:15:02 +00:00
|
|
|
{
|
2015-11-20 15:53:23 +00:00
|
|
|
const auto id = ids[row];
|
2015-11-19 13:15:02 +00:00
|
|
|
const auto cell_idx = getCellIdx(id);
|
|
|
|
const auto & cell = cells[cell_idx];
|
|
|
|
|
|
|
|
/** cell should be updated if either:
|
|
|
|
* 1. ids do not match,
|
|
|
|
* 2. cell has expired,
|
|
|
|
* 3. explicit defaults were specified and cell was set default. */
|
|
|
|
if (cell.id != id || cell.expiresAt() < now)
|
2015-11-20 15:53:23 +00:00
|
|
|
outdated_ids[id].push_back(row);
|
2015-11-19 13:15:02 +00:00
|
|
|
else
|
2015-11-20 15:53:23 +00:00
|
|
|
out[row] = !cell.isDefault();
|
2015-11-19 13:15:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
query_count.fetch_add(rows, std::memory_order_relaxed);
|
|
|
|
hit_count.fetch_add(rows - outdated_ids.size(), std::memory_order_release);
|
|
|
|
|
|
|
|
if (outdated_ids.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
std::vector<id_t> required_ids(outdated_ids.size());
|
|
|
|
std::transform(std::begin(outdated_ids), std::end(outdated_ids), std::begin(required_ids),
|
|
|
|
[] (auto & pair) { return pair.first; });
|
|
|
|
|
|
|
|
/// request new values
|
|
|
|
update(required_ids, [&] (const auto id, const auto) {
|
2015-11-20 15:53:23 +00:00
|
|
|
for (const auto row : outdated_ids[id])
|
|
|
|
out[row] = true;
|
2015-11-19 13:15:02 +00:00
|
|
|
}, [&] (const auto id, const auto) {
|
2015-11-20 15:53:23 +00:00
|
|
|
for (const auto row : outdated_ids[id])
|
|
|
|
out[row] = false;
|
2015-11-19 13:15:02 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-02-10 14:50:43 +00:00
|
|
|
private:
|
2015-11-19 13:15:02 +00:00
|
|
|
template <typename Value> using MapType = HashMap<id_t, Value>;
|
|
|
|
template <typename Value> using ContainerType = Value[];
|
|
|
|
template <typename Value> using ContainerPtrType = std::unique_ptr<ContainerType<Value>>;
|
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
struct cell_metadata_t final
|
|
|
|
{
|
2015-11-06 14:49:54 +00:00
|
|
|
using time_point_t = std::chrono::system_clock::time_point;
|
|
|
|
using time_point_rep_t = time_point_t::rep;
|
|
|
|
using time_point_urep_t = std::make_unsigned_t<time_point_rep_t>;
|
|
|
|
|
|
|
|
static constexpr std::uint64_t EXPIRES_AT_MASK = std::numeric_limits<time_point_rep_t>::max();
|
|
|
|
static constexpr std::uint64_t IS_DEFAULT_MASK = ~EXPIRES_AT_MASK;
|
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
std::uint64_t id;
|
2015-11-06 14:49:54 +00:00
|
|
|
/// Stores both expiration time and `is_default` flag in the most significant bit
|
|
|
|
time_point_urep_t data;
|
|
|
|
|
|
|
|
/// Sets expiration time, resets `is_default` flag to false
|
|
|
|
time_point_t expiresAt() const { return ext::safe_bit_cast<time_point_t>(data & EXPIRES_AT_MASK); }
|
|
|
|
void setExpiresAt(const time_point_t & t) { data = ext::safe_bit_cast<time_point_urep_t>(t); }
|
|
|
|
|
|
|
|
bool isDefault() const { return (data & IS_DEFAULT_MASK) == IS_DEFAULT_MASK; }
|
|
|
|
void setDefault() { data |= IS_DEFAULT_MASK; }
|
2015-02-26 14:53:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct attribute_t final
|
2015-02-19 14:51:39 +00:00
|
|
|
{
|
2015-03-20 15:21:29 +00:00
|
|
|
AttributeUnderlyingType type;
|
2015-11-19 13:15:02 +00:00
|
|
|
std::tuple<
|
|
|
|
UInt8, UInt16, UInt32, UInt64,
|
2015-02-26 14:53:33 +00:00
|
|
|
Int8, Int16, Int32, Int64,
|
|
|
|
Float32, Float64,
|
|
|
|
String> null_values;
|
2015-11-19 13:15:02 +00:00
|
|
|
std::tuple<
|
|
|
|
ContainerPtrType<UInt8>, ContainerPtrType<UInt16>, ContainerPtrType<UInt32>, ContainerPtrType<UInt64>,
|
|
|
|
ContainerPtrType<Int8>, ContainerPtrType<Int16>, ContainerPtrType<Int32>, ContainerPtrType<Int64>,
|
|
|
|
ContainerPtrType<Float32>, ContainerPtrType<Float64>,
|
|
|
|
ContainerPtrType<StringRef>> arrays;
|
2015-02-19 14:51:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void createAttributes()
|
|
|
|
{
|
|
|
|
const auto size = dict_struct.attributes.size();
|
|
|
|
attributes.reserve(size);
|
|
|
|
|
2015-03-24 17:02:56 +00:00
|
|
|
bytes_allocated += size * sizeof(cell_metadata_t);
|
2015-03-24 12:12:48 +00:00
|
|
|
bytes_allocated += size * sizeof(attributes.front());
|
|
|
|
|
2015-02-19 14:51:39 +00:00
|
|
|
for (const auto & attribute : dict_struct.attributes)
|
|
|
|
{
|
|
|
|
attribute_index_by_name.emplace(attribute.name, attributes.size());
|
2015-03-20 15:21:29 +00:00
|
|
|
attributes.push_back(createAttributeWithType(attribute.underlying_type, attribute.null_value));
|
2015-02-19 14:51:39 +00:00
|
|
|
|
|
|
|
if (attribute.hierarchical)
|
2015-02-27 11:57:14 +00:00
|
|
|
{
|
2015-02-19 14:51:39 +00:00
|
|
|
hierarchical_attribute = &attributes.back();
|
2015-02-27 11:57:14 +00:00
|
|
|
|
2015-03-20 15:21:29 +00:00
|
|
|
if (hierarchical_attribute->type != AttributeUnderlyingType::UInt64)
|
2015-02-27 11:57:14 +00:00
|
|
|
throw Exception{
|
2015-08-19 13:06:21 +00:00
|
|
|
name + ": hierarchical attribute must be UInt64.",
|
2015-02-27 11:57:14 +00:00
|
|
|
ErrorCodes::TYPE_MISMATCH
|
|
|
|
};
|
|
|
|
}
|
2015-02-19 14:51:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-20 15:21:29 +00:00
|
|
|
attribute_t createAttributeWithType(const AttributeUnderlyingType type, const Field & null_value)
|
2015-02-19 14:51:39 +00:00
|
|
|
{
|
|
|
|
attribute_t attr{type};
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
2015-03-20 15:21:29 +00:00
|
|
|
case AttributeUnderlyingType::UInt8:
|
|
|
|
std::get<UInt8>(attr.null_values) = null_value.get<UInt64>();
|
2015-11-19 13:15:02 +00:00
|
|
|
std::get<ContainerPtrType<UInt8>>(attr.arrays) = std::make_unique<ContainerType<UInt8>>(size);
|
2015-03-24 12:12:48 +00:00
|
|
|
bytes_allocated += size * sizeof(UInt8);
|
2015-02-19 14:51:39 +00:00
|
|
|
break;
|
2015-03-20 15:21:29 +00:00
|
|
|
case AttributeUnderlyingType::UInt16:
|
|
|
|
std::get<UInt16>(attr.null_values) = null_value.get<UInt64>();
|
2015-11-19 13:15:02 +00:00
|
|
|
std::get<ContainerPtrType<UInt16>>(attr.arrays) = std::make_unique<ContainerType<UInt16>>(size);
|
2015-03-24 12:12:48 +00:00
|
|
|
bytes_allocated += size * sizeof(UInt16);
|
2015-02-19 14:51:39 +00:00
|
|
|
break;
|
2015-03-20 15:21:29 +00:00
|
|
|
case AttributeUnderlyingType::UInt32:
|
|
|
|
std::get<UInt32>(attr.null_values) = null_value.get<UInt64>();
|
2015-11-19 13:15:02 +00:00
|
|
|
std::get<ContainerPtrType<UInt32>>(attr.arrays) = std::make_unique<ContainerType<UInt32>>(size);
|
2015-03-24 12:12:48 +00:00
|
|
|
bytes_allocated += size * sizeof(UInt32);
|
2015-02-19 14:51:39 +00:00
|
|
|
break;
|
2015-03-20 15:21:29 +00:00
|
|
|
case AttributeUnderlyingType::UInt64:
|
|
|
|
std::get<UInt64>(attr.null_values) = null_value.get<UInt64>();
|
2015-11-19 13:15:02 +00:00
|
|
|
std::get<ContainerPtrType<UInt64>>(attr.arrays) = std::make_unique<ContainerType<UInt64>>(size);
|
2015-03-24 12:12:48 +00:00
|
|
|
bytes_allocated += size * sizeof(UInt64);
|
2015-02-19 14:51:39 +00:00
|
|
|
break;
|
2015-03-20 15:21:29 +00:00
|
|
|
case AttributeUnderlyingType::Int8:
|
|
|
|
std::get<Int8>(attr.null_values) = null_value.get<Int64>();
|
2015-11-19 13:15:02 +00:00
|
|
|
std::get<ContainerPtrType<Int8>>(attr.arrays) = std::make_unique<ContainerType<Int8>>(size);
|
2015-03-24 12:12:48 +00:00
|
|
|
bytes_allocated += size * sizeof(Int8);
|
2015-02-19 14:51:39 +00:00
|
|
|
break;
|
2015-03-20 15:21:29 +00:00
|
|
|
case AttributeUnderlyingType::Int16:
|
|
|
|
std::get<Int16>(attr.null_values) = null_value.get<Int64>();
|
2015-11-19 13:15:02 +00:00
|
|
|
std::get<ContainerPtrType<Int16>>(attr.arrays) = std::make_unique<ContainerType<Int16>>(size);
|
2015-03-24 12:12:48 +00:00
|
|
|
bytes_allocated += size * sizeof(Int16);
|
2015-02-19 14:51:39 +00:00
|
|
|
break;
|
2015-03-20 15:21:29 +00:00
|
|
|
case AttributeUnderlyingType::Int32:
|
|
|
|
std::get<Int32>(attr.null_values) = null_value.get<Int64>();
|
2015-11-19 13:15:02 +00:00
|
|
|
std::get<ContainerPtrType<Int32>>(attr.arrays) = std::make_unique<ContainerType<Int32>>(size);
|
2015-03-24 12:12:48 +00:00
|
|
|
bytes_allocated += size * sizeof(Int32);
|
2015-02-19 14:51:39 +00:00
|
|
|
break;
|
2015-03-20 15:21:29 +00:00
|
|
|
case AttributeUnderlyingType::Int64:
|
|
|
|
std::get<Int64>(attr.null_values) = null_value.get<Int64>();
|
2015-11-19 13:15:02 +00:00
|
|
|
std::get<ContainerPtrType<Int64>>(attr.arrays) = std::make_unique<ContainerType<Int64>>(size);
|
2015-03-24 12:12:48 +00:00
|
|
|
bytes_allocated += size * sizeof(Int64);
|
2015-02-19 14:51:39 +00:00
|
|
|
break;
|
2015-03-20 15:21:29 +00:00
|
|
|
case AttributeUnderlyingType::Float32:
|
|
|
|
std::get<Float32>(attr.null_values) = null_value.get<Float64>();
|
2015-11-19 13:15:02 +00:00
|
|
|
std::get<ContainerPtrType<Float32>>(attr.arrays) = std::make_unique<ContainerType<Float32>>(size);
|
2015-03-24 12:12:48 +00:00
|
|
|
bytes_allocated += size * sizeof(Float32);
|
2015-02-19 14:51:39 +00:00
|
|
|
break;
|
2015-03-20 15:21:29 +00:00
|
|
|
case AttributeUnderlyingType::Float64:
|
|
|
|
std::get<Float64>(attr.null_values) = null_value.get<Float64>();
|
2015-11-19 13:15:02 +00:00
|
|
|
std::get<ContainerPtrType<Float64>>(attr.arrays) = std::make_unique<ContainerType<Float64>>(size);
|
2015-03-24 12:12:48 +00:00
|
|
|
bytes_allocated += size * sizeof(Float64);
|
2015-02-19 14:51:39 +00:00
|
|
|
break;
|
2015-03-20 15:21:29 +00:00
|
|
|
case AttributeUnderlyingType::String:
|
|
|
|
std::get<String>(attr.null_values) = null_value.get<String>();
|
2015-11-19 13:15:02 +00:00
|
|
|
std::get<ContainerPtrType<StringRef>>(attr.arrays) = std::make_unique<ContainerType<StringRef>>(size);
|
2015-03-24 12:12:48 +00:00
|
|
|
bytes_allocated += size * sizeof(StringRef);
|
2015-11-24 12:47:51 +00:00
|
|
|
if (!string_arena)
|
|
|
|
string_arena = std::make_unique<ArenaWithFreeLists>();
|
2015-02-19 14:51:39 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return attr;
|
|
|
|
}
|
2015-02-10 14:50:43 +00:00
|
|
|
|
2015-11-20 15:53:23 +00:00
|
|
|
template <typename T, typename DefaultGetter>
|
2015-11-06 14:49:54 +00:00
|
|
|
void getItems(
|
2015-11-20 15:53:23 +00:00
|
|
|
attribute_t & attribute, const PODArray<id_t> & ids, PODArray<T> & out, DefaultGetter && get_default) const
|
2015-02-10 14:50:43 +00:00
|
|
|
{
|
2015-11-06 14:49:54 +00:00
|
|
|
/// Mapping: <id> -> { all indices `i` of `ids` such that `ids[i]` = <id> }
|
2015-11-19 13:15:02 +00:00
|
|
|
MapType<std::vector<std::size_t>> outdated_ids;
|
|
|
|
auto & attribute_array = std::get<ContainerPtrType<T>>(attribute.arrays);
|
|
|
|
const auto rows = ext::size(ids);
|
2015-02-19 14:51:39 +00:00
|
|
|
|
|
|
|
{
|
2015-02-26 14:53:33 +00:00
|
|
|
const Poco::ScopedReadRWLock read_lock{rw_lock};
|
2015-02-27 11:57:14 +00:00
|
|
|
|
2015-02-27 13:08:00 +00:00
|
|
|
const auto now = std::chrono::system_clock::now();
|
2015-02-26 14:53:33 +00:00
|
|
|
/// fetch up-to-date values, decide which ones require update
|
2015-11-20 15:53:23 +00:00
|
|
|
for (const auto row : ext::range(0, rows))
|
2015-02-26 14:53:33 +00:00
|
|
|
{
|
2015-11-20 15:53:23 +00:00
|
|
|
const auto id = ids[row];
|
2015-02-26 14:53:33 +00:00
|
|
|
const auto cell_idx = getCellIdx(id);
|
|
|
|
const auto & cell = cells[cell_idx];
|
2015-02-19 14:51:39 +00:00
|
|
|
|
2015-11-06 14:49:54 +00:00
|
|
|
/** cell should be updated if either:
|
|
|
|
* 1. ids do not match,
|
|
|
|
* 2. cell has expired,
|
|
|
|
* 3. explicit defaults were specified and cell was set default. */
|
2015-11-19 13:15:02 +00:00
|
|
|
if (cell.id != id || cell.expiresAt() < now)
|
2015-11-20 15:53:23 +00:00
|
|
|
outdated_ids[id].push_back(row);
|
2015-02-26 14:53:33 +00:00
|
|
|
else
|
2015-11-20 15:53:23 +00:00
|
|
|
out[row] = cell.isDefault() ? get_default(row) : attribute_array[cell_idx];
|
2015-02-26 14:53:33 +00:00
|
|
|
}
|
2015-02-19 14:51:39 +00:00
|
|
|
}
|
|
|
|
|
2015-11-19 13:15:02 +00:00
|
|
|
query_count.fetch_add(rows, std::memory_order_relaxed);
|
|
|
|
hit_count.fetch_add(rows - outdated_ids.size(), std::memory_order_release);
|
2015-03-24 17:02:56 +00:00
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
if (outdated_ids.empty())
|
|
|
|
return;
|
2015-02-10 14:50:43 +00:00
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
std::vector<id_t> required_ids(outdated_ids.size());
|
|
|
|
std::transform(std::begin(outdated_ids), std::end(outdated_ids), std::begin(required_ids),
|
|
|
|
[] (auto & pair) { return pair.first; });
|
|
|
|
|
2015-11-19 13:15:02 +00:00
|
|
|
/// request new values
|
2015-02-26 14:53:33 +00:00
|
|
|
update(required_ids, [&] (const auto id, const auto cell_idx) {
|
|
|
|
const auto attribute_value = attribute_array[cell_idx];
|
|
|
|
|
2015-11-20 15:53:23 +00:00
|
|
|
for (const auto row : outdated_ids[id])
|
|
|
|
out[row] = attribute_value;
|
2015-11-06 14:49:54 +00:00
|
|
|
}, [&] (const auto id, const auto cell_idx) {
|
2015-11-20 15:53:23 +00:00
|
|
|
for (const auto row : outdated_ids[id])
|
|
|
|
out[row] = get_default(row);
|
2015-02-26 14:53:33 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-11-20 15:53:23 +00:00
|
|
|
template <typename DefaultGetter>
|
2015-11-06 14:49:54 +00:00
|
|
|
void getItems(
|
2015-11-20 15:53:23 +00:00
|
|
|
attribute_t & attribute, const PODArray<id_t> & ids, ColumnString * out, DefaultGetter && get_default) const
|
2015-02-19 14:51:39 +00:00
|
|
|
{
|
2015-11-19 13:15:02 +00:00
|
|
|
const auto rows = ext::size(ids);
|
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
/// save on some allocations
|
2015-11-19 13:15:02 +00:00
|
|
|
out->getOffsets().reserve(rows);
|
2015-02-26 14:53:33 +00:00
|
|
|
|
2015-11-19 13:15:02 +00:00
|
|
|
auto & attribute_array = std::get<ContainerPtrType<StringRef>>(attribute.arrays);
|
2015-02-26 14:53:33 +00:00
|
|
|
|
|
|
|
auto found_outdated_values = false;
|
|
|
|
|
|
|
|
/// perform optimistic version, fallback to pessimistic if failed
|
|
|
|
{
|
|
|
|
const Poco::ScopedReadRWLock read_lock{rw_lock};
|
|
|
|
|
2015-02-27 13:08:00 +00:00
|
|
|
const auto now = std::chrono::system_clock::now();
|
2015-02-26 14:53:33 +00:00
|
|
|
/// fetch up-to-date values, discard on fail
|
2015-11-20 15:53:23 +00:00
|
|
|
for (const auto row : ext::range(0, rows))
|
2015-02-26 14:53:33 +00:00
|
|
|
{
|
2015-11-20 15:53:23 +00:00
|
|
|
const auto id = ids[row];
|
2015-02-26 14:53:33 +00:00
|
|
|
const auto cell_idx = getCellIdx(id);
|
|
|
|
const auto & cell = cells[cell_idx];
|
|
|
|
|
2015-11-19 13:15:02 +00:00
|
|
|
if (cell.id != id || cell.expiresAt() < now)
|
2015-02-26 14:53:33 +00:00
|
|
|
{
|
|
|
|
found_outdated_values = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-11-20 15:53:23 +00:00
|
|
|
const auto string_ref = cell.isDefault() ? get_default(row) : attribute_array[cell_idx];
|
2015-02-26 14:53:33 +00:00
|
|
|
out->insertData(string_ref.data, string_ref.size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// optimistic code completed successfully
|
|
|
|
if (!found_outdated_values)
|
2015-03-24 17:02:56 +00:00
|
|
|
{
|
2015-11-19 13:15:02 +00:00
|
|
|
query_count.fetch_add(rows, std::memory_order_relaxed);
|
|
|
|
hit_count.fetch_add(rows, std::memory_order_release);
|
2015-02-26 14:53:33 +00:00
|
|
|
return;
|
2015-03-24 17:02:56 +00:00
|
|
|
}
|
2015-02-26 14:53:33 +00:00
|
|
|
|
2015-11-06 14:49:54 +00:00
|
|
|
/// now onto the pessimistic one, discard possible partial results from the optimistic path
|
2015-02-26 14:53:33 +00:00
|
|
|
out->getChars().resize_assume_reserved(0);
|
|
|
|
out->getOffsets().resize_assume_reserved(0);
|
|
|
|
|
2015-11-06 14:49:54 +00:00
|
|
|
/// Mapping: <id> -> { all indices `i` of `ids` such that `ids[i]` = <id> }
|
2015-11-19 13:15:02 +00:00
|
|
|
MapType<std::vector<std::size_t>> outdated_ids;
|
2015-02-26 14:53:33 +00:00
|
|
|
/// we are going to store every string separately
|
2015-11-19 13:15:02 +00:00
|
|
|
MapType<String> map;
|
2015-02-26 14:53:33 +00:00
|
|
|
|
|
|
|
std::size_t total_length = 0;
|
|
|
|
{
|
|
|
|
const Poco::ScopedReadRWLock read_lock{rw_lock};
|
|
|
|
|
2015-02-27 13:08:00 +00:00
|
|
|
const auto now = std::chrono::system_clock::now();
|
2015-11-20 15:53:23 +00:00
|
|
|
for (const auto row : ext::range(0, ids.size()))
|
2015-02-26 14:53:33 +00:00
|
|
|
{
|
2015-11-20 15:53:23 +00:00
|
|
|
const auto id = ids[row];
|
2015-02-26 14:53:33 +00:00
|
|
|
const auto cell_idx = getCellIdx(id);
|
|
|
|
const auto & cell = cells[cell_idx];
|
|
|
|
|
2015-11-19 13:15:02 +00:00
|
|
|
if (cell.id != id || cell.expiresAt() < now)
|
2015-11-20 15:53:23 +00:00
|
|
|
outdated_ids[id].push_back(row);
|
2015-02-26 14:53:33 +00:00
|
|
|
else
|
|
|
|
{
|
2015-11-20 15:53:23 +00:00
|
|
|
const auto string_ref = cell.isDefault() ? get_default(row) : attribute_array[cell_idx];
|
2015-11-25 14:22:14 +00:00
|
|
|
|
|
|
|
if (!cell.isDefault())
|
|
|
|
map[id] = String{string_ref};
|
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
total_length += string_ref.size + 1;
|
2015-02-27 14:28:05 +00:00
|
|
|
}
|
2015-02-26 14:53:33 +00:00
|
|
|
}
|
|
|
|
}
|
2015-02-19 14:51:39 +00:00
|
|
|
|
2015-11-19 13:15:02 +00:00
|
|
|
query_count.fetch_add(rows, std::memory_order_relaxed);
|
|
|
|
hit_count.fetch_add(rows - outdated_ids.size(), std::memory_order_release);
|
2015-03-24 17:02:56 +00:00
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
/// request new values
|
|
|
|
if (!outdated_ids.empty())
|
|
|
|
{
|
|
|
|
std::vector<id_t> required_ids(outdated_ids.size());
|
|
|
|
std::transform(std::begin(outdated_ids), std::end(outdated_ids), std::begin(required_ids),
|
|
|
|
[] (auto & pair) { return pair.first; });
|
2015-02-19 14:51:39 +00:00
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
update(required_ids, [&] (const auto id, const auto cell_idx) {
|
|
|
|
const auto attribute_value = attribute_array[cell_idx];
|
2015-02-19 14:51:39 +00:00
|
|
|
|
2015-02-27 14:28:05 +00:00
|
|
|
map[id] = String{attribute_value};
|
2015-11-06 14:49:54 +00:00
|
|
|
total_length += (attribute_value.size + 1) * outdated_ids[id].size();
|
|
|
|
}, [&] (const auto id, const auto cell_idx) {
|
2015-11-20 15:53:23 +00:00
|
|
|
for (const auto row : outdated_ids[id])
|
|
|
|
total_length += get_default(row).size + 1;
|
2015-02-26 14:53:33 +00:00
|
|
|
});
|
|
|
|
}
|
2015-02-19 14:51:39 +00:00
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
out->getChars().reserve(total_length);
|
|
|
|
|
2015-11-20 15:53:23 +00:00
|
|
|
for (const auto row : ext::range(0, ext::size(ids)))
|
2015-02-26 14:53:33 +00:00
|
|
|
{
|
2015-11-20 15:53:23 +00:00
|
|
|
const auto id = ids[row];
|
2015-02-26 14:53:33 +00:00
|
|
|
const auto it = map.find(id);
|
2015-11-20 15:53:23 +00:00
|
|
|
|
|
|
|
const auto string_ref = it != std::end(map) ? StringRef{it->second} : get_default(row);
|
|
|
|
out->insertData(string_ref.data, string_ref.size);
|
2015-02-26 14:53:33 +00:00
|
|
|
}
|
2015-02-19 14:51:39 +00:00
|
|
|
}
|
|
|
|
|
2015-11-06 14:49:54 +00:00
|
|
|
template <typename PresentIdHandler, typename AbsentIdHandler>
|
|
|
|
void update(
|
|
|
|
const std::vector<id_t> & requested_ids, PresentIdHandler && on_cell_updated,
|
|
|
|
AbsentIdHandler && on_id_not_found) const
|
2015-02-19 14:51:39 +00:00
|
|
|
{
|
2015-11-06 14:49:54 +00:00
|
|
|
auto stream = source_ptr->loadIds(requested_ids);
|
2015-02-19 14:51:39 +00:00
|
|
|
stream->readPrefix();
|
|
|
|
|
2015-11-19 13:15:02 +00:00
|
|
|
MapType<UInt8> remaining_ids{requested_ids.size()};
|
2015-11-06 14:49:54 +00:00
|
|
|
for (const auto id : requested_ids)
|
2015-03-06 16:13:59 +00:00
|
|
|
remaining_ids.insert({ id, 0 });
|
|
|
|
|
|
|
|
std::uniform_int_distribution<std::uint64_t> distribution{
|
|
|
|
dict_lifetime.min_sec,
|
|
|
|
dict_lifetime.max_sec
|
|
|
|
};
|
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
const Poco::ScopedWriteRWLock write_lock{rw_lock};
|
2015-02-19 14:51:39 +00:00
|
|
|
|
|
|
|
while (const auto block = stream->read())
|
|
|
|
{
|
2015-02-26 14:53:33 +00:00
|
|
|
const auto id_column = typeid_cast<const ColumnVector<UInt64> *>(block.getByPosition(0).column.get());
|
|
|
|
if (!id_column)
|
2015-02-19 14:51:39 +00:00
|
|
|
throw Exception{
|
2015-08-19 13:06:21 +00:00
|
|
|
name + ": id column has type different from UInt64.",
|
2015-02-26 14:53:33 +00:00
|
|
|
ErrorCodes::TYPE_MISMATCH
|
2015-02-19 14:51:39 +00:00
|
|
|
};
|
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
const auto & ids = id_column->getData();
|
2015-02-19 14:51:39 +00:00
|
|
|
|
2015-02-27 11:57:14 +00:00
|
|
|
/// cache column pointers
|
2015-11-06 14:49:54 +00:00
|
|
|
const auto column_ptrs = ext::map<std::vector>(ext::range(0, attributes.size()), [&block] (const auto & i) {
|
|
|
|
return block.getByPosition(i + 1).column.get();
|
|
|
|
});
|
2015-02-27 11:57:14 +00:00
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
for (const auto i : ext::range(0, ids.size()))
|
2015-02-19 14:51:39 +00:00
|
|
|
{
|
2015-02-26 14:53:33 +00:00
|
|
|
const auto id = ids[i];
|
2015-03-06 16:13:59 +00:00
|
|
|
const auto cell_idx = getCellIdx(id);
|
2015-02-26 14:53:33 +00:00
|
|
|
auto & cell = cells[cell_idx];
|
2015-02-19 14:51:39 +00:00
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
for (const auto attribute_idx : ext::range(0, attributes.size()))
|
|
|
|
{
|
2015-02-27 11:57:14 +00:00
|
|
|
const auto & attribute_column = *column_ptrs[attribute_idx];
|
2015-02-26 14:53:33 +00:00
|
|
|
auto & attribute = attributes[attribute_idx];
|
|
|
|
|
|
|
|
setAttributeValue(attribute, cell_idx, attribute_column[i]);
|
|
|
|
}
|
2015-02-19 14:51:39 +00:00
|
|
|
|
2015-03-24 17:02:56 +00:00
|
|
|
/// if cell id is zero and zero does not map to this cell, then the cell is unused
|
|
|
|
if (cell.id == 0 && cell_idx != zero_cell_idx)
|
|
|
|
element_count.fetch_add(1, std::memory_order_relaxed);
|
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
cell.id = id;
|
2015-03-23 14:28:16 +00:00
|
|
|
if (dict_lifetime.min_sec != 0 && dict_lifetime.max_sec != 0)
|
2015-11-06 14:49:54 +00:00
|
|
|
cell.setExpiresAt(std::chrono::system_clock::now() + std::chrono::seconds{distribution(rnd_engine)});
|
2015-03-23 14:28:16 +00:00
|
|
|
else
|
2015-11-06 14:49:54 +00:00
|
|
|
cell.setExpiresAt(std::chrono::time_point<std::chrono::system_clock>::max());
|
2015-02-26 14:53:33 +00:00
|
|
|
|
2015-11-06 14:49:54 +00:00
|
|
|
/// inform caller
|
2015-02-26 14:53:33 +00:00
|
|
|
on_cell_updated(id, cell_idx);
|
2015-11-06 14:49:54 +00:00
|
|
|
/// mark corresponding id as found
|
2015-03-06 16:13:59 +00:00
|
|
|
remaining_ids[id] = 1;
|
2015-02-26 14:53:33 +00:00
|
|
|
}
|
2015-02-19 14:51:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stream->readSuffix();
|
2015-03-06 16:13:59 +00:00
|
|
|
|
2015-11-06 14:49:54 +00:00
|
|
|
/// Check which ids have not been found and require setting null_value
|
2015-03-06 16:13:59 +00:00
|
|
|
for (const auto id_found_pair : remaining_ids)
|
|
|
|
{
|
|
|
|
if (id_found_pair.second)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const auto id = id_found_pair.first;
|
|
|
|
const auto cell_idx = getCellIdx(id);
|
|
|
|
auto & cell = cells[cell_idx];
|
|
|
|
|
2015-11-06 14:49:54 +00:00
|
|
|
/// Set null_value for each attribute
|
2015-03-06 16:13:59 +00:00
|
|
|
for (auto & attribute : attributes)
|
|
|
|
setDefaultAttributeValue(attribute, cell_idx);
|
|
|
|
|
2015-11-06 14:49:54 +00:00
|
|
|
/// Check if cell had not been occupied before and increment element counter if it hadn't
|
2015-03-24 17:02:56 +00:00
|
|
|
if (cell.id == 0 && cell_idx != zero_cell_idx)
|
|
|
|
element_count.fetch_add(1, std::memory_order_relaxed);
|
|
|
|
|
2015-03-06 16:13:59 +00:00
|
|
|
cell.id = id;
|
2015-03-23 14:28:16 +00:00
|
|
|
if (dict_lifetime.min_sec != 0 && dict_lifetime.max_sec != 0)
|
2015-11-06 14:49:54 +00:00
|
|
|
cell.setExpiresAt(std::chrono::system_clock::now() + std::chrono::seconds{distribution(rnd_engine)});
|
2015-03-23 14:28:16 +00:00
|
|
|
else
|
2015-11-06 14:49:54 +00:00
|
|
|
cell.setExpiresAt(std::chrono::time_point<std::chrono::system_clock>::max());
|
|
|
|
|
|
|
|
cell.setDefault();
|
2015-03-06 16:13:59 +00:00
|
|
|
|
2015-11-06 14:49:54 +00:00
|
|
|
/// inform caller that the cell has not been found
|
|
|
|
on_id_not_found(id, cell_idx);
|
2015-03-06 16:13:59 +00:00
|
|
|
}
|
2015-02-26 14:53:33 +00:00
|
|
|
}
|
2015-02-19 14:51:39 +00:00
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
std::uint64_t getCellIdx(const id_t id) const
|
|
|
|
{
|
|
|
|
const auto hash = intHash64(id);
|
|
|
|
const auto idx = hash & (size - 1);
|
|
|
|
return idx;
|
2015-02-19 14:51:39 +00:00
|
|
|
}
|
|
|
|
|
2015-03-06 16:13:59 +00:00
|
|
|
void setDefaultAttributeValue(attribute_t & attribute, const id_t idx) const
|
|
|
|
{
|
|
|
|
switch (attribute.type)
|
|
|
|
{
|
2015-11-19 13:15:02 +00:00
|
|
|
case AttributeUnderlyingType::UInt8: std::get<ContainerPtrType<UInt8>>(attribute.arrays)[idx] = std::get<UInt8>(attribute.null_values); break;
|
|
|
|
case AttributeUnderlyingType::UInt16: std::get<ContainerPtrType<UInt16>>(attribute.arrays)[idx] = std::get<UInt16>(attribute.null_values); break;
|
|
|
|
case AttributeUnderlyingType::UInt32: std::get<ContainerPtrType<UInt32>>(attribute.arrays)[idx] = std::get<UInt32>(attribute.null_values); break;
|
|
|
|
case AttributeUnderlyingType::UInt64: std::get<ContainerPtrType<UInt64>>(attribute.arrays)[idx] = std::get<UInt64>(attribute.null_values); break;
|
|
|
|
case AttributeUnderlyingType::Int8: std::get<ContainerPtrType<Int8>>(attribute.arrays)[idx] = std::get<Int8>(attribute.null_values); break;
|
|
|
|
case AttributeUnderlyingType::Int16: std::get<ContainerPtrType<Int16>>(attribute.arrays)[idx] = std::get<Int16>(attribute.null_values); break;
|
|
|
|
case AttributeUnderlyingType::Int32: std::get<ContainerPtrType<Int32>>(attribute.arrays)[idx] = std::get<Int32>(attribute.null_values); break;
|
|
|
|
case AttributeUnderlyingType::Int64: std::get<ContainerPtrType<Int64>>(attribute.arrays)[idx] = std::get<Int64>(attribute.null_values); break;
|
|
|
|
case AttributeUnderlyingType::Float32: std::get<ContainerPtrType<Float32>>(attribute.arrays)[idx] = std::get<Float32>(attribute.null_values); break;
|
|
|
|
case AttributeUnderlyingType::Float64: std::get<ContainerPtrType<Float64>>(attribute.arrays)[idx] = std::get<Float64>(attribute.null_values); break;
|
2015-03-20 15:21:29 +00:00
|
|
|
case AttributeUnderlyingType::String:
|
2015-03-06 16:13:59 +00:00
|
|
|
{
|
|
|
|
const auto & null_value_ref = std::get<String>(attribute.null_values);
|
2015-11-19 13:15:02 +00:00
|
|
|
auto & string_ref = std::get<ContainerPtrType<StringRef>>(attribute.arrays)[idx];
|
2015-03-06 16:13:59 +00:00
|
|
|
|
2015-11-24 12:47:51 +00:00
|
|
|
if (string_ref.data != null_value_ref.data())
|
|
|
|
{
|
|
|
|
if (string_ref.data)
|
|
|
|
string_arena->free(string_ref.data, string_ref.size);
|
2015-03-06 16:13:59 +00:00
|
|
|
|
2015-11-24 12:47:51 +00:00
|
|
|
string_ref = StringRef{null_value_ref};
|
|
|
|
}
|
2015-03-06 16:13:59 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
void setAttributeValue(attribute_t & attribute, const id_t idx, const Field & value) const
|
2015-02-19 14:51:39 +00:00
|
|
|
{
|
|
|
|
switch (attribute.type)
|
|
|
|
{
|
2015-11-19 13:15:02 +00:00
|
|
|
case AttributeUnderlyingType::UInt8: std::get<ContainerPtrType<UInt8>>(attribute.arrays)[idx] = value.get<UInt64>(); break;
|
|
|
|
case AttributeUnderlyingType::UInt16: std::get<ContainerPtrType<UInt16>>(attribute.arrays)[idx] = value.get<UInt64>(); break;
|
|
|
|
case AttributeUnderlyingType::UInt32: std::get<ContainerPtrType<UInt32>>(attribute.arrays)[idx] = value.get<UInt64>(); break;
|
|
|
|
case AttributeUnderlyingType::UInt64: std::get<ContainerPtrType<UInt64>>(attribute.arrays)[idx] = value.get<UInt64>(); break;
|
|
|
|
case AttributeUnderlyingType::Int8: std::get<ContainerPtrType<Int8>>(attribute.arrays)[idx] = value.get<Int64>(); break;
|
|
|
|
case AttributeUnderlyingType::Int16: std::get<ContainerPtrType<Int16>>(attribute.arrays)[idx] = value.get<Int64>(); break;
|
|
|
|
case AttributeUnderlyingType::Int32: std::get<ContainerPtrType<Int32>>(attribute.arrays)[idx] = value.get<Int64>(); break;
|
|
|
|
case AttributeUnderlyingType::Int64: std::get<ContainerPtrType<Int64>>(attribute.arrays)[idx] = value.get<Int64>(); break;
|
|
|
|
case AttributeUnderlyingType::Float32: std::get<ContainerPtrType<Float32>>(attribute.arrays)[idx] = value.get<Float64>(); break;
|
|
|
|
case AttributeUnderlyingType::Float64: std::get<ContainerPtrType<Float64>>(attribute.arrays)[idx] = value.get<Float64>(); break;
|
2015-03-20 15:21:29 +00:00
|
|
|
case AttributeUnderlyingType::String:
|
2015-02-19 14:51:39 +00:00
|
|
|
{
|
|
|
|
const auto & string = value.get<String>();
|
2015-11-19 13:15:02 +00:00
|
|
|
auto & string_ref = std::get<ContainerPtrType<StringRef>>(attribute.arrays)[idx];
|
2015-03-06 16:13:59 +00:00
|
|
|
const auto & null_value_ref = std::get<String>(attribute.null_values);
|
2015-11-24 12:47:51 +00:00
|
|
|
|
|
|
|
/// free memory unless it points to a null_value
|
|
|
|
if (string_ref.data && string_ref.data != null_value_ref.data())
|
|
|
|
string_arena->free(string_ref.data, string_ref.size);
|
2015-02-19 14:51:39 +00:00
|
|
|
|
|
|
|
const auto size = string.size();
|
2015-03-24 12:21:52 +00:00
|
|
|
if (size != 0)
|
2015-02-19 14:51:39 +00:00
|
|
|
{
|
2015-11-24 12:47:51 +00:00
|
|
|
auto string_ptr = string_arena->alloc(size + 1);
|
|
|
|
std::copy(string.data(), string.data() + size + 1, string_ptr);
|
|
|
|
string_ref = StringRef{string_ptr, size};
|
2015-02-19 14:51:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
string_ref = {};
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-27 11:57:14 +00:00
|
|
|
attribute_t & getAttribute(const std::string & attribute_name) const
|
2015-02-19 14:51:39 +00:00
|
|
|
{
|
|
|
|
const auto it = attribute_index_by_name.find(attribute_name);
|
|
|
|
if (it == std::end(attribute_index_by_name))
|
|
|
|
throw Exception{
|
2015-08-19 13:06:21 +00:00
|
|
|
name + ": no such attribute '" + attribute_name + "'",
|
2015-02-19 14:51:39 +00:00
|
|
|
ErrorCodes::BAD_ARGUMENTS
|
|
|
|
};
|
|
|
|
|
2015-02-27 11:57:14 +00:00
|
|
|
return attributes[it->second];
|
2015-02-19 14:51:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static std::size_t round_up_to_power_of_two(std::size_t n)
|
|
|
|
{
|
|
|
|
--n;
|
|
|
|
n |= n >> 1;
|
|
|
|
n |= n >> 2;
|
|
|
|
n |= n >> 4;
|
|
|
|
n |= n >> 8;
|
|
|
|
n |= n >> 16;
|
|
|
|
n |= n >> 32;
|
|
|
|
++n;
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::uint64_t getSeed()
|
|
|
|
{
|
|
|
|
timespec ts;
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &ts);
|
|
|
|
return ts.tv_nsec ^ getpid();
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string name;
|
|
|
|
const DictionaryStructure dict_struct;
|
|
|
|
const DictionarySourcePtr source_ptr;
|
|
|
|
const DictionaryLifetime dict_lifetime;
|
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
mutable Poco::RWLock rw_lock;
|
2015-02-19 14:51:39 +00:00
|
|
|
const std::size_t size;
|
2015-03-24 17:02:56 +00:00
|
|
|
const std::uint64_t zero_cell_idx{getCellIdx(0)};
|
2015-02-19 14:51:39 +00:00
|
|
|
std::map<std::string, std::size_t> attribute_index_by_name;
|
2015-02-26 14:53:33 +00:00
|
|
|
mutable std::vector<attribute_t> attributes;
|
|
|
|
mutable std::vector<cell_metadata_t> cells;
|
2015-02-27 11:57:14 +00:00
|
|
|
attribute_t * hierarchical_attribute = nullptr;
|
2015-11-24 12:47:51 +00:00
|
|
|
std::unique_ptr<ArenaWithFreeLists> string_arena;
|
2015-02-10 14:50:43 +00:00
|
|
|
|
2015-02-26 14:53:33 +00:00
|
|
|
mutable std::mt19937_64 rnd_engine{getSeed()};
|
2015-03-24 12:12:48 +00:00
|
|
|
|
2015-03-24 17:02:56 +00:00
|
|
|
mutable std::size_t bytes_allocated = 0;
|
2015-08-12 04:21:10 +00:00
|
|
|
mutable std::atomic<std::size_t> element_count{0};
|
|
|
|
mutable std::atomic<std::size_t> hit_count{0};
|
|
|
|
mutable std::atomic<std::size_t> query_count{0};
|
2015-03-24 17:02:56 +00:00
|
|
|
|
|
|
|
const std::chrono::time_point<std::chrono::system_clock> creation_time = std::chrono::system_clock::now();
|
2015-02-26 14:53:33 +00:00
|
|
|
};
|
2015-02-19 14:51:39 +00:00
|
|
|
|
2015-02-10 14:50:43 +00:00
|
|
|
}
|