2020-07-20 09:57:17 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Core/SettingsFields.h>
|
|
|
|
#include <Common/SettingsChanges.h>
|
2021-10-02 07:13:14 +00:00
|
|
|
#include <base/range.h>
|
2020-07-29 16:30:58 +00:00
|
|
|
#include <boost/blank.hpp>
|
2020-07-20 09:57:17 +00:00
|
|
|
#include <unordered_map>
|
2022-07-07 22:16:01 +00:00
|
|
|
#include <boost/program_options/options_description.hpp>
|
2020-07-20 09:57:17 +00:00
|
|
|
|
|
|
|
|
2022-07-07 22:16:01 +00:00
|
|
|
namespace boost::program_options
|
|
|
|
{
|
|
|
|
class options_description;
|
|
|
|
}
|
|
|
|
|
2020-07-20 09:57:17 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2022-07-07 22:16:01 +00:00
|
|
|
|
2020-07-20 09:57:17 +00:00
|
|
|
class ReadBuffer;
|
|
|
|
class WriteBuffer;
|
|
|
|
|
|
|
|
enum class SettingsWriteFormat
|
|
|
|
{
|
|
|
|
BINARY, /// Part of the settings are serialized as strings, and other part as variants. This is the old behaviour.
|
|
|
|
STRINGS_WITH_FLAGS, /// All settings are serialized as strings. Before each value the flag `is_important` is serialized.
|
|
|
|
DEFAULT = STRINGS_WITH_FLAGS,
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Template class to define collections of settings.
|
|
|
|
* Example of usage:
|
|
|
|
*
|
|
|
|
* mysettings.h:
|
|
|
|
* #define APPLY_FOR_MYSETTINGS(M) \
|
|
|
|
* M(UInt64, a, 100, "Description of a", 0) \
|
|
|
|
* M(Float, f, 3.11, "Description of f", IMPORTANT) // IMPORTANT - means the setting can't be ignored by older versions) \
|
|
|
|
* M(String, s, "default", "Description of s", 0)
|
|
|
|
*
|
|
|
|
* DECLARE_SETTINGS_TRAITS(MySettingsTraits, APPLY_FOR_MYSETTINGS)
|
|
|
|
|
|
|
|
* struct MySettings : public BaseSettings<MySettingsTraits>
|
|
|
|
* {
|
|
|
|
* };
|
|
|
|
*
|
|
|
|
* mysettings.cpp:
|
|
|
|
* IMPLEMENT_SETTINGS_TRAITS(MySettingsTraits, APPLY_FOR_MYSETTINGS)
|
|
|
|
*/
|
2022-03-12 17:38:11 +00:00
|
|
|
template <class TTraits>
|
|
|
|
class BaseSettings : public TTraits::Data
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2020-07-29 16:30:58 +00:00
|
|
|
using CustomSettingMap = std::unordered_map<std::string_view, std::pair<std::shared_ptr<const String>, SettingFieldCustom>>;
|
2020-07-20 09:57:17 +00:00
|
|
|
public:
|
2022-07-07 12:29:23 +00:00
|
|
|
BaseSettings() = default;
|
|
|
|
BaseSettings(const BaseSettings &) = default;
|
2022-07-14 12:35:32 +00:00
|
|
|
BaseSettings(BaseSettings &&) noexcept = default;
|
2022-07-07 12:29:23 +00:00
|
|
|
BaseSettings & operator=(const BaseSettings &) = default;
|
2022-07-14 12:35:32 +00:00
|
|
|
BaseSettings & operator=(BaseSettings &&) noexcept = default;
|
2022-07-07 12:29:23 +00:00
|
|
|
virtual ~BaseSettings() = default;
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
using Traits = TTraits;
|
2020-07-20 09:57:17 +00:00
|
|
|
|
2022-07-15 19:11:05 +00:00
|
|
|
virtual void set(std::string_view name, const Field & value);
|
2022-07-14 16:11:35 +00:00
|
|
|
Field get(std::string_view name) const;
|
2020-07-20 09:57:17 +00:00
|
|
|
|
2022-07-14 16:11:35 +00:00
|
|
|
void setString(std::string_view name, const String & value);
|
|
|
|
String getString(std::string_view name) const;
|
2020-07-20 09:57:17 +00:00
|
|
|
|
2022-07-14 16:11:35 +00:00
|
|
|
bool tryGet(std::string_view name, Field & value) const;
|
|
|
|
bool tryGetString(std::string_view name, String & value) const;
|
2020-07-20 09:57:17 +00:00
|
|
|
|
2022-07-14 16:11:35 +00:00
|
|
|
bool isChanged(std::string_view name) const;
|
2020-07-20 09:57:17 +00:00
|
|
|
SettingsChanges changes() const;
|
|
|
|
void applyChange(const SettingChange & change);
|
|
|
|
void applyChanges(const SettingsChanges & changes);
|
2022-03-12 17:38:11 +00:00
|
|
|
void applyChanges(const BaseSettings & changes); /// NOLINT
|
2020-07-20 09:57:17 +00:00
|
|
|
|
|
|
|
/// Resets all the settings to their default values.
|
|
|
|
void resetToDefault();
|
2022-07-07 12:29:23 +00:00
|
|
|
/// Resets specified setting to its default value.
|
2022-07-15 19:11:05 +00:00
|
|
|
void resetToDefault(std::string_view name);
|
2020-07-20 09:57:17 +00:00
|
|
|
|
2022-07-14 16:11:35 +00:00
|
|
|
bool has(std::string_view name) const { return hasBuiltin(name) || hasCustom(name); }
|
|
|
|
static bool hasBuiltin(std::string_view name);
|
|
|
|
bool hasCustom(std::string_view name) const;
|
2020-07-29 16:30:58 +00:00
|
|
|
|
2022-07-14 16:11:35 +00:00
|
|
|
const char * getTypeName(std::string_view name) const;
|
|
|
|
const char * getDescription(std::string_view name) const;
|
2020-07-20 09:57:17 +00:00
|
|
|
|
|
|
|
/// Checks if it's possible to assign a field to a specified value and throws an exception if not.
|
|
|
|
/// This function doesn't change the fields, it performs check only.
|
2022-07-14 16:11:35 +00:00
|
|
|
static void checkCanSet(std::string_view name, const Field & value);
|
|
|
|
static void checkCanSetString(std::string_view name, const String & str);
|
2020-07-20 09:57:17 +00:00
|
|
|
|
|
|
|
/// Conversions without changing the fields.
|
2022-07-14 16:11:35 +00:00
|
|
|
static Field castValueUtil(std::string_view name, const Field & value);
|
|
|
|
static String valueToStringUtil(std::string_view name, const Field & value);
|
|
|
|
static Field stringToValueUtil(std::string_view name, const String & str);
|
2020-07-20 09:57:17 +00:00
|
|
|
|
|
|
|
void write(WriteBuffer & out, SettingsWriteFormat format = SettingsWriteFormat::DEFAULT) const;
|
|
|
|
void read(ReadBuffer & in, SettingsWriteFormat format = SettingsWriteFormat::DEFAULT);
|
|
|
|
|
|
|
|
// A debugging aid.
|
|
|
|
std::string toString() const;
|
|
|
|
|
|
|
|
/// Represents a reference to a setting field.
|
|
|
|
class SettingFieldRef
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
const String & getName() const;
|
|
|
|
Field getValue() const;
|
2023-02-23 23:24:57 +00:00
|
|
|
Field getDefaultValue() const;
|
2020-07-20 09:57:17 +00:00
|
|
|
String getValueString() const;
|
2023-02-23 23:24:57 +00:00
|
|
|
String getDefaultValueString() const;
|
2020-07-20 09:57:17 +00:00
|
|
|
bool isValueChanged() const;
|
|
|
|
const char * getTypeName() const;
|
|
|
|
const char * getDescription() const;
|
2020-07-29 16:30:58 +00:00
|
|
|
bool isCustom() const;
|
2021-11-10 15:45:15 +00:00
|
|
|
bool isObsolete() const;
|
2020-07-20 09:57:17 +00:00
|
|
|
|
|
|
|
bool operator==(const SettingFieldRef & other) const { return (getName() == other.getName()) && (getValue() == other.getValue()); }
|
|
|
|
bool operator!=(const SettingFieldRef & other) const { return !(*this == other); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend class BaseSettings;
|
2020-08-03 17:42:37 +00:00
|
|
|
const BaseSettings * settings;
|
|
|
|
const typename Traits::Accessor * accessor;
|
|
|
|
size_t index;
|
|
|
|
std::conditional_t<Traits::allow_custom_settings, const CustomSettingMap::mapped_type*, boost::blank> custom_setting;
|
2020-07-20 09:57:17 +00:00
|
|
|
};
|
|
|
|
|
2022-07-07 22:16:01 +00:00
|
|
|
/// Adds program options to set the settings from a command line.
|
|
|
|
/// (Don't forget to call notify() on the `variables_map` after parsing it!)
|
|
|
|
void addProgramOptions(boost::program_options::options_description & options);
|
|
|
|
|
|
|
|
/// Adds program options as to set the settings from a command line.
|
|
|
|
/// Allows to set one setting multiple times, the last value will be used.
|
|
|
|
/// (Don't forget to call notify() on the `variables_map` after parsing it!)
|
|
|
|
void addProgramOptionsAsMultitokens(boost::program_options::options_description & options);
|
|
|
|
|
2023-02-04 12:00:16 +00:00
|
|
|
void addProgramOption(boost::program_options::options_description & options, std::string_view name, const SettingFieldRef & field);
|
|
|
|
void addProgramOptionAsMultitoken(boost::program_options::options_description & options, std::string_view name, const SettingFieldRef & field);
|
2022-07-07 22:16:01 +00:00
|
|
|
|
2020-07-20 09:57:17 +00:00
|
|
|
enum SkipFlags
|
|
|
|
{
|
|
|
|
SKIP_NONE = 0,
|
|
|
|
SKIP_CHANGED = 0x01,
|
|
|
|
SKIP_UNCHANGED = 0x02,
|
2020-07-29 16:30:58 +00:00
|
|
|
SKIP_BUILTIN = 0x04,
|
|
|
|
SKIP_CUSTOM = 0x08,
|
|
|
|
SKIP_ALL = SKIP_CHANGED | SKIP_UNCHANGED | SKIP_CUSTOM | SKIP_BUILTIN,
|
2020-07-20 09:57:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Iterator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Iterator & operator++();
|
2022-03-12 17:38:11 +00:00
|
|
|
Iterator operator++(int); /// NOLINT
|
2020-08-03 17:42:37 +00:00
|
|
|
const SettingFieldRef & operator *() const { return field_ref; }
|
2020-07-20 09:57:17 +00:00
|
|
|
|
|
|
|
bool operator ==(const Iterator & other) const;
|
|
|
|
bool operator !=(const Iterator & other) const { return !(*this == other); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend class BaseSettings;
|
|
|
|
Iterator(const BaseSettings & settings_, const typename Traits::Accessor & accessor_, SkipFlags skip_flags_);
|
|
|
|
void doSkip();
|
2020-08-03 17:42:37 +00:00
|
|
|
void setPointerToCustomSetting();
|
2020-07-20 09:57:17 +00:00
|
|
|
|
2020-08-03 17:42:37 +00:00
|
|
|
SettingFieldRef field_ref;
|
2020-07-29 16:30:58 +00:00
|
|
|
std::conditional_t<Traits::allow_custom_settings, CustomSettingMap::const_iterator, boost::blank> custom_settings_iterator;
|
2020-07-20 09:57:17 +00:00
|
|
|
SkipFlags skip_flags;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Range
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Range(const BaseSettings & settings_, SkipFlags skip_flags_) : settings(settings_), accessor(Traits::Accessor::instance()), skip_flags(skip_flags_) {}
|
|
|
|
Iterator begin() const { return Iterator(settings, accessor, skip_flags); }
|
|
|
|
Iterator end() const { return Iterator(settings, accessor, SKIP_ALL); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
const BaseSettings & settings;
|
|
|
|
const typename Traits::Accessor & accessor;
|
|
|
|
SkipFlags skip_flags;
|
|
|
|
};
|
|
|
|
|
|
|
|
Range all(SkipFlags skip_flags = SKIP_NONE) const { return Range{*this, skip_flags}; }
|
|
|
|
Range allChanged() const { return all(SKIP_UNCHANGED); }
|
|
|
|
Range allUnchanged() const { return all(SKIP_CHANGED); }
|
2020-07-29 16:30:58 +00:00
|
|
|
Range allBuiltin() const { return all(SKIP_CUSTOM); }
|
|
|
|
Range allCustom() const { return all(SKIP_BUILTIN); }
|
2020-07-20 09:57:17 +00:00
|
|
|
|
|
|
|
Iterator begin() const { return allChanged().begin(); }
|
|
|
|
Iterator end() const { return allChanged().end(); }
|
2020-07-29 16:30:58 +00:00
|
|
|
|
|
|
|
private:
|
2022-07-14 16:11:35 +00:00
|
|
|
SettingFieldCustom & getCustomSetting(std::string_view name);
|
|
|
|
const SettingFieldCustom & getCustomSetting(std::string_view name) const;
|
|
|
|
const SettingFieldCustom * tryGetCustomSetting(std::string_view name) const;
|
2020-07-29 16:30:58 +00:00
|
|
|
|
|
|
|
std::conditional_t<Traits::allow_custom_settings, CustomSettingMap, boost::blank> custom_settings_map;
|
2020-07-20 09:57:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct BaseSettingsHelpers
|
|
|
|
{
|
2022-07-14 16:11:35 +00:00
|
|
|
[[noreturn]] static void throwSettingNotFound(std::string_view name);
|
|
|
|
static void warningSettingNotFound(std::string_view name);
|
2020-07-20 09:57:17 +00:00
|
|
|
|
2022-07-14 16:11:35 +00:00
|
|
|
static void writeString(std::string_view str, WriteBuffer & out);
|
2020-07-20 09:57:17 +00:00
|
|
|
static String readString(ReadBuffer & in);
|
|
|
|
|
|
|
|
enum Flags : UInt64
|
|
|
|
{
|
|
|
|
IMPORTANT = 0x01,
|
2020-07-29 16:30:58 +00:00
|
|
|
CUSTOM = 0x02,
|
2021-11-10 15:45:15 +00:00
|
|
|
OBSOLETE = 0x04,
|
2020-07-20 09:57:17 +00:00
|
|
|
};
|
|
|
|
static void writeFlags(Flags flags, WriteBuffer & out);
|
|
|
|
static Flags readFlags(ReadBuffer & in);
|
|
|
|
};
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
void BaseSettings<TTraits>::set(std::string_view name, const Field & value)
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2020-07-20 09:57:17 +00:00
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
|
|
|
if (size_t index = accessor.find(name); index != static_cast<size_t>(-1))
|
|
|
|
accessor.setValue(*this, index, value);
|
|
|
|
else
|
2020-07-29 16:30:58 +00:00
|
|
|
getCustomSetting(name) = value;
|
2020-07-20 09:57:17 +00:00
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
Field BaseSettings<TTraits>::get(std::string_view name) const
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2020-07-20 09:57:17 +00:00
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
|
|
|
if (size_t index = accessor.find(name); index != static_cast<size_t>(-1))
|
|
|
|
return accessor.getValue(*this, index);
|
|
|
|
else
|
2020-07-29 16:30:58 +00:00
|
|
|
return static_cast<Field>(getCustomSetting(name));
|
2020-07-20 09:57:17 +00:00
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
void BaseSettings<TTraits>::setString(std::string_view name, const String & value)
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2020-07-20 09:57:17 +00:00
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
|
|
|
if (size_t index = accessor.find(name); index != static_cast<size_t>(-1))
|
|
|
|
accessor.setValueString(*this, index, value);
|
|
|
|
else
|
2020-07-29 16:30:58 +00:00
|
|
|
getCustomSetting(name).parseFromString(value);
|
2020-07-20 09:57:17 +00:00
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
String BaseSettings<TTraits>::getString(std::string_view name) const
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2020-07-20 09:57:17 +00:00
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
|
|
|
if (size_t index = accessor.find(name); index != static_cast<size_t>(-1))
|
|
|
|
return accessor.getValueString(*this, index);
|
|
|
|
else
|
2020-07-29 16:30:58 +00:00
|
|
|
return getCustomSetting(name).toString();
|
2020-07-20 09:57:17 +00:00
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
bool BaseSettings<TTraits>::tryGet(std::string_view name, Field & value) const
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2020-07-20 09:57:17 +00:00
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
|
|
|
if (size_t index = accessor.find(name); index != static_cast<size_t>(-1))
|
|
|
|
{
|
|
|
|
value = accessor.getValue(*this, index);
|
|
|
|
return true;
|
|
|
|
}
|
2020-07-29 16:30:58 +00:00
|
|
|
if (const auto * custom_setting = tryGetCustomSetting(name))
|
|
|
|
{
|
|
|
|
value = static_cast<Field>(*custom_setting);
|
|
|
|
return true;
|
|
|
|
}
|
2020-07-20 09:57:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
bool BaseSettings<TTraits>::tryGetString(std::string_view name, String & value) const
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2020-07-20 09:57:17 +00:00
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
|
|
|
if (size_t index = accessor.find(name); index != static_cast<size_t>(-1))
|
|
|
|
{
|
|
|
|
value = accessor.getValueString(*this, index);
|
|
|
|
return true;
|
|
|
|
}
|
2020-07-29 16:30:58 +00:00
|
|
|
if (const auto * custom_setting = tryGetCustomSetting(name))
|
|
|
|
{
|
|
|
|
value = custom_setting->toString();
|
|
|
|
return true;
|
|
|
|
}
|
2020-07-20 09:57:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
bool BaseSettings<TTraits>::isChanged(std::string_view name) const
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2020-07-20 09:57:17 +00:00
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
|
|
|
if (size_t index = accessor.find(name); index != static_cast<size_t>(-1))
|
|
|
|
return accessor.isValueChanged(*this, index);
|
2020-07-29 16:30:58 +00:00
|
|
|
return tryGetCustomSetting(name) != nullptr;
|
2020-07-20 09:57:17 +00:00
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
SettingsChanges BaseSettings<TTraits>::changes() const
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
|
|
|
SettingsChanges res;
|
|
|
|
for (const auto & field : *this)
|
|
|
|
res.emplace_back(field.getName(), field.getValue());
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
void BaseSettings<TTraits>::applyChange(const SettingChange & change)
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
|
|
|
set(change.name, change.value);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
void BaseSettings<TTraits>::applyChanges(const SettingsChanges & changes)
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
|
|
|
for (const auto & change : changes)
|
|
|
|
applyChange(change);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
void BaseSettings<TTraits>::applyChanges(const BaseSettings & other_settings)
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
|
|
|
for (const auto & field : other_settings)
|
|
|
|
set(field.getName(), field.getValue());
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
void BaseSettings<TTraits>::resetToDefault()
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
2021-06-15 19:55:21 +00:00
|
|
|
for (size_t i : collections::range(accessor.size()))
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
|
|
|
if (accessor.isValueChanged(*this, i))
|
|
|
|
accessor.resetValueToDefault(*this, i);
|
|
|
|
}
|
2020-07-29 16:30:58 +00:00
|
|
|
|
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
custom_settings_map.clear();
|
2020-07-20 09:57:17 +00:00
|
|
|
}
|
|
|
|
|
2022-07-07 12:29:23 +00:00
|
|
|
template <typename TTraits>
|
2022-07-15 19:11:05 +00:00
|
|
|
void BaseSettings<TTraits>::resetToDefault(std::string_view name)
|
2022-07-07 12:29:23 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2022-07-07 12:29:23 +00:00
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
|
|
|
if (size_t index = accessor.find(name); index != static_cast<size_t>(-1))
|
|
|
|
accessor.resetValueToDefault(*this, index);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
bool BaseSettings<TTraits>::hasBuiltin(std::string_view name)
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2020-07-20 09:57:17 +00:00
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
|
|
|
return (accessor.find(name) != static_cast<size_t>(-1));
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
bool BaseSettings<TTraits>::hasCustom(std::string_view name) const
|
2020-07-29 16:30:58 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2020-07-29 16:30:58 +00:00
|
|
|
return tryGetCustomSetting(name);
|
|
|
|
}
|
2020-07-20 09:57:17 +00:00
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
const char * BaseSettings<TTraits>::getTypeName(std::string_view name) const
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2020-07-20 09:57:17 +00:00
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
|
|
|
if (size_t index = accessor.find(name); index != static_cast<size_t>(-1))
|
|
|
|
return accessor.getTypeName(index);
|
2020-07-29 16:30:58 +00:00
|
|
|
else if (tryGetCustomSetting(name))
|
2020-07-28 12:37:44 +00:00
|
|
|
return "Custom";
|
2020-07-20 09:57:17 +00:00
|
|
|
else
|
|
|
|
BaseSettingsHelpers::throwSettingNotFound(name);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
const char * BaseSettings<TTraits>::getDescription(std::string_view name) const
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2020-07-20 09:57:17 +00:00
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
|
|
|
if (size_t index = accessor.find(name); index != static_cast<size_t>(-1))
|
|
|
|
return accessor.getDescription(index);
|
2020-07-29 16:30:58 +00:00
|
|
|
else if (tryGetCustomSetting(name))
|
|
|
|
return "Custom";
|
2020-07-20 09:57:17 +00:00
|
|
|
else
|
|
|
|
BaseSettingsHelpers::throwSettingNotFound(name);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
void BaseSettings<TTraits>::checkCanSet(std::string_view name, const Field & value)
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2020-07-20 09:57:17 +00:00
|
|
|
castValueUtil(name, value);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
void BaseSettings<TTraits>::checkCanSetString(std::string_view name, const String & str)
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2020-07-20 09:57:17 +00:00
|
|
|
stringToValueUtil(name, str);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
Field BaseSettings<TTraits>::castValueUtil(std::string_view name, const Field & value)
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2020-07-20 09:57:17 +00:00
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
|
|
|
if (size_t index = accessor.find(name); index != static_cast<size_t>(-1))
|
|
|
|
return accessor.castValueUtil(index, value);
|
2020-07-29 16:30:58 +00:00
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
return value;
|
2020-07-20 09:57:17 +00:00
|
|
|
else
|
|
|
|
BaseSettingsHelpers::throwSettingNotFound(name);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
String BaseSettings<TTraits>::valueToStringUtil(std::string_view name, const Field & value)
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2020-07-20 09:57:17 +00:00
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
|
|
|
if (size_t index = accessor.find(name); index != static_cast<size_t>(-1))
|
|
|
|
return accessor.valueToStringUtil(index, value);
|
2020-07-29 16:30:58 +00:00
|
|
|
if constexpr (Traits::allow_custom_settings)
|
2020-07-28 12:37:44 +00:00
|
|
|
return value.dump();
|
2020-07-20 09:57:17 +00:00
|
|
|
else
|
|
|
|
BaseSettingsHelpers::throwSettingNotFound(name);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
Field BaseSettings<TTraits>::stringToValueUtil(std::string_view name, const String & str)
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2023-01-26 14:06:46 +00:00
|
|
|
name = TTraits::resolveName(name);
|
2020-10-01 11:02:53 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
|
|
|
if (size_t index = accessor.find(name); index != static_cast<size_t>(-1))
|
|
|
|
return accessor.stringToValueUtil(index, str);
|
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
return Field::restoreFromDump(str);
|
|
|
|
else
|
|
|
|
BaseSettingsHelpers::throwSettingNotFound(name);
|
|
|
|
}
|
|
|
|
catch (Exception & e)
|
|
|
|
{
|
|
|
|
e.addMessage("while parsing value '{}' for setting '{}'", str, name);
|
|
|
|
throw;
|
|
|
|
}
|
2020-07-20 09:57:17 +00:00
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
void BaseSettings<TTraits>::write(WriteBuffer & out, SettingsWriteFormat format) const
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
|
|
|
|
|
|
|
for (auto field : *this)
|
|
|
|
{
|
2020-07-29 16:30:58 +00:00
|
|
|
bool is_custom = field.isCustom();
|
|
|
|
bool is_important = !is_custom && accessor.isImportant(field.index);
|
2020-07-20 09:57:17 +00:00
|
|
|
|
|
|
|
BaseSettingsHelpers::writeString(field.getName(), out);
|
|
|
|
|
2020-07-29 16:30:58 +00:00
|
|
|
if ((format >= SettingsWriteFormat::STRINGS_WITH_FLAGS) || is_custom)
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
|
|
|
using Flags = BaseSettingsHelpers::Flags;
|
|
|
|
Flags flags{0};
|
2020-07-29 16:30:58 +00:00
|
|
|
if (is_custom)
|
|
|
|
flags = static_cast<Flags>(flags | Flags::CUSTOM);
|
|
|
|
else if (is_important)
|
2020-07-20 09:57:17 +00:00
|
|
|
flags = static_cast<Flags>(flags | Flags::IMPORTANT);
|
|
|
|
BaseSettingsHelpers::writeFlags(flags, out);
|
|
|
|
|
|
|
|
BaseSettingsHelpers::writeString(field.getValueString(), out);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
accessor.writeBinary(*this, field.index, out);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Empty string is a marker of the end of settings.
|
|
|
|
BaseSettingsHelpers::writeString(std::string_view{}, out);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
void BaseSettings<TTraits>::read(ReadBuffer & in, SettingsWriteFormat format)
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
|
|
|
resetToDefault();
|
|
|
|
const auto & accessor = Traits::Accessor::instance();
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
String name = BaseSettingsHelpers::readString(in);
|
|
|
|
if (name.empty() /* empty string is a marker of the end of settings */)
|
|
|
|
break;
|
|
|
|
size_t index = accessor.find(name);
|
|
|
|
|
|
|
|
using Flags = BaseSettingsHelpers::Flags;
|
|
|
|
Flags flags{0};
|
|
|
|
if (format >= SettingsWriteFormat::STRINGS_WITH_FLAGS)
|
|
|
|
flags = BaseSettingsHelpers::readFlags(in);
|
|
|
|
bool is_important = (flags & Flags::IMPORTANT);
|
2020-07-29 16:30:58 +00:00
|
|
|
bool is_custom = (flags & Flags::CUSTOM);
|
2020-07-20 09:57:17 +00:00
|
|
|
|
|
|
|
if (index != static_cast<size_t>(-1))
|
|
|
|
{
|
2020-07-29 16:30:58 +00:00
|
|
|
if (is_custom)
|
|
|
|
{
|
|
|
|
SettingFieldCustom temp;
|
|
|
|
temp.parseFromString(BaseSettingsHelpers::readString(in));
|
|
|
|
accessor.setValue(*this, index, static_cast<Field>(temp));
|
|
|
|
}
|
|
|
|
else if (format >= SettingsWriteFormat::STRINGS_WITH_FLAGS)
|
2020-07-20 09:57:17 +00:00
|
|
|
accessor.setValueString(*this, index, BaseSettingsHelpers::readString(in));
|
|
|
|
else
|
|
|
|
accessor.readBinary(*this, index, in);
|
|
|
|
}
|
2020-07-29 16:30:58 +00:00
|
|
|
else if (is_custom && Traits::allow_custom_settings)
|
|
|
|
{
|
|
|
|
getCustomSetting(name).parseFromString(BaseSettingsHelpers::readString(in));
|
|
|
|
}
|
2020-07-20 09:57:17 +00:00
|
|
|
else if (is_important)
|
|
|
|
{
|
|
|
|
BaseSettingsHelpers::throwSettingNotFound(name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BaseSettingsHelpers::warningSettingNotFound(name);
|
|
|
|
BaseSettingsHelpers::readString(in);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
String BaseSettings<TTraits>::toString() const
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
|
|
|
String res;
|
|
|
|
for (const auto & field : *this)
|
|
|
|
{
|
|
|
|
if (!res.empty())
|
|
|
|
res += ", ";
|
|
|
|
res += field.getName() + " = " + field.getValueString();
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2022-07-07 22:16:01 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
void BaseSettings<TTraits>::addProgramOptions(boost::program_options::options_description & options)
|
|
|
|
{
|
2023-02-04 12:00:16 +00:00
|
|
|
const auto & settings_to_aliases = TTraits::settingsToAliases();
|
2022-07-07 22:16:01 +00:00
|
|
|
for (const auto & field : all())
|
2023-02-04 12:00:16 +00:00
|
|
|
{
|
|
|
|
std::string_view name = field.getName();
|
|
|
|
addProgramOption(options, name, field);
|
|
|
|
|
|
|
|
if (auto it = settings_to_aliases.find(name); it != settings_to_aliases.end())
|
|
|
|
{
|
|
|
|
for (const auto alias : it->second)
|
|
|
|
addProgramOption(options, alias, field);
|
|
|
|
}
|
|
|
|
}
|
2022-07-07 22:16:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename TTraits>
|
|
|
|
void BaseSettings<TTraits>::addProgramOptionsAsMultitokens(boost::program_options::options_description & options)
|
|
|
|
{
|
2023-02-04 12:00:16 +00:00
|
|
|
const auto & settings_to_aliases = TTraits::settingsToAliases();
|
2022-07-07 22:16:01 +00:00
|
|
|
for (const auto & field : all())
|
2023-02-04 12:00:16 +00:00
|
|
|
{
|
|
|
|
std::string_view name = field.getName();
|
|
|
|
addProgramOptionAsMultitoken(options, name, field);
|
|
|
|
|
|
|
|
if (auto it = settings_to_aliases.find(name); it != settings_to_aliases.end())
|
|
|
|
{
|
|
|
|
for (const auto alias : it->second)
|
|
|
|
addProgramOptionAsMultitoken(options, alias, field);
|
|
|
|
}
|
|
|
|
}
|
2022-07-07 22:16:01 +00:00
|
|
|
}
|
|
|
|
|
2023-02-04 12:00:16 +00:00
|
|
|
|
2022-07-07 22:16:01 +00:00
|
|
|
template <typename TTraits>
|
2023-02-04 12:00:16 +00:00
|
|
|
void BaseSettings<TTraits>::addProgramOption(boost::program_options::options_description & options, std::string_view name, const SettingFieldRef & field)
|
2022-07-07 22:16:01 +00:00
|
|
|
{
|
|
|
|
auto on_program_option = boost::function1<void, const std::string &>([this, name](const std::string & value) { set(name, value); });
|
|
|
|
options.add(boost::shared_ptr<boost::program_options::option_description>(new boost::program_options::option_description(
|
|
|
|
name.data(), boost::program_options::value<std::string>()->composing()->notifier(on_program_option), field.getDescription())));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename TTraits>
|
2023-02-04 12:00:16 +00:00
|
|
|
void BaseSettings<TTraits>::addProgramOptionAsMultitoken(boost::program_options::options_description & options, std::string_view name, const SettingFieldRef & field)
|
2022-07-07 22:16:01 +00:00
|
|
|
{
|
|
|
|
auto on_program_option = boost::function1<void, const Strings &>([this, name](const Strings & values) { set(name, values.back()); });
|
|
|
|
options.add(boost::shared_ptr<boost::program_options::option_description>(new boost::program_options::option_description(
|
|
|
|
name.data(), boost::program_options::value<Strings>()->multitoken()->composing()->notifier(on_program_option), field.getDescription())));
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
bool operator==(const BaseSettings<TTraits> & left, const BaseSettings<TTraits> & right)
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
|
|
|
auto l = left.begin();
|
|
|
|
for (const auto & r : right)
|
|
|
|
{
|
|
|
|
if ((l == left.end()) || (*l != r))
|
|
|
|
return false;
|
|
|
|
++l;
|
|
|
|
}
|
|
|
|
return l == left.end();
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
bool operator!=(const BaseSettings<TTraits> & left, const BaseSettings<TTraits> & right)
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
|
|
|
return !(left == right);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
SettingFieldCustom & BaseSettings<TTraits>::getCustomSetting(std::string_view name)
|
2020-07-29 16:30:58 +00:00
|
|
|
{
|
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
{
|
|
|
|
auto it = custom_settings_map.find(name);
|
|
|
|
if (it == custom_settings_map.end())
|
|
|
|
{
|
|
|
|
auto new_name = std::make_shared<String>(name);
|
|
|
|
it = custom_settings_map.emplace(*new_name, std::make_pair(new_name, SettingFieldCustom{})).first;
|
|
|
|
}
|
|
|
|
return it->second.second;
|
|
|
|
}
|
|
|
|
BaseSettingsHelpers::throwSettingNotFound(name);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
const SettingFieldCustom & BaseSettings<TTraits>::getCustomSetting(std::string_view name) const
|
2020-07-29 16:30:58 +00:00
|
|
|
{
|
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
{
|
|
|
|
auto it = custom_settings_map.find(name);
|
|
|
|
if (it != custom_settings_map.end())
|
|
|
|
return it->second.second;
|
|
|
|
}
|
|
|
|
BaseSettingsHelpers::throwSettingNotFound(name);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
2022-07-14 16:11:35 +00:00
|
|
|
const SettingFieldCustom * BaseSettings<TTraits>::tryGetCustomSetting(std::string_view name) const
|
2020-07-29 16:30:58 +00:00
|
|
|
{
|
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
{
|
|
|
|
auto it = custom_settings_map.find(name);
|
|
|
|
if (it != custom_settings_map.end())
|
|
|
|
return &it->second.second;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
BaseSettings<TTraits>::Iterator::Iterator(const BaseSettings & settings_, const typename Traits::Accessor & accessor_, SkipFlags skip_flags_)
|
2020-08-03 17:42:37 +00:00
|
|
|
: skip_flags(skip_flags_)
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2020-08-03 17:42:37 +00:00
|
|
|
field_ref.settings = &settings_;
|
|
|
|
field_ref.accessor = &accessor_;
|
|
|
|
auto & index = field_ref.index;
|
|
|
|
|
2020-07-20 09:57:17 +00:00
|
|
|
if (skip_flags == SKIP_ALL)
|
2020-07-29 16:30:58 +00:00
|
|
|
{
|
2020-08-03 17:42:37 +00:00
|
|
|
index = accessor_.size();
|
2020-07-29 16:30:58 +00:00
|
|
|
if constexpr (Traits::allow_custom_settings)
|
2020-08-03 17:42:37 +00:00
|
|
|
{
|
|
|
|
custom_settings_iterator = settings_.custom_settings_map.end();
|
|
|
|
field_ref.custom_setting = nullptr;
|
|
|
|
}
|
2020-07-29 16:30:58 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (skip_flags & SKIP_CHANGED)
|
|
|
|
{
|
|
|
|
skip_flags = static_cast<SkipFlags>(skip_flags | SKIP_CUSTOM);
|
|
|
|
if (skip_flags & SKIP_UNCHANGED)
|
|
|
|
skip_flags = static_cast<SkipFlags>(skip_flags | SKIP_BUILTIN);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (skip_flags & SKIP_BUILTIN)
|
2020-08-03 17:42:37 +00:00
|
|
|
index = accessor_.size();
|
2020-07-20 09:57:17 +00:00
|
|
|
else
|
|
|
|
index = 0;
|
|
|
|
|
2020-07-29 16:30:58 +00:00
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
{
|
|
|
|
if (skip_flags & SKIP_CUSTOM)
|
2020-08-03 17:42:37 +00:00
|
|
|
custom_settings_iterator = settings_.custom_settings_map.end();
|
2020-07-29 16:30:58 +00:00
|
|
|
else
|
2020-08-03 17:42:37 +00:00
|
|
|
custom_settings_iterator = settings_.custom_settings_map.begin();
|
2020-07-29 16:30:58 +00:00
|
|
|
}
|
|
|
|
|
2020-07-20 09:57:17 +00:00
|
|
|
doSkip();
|
2020-08-03 17:42:37 +00:00
|
|
|
setPointerToCustomSetting();
|
2020-07-20 09:57:17 +00:00
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
typename BaseSettings<TTraits>::Iterator & BaseSettings<TTraits>::Iterator::operator++()
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2020-08-03 17:42:37 +00:00
|
|
|
const auto & accessor = *field_ref.accessor;
|
|
|
|
auto & index = field_ref.index;
|
|
|
|
if (index != accessor.size())
|
2020-07-20 09:57:17 +00:00
|
|
|
++index;
|
2020-07-29 16:30:58 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
++custom_settings_iterator;
|
|
|
|
}
|
2020-07-20 09:57:17 +00:00
|
|
|
doSkip();
|
2020-08-03 17:42:37 +00:00
|
|
|
setPointerToCustomSetting();
|
2020-07-20 09:57:17 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
typename BaseSettings<TTraits>::Iterator BaseSettings<TTraits>::Iterator::operator++(int) /// NOLINT
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
|
|
|
auto res = *this;
|
|
|
|
++*this;
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
void BaseSettings<TTraits>::Iterator::doSkip()
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2020-08-03 17:42:37 +00:00
|
|
|
const auto & accessor = *field_ref.accessor;
|
|
|
|
const auto & settings = *field_ref.settings;
|
|
|
|
auto & index = field_ref.index;
|
2020-07-20 09:57:17 +00:00
|
|
|
if (skip_flags & SKIP_CHANGED)
|
|
|
|
{
|
2020-08-03 17:42:37 +00:00
|
|
|
while ((index != accessor.size()) && accessor.isValueChanged(settings, index))
|
2020-07-20 09:57:17 +00:00
|
|
|
++index;
|
|
|
|
}
|
|
|
|
else if (skip_flags & SKIP_UNCHANGED)
|
|
|
|
{
|
2020-08-03 17:42:37 +00:00
|
|
|
while ((index != accessor.size()) && !accessor.isValueChanged(settings, index))
|
2020-07-20 09:57:17 +00:00
|
|
|
++index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
void BaseSettings<TTraits>::Iterator::setPointerToCustomSetting()
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2020-08-03 17:42:37 +00:00
|
|
|
if constexpr (Traits::allow_custom_settings)
|
2020-07-29 16:30:58 +00:00
|
|
|
{
|
2020-08-03 17:42:37 +00:00
|
|
|
const auto & accessor = *field_ref.accessor;
|
|
|
|
const auto & settings = *field_ref.settings;
|
|
|
|
const auto & index = field_ref.index;
|
|
|
|
if ((index == accessor.size()) && (custom_settings_iterator != settings.custom_settings_map.end()))
|
|
|
|
field_ref.custom_setting = &custom_settings_iterator->second;
|
|
|
|
else
|
|
|
|
field_ref.custom_setting = nullptr;
|
2020-07-29 16:30:58 +00:00
|
|
|
}
|
2020-07-20 09:57:17 +00:00
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
bool BaseSettings<TTraits>::Iterator::operator ==(const typename BaseSettings<TTraits>::Iterator & other) const
|
2020-07-29 16:30:58 +00:00
|
|
|
{
|
2022-03-12 17:38:11 +00:00
|
|
|
if constexpr (TTraits::allow_custom_settings)
|
2020-08-03 17:42:37 +00:00
|
|
|
{
|
|
|
|
if (custom_settings_iterator != other.custom_settings_iterator)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return ((field_ref.index == other.field_ref.index) && (field_ref.settings == other.field_ref.settings));
|
2020-07-29 16:30:58 +00:00
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
const String & BaseSettings<TTraits>::SettingFieldRef::getName() const
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2020-07-29 16:30:58 +00:00
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
{
|
|
|
|
if (custom_setting)
|
|
|
|
return *custom_setting->first;
|
|
|
|
}
|
2020-07-20 09:57:17 +00:00
|
|
|
return accessor->getName(index);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
Field BaseSettings<TTraits>::SettingFieldRef::getValue() const
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2020-07-29 16:30:58 +00:00
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
{
|
|
|
|
if (custom_setting)
|
|
|
|
return static_cast<Field>(custom_setting->second);
|
|
|
|
}
|
2020-08-03 17:42:37 +00:00
|
|
|
return accessor->getValue(*settings, index);
|
2020-07-20 09:57:17 +00:00
|
|
|
}
|
|
|
|
|
2023-02-23 23:24:57 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
Field BaseSettings<TTraits>::SettingFieldRef::getDefaultValue() const
|
|
|
|
{
|
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
{
|
|
|
|
if (custom_setting)
|
|
|
|
return static_cast<Field>(custom_setting->second);
|
|
|
|
}
|
|
|
|
return accessor->getDefaultValue(index);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
String BaseSettings<TTraits>::SettingFieldRef::getValueString() const
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2020-07-29 16:30:58 +00:00
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
{
|
|
|
|
if (custom_setting)
|
|
|
|
return custom_setting->second.toString();
|
|
|
|
}
|
2020-08-03 17:42:37 +00:00
|
|
|
return accessor->getValueString(*settings, index);
|
2020-07-20 09:57:17 +00:00
|
|
|
}
|
|
|
|
|
2023-02-23 23:24:57 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
String BaseSettings<TTraits>::SettingFieldRef::getDefaultValueString() const
|
|
|
|
{
|
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
{
|
|
|
|
if (custom_setting)
|
|
|
|
return custom_setting->second.toString();
|
|
|
|
}
|
|
|
|
return accessor->getDefaultValueString(index);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
bool BaseSettings<TTraits>::SettingFieldRef::isValueChanged() const
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2020-07-29 16:30:58 +00:00
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
{
|
|
|
|
if (custom_setting)
|
|
|
|
return true;
|
|
|
|
}
|
2020-08-03 17:42:37 +00:00
|
|
|
return accessor->isValueChanged(*settings, index);
|
2020-07-20 09:57:17 +00:00
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
const char * BaseSettings<TTraits>::SettingFieldRef::getTypeName() const
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2020-07-29 16:30:58 +00:00
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
{
|
|
|
|
if (custom_setting)
|
2020-07-28 12:37:44 +00:00
|
|
|
return "Custom";
|
2020-07-29 16:30:58 +00:00
|
|
|
}
|
2020-07-20 09:57:17 +00:00
|
|
|
return accessor->getTypeName(index);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
const char * BaseSettings<TTraits>::SettingFieldRef::getDescription() const
|
2020-07-20 09:57:17 +00:00
|
|
|
{
|
2020-07-29 16:30:58 +00:00
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
{
|
|
|
|
if (custom_setting)
|
|
|
|
return "Custom";
|
|
|
|
}
|
2020-07-20 09:57:17 +00:00
|
|
|
return accessor->getDescription(index);
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
bool BaseSettings<TTraits>::SettingFieldRef::isCustom() const
|
2020-07-29 16:30:58 +00:00
|
|
|
{
|
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
return custom_setting != nullptr;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
template <typename TTraits>
|
|
|
|
bool BaseSettings<TTraits>::SettingFieldRef::isObsolete() const
|
2021-11-10 15:45:15 +00:00
|
|
|
{
|
|
|
|
if constexpr (Traits::allow_custom_settings)
|
|
|
|
{
|
|
|
|
if (custom_setting)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return accessor->isObsolete(index);
|
|
|
|
}
|
|
|
|
|
2023-02-01 13:54:03 +00:00
|
|
|
using AliasMap = std::unordered_map<std::string_view, std::string_view>;
|
2023-01-26 14:06:46 +00:00
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
/// NOLINTNEXTLINE
|
2023-02-01 13:54:03 +00:00
|
|
|
#define DECLARE_SETTINGS_TRAITS(SETTINGS_TRAITS_NAME, LIST_OF_SETTINGS_MACRO) \
|
|
|
|
DECLARE_SETTINGS_TRAITS_COMMON(SETTINGS_TRAITS_NAME, LIST_OF_SETTINGS_MACRO, 0)
|
2020-07-29 16:30:58 +00:00
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
/// NOLINTNEXTLINE
|
2023-02-01 13:54:03 +00:00
|
|
|
#define DECLARE_SETTINGS_TRAITS_ALLOW_CUSTOM_SETTINGS(SETTINGS_TRAITS_NAME, LIST_OF_SETTINGS_MACRO) \
|
|
|
|
DECLARE_SETTINGS_TRAITS_COMMON(SETTINGS_TRAITS_NAME, LIST_OF_SETTINGS_MACRO, 1)
|
2020-07-29 16:30:58 +00:00
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
/// NOLINTNEXTLINE
|
2023-02-01 13:54:03 +00:00
|
|
|
#define DECLARE_SETTINGS_TRAITS_COMMON(SETTINGS_TRAITS_NAME, LIST_OF_SETTINGS_MACRO, ALLOW_CUSTOM_SETTINGS) \
|
2020-07-20 09:57:17 +00:00
|
|
|
struct SETTINGS_TRAITS_NAME \
|
|
|
|
{ \
|
|
|
|
struct Data \
|
|
|
|
{ \
|
2023-02-01 13:54:03 +00:00
|
|
|
LIST_OF_SETTINGS_MACRO(DECLARE_SETTINGS_TRAITS_, SKIP_ALIAS) \
|
2020-07-20 09:57:17 +00:00
|
|
|
}; \
|
|
|
|
\
|
|
|
|
class Accessor \
|
|
|
|
{ \
|
|
|
|
public: \
|
|
|
|
static const Accessor & instance(); \
|
|
|
|
size_t size() const { return field_infos.size(); } \
|
2022-07-14 16:11:35 +00:00
|
|
|
size_t find(std::string_view name) const; \
|
2020-07-20 09:57:17 +00:00
|
|
|
const String & getName(size_t index) const { return field_infos[index].name; } \
|
|
|
|
const char * getTypeName(size_t index) const { return field_infos[index].type; } \
|
|
|
|
const char * getDescription(size_t index) const { return field_infos[index].description; } \
|
|
|
|
bool isImportant(size_t index) const { return field_infos[index].is_important; } \
|
2021-11-10 15:45:15 +00:00
|
|
|
bool isObsolete(size_t index) const { return field_infos[index].is_obsolete; } \
|
2020-07-20 09:57:17 +00:00
|
|
|
Field castValueUtil(size_t index, const Field & value) const { return field_infos[index].cast_value_util_function(value); } \
|
|
|
|
String valueToStringUtil(size_t index, const Field & value) const { return field_infos[index].value_to_string_util_function(value); } \
|
|
|
|
Field stringToValueUtil(size_t index, const String & str) const { return field_infos[index].string_to_value_util_function(str); } \
|
|
|
|
void setValue(Data & data, size_t index, const Field & value) const { return field_infos[index].set_value_function(data, value); } \
|
|
|
|
Field getValue(const Data & data, size_t index) const { return field_infos[index].get_value_function(data); } \
|
|
|
|
void setValueString(Data & data, size_t index, const String & str) const { return field_infos[index].set_value_string_function(data, str); } \
|
|
|
|
String getValueString(const Data & data, size_t index) const { return field_infos[index].get_value_string_function(data); } \
|
|
|
|
bool isValueChanged(const Data & data, size_t index) const { return field_infos[index].is_value_changed_function(data); } \
|
|
|
|
void resetValueToDefault(Data & data, size_t index) const { return field_infos[index].reset_value_to_default_function(data); } \
|
|
|
|
void writeBinary(const Data & data, size_t index, WriteBuffer & out) const { return field_infos[index].write_binary_function(data, out); } \
|
|
|
|
void readBinary(Data & data, size_t index, ReadBuffer & in) const { return field_infos[index].read_binary_function(data, in); } \
|
2023-02-23 23:24:57 +00:00
|
|
|
Field getDefaultValue(size_t index) const { return field_infos[index].get_default_value_function(); } \
|
|
|
|
String getDefaultValueString(size_t index) const { return field_infos[index].get_default_value_string_function(); } \
|
2020-07-20 09:57:17 +00:00
|
|
|
private: \
|
|
|
|
Accessor(); \
|
|
|
|
struct FieldInfo \
|
|
|
|
{ \
|
|
|
|
String name; \
|
|
|
|
const char * type; \
|
|
|
|
const char * description; \
|
|
|
|
bool is_important; \
|
2021-11-10 15:45:15 +00:00
|
|
|
bool is_obsolete; \
|
2020-07-20 09:57:17 +00:00
|
|
|
Field (*cast_value_util_function)(const Field &); \
|
|
|
|
String (*value_to_string_util_function)(const Field &); \
|
|
|
|
Field (*string_to_value_util_function)(const String &); \
|
|
|
|
void (*set_value_function)(Data &, const Field &) ; \
|
|
|
|
Field (*get_value_function)(const Data &) ; \
|
|
|
|
void (*set_value_string_function)(Data &, const String &) ; \
|
|
|
|
String (*get_value_string_function)(const Data &) ; \
|
|
|
|
bool (*is_value_changed_function)(const Data &); \
|
|
|
|
void (*reset_value_to_default_function)(Data &) ; \
|
|
|
|
void (*write_binary_function)(const Data &, WriteBuffer &) ; \
|
|
|
|
void (*read_binary_function)(Data &, ReadBuffer &) ; \
|
2023-02-23 23:24:57 +00:00
|
|
|
Field (*get_default_value_function)() ; \
|
|
|
|
String (*get_default_value_string_function)() ; \
|
2020-07-20 09:57:17 +00:00
|
|
|
}; \
|
|
|
|
std::vector<FieldInfo> field_infos; \
|
|
|
|
std::unordered_map<std::string_view, size_t> name_to_index_map; \
|
|
|
|
}; \
|
2020-07-29 16:30:58 +00:00
|
|
|
static constexpr bool allow_custom_settings = ALLOW_CUSTOM_SETTINGS; \
|
2023-01-26 14:06:46 +00:00
|
|
|
\
|
2023-02-03 18:44:56 +00:00
|
|
|
static inline const AliasMap aliases_to_settings = \
|
2023-02-01 13:54:03 +00:00
|
|
|
DefineAliases() LIST_OF_SETTINGS_MACRO(ALIAS_TO, ALIAS_FROM); \
|
|
|
|
\
|
2023-02-03 18:44:56 +00:00
|
|
|
using SettingsToAliasesMap = std::unordered_map<std::string_view, std::vector<std::string_view>>; \
|
|
|
|
static inline const SettingsToAliasesMap & settingsToAliases() \
|
|
|
|
{ \
|
|
|
|
static SettingsToAliasesMap setting_to_aliases_mapping = [] \
|
|
|
|
{ \
|
|
|
|
std::unordered_map<std::string_view, std::vector<std::string_view>> map; \
|
|
|
|
for (const auto & [alias, destination] : aliases_to_settings) \
|
|
|
|
map[destination].push_back(alias); \
|
|
|
|
return map; \
|
|
|
|
}(); \
|
|
|
|
return setting_to_aliases_mapping; \
|
|
|
|
} \
|
|
|
|
\
|
2023-01-26 14:06:46 +00:00
|
|
|
static std::string_view resolveName(std::string_view name) \
|
|
|
|
{ \
|
2023-02-03 18:44:56 +00:00
|
|
|
if (auto it = aliases_to_settings.find(name); it != aliases_to_settings.end()) \
|
2023-01-26 14:06:46 +00:00
|
|
|
return it->second; \
|
|
|
|
return name; \
|
|
|
|
} \
|
2020-07-20 09:57:17 +00:00
|
|
|
};
|
|
|
|
|
2023-02-01 13:54:03 +00:00
|
|
|
|
|
|
|
/// NOLINTNEXTLINE
|
|
|
|
#define SKIP_ALIAS(ALIAS_NAME)
|
2023-01-26 14:06:46 +00:00
|
|
|
/// NOLINTNEXTLINE
|
2023-02-01 13:54:03 +00:00
|
|
|
#define ALIAS_TO(TYPE, NAME, DEFAULT, DESCRIPTION, FLAGS) .setName(#NAME)
|
|
|
|
/// NOLINTNEXTLINE
|
|
|
|
#define ALIAS_FROM(ALIAS) .addAlias(#ALIAS)
|
|
|
|
|
|
|
|
struct DefineAliases
|
|
|
|
{
|
|
|
|
std::string_view name;
|
|
|
|
AliasMap map;
|
|
|
|
|
|
|
|
DefineAliases & setName(std::string_view value)
|
|
|
|
{
|
|
|
|
name = value;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
DefineAliases & addAlias(std::string_view value)
|
|
|
|
{
|
|
|
|
map.emplace(value, name);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// NOLINTNEXTLINE(google-explicit-constructor)
|
|
|
|
operator AliasMap() { return std::move(map); }
|
|
|
|
};
|
2023-01-26 14:06:46 +00:00
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
/// NOLINTNEXTLINE
|
2020-07-20 09:57:17 +00:00
|
|
|
#define DECLARE_SETTINGS_TRAITS_(TYPE, NAME, DEFAULT, DESCRIPTION, FLAGS) \
|
|
|
|
SettingField##TYPE NAME {DEFAULT};
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
/// NOLINTNEXTLINE
|
2020-07-20 09:57:17 +00:00
|
|
|
#define IMPLEMENT_SETTINGS_TRAITS(SETTINGS_TRAITS_NAME, LIST_OF_SETTINGS_MACRO) \
|
|
|
|
const SETTINGS_TRAITS_NAME::Accessor & SETTINGS_TRAITS_NAME::Accessor::instance() \
|
|
|
|
{ \
|
|
|
|
static const Accessor the_instance = [] \
|
|
|
|
{ \
|
|
|
|
Accessor res; \
|
2021-11-10 15:45:15 +00:00
|
|
|
constexpr int IMPORTANT = 0x01; \
|
2020-07-20 09:57:17 +00:00
|
|
|
UNUSED(IMPORTANT); \
|
2023-02-01 13:54:03 +00:00
|
|
|
LIST_OF_SETTINGS_MACRO(IMPLEMENT_SETTINGS_TRAITS_, SKIP_ALIAS) \
|
2021-06-15 19:55:21 +00:00
|
|
|
for (size_t i : collections::range(res.field_infos.size())) \
|
2020-07-20 09:57:17 +00:00
|
|
|
{ \
|
|
|
|
const auto & info = res.field_infos[i]; \
|
|
|
|
res.name_to_index_map.emplace(info.name, i); \
|
|
|
|
} \
|
|
|
|
return res; \
|
|
|
|
}(); \
|
|
|
|
return the_instance; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
SETTINGS_TRAITS_NAME::Accessor::Accessor() {} \
|
|
|
|
\
|
2022-07-14 16:11:35 +00:00
|
|
|
size_t SETTINGS_TRAITS_NAME::Accessor::find(std::string_view name) const \
|
2020-07-20 09:57:17 +00:00
|
|
|
{ \
|
|
|
|
auto it = name_to_index_map.find(name); \
|
|
|
|
if (it != name_to_index_map.end()) \
|
|
|
|
return it->second; \
|
|
|
|
return static_cast<size_t>(-1); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
template class BaseSettings<SETTINGS_TRAITS_NAME>;
|
|
|
|
|
2022-03-12 17:38:11 +00:00
|
|
|
/// NOLINTNEXTLINE
|
2020-07-20 09:57:17 +00:00
|
|
|
#define IMPLEMENT_SETTINGS_TRAITS_(TYPE, NAME, DEFAULT, DESCRIPTION, FLAGS) \
|
|
|
|
res.field_infos.emplace_back( \
|
2022-03-12 17:38:11 +00:00
|
|
|
FieldInfo{#NAME, #TYPE, DESCRIPTION, (FLAGS) & IMPORTANT, \
|
|
|
|
static_cast<bool>((FLAGS) & BaseSettingsHelpers::Flags::OBSOLETE), \
|
2020-07-20 09:57:17 +00:00
|
|
|
[](const Field & value) -> Field { return static_cast<Field>(SettingField##TYPE{value}); }, \
|
|
|
|
[](const Field & value) -> String { return SettingField##TYPE{value}.toString(); }, \
|
|
|
|
[](const String & str) -> Field { SettingField##TYPE temp; temp.parseFromString(str); return static_cast<Field>(temp); }, \
|
|
|
|
[](Data & data, const Field & value) { data.NAME = value; }, \
|
|
|
|
[](const Data & data) -> Field { return static_cast<Field>(data.NAME); }, \
|
|
|
|
[](Data & data, const String & str) { data.NAME.parseFromString(str); }, \
|
|
|
|
[](const Data & data) -> String { return data.NAME.toString(); }, \
|
|
|
|
[](const Data & data) -> bool { return data.NAME.changed; }, \
|
|
|
|
[](Data & data) { data.NAME = SettingField##TYPE{DEFAULT}; }, \
|
|
|
|
[](const Data & data, WriteBuffer & out) { data.NAME.writeBinary(out); }, \
|
2023-02-23 23:24:57 +00:00
|
|
|
[](Data & data, ReadBuffer & in) { data.NAME.readBinary(in); }, \
|
|
|
|
[]() -> Field { return static_cast<Field>(SettingField##TYPE{DEFAULT}); }, \
|
|
|
|
[]() -> String { return SettingField##TYPE{DEFAULT}.toString(); } \
|
2020-07-20 09:57:17 +00:00
|
|
|
});
|
|
|
|
}
|