2011-08-28 00:31:30 +00:00
|
|
|
|
#pragma once
|
2010-03-01 16:59:51 +00:00
|
|
|
|
|
|
|
|
|
#include <vector>
|
2014-01-08 16:33:28 +00:00
|
|
|
|
#include <type_traits>
|
|
|
|
|
#include <functional>
|
2010-03-01 16:59:51 +00:00
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
#include <boost/static_assert.hpp>
|
2010-03-01 16:59:51 +00:00
|
|
|
|
|
2015-10-05 01:35:28 +00:00
|
|
|
|
#include <DB/Common/Exception.h>
|
2011-10-10 10:05:39 +00:00
|
|
|
|
#include <DB/Core/ErrorCodes.h>
|
2015-10-12 07:05:54 +00:00
|
|
|
|
#include <DB/Core/Types.h>
|
2014-12-09 12:07:27 +00:00
|
|
|
|
|
2010-03-01 16:59:51 +00:00
|
|
|
|
|
2013-10-11 11:43:50 +00:00
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
|
2013-11-02 22:20:58 +00:00
|
|
|
|
class Field;
|
|
|
|
|
typedef std::vector<Field> Array; /// Значение типа "массив"
|
2013-10-11 11:43:50 +00:00
|
|
|
|
|
2010-03-01 16:59:51 +00:00
|
|
|
|
|
2011-09-19 01:42:16 +00:00
|
|
|
|
using Poco::SharedPtr;
|
|
|
|
|
|
2013-01-08 21:32:16 +00:00
|
|
|
|
/** 32 хватает с запасом (достаточно 28), но выбрано круглое число,
|
|
|
|
|
* чтобы арифметика при использовании массивов из Field была проще (не содержала умножения).
|
|
|
|
|
*/
|
|
|
|
|
#define DBMS_TOTAL_FIELD_SIZE 32
|
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
|
|
|
|
|
/** Discriminated union из нескольких типов.
|
|
|
|
|
* Сделан для замены boost::variant:
|
|
|
|
|
* является не обобщённым,
|
|
|
|
|
* зато несколько более эффективным, и более простым.
|
|
|
|
|
*
|
|
|
|
|
* Используется для представления единичного значения одного из нескольких типов в оперативке.
|
2010-03-01 16:59:51 +00:00
|
|
|
|
* Внимание! Предпочтительно вместо единичных значений хранить кусочки столбцов. См. Column.h
|
|
|
|
|
*/
|
2013-01-08 21:32:16 +00:00
|
|
|
|
class __attribute__((aligned(DBMS_TOTAL_FIELD_SIZE))) Field
|
2013-01-05 20:03:19 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
struct Types
|
|
|
|
|
{
|
|
|
|
|
/// Идентификатор типа.
|
|
|
|
|
enum Which
|
|
|
|
|
{
|
|
|
|
|
Null = 0,
|
|
|
|
|
UInt64 = 1,
|
|
|
|
|
Int64 = 2,
|
|
|
|
|
Float64 = 3,
|
2013-01-07 06:47:15 +00:00
|
|
|
|
|
2013-02-09 02:20:26 +00:00
|
|
|
|
/// не POD типы. Для них предполагается relocatable.
|
2013-01-07 06:47:15 +00:00
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
String = 16,
|
2013-02-03 23:11:21 +00:00
|
|
|
|
Array = 17,
|
2013-01-05 20:03:19 +00:00
|
|
|
|
};
|
|
|
|
|
|
2013-01-07 06:53:24 +00:00
|
|
|
|
static const int MIN_NON_POD = 16;
|
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
static const char * toString(Which which)
|
|
|
|
|
{
|
|
|
|
|
switch (which)
|
|
|
|
|
{
|
|
|
|
|
case Null: return "Null";
|
|
|
|
|
case UInt64: return "UInt64";
|
|
|
|
|
case Int64: return "Int64";
|
|
|
|
|
case Float64: return "Float64";
|
|
|
|
|
case String: return "String";
|
|
|
|
|
case Array: return "Array";
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
throw Exception("Bad type of Field", ErrorCodes::BAD_TYPE_OF_FIELD);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
2010-03-01 16:59:51 +00:00
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
/// Позволяет получить идентификатор для типа или наоборот.
|
|
|
|
|
template <typename T> struct TypeToEnum;
|
|
|
|
|
template <Types::Which which> struct EnumToType;
|
2010-03-01 16:59:51 +00:00
|
|
|
|
|
2012-08-26 06:48:39 +00:00
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
Field()
|
|
|
|
|
: which(Types::Null)
|
|
|
|
|
{
|
|
|
|
|
}
|
2010-03-01 16:59:51 +00:00
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
/** Не смотря на наличие шаблонного конструктора, этот конструктор всё-равно нужен,
|
2013-01-08 20:31:24 +00:00
|
|
|
|
* так как при его отсутствии, компилятор всё-равно сгенерирует конструктор по-умолчанию.
|
2013-01-05 20:03:19 +00:00
|
|
|
|
*/
|
|
|
|
|
Field(const Field & rhs)
|
|
|
|
|
{
|
|
|
|
|
create(rhs);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Field & operator= (const Field & rhs)
|
|
|
|
|
{
|
|
|
|
|
destroy();
|
|
|
|
|
create(rhs);
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
Field(const T & rhs)
|
|
|
|
|
{
|
|
|
|
|
create(rhs);
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-07 05:33:36 +00:00
|
|
|
|
/// Создать строку inplace.
|
|
|
|
|
Field(const char * data, size_t size)
|
|
|
|
|
{
|
2013-01-07 06:47:15 +00:00
|
|
|
|
create(data, size);
|
2013-01-07 05:33:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Field(const unsigned char * data, size_t size)
|
|
|
|
|
{
|
2013-01-07 06:47:15 +00:00
|
|
|
|
create(data, size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void assignString(const char * data, size_t size)
|
|
|
|
|
{
|
|
|
|
|
destroy();
|
|
|
|
|
create(data, size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void assignString(const unsigned char * data, size_t size)
|
|
|
|
|
{
|
|
|
|
|
destroy();
|
|
|
|
|
create(data, size);
|
2013-01-07 05:33:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
template <typename T>
|
|
|
|
|
Field & operator= (const T & rhs)
|
|
|
|
|
{
|
|
|
|
|
destroy();
|
|
|
|
|
create(rhs);
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~Field()
|
|
|
|
|
{
|
|
|
|
|
destroy();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Types::Which getType() const { return which; }
|
|
|
|
|
const char * getTypeName() const { return Types::toString(which); }
|
|
|
|
|
|
2013-02-08 19:34:44 +00:00
|
|
|
|
bool isNull() const { return which == Types::Null; }
|
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
|
|
|
|
|
template <typename T> T & get()
|
|
|
|
|
{
|
2014-01-08 16:33:28 +00:00
|
|
|
|
typedef typename std::remove_reference<T>::type TWithoutRef;
|
2013-01-05 20:03:19 +00:00
|
|
|
|
TWithoutRef * __attribute__((__may_alias__)) ptr = reinterpret_cast<TWithoutRef*>(storage);
|
|
|
|
|
return *ptr;
|
|
|
|
|
};
|
2013-02-25 23:08:25 +00:00
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
template <typename T> const T & get() const
|
|
|
|
|
{
|
2014-01-08 16:33:28 +00:00
|
|
|
|
typedef typename std::remove_reference<T>::type TWithoutRef;
|
2013-01-05 20:03:19 +00:00
|
|
|
|
const TWithoutRef * __attribute__((__may_alias__)) ptr = reinterpret_cast<const TWithoutRef*>(storage);
|
|
|
|
|
return *ptr;
|
2010-03-01 16:59:51 +00:00
|
|
|
|
};
|
2013-01-05 20:03:19 +00:00
|
|
|
|
|
|
|
|
|
template <typename T> T & safeGet()
|
|
|
|
|
{
|
2014-01-08 16:33:28 +00:00
|
|
|
|
const Types::Which requested = TypeToEnum<typename std::remove_cv<typename std::remove_reference<T>::type>::type>::value;
|
2013-01-05 20:03:19 +00:00
|
|
|
|
if (which != requested)
|
|
|
|
|
throw Exception("Bad get: has " + std::string(getTypeName()) + ", requested " + std::string(Types::toString(requested)), ErrorCodes::BAD_GET);
|
|
|
|
|
return get<T>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T> const T & safeGet() const
|
|
|
|
|
{
|
2014-01-08 16:33:28 +00:00
|
|
|
|
const Types::Which requested = TypeToEnum<typename std::remove_cv<typename std::remove_reference<T>::type>::type>::value;
|
2013-01-05 20:03:19 +00:00
|
|
|
|
if (which != requested)
|
|
|
|
|
throw Exception("Bad get: has " + std::string(getTypeName()) + ", requested " + std::string(Types::toString(requested)), ErrorCodes::BAD_GET);
|
|
|
|
|
return get<T>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool operator< (const Field & rhs) const
|
|
|
|
|
{
|
|
|
|
|
if (which < rhs.which)
|
|
|
|
|
return true;
|
|
|
|
|
if (which > rhs.which)
|
|
|
|
|
return false;
|
2013-02-25 23:08:25 +00:00
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
switch (which)
|
|
|
|
|
{
|
2013-01-08 20:31:24 +00:00
|
|
|
|
case Types::Null: return false;
|
2013-01-05 20:03:19 +00:00
|
|
|
|
case Types::UInt64: return get<UInt64>() < rhs.get<UInt64>();
|
|
|
|
|
case Types::Int64: return get<Int64>() < rhs.get<Int64>();
|
|
|
|
|
case Types::Float64: return get<Float64>() < rhs.get<Float64>();
|
|
|
|
|
case Types::String: return get<String>() < rhs.get<String>();
|
|
|
|
|
case Types::Array: return get<Array>() < rhs.get<Array>();
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
throw Exception("Bad type of Field", ErrorCodes::BAD_TYPE_OF_FIELD);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool operator> (const Field & rhs) const
|
|
|
|
|
{
|
|
|
|
|
return rhs < *this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool operator<= (const Field & rhs) const
|
|
|
|
|
{
|
|
|
|
|
if (which < rhs.which)
|
|
|
|
|
return true;
|
|
|
|
|
if (which > rhs.which)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
switch (which)
|
|
|
|
|
{
|
2013-01-08 20:31:24 +00:00
|
|
|
|
case Types::Null: return true;
|
2013-01-05 20:03:19 +00:00
|
|
|
|
case Types::UInt64: return get<UInt64>() <= rhs.get<UInt64>();
|
|
|
|
|
case Types::Int64: return get<Int64>() <= rhs.get<Int64>();
|
|
|
|
|
case Types::Float64: return get<Float64>() <= rhs.get<Float64>();
|
|
|
|
|
case Types::String: return get<String>() <= rhs.get<String>();
|
|
|
|
|
case Types::Array: return get<Array>() <= rhs.get<Array>();
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
throw Exception("Bad type of Field", ErrorCodes::BAD_TYPE_OF_FIELD);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool operator>= (const Field & rhs) const
|
|
|
|
|
{
|
|
|
|
|
return rhs <= *this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool operator== (const Field & rhs) const
|
|
|
|
|
{
|
|
|
|
|
if (which != rhs.which)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
switch (which)
|
|
|
|
|
{
|
2013-01-08 20:31:24 +00:00
|
|
|
|
case Types::Null: return true;
|
|
|
|
|
case Types::UInt64:
|
|
|
|
|
case Types::Int64:
|
|
|
|
|
case Types::Float64: return get<UInt64>() == rhs.get<UInt64>();
|
2013-01-05 20:03:19 +00:00
|
|
|
|
case Types::String: return get<String>() == rhs.get<String>();
|
|
|
|
|
case Types::Array: return get<Array>() == rhs.get<Array>();
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
throw Exception("Bad type of Field", ErrorCodes::BAD_TYPE_OF_FIELD);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool operator!= (const Field & rhs) const
|
|
|
|
|
{
|
|
|
|
|
return !(*this == rhs);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
2013-01-08 21:32:16 +00:00
|
|
|
|
/// Хватает с запасом
|
|
|
|
|
static const size_t storage_size = DBMS_TOTAL_FIELD_SIZE - sizeof(Types::Which);
|
2013-02-25 23:08:25 +00:00
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
BOOST_STATIC_ASSERT(storage_size >= sizeof(Null));
|
|
|
|
|
BOOST_STATIC_ASSERT(storage_size >= sizeof(UInt64));
|
|
|
|
|
BOOST_STATIC_ASSERT(storage_size >= sizeof(Int64));
|
|
|
|
|
BOOST_STATIC_ASSERT(storage_size >= sizeof(Float64));
|
|
|
|
|
BOOST_STATIC_ASSERT(storage_size >= sizeof(String));
|
|
|
|
|
BOOST_STATIC_ASSERT(storage_size >= sizeof(Array));
|
|
|
|
|
|
2013-01-08 20:31:24 +00:00
|
|
|
|
char storage[storage_size] __attribute__((aligned(8)));
|
2013-01-05 20:03:19 +00:00
|
|
|
|
Types::Which which;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
void create(const T & x)
|
|
|
|
|
{
|
|
|
|
|
which = TypeToEnum<T>::value;
|
2013-01-05 21:57:11 +00:00
|
|
|
|
T * __attribute__((__may_alias__)) ptr = reinterpret_cast<T*>(storage);
|
|
|
|
|
new (ptr) T(x);
|
2013-01-05 20:03:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void create(const Null & x)
|
|
|
|
|
{
|
|
|
|
|
which = Types::Null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void create(const Field & x)
|
|
|
|
|
{
|
|
|
|
|
switch (x.which)
|
|
|
|
|
{
|
|
|
|
|
case Types::Null: create(Null()); break;
|
|
|
|
|
case Types::UInt64: create(x.get<UInt64>()); break;
|
|
|
|
|
case Types::Int64: create(x.get<Int64>()); break;
|
|
|
|
|
case Types::Float64: create(x.get<Float64>()); break;
|
|
|
|
|
case Types::String: create(x.get<String>()); break;
|
|
|
|
|
case Types::Array: create(x.get<Array>()); break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-07 06:47:15 +00:00
|
|
|
|
void create(const char * data, size_t size)
|
|
|
|
|
{
|
|
|
|
|
which = Types::String;
|
|
|
|
|
String * __attribute__((__may_alias__)) ptr = reinterpret_cast<String*>(storage);
|
|
|
|
|
new (ptr) String(data, size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void create(const unsigned char * data, size_t size)
|
|
|
|
|
{
|
|
|
|
|
create(reinterpret_cast<const char *>(data), size);
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
|
2013-01-07 08:27:39 +00:00
|
|
|
|
__attribute__((__always_inline__)) void destroy()
|
2013-01-05 20:03:19 +00:00
|
|
|
|
{
|
2013-01-07 06:53:24 +00:00
|
|
|
|
if (which < Types::MIN_NON_POD)
|
|
|
|
|
return;
|
2013-02-25 23:08:25 +00:00
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
switch (which)
|
|
|
|
|
{
|
|
|
|
|
case Types::String:
|
|
|
|
|
destroy<String>();
|
|
|
|
|
break;
|
|
|
|
|
case Types::Array:
|
|
|
|
|
destroy<Array>();
|
|
|
|
|
break;
|
2013-01-07 06:47:15 +00:00
|
|
|
|
default:
|
|
|
|
|
break;
|
2013-01-05 20:03:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
void destroy()
|
|
|
|
|
{
|
|
|
|
|
T * __attribute__((__may_alias__)) ptr = reinterpret_cast<T*>(storage);
|
|
|
|
|
ptr->~T();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2015-10-12 07:05:54 +00:00
|
|
|
|
#undef DBMS_TOTAL_FIELD_SIZE
|
|
|
|
|
|
2014-05-12 00:45:50 +00:00
|
|
|
|
|
2013-02-03 23:11:21 +00:00
|
|
|
|
template <> struct Field::TypeToEnum<Null> { static const Types::Which value = Types::Null; };
|
|
|
|
|
template <> struct Field::TypeToEnum<UInt64> { static const Types::Which value = Types::UInt64; };
|
|
|
|
|
template <> struct Field::TypeToEnum<Int64> { static const Types::Which value = Types::Int64; };
|
|
|
|
|
template <> struct Field::TypeToEnum<Float64> { static const Types::Which value = Types::Float64; };
|
|
|
|
|
template <> struct Field::TypeToEnum<String> { static const Types::Which value = Types::String; };
|
2013-10-11 11:43:50 +00:00
|
|
|
|
template <> struct Field::TypeToEnum<Array> { static const Types::Which value = Types::Array; };
|
2013-01-05 20:03:19 +00:00
|
|
|
|
|
2013-02-03 23:11:21 +00:00
|
|
|
|
template <> struct Field::EnumToType<Field::Types::Null> { typedef Null Type; };
|
|
|
|
|
template <> struct Field::EnumToType<Field::Types::UInt64> { typedef UInt64 Type; };
|
|
|
|
|
template <> struct Field::EnumToType<Field::Types::Int64> { typedef Int64 Type; };
|
|
|
|
|
template <> struct Field::EnumToType<Field::Types::Float64> { typedef Float64 Type; };
|
|
|
|
|
template <> struct Field::EnumToType<Field::Types::String> { typedef String Type; };
|
|
|
|
|
template <> struct Field::EnumToType<Field::Types::Array> { typedef Array Type; };
|
2013-01-05 20:03:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
T get(const Field & field)
|
|
|
|
|
{
|
|
|
|
|
return field.template get<T>();
|
2010-03-01 16:59:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
template <typename T>
|
|
|
|
|
T get(Field & field)
|
|
|
|
|
{
|
|
|
|
|
return field.template get<T>();
|
|
|
|
|
}
|
2010-03-01 16:59:51 +00:00
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
template <typename T>
|
|
|
|
|
T safeGet(const Field & field)
|
2010-03-01 16:59:51 +00:00
|
|
|
|
{
|
2013-01-05 20:03:19 +00:00
|
|
|
|
return field.template safeGet<T>();
|
|
|
|
|
}
|
2010-03-01 16:59:51 +00:00
|
|
|
|
|
2013-01-05 20:03:19 +00:00
|
|
|
|
template <typename T>
|
|
|
|
|
T safeGet(Field & field)
|
2010-03-01 16:59:51 +00:00
|
|
|
|
{
|
2013-01-05 20:03:19 +00:00
|
|
|
|
return field.template safeGet<T>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <> struct TypeName<Array> { static std::string get() { return "Array"; } };
|
|
|
|
|
|
|
|
|
|
|
2010-03-18 19:32:14 +00:00
|
|
|
|
template <typename T> struct NearestFieldType;
|
|
|
|
|
|
2011-08-21 03:41:37 +00:00
|
|
|
|
template <> struct NearestFieldType<UInt8> { typedef UInt64 Type; };
|
|
|
|
|
template <> struct NearestFieldType<UInt16> { typedef UInt64 Type; };
|
|
|
|
|
template <> struct NearestFieldType<UInt32> { typedef UInt64 Type; };
|
|
|
|
|
template <> struct NearestFieldType<UInt64> { typedef UInt64 Type; };
|
|
|
|
|
template <> struct NearestFieldType<Int8> { typedef Int64 Type; };
|
|
|
|
|
template <> struct NearestFieldType<Int16> { typedef Int64 Type; };
|
|
|
|
|
template <> struct NearestFieldType<Int32> { typedef Int64 Type; };
|
|
|
|
|
template <> struct NearestFieldType<Int64> { typedef Int64 Type; };
|
|
|
|
|
template <> struct NearestFieldType<Float32> { typedef Float64 Type; };
|
|
|
|
|
template <> struct NearestFieldType<Float64> { typedef Float64 Type; };
|
|
|
|
|
template <> struct NearestFieldType<String> { typedef String Type; };
|
2012-08-26 06:48:39 +00:00
|
|
|
|
template <> struct NearestFieldType<Array> { typedef Array Type; };
|
2012-06-07 18:32:21 +00:00
|
|
|
|
template <> struct NearestFieldType<bool> { typedef UInt64 Type; };
|
|
|
|
|
|
2013-10-04 20:15:42 +00:00
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
typename NearestFieldType<T>::Type nearestFieldType(const T & x)
|
|
|
|
|
{
|
|
|
|
|
return typename NearestFieldType<T>::Type(x);
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-01 16:59:51 +00:00
|
|
|
|
}
|
2012-09-05 19:51:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Заглушки, чтобы DBObject-ы с полем типа Array компилировались.
|
2015-10-12 07:05:54 +00:00
|
|
|
|
#include <mysqlxx/Manip.h>
|
|
|
|
|
|
2012-09-05 19:51:09 +00:00
|
|
|
|
namespace mysqlxx
|
|
|
|
|
{
|
2015-10-12 07:05:54 +00:00
|
|
|
|
std::ostream & operator<< (mysqlxx::EscapeManipResult res, const DB::Array & value);
|
|
|
|
|
std::ostream & operator<< (mysqlxx::QuoteManipResult res, const DB::Array & value);
|
|
|
|
|
std::istream & operator>> (mysqlxx::UnEscapeManipResult res, DB::Array & value);
|
|
|
|
|
std::istream & operator>> (mysqlxx::UnQuoteManipResult res, DB::Array & value);
|
2012-09-05 19:51:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
class ReadBuffer;
|
|
|
|
|
class WriteBuffer;
|
2014-08-09 22:36:07 +00:00
|
|
|
|
|
2013-03-09 05:44:26 +00:00
|
|
|
|
/// Предполагается что у всех элементов массива одинаковый тип.
|
2015-10-12 07:05:54 +00:00
|
|
|
|
void readBinary(Array & x, ReadBuffer & buf);
|
2014-08-09 22:36:07 +00:00
|
|
|
|
|
2012-09-05 19:51:09 +00:00
|
|
|
|
inline void readText(Array & x, ReadBuffer & buf) { throw Exception("Cannot read Array.", ErrorCodes::NOT_IMPLEMENTED); }
|
|
|
|
|
inline void readQuoted(Array & x, ReadBuffer & buf) { throw Exception("Cannot read Array.", ErrorCodes::NOT_IMPLEMENTED); }
|
|
|
|
|
|
2013-03-09 05:44:26 +00:00
|
|
|
|
/// Предполагается что у всех элементов массива одинаковый тип.
|
2015-10-12 07:05:54 +00:00
|
|
|
|
void writeBinary(const Array & x, WriteBuffer & buf);
|
2014-08-09 22:36:07 +00:00
|
|
|
|
|
2015-10-12 07:05:54 +00:00
|
|
|
|
void writeText(const Array & x, WriteBuffer & buf);
|
2014-08-09 22:36:07 +00:00
|
|
|
|
|
2013-03-11 10:29:41 +00:00
|
|
|
|
inline void writeQuoted(const Array & x, WriteBuffer & buf) { throw Exception("Cannot write Array quoted.", ErrorCodes::NOT_IMPLEMENTED); }
|
2012-09-05 19:51:09 +00:00
|
|
|
|
}
|