forked from ClickHouse/ClickHouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataTypeCustom.h
56 lines (45 loc) · 1.28 KB
/
DataTypeCustom.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#pragma once
#include <memory>
#include <cstddef>
#include <Core/Types.h>
#include <DataTypes/Serializations/ISerialization.h>
namespace DB
{
class ReadBuffer;
class WriteBuffer;
struct FormatSettings;
class IColumn;
/** Allow to customize an existing data type and set a different name and/or text serialization/deserialization methods.
* See use in IPv4 and IPv6 data types, and also in SimpleAggregateFunction.
*/
class IDataTypeCustomName
{
public:
virtual ~IDataTypeCustomName() = default;
virtual String getName() const = 0;
};
using DataTypeCustomNamePtr = std::unique_ptr<const IDataTypeCustomName>;
/** Describe a data type customization
*/
struct DataTypeCustomDesc
{
DataTypeCustomNamePtr name;
SerializationPtr serialization;
explicit DataTypeCustomDesc(
DataTypeCustomNamePtr name_,
SerializationPtr serialization_ = nullptr)
: name(std::move(name_))
, serialization(std::move(serialization_)) {}
};
using DataTypeCustomDescPtr = std::unique_ptr<DataTypeCustomDesc>;
/** A simple implementation of IDataTypeCustomName
*/
class DataTypeCustomFixedName : public IDataTypeCustomName
{
private:
String name;
public:
explicit DataTypeCustomFixedName(String name_) : name(name_) {}
String getName() const override { return name; }
};
}