ClickHouse/dbms/src/Columns/ColumnVector.cpp

319 lines
8.6 KiB
C++
Raw Normal View History

2017-03-11 01:12:51 +00:00
#include <cstring>
#include <cmath>
#include <Common/Exception.h>
#include <Common/Arena.h>
#include <Common/SipHash.h>
#include <Common/NaNUtils.h>
2017-03-11 01:12:51 +00:00
#include <IO/WriteBuffer.h>
#include <IO/WriteHelpers.h>
2017-03-11 01:12:51 +00:00
#include <Columns/ColumnVector.h>
2017-03-11 01:12:51 +00:00
2017-03-11 01:29:45 +00:00
#include <ext/bit_cast.hpp>
2017-03-11 01:12:51 +00:00
#if __SSE2__
#include <emmintrin.h>
2017-03-11 01:12:51 +00:00
#endif
namespace DB
{
namespace ErrorCodes
{
extern const int PARAMETER_OUT_OF_BOUND;
extern const int SIZES_OF_COLUMNS_DOESNT_MATCH;
2017-03-11 01:12:51 +00:00
}
template <typename T>
StringRef ColumnVector<T>::serializeValueIntoArena(size_t n, Arena & arena, char const *& begin) const
{
auto pos = arena.allocContinue(sizeof(T), begin);
memcpy(pos, &data[n], sizeof(T));
return StringRef(pos, sizeof(T));
2017-03-11 01:12:51 +00:00
}
template <typename T>
const char * ColumnVector<T>::deserializeAndInsertFromArena(const char * pos)
{
data.push_back(*reinterpret_cast<const T *>(pos));
return pos + sizeof(T);
2017-03-11 01:12:51 +00:00
}
template <typename T>
void ColumnVector<T>::updateHashWithValue(size_t n, SipHash & hash) const
{
hash.update(reinterpret_cast<const char *>(&data[n]), sizeof(T));
2017-03-11 01:12:51 +00:00
}
template <typename T>
struct ColumnVector<T>::less
{
const Self & parent;
int nan_direction_hint;
less(const Self & parent_, int nan_direction_hint_) : parent(parent_), nan_direction_hint(nan_direction_hint_) {}
bool operator()(size_t lhs, size_t rhs) const { return CompareHelper<T>::less(parent.data[lhs], parent.data[rhs], nan_direction_hint); }
2017-03-11 01:12:51 +00:00
};
template <typename T>
struct ColumnVector<T>::greater
{
const Self & parent;
int nan_direction_hint;
greater(const Self & parent_, int nan_direction_hint_) : parent(parent_), nan_direction_hint(nan_direction_hint_) {}
bool operator()(size_t lhs, size_t rhs) const { return CompareHelper<T>::greater(parent.data[lhs], parent.data[rhs], nan_direction_hint); }
2017-03-11 01:12:51 +00:00
};
template <typename T>
void ColumnVector<T>::getPermutation(bool reverse, size_t limit, int nan_direction_hint, Permutation & res) const
2017-03-11 01:12:51 +00:00
{
size_t s = data.size();
res.resize(s);
for (size_t i = 0; i < s; ++i)
res[i] = i;
if (limit >= s)
limit = 0;
if (limit)
{
if (reverse)
std::partial_sort(res.begin(), res.begin() + limit, res.end(), greater(*this, nan_direction_hint));
else
std::partial_sort(res.begin(), res.begin() + limit, res.end(), less(*this, nan_direction_hint));
}
else
{
if (reverse)
std::sort(res.begin(), res.end(), greater(*this, nan_direction_hint));
else
std::sort(res.begin(), res.end(), less(*this, nan_direction_hint));
}
2017-03-11 01:12:51 +00:00
}
template <typename T>
std::string ColumnVector<T>::getName() const
{
return "ColumnVector<" + TypeName<T>::get() + ">";
2017-03-11 01:12:51 +00:00
}
template <typename T>
ColumnPtr ColumnVector<T>::cloneResized(size_t size) const
{
ColumnPtr new_col_holder = std::make_shared<Self>();
2017-03-11 01:12:51 +00:00
if (size > 0)
{
auto & new_col = static_cast<Self &>(*new_col_holder);
new_col.data.resize(size);
2017-03-11 01:12:51 +00:00
size_t count = std::min(this->size(), size);
memcpy(&new_col.data[0], &data[0], count * sizeof(data[0]));
2017-03-11 01:12:51 +00:00
if (size > count)
memset(&new_col.data[count], value_type(), size - count);
}
2017-03-11 01:12:51 +00:00
return new_col_holder;
2017-03-11 01:12:51 +00:00
}
template <typename T>
UInt64 ColumnVector<T>::get64(size_t n) const
{
return ext::bit_cast<UInt64>(data[n]);
2017-03-11 01:12:51 +00:00
}
template <typename T>
void ColumnVector<T>::insertRangeFrom(const IColumn & src, size_t start, size_t length)
{
const ColumnVector & src_vec = static_cast<const ColumnVector &>(src);
if (start + length > src_vec.data.size())
throw Exception("Parameters start = "
+ toString(start) + ", length = "
+ toString(length) + " are out of bound in ColumnVector<T>::insertRangeFrom method"
" (data.size() = " + toString(src_vec.data.size()) + ").",
ErrorCodes::PARAMETER_OUT_OF_BOUND);
size_t old_size = data.size();
data.resize(old_size + length);
memcpy(&data[old_size], &src_vec.data[start], length * sizeof(data[0]));
2017-03-11 01:12:51 +00:00
}
template <typename T>
ColumnPtr ColumnVector<T>::filter(const IColumn::Filter & filt, ssize_t result_size_hint) const
{
size_t size = data.size();
if (size != filt.size())
throw Exception("Size of filter doesn't match size of column.", ErrorCodes::SIZES_OF_COLUMNS_DOESNT_MATCH);
2017-03-11 01:12:51 +00:00
std::shared_ptr<Self> res = std::make_shared<Self>();
typename Self::Container_t & res_data = res->getData();
2017-03-11 01:12:51 +00:00
if (result_size_hint)
res_data.reserve(result_size_hint > 0 ? result_size_hint : size);
2017-03-11 01:12:51 +00:00
const UInt8 * filt_pos = &filt[0];
const UInt8 * filt_end = filt_pos + size;
const T * data_pos = &data[0];
2017-03-11 01:12:51 +00:00
#if __SSE2__
/** A slightly more optimized version.
* Based on the assumption that often pieces of consecutive values
* completely pass or do not pass the filter.
* Therefore, we will optimistically check the parts of `SIMD_BYTES` values.
*/
static constexpr size_t SIMD_BYTES = 16;
const __m128i zero16 = _mm_setzero_si128();
const UInt8 * filt_end_sse = filt_pos + size / SIMD_BYTES * SIMD_BYTES;
while (filt_pos < filt_end_sse)
{
int mask = _mm_movemask_epi8(_mm_cmpgt_epi8(_mm_loadu_si128(reinterpret_cast<const __m128i *>(filt_pos)), zero16));
if (0 == mask)
{
/// Nothing is inserted.
}
else if (0xFFFF == mask)
{
res_data.insert(data_pos, data_pos + SIMD_BYTES);
}
else
{
for (size_t i = 0; i < SIMD_BYTES; ++i)
if (filt_pos[i])
res_data.push_back(data_pos[i]);
}
filt_pos += SIMD_BYTES;
data_pos += SIMD_BYTES;
}
2017-03-11 01:12:51 +00:00
#endif
while (filt_pos < filt_end)
{
if (*filt_pos)
res_data.push_back(*data_pos);
2017-03-11 01:12:51 +00:00
++filt_pos;
++data_pos;
}
2017-03-11 01:12:51 +00:00
return res;
2017-03-11 01:12:51 +00:00
}
template <typename T>
ColumnPtr ColumnVector<T>::permute(const IColumn::Permutation & perm, size_t limit) const
{
size_t size = data.size();
2017-03-11 01:12:51 +00:00
if (limit == 0)
limit = size;
else
limit = std::min(size, limit);
2017-03-11 01:12:51 +00:00
if (perm.size() < limit)
throw Exception("Size of permutation is less than required.", ErrorCodes::SIZES_OF_COLUMNS_DOESNT_MATCH);
2017-03-11 01:12:51 +00:00
std::shared_ptr<Self> res = std::make_shared<Self>(limit);
typename Self::Container_t & res_data = res->getData();
for (size_t i = 0; i < limit; ++i)
res_data[i] = data[perm[i]];
2017-03-11 01:12:51 +00:00
return res;
2017-03-11 01:12:51 +00:00
}
template <typename T>
ColumnPtr ColumnVector<T>::replicate(const IColumn::Offsets_t & offsets) const
{
size_t size = data.size();
if (size != offsets.size())
throw Exception("Size of offsets doesn't match size of column.", ErrorCodes::SIZES_OF_COLUMNS_DOESNT_MATCH);
2017-03-11 01:12:51 +00:00
if (0 == size)
return std::make_shared<Self>();
2017-03-11 01:12:51 +00:00
std::shared_ptr<Self> res = std::make_shared<Self>();
typename Self::Container_t & res_data = res->getData();
res_data.reserve(offsets.back());
2017-03-11 01:12:51 +00:00
IColumn::Offset_t prev_offset = 0;
for (size_t i = 0; i < size; ++i)
{
size_t size_to_replicate = offsets[i] - prev_offset;
prev_offset = offsets[i];
2017-03-11 01:12:51 +00:00
for (size_t j = 0; j < size_to_replicate; ++j)
res_data.push_back(data[i]);
}
2017-03-11 01:12:51 +00:00
return res;
2017-03-11 01:12:51 +00:00
}
template <typename T>
void ColumnVector<T>::getExtremes(Field & min, Field & max) const
{
size_t size = data.size();
if (size == 0)
{
min = typename NearestFieldType<T>::Type(0);
max = typename NearestFieldType<T>::Type(0);
return;
}
bool has_value = false;
/** Skip all NaNs in extremes calculation.
* If all values are NaNs, then return NaN.
* NOTE: There exist many different NaNs.
* Different NaN could be returned: not bit-exact value as one of NaNs from column.
*/
T cur_min = NaNOrZero<T>();
T cur_max = NaNOrZero<T>();
for (const T x : data)
{
if (isNaN(x))
continue;
if (!has_value)
{
cur_min = x;
cur_max = x;
has_value = true;
continue;
}
if (x < cur_min)
cur_min = x;
if (x > cur_max)
cur_max = x;
}
min = typename NearestFieldType<T>::Type(cur_min);
max = typename NearestFieldType<T>::Type(cur_max);
2017-03-11 01:12:51 +00:00
}
/// Explicit template instantinations - to avoid code bloat in headers.
template class ColumnVector<UInt8>;
template class ColumnVector<UInt16>;
template class ColumnVector<UInt32>;
template class ColumnVector<UInt64>;
template class ColumnVector<Int8>;
template class ColumnVector<Int16>;
template class ColumnVector<Int32>;
template class ColumnVector<Int64>;
template class ColumnVector<Float32>;
template class ColumnVector<Float64>;
}