This patch introduces type_info class which contains all type information needed by IMR deserialisation contexts.
66 lines
2.0 KiB
C++
66 lines
2.0 KiB
C++
/*
|
|
* Copyright (C) 2018 ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* This file is part of Scylla.
|
|
*
|
|
* Scylla is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Scylla is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Scylla. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
|
|
namespace data {
|
|
|
|
/// Type information
|
|
///
|
|
/// `type_info` keeps the type information relevant for the serialisation code.
|
|
/// In particular we need to distinguish between fixed-size and variable-sized
|
|
/// types. Collections and counters are considered to be variable-sized types.
|
|
///
|
|
/// \note Even if the type is fixed-size (e.g. `int32_type`) the value can be
|
|
/// empty and its length will be 0. This is a special (and rare) case handled
|
|
/// by the cell implementation and ignored by `type_info`.
|
|
class type_info {
|
|
size_t _fixed_size;
|
|
private:
|
|
explicit type_info(size_t size) noexcept : _fixed_size(size) { }
|
|
public:
|
|
static type_info make_fixed_size(size_t size) noexcept {
|
|
return type_info { size_t(size) };
|
|
}
|
|
static type_info make_variable_size() noexcept {
|
|
return type_info { 0 };
|
|
}
|
|
static type_info make_collection() noexcept {
|
|
return type_info { 0 };
|
|
}
|
|
|
|
/// Check whether the type is fixed-size.
|
|
bool is_fixed_size() const noexcept {
|
|
return _fixed_size > 0;
|
|
}
|
|
|
|
/// Get the size of the value of a fixed-size type.
|
|
///
|
|
/// Valid only if `is_fixed_size()` returns `true`.
|
|
size_t value_size() const noexcept {
|
|
return _fixed_size;
|
|
}
|
|
};
|
|
|
|
}
|