ClickHouse/dbms/src/Columns/ColumnFixedString.h

163 lines
4.8 KiB
C++
Raw Normal View History

2011-08-07 02:08:22 +00:00
#pragma once
#include <Common/PODArray.h>
2019-03-03 20:08:39 +00:00
#include <Common/memcmpSmall.h>
#include <Common/typeid_cast.h>
#include <Common/assert_cast.h>
#include <Columns/IColumn.h>
2018-12-27 00:34:49 +00:00
#include <Columns/ColumnVectorHelper.h>
2019-09-27 13:44:33 +00:00
#include <Core/Field.h>
2011-08-07 02:08:22 +00:00
namespace DB
{
/** A column of values of "fixed-length string" type.
2017-03-09 00:56:38 +00:00
* If you insert a smaller string, it will be padded with zero bytes.
2011-08-07 02:08:22 +00:00
*/
class ColumnFixedString final : public COWHelper<ColumnVectorHelper, ColumnFixedString>
2011-08-07 02:08:22 +00:00
{
public:
friend class COWHelper<ColumnVectorHelper, ColumnFixedString>;
using Chars = PaddedPODArray<UInt8>;
2011-08-07 02:08:22 +00:00
private:
/// Bytes of rows, laid in succession. The strings are stored without a trailing zero byte.
/** NOTE It is required that the offset and type of chars in the object be the same as that of `data in ColumnUInt8`.
* Used in `packFixed` function (AggregationCommon.h)
*/
Chars chars;
/// The size of the rows.
const size_t n;
2011-08-07 02:08:22 +00:00
template <bool positive>
struct less;
2017-03-11 00:38:30 +00:00
/** Create an empty column of strings of fixed-length `n` */
ColumnFixedString(size_t n_) : n(n_) {}
2011-08-07 02:08:22 +00:00
ColumnFixedString(const ColumnFixedString & src) : chars(src.chars.begin(), src.chars.end()), n(src.n) {}
public:
std::string getName() const override { return "FixedString(" + std::to_string(n) + ")"; }
const char * getFamilyName() const override { return "FixedString"; }
2011-08-28 00:31:30 +00:00
MutableColumnPtr cloneResized(size_t size) const override;
size_t size() const override
{
return chars.size() / n;
}
size_t byteSize() const override
{
return chars.size() + sizeof(n);
}
2014-08-20 04:57:03 +00:00
size_t allocatedBytes() const override
{
return chars.allocated_bytes() + sizeof(n);
}
void protect() override
{
chars.protect();
}
Field operator[](size_t index) const override
{
return String(reinterpret_cast<const char *>(&chars[n * index]), n);
}
2011-08-07 02:08:22 +00:00
void get(size_t index, Field & res) const override
{
res.assignString(reinterpret_cast<const char *>(&chars[n * index]), n);
}
StringRef getDataAt(size_t index) const override
{
return StringRef(&chars[n * index], n);
}
void insert(const Field & x) override;
2011-08-07 02:08:22 +00:00
void insertFrom(const IColumn & src_, size_t index) override;
void insertData(const char * pos, size_t length) override;
void insertDefault() override
{
chars.resize_fill(chars.size() + n);
}
2011-09-04 00:22:19 +00:00
void popBack(size_t elems) override
{
chars.resize_assume_reserved(chars.size() - n * elems);
}
StringRef serializeValueIntoArena(size_t index, Arena & arena, char const *& begin) const override;
const char * deserializeAndInsertFromArena(const char * pos) override;
void updateHashWithValue(size_t index, SipHash & hash) const override;
2017-12-01 17:49:12 +00:00
int compareAt(size_t p1, size_t p2, const IColumn & rhs_, int /*nan_direction_hint*/) const override
{
const ColumnFixedString & rhs = assert_cast<const ColumnFixedString &>(rhs_);
2019-03-03 20:08:39 +00:00
return memcmpSmallAllowOverflow15(chars.data() + p1 * n, rhs.chars.data() + p2 * n, n);
}
2011-09-26 11:05:38 +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
void insertRangeFrom(const IColumn & src, size_t start, size_t length) override;
2018-03-20 14:17:09 +00:00
ColumnPtr filter(const IColumn::Filter & filt, ssize_t result_size_hint) const override;
ColumnPtr permute(const Permutation & perm, size_t limit) const override;
ColumnPtr index(const IColumn & indexes, size_t limit) const override;
2018-04-23 16:40:25 +00:00
template <typename Type>
ColumnPtr indexImpl(const PaddedPODArray<Type> & indexes, size_t limit) const;
2018-04-23 16:40:25 +00:00
2018-03-20 14:17:09 +00:00
ColumnPtr replicate(const Offsets & offsets) const override;
MutableColumns scatter(ColumnIndex num_columns, const Selector & selector) const override
{
return scatterImpl<ColumnFixedString>(num_columns, selector);
}
void gather(ColumnGathererStream & gatherer_stream) override;
void reserve(size_t size) override
{
chars.reserve(n * size);
}
void getExtremes(Field & min, Field & max) const override;
2017-03-11 00:38:30 +00:00
bool structureEquals(const IColumn & rhs) const override
{
if (auto rhs_concrete = typeid_cast<const ColumnFixedString *>(&rhs))
return n == rhs_concrete->n;
return false;
}
2017-03-11 00:38:30 +00:00
bool canBeInsideNullable() const override { return true; }
bool isFixedAndContiguous() const override { return true; }
size_t sizeOfValueIfFixed() const override { return n; }
StringRef getRawData() const override { return StringRef(chars.data(), chars.size()); }
/// Specialized part of interface, not from IColumn.
void insertString(const String & string) { insertData(string.c_str(), string.size()); }
Chars & getChars() { return chars; }
const Chars & getChars() const { return chars; }
size_t getN() const { return n; }
2011-08-07 02:08:22 +00:00
};
}