2011-09-19 01:42:16 +00:00
|
|
|
#pragma once
|
2010-03-12 18:25:35 +00:00
|
|
|
|
2016-05-27 20:18:34 +00:00
|
|
|
#include <cmath>
|
2010-03-12 18:25:35 +00:00
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Columns/IColumn.h>
|
2010-03-12 18:25:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2017-03-09 00:56:38 +00:00
|
|
|
/** Stuff for comparing numbers.
|
2017-03-09 04:18:41 +00:00
|
|
|
* Integer values are compared as usual.
|
2017-03-09 00:56:38 +00:00
|
|
|
* Floating-point numbers are compared this way that NaNs always end up at the end
|
|
|
|
* (if you don't do this, the sort would not work at all).
|
2013-11-01 20:10:43 +00:00
|
|
|
*/
|
|
|
|
template <typename T>
|
|
|
|
struct CompareHelper
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
static bool less(T a, T b, int nan_direction_hint) { return a < b; }
|
|
|
|
static bool greater(T a, T b, int nan_direction_hint) { return a > b; }
|
|
|
|
|
|
|
|
/** Compares two numbers. Returns a number less than zero, equal to zero, or greater than zero if a < b, a == b, a > b, respectively.
|
|
|
|
* If one of the values is NaN, then
|
|
|
|
* - if nan_direction_hint == -1 - NaN are considered less than all numbers;
|
|
|
|
* - if nan_direction_hint == 1 - NaN are considered to be larger than all numbers;
|
|
|
|
* Essentially: nan_direction_hint == -1 says that the comparison is for sorting in descending order.
|
|
|
|
*/
|
|
|
|
static int compare(T a, T b, int nan_direction_hint)
|
|
|
|
{
|
|
|
|
return a > b ? 1 : (a < b ? -1 : 0);
|
|
|
|
}
|
2013-11-01 20:10:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
struct FloatCompareHelper
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
static bool less(T a, T b, int nan_direction_hint)
|
|
|
|
{
|
|
|
|
bool isnan_a = std::isnan(a);
|
|
|
|
bool isnan_b = std::isnan(b);
|
|
|
|
|
|
|
|
if (isnan_a && isnan_b)
|
|
|
|
return false;
|
|
|
|
if (isnan_a)
|
|
|
|
return nan_direction_hint < 0;
|
|
|
|
if (isnan_b)
|
|
|
|
return nan_direction_hint > 0;
|
|
|
|
|
|
|
|
return a < b;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool greater(T a, T b, int nan_direction_hint)
|
|
|
|
{
|
|
|
|
bool isnan_a = std::isnan(a);
|
|
|
|
bool isnan_b = std::isnan(b);
|
|
|
|
|
|
|
|
if (isnan_a && isnan_b)
|
|
|
|
return false;
|
|
|
|
if (isnan_a)
|
|
|
|
return nan_direction_hint > 0;
|
|
|
|
if (isnan_b)
|
|
|
|
return nan_direction_hint < 0;
|
|
|
|
|
|
|
|
return a > b;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int compare(T a, T b, int nan_direction_hint)
|
|
|
|
{
|
|
|
|
bool isnan_a = std::isnan(a);
|
|
|
|
bool isnan_b = std::isnan(b);
|
|
|
|
if (unlikely(isnan_a || isnan_b))
|
|
|
|
{
|
|
|
|
if (isnan_a && isnan_b)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return isnan_a
|
|
|
|
? nan_direction_hint
|
|
|
|
: -nan_direction_hint;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (T(0) < (a - b)) - ((a - b) < T(0));
|
|
|
|
}
|
2013-11-01 20:10:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <> struct CompareHelper<Float32> : public FloatCompareHelper<Float32> {};
|
|
|
|
template <> struct CompareHelper<Float64> : public FloatCompareHelper<Float64> {};
|
|
|
|
|
|
|
|
|
2017-03-11 05:23:18 +00:00
|
|
|
/** To implement `get64` function.
|
|
|
|
*/
|
|
|
|
template <typename T>
|
|
|
|
inline UInt64 unionCastToUInt64(T x) { return x; }
|
|
|
|
|
|
|
|
template <> inline UInt64 unionCastToUInt64(Float64 x)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
union
|
|
|
|
{
|
|
|
|
Float64 src;
|
|
|
|
UInt64 res;
|
|
|
|
};
|
|
|
|
|
|
|
|
src = x;
|
|
|
|
return res;
|
2017-03-11 05:23:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <> inline UInt64 unionCastToUInt64(Float32 x)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
union
|
|
|
|
{
|
|
|
|
Float32 src;
|
|
|
|
UInt64 res;
|
|
|
|
};
|
|
|
|
|
|
|
|
res = 0;
|
|
|
|
src = x;
|
|
|
|
return res;
|
2017-03-11 05:23:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-11 01:12:51 +00:00
|
|
|
/** A template for columns that use a simple array to store.
|
2010-03-12 18:25:35 +00:00
|
|
|
*/
|
2013-01-21 06:43:38 +00:00
|
|
|
template <typename T>
|
2014-10-29 01:18:50 +00:00
|
|
|
class ColumnVector final : public IColumn
|
2010-03-12 18:25:35 +00:00
|
|
|
{
|
2013-05-03 05:23:14 +00:00
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
using Self = ColumnVector<T>;
|
2017-03-11 01:12:51 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
struct less;
|
|
|
|
struct greater;
|
2017-03-11 01:12:51 +00:00
|
|
|
|
2010-03-12 18:25:35 +00:00
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
using value_type = T;
|
|
|
|
using Container_t = PaddedPODArray<value_type>;
|
2010-03-12 18:25:35 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
ColumnVector() {}
|
|
|
|
ColumnVector(const size_t n) : data{n} {}
|
|
|
|
ColumnVector(const size_t n, const value_type x) : data{n, x} {}
|
2011-08-28 00:31:30 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
bool isNumeric() const override { return IsNumber<T>::value; }
|
|
|
|
bool isFixed() const override { return IsNumber<T>::value; }
|
2011-08-21 03:41:37 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t sizeOfField() const override { return sizeof(T); }
|
2011-09-26 12:50:50 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t size() const override
|
|
|
|
{
|
|
|
|
return data.size();
|
|
|
|
}
|
2013-01-07 06:47:15 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
StringRef getDataAt(size_t n) const override
|
|
|
|
{
|
|
|
|
return StringRef(reinterpret_cast<const char *>(&data[n]), sizeof(data[n]));
|
|
|
|
}
|
2014-05-01 00:17:02 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void insertFrom(const IColumn & src, size_t n) override
|
|
|
|
{
|
|
|
|
data.push_back(static_cast<const Self &>(src).getData()[n]);
|
|
|
|
}
|
2012-12-16 00:52:06 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void insertData(const char * pos, size_t length) override
|
|
|
|
{
|
|
|
|
data.push_back(*reinterpret_cast<const T *>(pos));
|
|
|
|
}
|
2013-02-16 20:15:45 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void insertDefault() override
|
|
|
|
{
|
|
|
|
data.push_back(T());
|
|
|
|
}
|
2010-05-20 19:29:04 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void popBack(size_t n) override
|
|
|
|
{
|
|
|
|
data.resize_assume_reserved(data.size() - n);
|
|
|
|
}
|
2016-02-16 16:39:39 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
StringRef serializeValueIntoArena(size_t n, Arena & arena, char const *& begin) const override;
|
2015-10-04 03:17:36 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const char * deserializeAndInsertFromArena(const char * pos) override;
|
2015-10-04 03:17:36 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void updateHashWithValue(size_t n, SipHash & hash) const override;
|
2016-07-10 15:58:58 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t byteSize() const override
|
|
|
|
{
|
|
|
|
return data.size() * sizeof(data[0]);
|
|
|
|
}
|
2011-08-27 22:43:31 +00:00
|
|
|
|
2017-07-13 16:49:09 +00:00
|
|
|
size_t allocatedBytes() const override
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-13 16:49:09 +00:00
|
|
|
return data.allocated_bytes();
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2017-01-17 20:54:32 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void insert(const T value)
|
|
|
|
{
|
|
|
|
data.push_back(value);
|
|
|
|
}
|
2015-03-23 13:29:32 +00:00
|
|
|
|
2017-07-05 17:18:52 +00:00
|
|
|
/// This method implemented in header because it could be possibly devirtualized.
|
2017-04-01 07:20:54 +00:00
|
|
|
int compareAt(size_t n, size_t m, const IColumn & rhs_, int nan_direction_hint) const override
|
|
|
|
{
|
|
|
|
return CompareHelper<T>::compare(data[n], static_cast<const Self &>(rhs_).data[m], nan_direction_hint);
|
|
|
|
}
|
2011-09-04 00:22:19 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void getPermutation(bool reverse, size_t limit, int nan_direction_hint, Permutation & res) const override;
|
2011-09-26 11:05:38 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void reserve(size_t n) override
|
|
|
|
{
|
|
|
|
data.reserve(n);
|
|
|
|
}
|
2013-02-03 18:39:09 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
std::string getName() const override;
|
2013-02-08 23:41:05 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
ColumnPtr cloneResized(size_t size) const override;
|
2013-02-08 23:41:05 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
Field operator[](size_t n) const override
|
|
|
|
{
|
|
|
|
return typename NearestFieldType<T>::Type(data[n]);
|
|
|
|
}
|
2013-02-08 23:41:05 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void get(size_t n, Field & res) const override
|
|
|
|
{
|
|
|
|
res = typename NearestFieldType<T>::Type(data[n]);
|
|
|
|
}
|
2013-02-08 23:41:05 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
UInt64 get64(size_t n) const override;
|
2014-05-01 00:17:02 +00:00
|
|
|
|
2017-07-24 07:48:26 +00:00
|
|
|
UInt64 getUInt(size_t n) const override
|
|
|
|
{
|
|
|
|
return UInt64(data[n]);
|
|
|
|
}
|
|
|
|
|
2017-07-24 06:32:02 +00:00
|
|
|
Int64 getInt(size_t n) const override
|
|
|
|
{
|
|
|
|
return Int64(data[n]);
|
|
|
|
}
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void insert(const Field & x) override
|
|
|
|
{
|
|
|
|
data.push_back(DB::get<typename NearestFieldType<T>::Type>(x));
|
|
|
|
}
|
2013-05-03 05:23:14 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void insertRangeFrom(const IColumn & src, size_t start, size_t length) override;
|
2014-08-17 07:39:28 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
ColumnPtr filter(const IColumn::Filter & filt, ssize_t result_size_hint) const override;
|
2013-05-03 05:23:14 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
ColumnPtr permute(const IColumn::Permutation & perm, size_t limit) const override;
|
2013-05-03 05:23:14 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
ColumnPtr replicate(const IColumn::Offsets_t & offsets) const override;
|
2016-08-10 19:12:29 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void getExtremes(Field & min, Field & max) const override;
|
2016-08-10 19:12:29 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
Columns scatter(ColumnIndex num_columns, const Selector & selector) const override
|
|
|
|
{
|
|
|
|
return this->scatterImpl<Self>(num_columns, selector);
|
|
|
|
}
|
2017-02-11 20:20:57 +00:00
|
|
|
|
2017-07-06 13:54:55 +00:00
|
|
|
void gather(ColumnGathererStream & gatherer_stream) override;
|
2017-02-11 20:20:57 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/** More efficient methods of manipulation - to manipulate with data directly. */
|
|
|
|
Container_t & getData()
|
|
|
|
{
|
|
|
|
return data;
|
|
|
|
}
|
2016-08-10 19:12:29 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const Container_t & getData() const
|
|
|
|
{
|
|
|
|
return data;
|
|
|
|
}
|
2016-08-10 19:12:29 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const T & getElement(size_t n) const
|
|
|
|
{
|
|
|
|
return data[n];
|
|
|
|
}
|
2017-03-11 05:23:01 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
T & getElement(size_t n)
|
|
|
|
{
|
|
|
|
return data[n];
|
|
|
|
}
|
2017-03-11 05:23:01 +00:00
|
|
|
|
2016-08-10 19:12:29 +00:00
|
|
|
protected:
|
2017-04-01 07:20:54 +00:00
|
|
|
Container_t data;
|
2013-02-08 23:41:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-03-12 18:25:35 +00:00
|
|
|
}
|