mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 13:30:06 +00:00
Adding settings for debug enabled and font sizes
This commit is contained in:
parent
a3bd6ba65c
commit
81f1beb8d8
6 changed files with 199 additions and 33 deletions
|
|
@ -12,15 +12,19 @@ namespace settings
|
||||||
static const std::string logPrefix_ = "scwx::qt::settings::general_settings";
|
static const std::string logPrefix_ = "scwx::qt::settings::general_settings";
|
||||||
static const auto logger_ = scwx::util::Logger::Create(logPrefix_);
|
static const auto logger_ = scwx::util::Logger::Create(logPrefix_);
|
||||||
|
|
||||||
static const std::string DEFAULT_DEFAULT_RADAR_SITE = "KLSX";
|
static constexpr bool kDefaultDebugEnabled_ {false};
|
||||||
static const int64_t DEFAULT_GRID_WIDTH = 1;
|
static const std::string kDefaultDefaultRadarSite_ {"KLSX"};
|
||||||
static const int64_t DEFAULT_GRID_HEIGHT = 1;
|
static const std::vector<int64_t> kDefaultFontSizes_ {16};
|
||||||
static const std::string DEFAULT_MAPBOX_API_KEY = "?";
|
static constexpr int64_t kDefaultGridWidth_ {1};
|
||||||
|
static constexpr int64_t kDefaultGridHeight_ {1};
|
||||||
|
static const std::string kDefaultMapboxApiKey_ {"?"};
|
||||||
|
|
||||||
static const int64_t GRID_WIDTH_MINIMUM = 1;
|
static constexpr int64_t kFontSizeMinimum_ {1};
|
||||||
static const int64_t GRID_WIDTH_MAXIMUM = 2;
|
static constexpr int64_t kFontSizeMaximum_ {72};
|
||||||
static const int64_t GRID_HEIGHT_MINIMUM = 1;
|
static constexpr int64_t kGridWidthMinimum_ {1};
|
||||||
static const int64_t GRID_HEIGHT_MAXIMUM = 2;
|
static constexpr int64_t kGridWidthMaximum_ {2};
|
||||||
|
static constexpr int64_t kGridHeightMinimum_ {1};
|
||||||
|
static constexpr int64_t kGridHeightMaximum_ {2};
|
||||||
|
|
||||||
class GeneralSettingsImpl
|
class GeneralSettingsImpl
|
||||||
{
|
{
|
||||||
|
|
@ -31,16 +35,20 @@ public:
|
||||||
|
|
||||||
void SetDefaults()
|
void SetDefaults()
|
||||||
{
|
{
|
||||||
defaultRadarSite_ = DEFAULT_DEFAULT_RADAR_SITE;
|
debugEnabled_ = kDefaultDebugEnabled_;
|
||||||
gridWidth_ = DEFAULT_GRID_WIDTH;
|
defaultRadarSite_ = kDefaultDefaultRadarSite_;
|
||||||
gridHeight_ = DEFAULT_GRID_HEIGHT;
|
fontSizes_ = kDefaultFontSizes_;
|
||||||
mapboxApiKey_ = DEFAULT_MAPBOX_API_KEY;
|
gridWidth_ = kDefaultGridWidth_;
|
||||||
|
gridHeight_ = kDefaultGridHeight_;
|
||||||
|
mapboxApiKey_ = kDefaultMapboxApiKey_;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string defaultRadarSite_;
|
bool debugEnabled_;
|
||||||
int64_t gridWidth_;
|
std::string defaultRadarSite_;
|
||||||
int64_t gridHeight_;
|
std::vector<int64_t> fontSizes_;
|
||||||
std::string mapboxApiKey_;
|
int64_t gridWidth_;
|
||||||
|
int64_t gridHeight_;
|
||||||
|
std::string mapboxApiKey_;
|
||||||
};
|
};
|
||||||
|
|
||||||
GeneralSettings::GeneralSettings() : p(std::make_unique<GeneralSettingsImpl>())
|
GeneralSettings::GeneralSettings() : p(std::make_unique<GeneralSettingsImpl>())
|
||||||
|
|
@ -52,11 +60,21 @@ GeneralSettings::GeneralSettings(GeneralSettings&&) noexcept = default;
|
||||||
GeneralSettings&
|
GeneralSettings&
|
||||||
GeneralSettings::operator=(GeneralSettings&&) noexcept = default;
|
GeneralSettings::operator=(GeneralSettings&&) noexcept = default;
|
||||||
|
|
||||||
|
bool GeneralSettings::debug_enabled() const
|
||||||
|
{
|
||||||
|
return p->debugEnabled_;
|
||||||
|
}
|
||||||
|
|
||||||
std::string GeneralSettings::default_radar_site() const
|
std::string GeneralSettings::default_radar_site() const
|
||||||
{
|
{
|
||||||
return p->defaultRadarSite_;
|
return p->defaultRadarSite_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::vector<int64_t> GeneralSettings::font_sizes() const
|
||||||
|
{
|
||||||
|
return p->fontSizes_;
|
||||||
|
}
|
||||||
|
|
||||||
int64_t GeneralSettings::grid_height() const
|
int64_t GeneralSettings::grid_height() const
|
||||||
{
|
{
|
||||||
return p->gridHeight_;
|
return p->gridHeight_;
|
||||||
|
|
@ -76,7 +94,9 @@ boost::json::value GeneralSettings::ToJson() const
|
||||||
{
|
{
|
||||||
boost::json::object json;
|
boost::json::object json;
|
||||||
|
|
||||||
|
json["debug_enabled"] = p->debugEnabled_;
|
||||||
json["default_radar_site"] = p->defaultRadarSite_;
|
json["default_radar_site"] = p->defaultRadarSite_;
|
||||||
|
json["font_sizes"] = boost::json::value_from(p->fontSizes_);
|
||||||
json["grid_width"] = p->gridWidth_;
|
json["grid_width"] = p->gridWidth_;
|
||||||
json["grid_height"] = p->gridHeight_;
|
json["grid_height"] = p->gridHeight_;
|
||||||
json["mapbox_api_key"] = p->mapboxApiKey_;
|
json["mapbox_api_key"] = p->mapboxApiKey_;
|
||||||
|
|
@ -89,8 +109,6 @@ std::shared_ptr<GeneralSettings> GeneralSettings::Create()
|
||||||
std::shared_ptr<GeneralSettings> generalSettings =
|
std::shared_ptr<GeneralSettings> generalSettings =
|
||||||
std::make_shared<GeneralSettings>();
|
std::make_shared<GeneralSettings>();
|
||||||
|
|
||||||
generalSettings->p->SetDefaults();
|
|
||||||
|
|
||||||
return generalSettings;
|
return generalSettings;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -102,28 +120,39 @@ GeneralSettings::Load(const boost::json::value* json, bool& jsonDirty)
|
||||||
|
|
||||||
if (json != nullptr && json->is_object())
|
if (json != nullptr && json->is_object())
|
||||||
{
|
{
|
||||||
|
jsonDirty |= !util::json::FromJsonBool(json->as_object(),
|
||||||
|
"debug_enabled",
|
||||||
|
generalSettings->p->debugEnabled_,
|
||||||
|
kDefaultDebugEnabled_);
|
||||||
jsonDirty |=
|
jsonDirty |=
|
||||||
!util::json::FromJsonString(json->as_object(),
|
!util::json::FromJsonString(json->as_object(),
|
||||||
"default_radar_site",
|
"default_radar_site",
|
||||||
generalSettings->p->defaultRadarSite_,
|
generalSettings->p->defaultRadarSite_,
|
||||||
DEFAULT_DEFAULT_RADAR_SITE);
|
kDefaultDefaultRadarSite_);
|
||||||
|
jsonDirty |=
|
||||||
|
!util::json::FromJsonInt64Array(json->as_object(),
|
||||||
|
"font_sizes",
|
||||||
|
generalSettings->p->fontSizes_,
|
||||||
|
kDefaultFontSizes_,
|
||||||
|
kFontSizeMinimum_,
|
||||||
|
kFontSizeMaximum_);
|
||||||
jsonDirty |= !util::json::FromJsonInt64(json->as_object(),
|
jsonDirty |= !util::json::FromJsonInt64(json->as_object(),
|
||||||
"grid_width",
|
"grid_width",
|
||||||
generalSettings->p->gridWidth_,
|
generalSettings->p->gridWidth_,
|
||||||
DEFAULT_GRID_WIDTH,
|
kDefaultGridWidth_,
|
||||||
GRID_WIDTH_MINIMUM,
|
kGridWidthMinimum_,
|
||||||
GRID_WIDTH_MAXIMUM);
|
kGridWidthMaximum_);
|
||||||
jsonDirty |= !util::json::FromJsonInt64(json->as_object(),
|
jsonDirty |= !util::json::FromJsonInt64(json->as_object(),
|
||||||
"grid_height",
|
"grid_height",
|
||||||
generalSettings->p->gridHeight_,
|
generalSettings->p->gridHeight_,
|
||||||
DEFAULT_GRID_HEIGHT,
|
kDefaultGridHeight_,
|
||||||
GRID_HEIGHT_MINIMUM,
|
kGridHeightMinimum_,
|
||||||
GRID_HEIGHT_MAXIMUM);
|
kGridHeightMaximum_);
|
||||||
jsonDirty |=
|
jsonDirty |=
|
||||||
!util::json::FromJsonString(json->as_object(),
|
!util::json::FromJsonString(json->as_object(),
|
||||||
"mapbox_api_key",
|
"mapbox_api_key",
|
||||||
generalSettings->p->mapboxApiKey_,
|
generalSettings->p->mapboxApiKey_,
|
||||||
DEFAULT_MAPBOX_API_KEY,
|
kDefaultMapboxApiKey_,
|
||||||
1);
|
1);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
@ -146,7 +175,9 @@ GeneralSettings::Load(const boost::json::value* json, bool& jsonDirty)
|
||||||
|
|
||||||
bool operator==(const GeneralSettings& lhs, const GeneralSettings& rhs)
|
bool operator==(const GeneralSettings& lhs, const GeneralSettings& rhs)
|
||||||
{
|
{
|
||||||
return (lhs.p->defaultRadarSite_ == rhs.p->defaultRadarSite_ &&
|
return (lhs.p->debugEnabled_ == rhs.p->debugEnabled_ &&
|
||||||
|
lhs.p->defaultRadarSite_ == rhs.p->defaultRadarSite_ &&
|
||||||
|
lhs.p->fontSizes_ == rhs.p->fontSizes_ &&
|
||||||
lhs.p->gridWidth_ == rhs.p->gridWidth_ &&
|
lhs.p->gridWidth_ == rhs.p->gridWidth_ &&
|
||||||
lhs.p->gridHeight_ == rhs.p->gridHeight_ &&
|
lhs.p->gridHeight_ == rhs.p->gridHeight_ &&
|
||||||
lhs.p->mapboxApiKey_ == rhs.p->mapboxApiKey_);
|
lhs.p->mapboxApiKey_ == rhs.p->mapboxApiKey_);
|
||||||
|
|
|
||||||
|
|
@ -20,16 +20,18 @@ public:
|
||||||
explicit GeneralSettings();
|
explicit GeneralSettings();
|
||||||
~GeneralSettings();
|
~GeneralSettings();
|
||||||
|
|
||||||
GeneralSettings(const GeneralSettings&) = delete;
|
GeneralSettings(const GeneralSettings&) = delete;
|
||||||
GeneralSettings& operator=(const GeneralSettings&) = delete;
|
GeneralSettings& operator=(const GeneralSettings&) = delete;
|
||||||
|
|
||||||
GeneralSettings(GeneralSettings&&) noexcept;
|
GeneralSettings(GeneralSettings&&) noexcept;
|
||||||
GeneralSettings& operator=(GeneralSettings&&) noexcept;
|
GeneralSettings& operator=(GeneralSettings&&) noexcept;
|
||||||
|
|
||||||
std::string default_radar_site() const;
|
bool debug_enabled() const;
|
||||||
int64_t grid_height() const;
|
std::string default_radar_site() const;
|
||||||
int64_t grid_width() const;
|
std::vector<int64_t> font_sizes() const;
|
||||||
std::string mapbox_api_key() const;
|
int64_t grid_height() const;
|
||||||
|
int64_t grid_width() const;
|
||||||
|
std::string mapbox_api_key() const;
|
||||||
|
|
||||||
boost::json::value ToJson() const;
|
boost::json::value ToJson() const;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
|
||||||
|
#include <fmt/ranges.h>
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
#include <QTextStream>
|
#include <QTextStream>
|
||||||
|
|
||||||
|
|
@ -33,6 +34,40 @@ static void PrettyPrintJson(std::ostream& os,
|
||||||
static boost::json::value ReadJsonFile(QFile& file);
|
static boost::json::value ReadJsonFile(QFile& file);
|
||||||
static boost::json::value ReadJsonStream(std::istream& is);
|
static boost::json::value ReadJsonStream(std::istream& is);
|
||||||
|
|
||||||
|
bool FromJsonBool(const boost::json::object& json,
|
||||||
|
const std::string& key,
|
||||||
|
bool& value,
|
||||||
|
const bool defaultValue)
|
||||||
|
{
|
||||||
|
const boost::json::value* jv = json.if_contains(key);
|
||||||
|
bool dirty = true;
|
||||||
|
|
||||||
|
if (jv != nullptr)
|
||||||
|
{
|
||||||
|
if (jv->is_bool())
|
||||||
|
{
|
||||||
|
value = boost::json::value_to<bool>(*jv);
|
||||||
|
dirty = false;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
logger_->warn("{} is not a bool ({}), setting to default: {}",
|
||||||
|
key,
|
||||||
|
jv->kind(),
|
||||||
|
defaultValue);
|
||||||
|
value = defaultValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
logger_->debug(
|
||||||
|
"{} is not present, setting to default: {}", key, defaultValue);
|
||||||
|
value = defaultValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
return !dirty;
|
||||||
|
}
|
||||||
|
|
||||||
bool FromJsonInt64(const boost::json::object& json,
|
bool FromJsonInt64(const boost::json::object& json,
|
||||||
const std::string& key,
|
const std::string& key,
|
||||||
int64_t& value,
|
int64_t& value,
|
||||||
|
|
@ -90,6 +125,92 @@ bool FromJsonInt64(const boost::json::object& json,
|
||||||
return !dirty;
|
return !dirty;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool FromJsonInt64Array(const boost::json::object& json,
|
||||||
|
const std::string& key,
|
||||||
|
std::vector<int64_t>& values,
|
||||||
|
const std::vector<int64_t>& defaultValues,
|
||||||
|
std::optional<int64_t> minValue,
|
||||||
|
std::optional<int64_t> maxValue)
|
||||||
|
{
|
||||||
|
const boost::json::value* jv = json.if_contains(key);
|
||||||
|
bool dirty = true;
|
||||||
|
|
||||||
|
if (jv != nullptr)
|
||||||
|
{
|
||||||
|
if (jv->is_array())
|
||||||
|
{
|
||||||
|
bool validArray = false;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
values = boost::json::value_to<std::vector<int64_t>>(*jv);
|
||||||
|
validArray = true;
|
||||||
|
}
|
||||||
|
catch (const std::exception& ex)
|
||||||
|
{
|
||||||
|
logger_->warn(
|
||||||
|
"{} is an invalid array of int64 ({}), setting to default: {}",
|
||||||
|
key,
|
||||||
|
ex.what(),
|
||||||
|
defaultValues);
|
||||||
|
values = defaultValues;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (values.empty())
|
||||||
|
{
|
||||||
|
logger_->warn("{} is an empty array, setting to default: {}",
|
||||||
|
key,
|
||||||
|
defaultValues);
|
||||||
|
values = defaultValues;
|
||||||
|
}
|
||||||
|
else if (validArray)
|
||||||
|
{
|
||||||
|
dirty = false;
|
||||||
|
|
||||||
|
for (auto& value : values)
|
||||||
|
{
|
||||||
|
if (minValue.has_value() && value < *minValue)
|
||||||
|
{
|
||||||
|
logger_->warn(
|
||||||
|
"{0} less than minimum ({1} < {2}), setting to: {2}",
|
||||||
|
key,
|
||||||
|
value,
|
||||||
|
*minValue);
|
||||||
|
value = *minValue;
|
||||||
|
dirty = true;
|
||||||
|
}
|
||||||
|
else if (maxValue.has_value() && value > *maxValue)
|
||||||
|
{
|
||||||
|
logger_->warn(
|
||||||
|
"{0} greater than maximum ({1} > {2}), setting to: {2}",
|
||||||
|
key,
|
||||||
|
value,
|
||||||
|
*maxValue);
|
||||||
|
value = *maxValue;
|
||||||
|
dirty = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
logger_->warn("{} is not an array ({}), setting to default: {}",
|
||||||
|
key,
|
||||||
|
jv->kind(),
|
||||||
|
defaultValues);
|
||||||
|
values = defaultValues;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
logger_->debug(
|
||||||
|
"{} is not present, setting to default: {}", key, defaultValues);
|
||||||
|
values = defaultValues;
|
||||||
|
}
|
||||||
|
|
||||||
|
return !dirty;
|
||||||
|
}
|
||||||
|
|
||||||
bool FromJsonString(const boost::json::object& json,
|
bool FromJsonString(const boost::json::object& json,
|
||||||
const std::string& key,
|
const std::string& key,
|
||||||
std::string& value,
|
std::string& value,
|
||||||
|
|
|
||||||
|
|
@ -13,12 +13,22 @@ namespace util
|
||||||
namespace json
|
namespace json
|
||||||
{
|
{
|
||||||
|
|
||||||
|
bool FromJsonBool(const boost::json::object& json,
|
||||||
|
const std::string& key,
|
||||||
|
bool& value,
|
||||||
|
const bool defaultValue);
|
||||||
bool FromJsonInt64(const boost::json::object& json,
|
bool FromJsonInt64(const boost::json::object& json,
|
||||||
const std::string& key,
|
const std::string& key,
|
||||||
int64_t& value,
|
int64_t& value,
|
||||||
const int64_t defaultValue,
|
const int64_t defaultValue,
|
||||||
std::optional<int64_t> minValue,
|
std::optional<int64_t> minValue,
|
||||||
std::optional<int64_t> maxValue);
|
std::optional<int64_t> maxValue);
|
||||||
|
bool FromJsonInt64Array(const boost::json::object& json,
|
||||||
|
const std::string& key,
|
||||||
|
std::vector<int64_t>& values,
|
||||||
|
const std::vector<int64_t>& defaultValues,
|
||||||
|
std::optional<int64_t> minValue,
|
||||||
|
std::optional<int64_t> maxValue);
|
||||||
bool FromJsonString(const boost::json::object& json,
|
bool FromJsonString(const boost::json::object& json,
|
||||||
const std::string& key,
|
const std::string& key,
|
||||||
std::string& value,
|
std::string& value,
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit e1aea58dcbb7ad961b974a6a00a83971031f4e0b
|
Subproject commit b20f1c3015ae88d0883734cb51ecc01372ede749
|
||||||
|
|
@ -111,6 +111,8 @@ TEST_P(DefaultSettingsTest, DefaultSettings)
|
||||||
INSTANTIATE_TEST_SUITE_P(SettingsManager,
|
INSTANTIATE_TEST_SUITE_P(SettingsManager,
|
||||||
DefaultSettingsTest,
|
DefaultSettingsTest,
|
||||||
testing::Values("settings-bad-types.json",
|
testing::Values("settings-bad-types.json",
|
||||||
|
"settings-bad-types2.json",
|
||||||
|
"settings-empty-arrays.json",
|
||||||
"settings-empty-groups.json",
|
"settings-empty-groups.json",
|
||||||
"settings-empty-object.json"));
|
"settings-empty-object.json"));
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue