2015-01-21 11:39:48 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <DB/Core/Field.h>
|
2015-02-03 17:03:35 +00:00
|
|
|
#include <DB/Core/StringRef.h>
|
2015-01-22 14:32:38 +00:00
|
|
|
#include <Poco/Util/XMLConfiguration.h>
|
2015-02-19 14:51:39 +00:00
|
|
|
#include <DB/Common/PODArray.h>
|
2015-03-24 17:02:56 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <chrono>
|
2015-01-21 11:39:48 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2015-01-29 15:47:21 +00:00
|
|
|
class IDictionarySource;
|
|
|
|
|
2016-03-07 04:31:10 +00:00
|
|
|
struct IDictionaryBase;
|
2015-07-13 17:10:16 +00:00
|
|
|
using DictionaryPtr = std::unique_ptr<IDictionaryBase>;
|
2015-01-30 13:43:16 +00:00
|
|
|
|
2016-03-07 04:31:10 +00:00
|
|
|
struct DictionaryLifetime;
|
|
|
|
struct DictionaryStructure;
|
2015-02-19 14:51:39 +00:00
|
|
|
class ColumnString;
|
2015-01-30 15:18:13 +00:00
|
|
|
|
2015-07-13 17:10:16 +00:00
|
|
|
struct IDictionaryBase
|
2015-01-21 11:39:48 +00:00
|
|
|
{
|
2016-10-26 22:27:38 +00:00
|
|
|
using Key = UInt64;
|
2015-01-21 11:39:48 +00:00
|
|
|
|
2015-06-09 16:12:51 +00:00
|
|
|
virtual std::exception_ptr getCreationException() const = 0;
|
|
|
|
|
2015-01-29 15:47:21 +00:00
|
|
|
virtual std::string getName() const = 0;
|
|
|
|
|
2015-01-29 14:46:15 +00:00
|
|
|
virtual std::string getTypeName() const = 0;
|
|
|
|
|
2015-03-24 11:30:16 +00:00
|
|
|
virtual std::size_t getBytesAllocated() const = 0;
|
|
|
|
|
2015-05-08 12:31:00 +00:00
|
|
|
virtual std::size_t getQueryCount() const = 0;
|
|
|
|
|
2015-03-24 17:02:56 +00:00
|
|
|
virtual double getHitRate() const = 0;
|
|
|
|
|
|
|
|
virtual std::size_t getElementCount() const = 0;
|
|
|
|
|
|
|
|
virtual double getLoadFactor() const = 0;
|
|
|
|
|
2015-01-29 15:47:21 +00:00
|
|
|
virtual bool isCached() const = 0;
|
2015-01-30 13:43:16 +00:00
|
|
|
virtual DictionaryPtr clone() const = 0;
|
2015-01-29 15:47:21 +00:00
|
|
|
|
2015-02-10 13:23:37 +00:00
|
|
|
virtual const IDictionarySource * getSource() const = 0;
|
2015-01-29 15:47:21 +00:00
|
|
|
|
2015-01-30 15:18:13 +00:00
|
|
|
virtual const DictionaryLifetime & getLifetime() const = 0;
|
|
|
|
|
2015-03-24 13:59:19 +00:00
|
|
|
virtual const DictionaryStructure & getStructure() const = 0;
|
|
|
|
|
2015-03-24 17:02:56 +00:00
|
|
|
virtual std::chrono::time_point<std::chrono::system_clock> getCreationTime() const = 0;
|
|
|
|
|
2015-05-13 16:11:07 +00:00
|
|
|
virtual bool isInjective(const std::string & attribute_name) const = 0;
|
|
|
|
|
2015-07-13 17:10:16 +00:00
|
|
|
virtual ~IDictionaryBase() = default;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct IDictionary : IDictionaryBase
|
|
|
|
{
|
2015-01-28 13:20:20 +00:00
|
|
|
virtual bool hasHierarchy() const = 0;
|
2015-01-21 11:39:48 +00:00
|
|
|
|
2016-08-07 09:09:18 +00:00
|
|
|
virtual void toParent(const PaddedPODArray<Key> & ids, PaddedPODArray<Key> & out) const = 0;
|
2015-11-20 15:53:23 +00:00
|
|
|
|
2016-08-07 09:09:18 +00:00
|
|
|
virtual void has(const PaddedPODArray<Key> & ids, PaddedPODArray<UInt8> & out) const = 0;
|
2015-11-20 15:53:23 +00:00
|
|
|
|
2015-01-28 13:20:20 +00:00
|
|
|
/// do not call unless you ensure that hasHierarchy() returns true
|
2016-08-07 09:09:18 +00:00
|
|
|
Key toParent(Key id) const
|
2015-07-10 14:43:49 +00:00
|
|
|
{
|
2016-04-15 00:33:21 +00:00
|
|
|
const PaddedPODArray<UInt64> ids(1, id);
|
|
|
|
PaddedPODArray<UInt64> out(1);
|
2015-07-10 14:43:49 +00:00
|
|
|
|
|
|
|
toParent(ids, out);
|
|
|
|
|
|
|
|
return out.front();
|
|
|
|
}
|
|
|
|
|
2016-08-07 09:09:18 +00:00
|
|
|
bool in(Key child_id, const Key ancestor_id) const
|
2015-01-28 13:20:20 +00:00
|
|
|
{
|
|
|
|
while (child_id != 0 && child_id != ancestor_id)
|
|
|
|
child_id = toParent(child_id);
|
|
|
|
|
|
|
|
return child_id != 0;
|
|
|
|
}
|
2015-01-21 11:39:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|