mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 20:53:27 +00:00
361 lines
10 KiB
C++
361 lines
10 KiB
C++
#pragma once
|
|
|
|
#include <cmath>
|
|
#include <Columns/IColumn.h>
|
|
#include <Columns/IColumnImpl.h>
|
|
#include <Columns/ColumnVectorHelper.h>
|
|
#include <common/unaligned.h>
|
|
#include <Core/Field.h>
|
|
#include <Core/BigInt.h>
|
|
#include <Common/assert_cast.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Stuff for comparing numbers.
|
|
* Integer values are compared as usual.
|
|
* 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).
|
|
*/
|
|
template <class T, class U = T>
|
|
struct CompareHelper
|
|
{
|
|
static constexpr bool less(T a, U b, int /*nan_direction_hint*/) { return a < b; }
|
|
static constexpr bool greater(T a, U 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 constexpr int compare(T a, U b, int /*nan_direction_hint*/)
|
|
{
|
|
return a > b ? 1 : (a < b ? -1 : 0);
|
|
}
|
|
};
|
|
|
|
template <class T>
|
|
struct FloatCompareHelper
|
|
{
|
|
static constexpr bool less(T a, T b, int nan_direction_hint)
|
|
{
|
|
const bool isnan_a = std::isnan(a);
|
|
const 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 constexpr bool greater(T a, T b, int nan_direction_hint)
|
|
{
|
|
const bool isnan_a = std::isnan(a);
|
|
const 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 constexpr int compare(T a, T b, int nan_direction_hint)
|
|
{
|
|
const bool isnan_a = std::isnan(a);
|
|
const 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));
|
|
}
|
|
};
|
|
|
|
template <class U> struct CompareHelper<Float32, U> : public FloatCompareHelper<Float32> {};
|
|
template <class U> struct CompareHelper<Float64, U> : public FloatCompareHelper<Float64> {};
|
|
|
|
/** A template for columns that use a simple array to store.
|
|
*/
|
|
template <typename T>
|
|
class ColumnVector final : public COWHelper<ColumnVectorHelper, ColumnVector<T>>
|
|
{
|
|
static_assert(!IsDecimalNumber<T>);
|
|
|
|
private:
|
|
using Self = ColumnVector;
|
|
friend class COWHelper<ColumnVectorHelper, Self>;
|
|
|
|
struct less;
|
|
struct greater;
|
|
|
|
public:
|
|
using ValueType = T;
|
|
static constexpr bool is_POD = !is_big_int_v<T>;
|
|
using Container = std::conditional_t<is_POD,
|
|
PaddedPODArray<ValueType>,
|
|
std::vector<ValueType>>;
|
|
|
|
private:
|
|
ColumnVector() {}
|
|
ColumnVector(const size_t n) : data(n) {}
|
|
ColumnVector(const size_t n, const ValueType x) : data(n, x) {}
|
|
ColumnVector(const ColumnVector & src) : data(src.data.begin(), src.data.end()) {}
|
|
|
|
/// Sugar constructor.
|
|
ColumnVector(std::initializer_list<T> il) : data{il} {}
|
|
|
|
public:
|
|
bool isNumeric() const override { return IsNumber<T>; }
|
|
|
|
size_t size() const override
|
|
{
|
|
return data.size();
|
|
}
|
|
|
|
void insertFrom(const IColumn & src, size_t n) override
|
|
{
|
|
data.push_back(assert_cast<const Self &>(src).getData()[n]);
|
|
}
|
|
|
|
void insertData(const char * pos, size_t) override
|
|
{
|
|
if constexpr (is_POD)
|
|
data.emplace_back(unalignedLoad<T>(pos));
|
|
else
|
|
data.emplace_back(BigInt<T>::deserialize(pos));
|
|
}
|
|
|
|
void insertDefault() override
|
|
{
|
|
data.push_back(T());
|
|
}
|
|
|
|
void insertManyDefaults(size_t length) override
|
|
{
|
|
if constexpr (is_POD)
|
|
data.resize_fill(data.size() + length, T());
|
|
else
|
|
data.resize(data.size() + length, T());
|
|
}
|
|
|
|
void popBack(size_t n) override
|
|
{
|
|
if constexpr (is_POD)
|
|
data.resize_assume_reserved(data.size() - n);
|
|
else
|
|
data.resize(data.size() - n);
|
|
}
|
|
|
|
StringRef serializeValueIntoArena(size_t n, Arena & arena, char const *& begin) const override;
|
|
|
|
const char * deserializeAndInsertFromArena(const char * pos) override;
|
|
|
|
void updateHashWithValue(size_t n, SipHash & hash) const override;
|
|
|
|
void updateWeakHash32(WeakHash32 & hash) const override;
|
|
|
|
void updateHashFast(SipHash & hash) const override;
|
|
|
|
size_t byteSize() const override
|
|
{
|
|
return data.size() * sizeof(data[0]);
|
|
}
|
|
|
|
size_t allocatedBytes() const override
|
|
{
|
|
if constexpr (is_POD)
|
|
return data.allocated_bytes();
|
|
else
|
|
return data.capacity() * sizeof(data[0]);
|
|
}
|
|
|
|
void protect() override
|
|
{
|
|
if constexpr (is_POD)
|
|
data.protect();
|
|
}
|
|
|
|
void insertValue(const T value)
|
|
{
|
|
data.push_back(value);
|
|
}
|
|
|
|
template <class U>
|
|
constexpr int compareAtOther(size_t n, size_t m, const ColumnVector<U> & rhs, int nan_direction_hint) const
|
|
{
|
|
return CompareHelper<T, U>::compare(data[n], rhs.data[m], nan_direction_hint);
|
|
}
|
|
|
|
/// This method implemented in header because it could be possibly devirtualized.
|
|
int compareAt(size_t n, size_t m, const IColumn & rhs_, int nan_direction_hint) const override
|
|
{
|
|
return CompareHelper<T>::compare(data[n], assert_cast<const Self &>(rhs_).data[m], nan_direction_hint);
|
|
}
|
|
|
|
void compareColumn(const IColumn & rhs, size_t rhs_row_num,
|
|
PaddedPODArray<UInt64> * row_indexes, PaddedPODArray<Int8> & compare_results,
|
|
int direction, int nan_direction_hint) const override
|
|
{
|
|
return this->template doCompareColumn<Self>(assert_cast<const Self &>(rhs), rhs_row_num, row_indexes,
|
|
compare_results, direction, nan_direction_hint);
|
|
}
|
|
|
|
void getPermutation(bool reverse, size_t limit, int nan_direction_hint, IColumn::Permutation & res) const override;
|
|
|
|
void updatePermutation(bool reverse, size_t limit, int nan_direction_hint, IColumn::Permutation & res, EqualRanges& equal_range) const override;
|
|
|
|
void reserve(size_t n) override
|
|
{
|
|
data.reserve(n);
|
|
}
|
|
|
|
const char * getFamilyName() const override { return TypeName<T>::get(); }
|
|
TypeIndex getDataType() const override { return TypeId<T>::value; }
|
|
|
|
MutableColumnPtr cloneResized(size_t size) const override;
|
|
|
|
Field operator[](size_t n) const override
|
|
{
|
|
assert(n < data.size()); /// This assert is more strict than the corresponding assert inside PODArray.
|
|
return data[n];
|
|
}
|
|
|
|
void get(size_t n, Field & res) const override
|
|
{
|
|
res = (*this)[n];
|
|
}
|
|
|
|
UInt64 get64(size_t n) const override;
|
|
|
|
Float64 getFloat64(size_t n) const override;
|
|
Float32 getFloat32(size_t n) const override;
|
|
|
|
/// Out of range conversion is permitted.
|
|
UInt64 NO_SANITIZE_UNDEFINED getUInt(size_t n) const override
|
|
{
|
|
return UInt64(data[n]);
|
|
}
|
|
|
|
/// Out of range conversion is permitted.
|
|
Int64 NO_SANITIZE_UNDEFINED getInt(size_t n) const override
|
|
{
|
|
return Int64(data[n]);
|
|
}
|
|
|
|
bool getBool(size_t n) const override
|
|
{
|
|
return bool(data[n]);
|
|
}
|
|
|
|
void insert(const Field & x) override
|
|
{
|
|
data.push_back(DB::get<NearestFieldType<T>>(x));
|
|
}
|
|
|
|
void insertRangeFrom(const IColumn & src, size_t start, size_t length) override;
|
|
|
|
ColumnPtr filter(const IColumn::Filter & filt, ssize_t result_size_hint) const override;
|
|
|
|
ColumnPtr permute(const IColumn::Permutation & perm, size_t limit) const override;
|
|
|
|
ColumnPtr index(const IColumn & indexes, size_t limit) const override;
|
|
|
|
template <typename Type>
|
|
ColumnPtr indexImpl(const PaddedPODArray<Type> & indexes, size_t limit) const;
|
|
|
|
ColumnPtr replicate(const IColumn::Offsets & offsets) const override;
|
|
|
|
void getExtremes(Field & min, Field & max) const override;
|
|
|
|
MutableColumns scatter(IColumn::ColumnIndex num_columns, const IColumn::Selector & selector) const override
|
|
{
|
|
return this->template scatterImpl<Self>(num_columns, selector);
|
|
}
|
|
|
|
void gather(ColumnGathererStream & gatherer_stream) override;
|
|
|
|
bool canBeInsideNullable() const override { return true; }
|
|
bool isFixedAndContiguous() const override { return true; }
|
|
size_t sizeOfValueIfFixed() const override { return sizeof(T); }
|
|
|
|
StringRef getRawData() const override
|
|
{
|
|
return StringRef(reinterpret_cast<const char*>(data.data()), byteSize());
|
|
}
|
|
|
|
StringRef getDataAt(size_t n) const override
|
|
{
|
|
return StringRef(reinterpret_cast<const char *>(&data[n]), sizeof(data[n]));
|
|
}
|
|
|
|
bool structureEquals(const IColumn & rhs) const override
|
|
{
|
|
return typeid(rhs) == typeid(ColumnVector<T>);
|
|
}
|
|
|
|
/// Replace elements that match the filter with zeroes. If inverted replaces not matched elements.
|
|
void applyZeroMap(const IColumn::Filter & filt, bool inverted = false);
|
|
|
|
/** More efficient methods of manipulation - to manipulate with data directly. */
|
|
Container & getData()
|
|
{
|
|
return data;
|
|
}
|
|
|
|
const Container & getData() const
|
|
{
|
|
return data;
|
|
}
|
|
|
|
const T & getElement(size_t n) const
|
|
{
|
|
return data[n];
|
|
}
|
|
|
|
T & getElement(size_t n)
|
|
{
|
|
return data[n];
|
|
}
|
|
|
|
protected:
|
|
Container data;
|
|
};
|
|
|
|
template <typename T>
|
|
template <typename Type>
|
|
ColumnPtr ColumnVector<T>::indexImpl(const PaddedPODArray<Type> & indexes, size_t limit) const
|
|
{
|
|
size_t size = indexes.size();
|
|
|
|
if (limit == 0)
|
|
limit = size;
|
|
else
|
|
limit = std::min(size, limit);
|
|
|
|
auto res = this->create(limit);
|
|
typename Self::Container & res_data = res->getData();
|
|
for (size_t i = 0; i < limit; ++i)
|
|
res_data[i] = data[indexes[i]];
|
|
|
|
return res;
|
|
}
|
|
|
|
}
|