Config/ConfigInfo: Cleanups.

This commit is contained in:
Jordan Woyak 2025-10-31 16:26:06 -05:00
parent 9c28f19e56
commit fc9f25a418
2 changed files with 27 additions and 42 deletions

View File

@ -72,10 +72,10 @@ T Get(const Info<T>& info)
cached.value = GetUncached(info);
cached.config_version = config_version;
info.SetCachedValue(cached);
info.TryToSetCachedValue(cached);
}
return cached.value;
return std::move(cached.value);
}
template <typename T>

View File

@ -35,73 +35,58 @@ template <typename T>
class Info
{
public:
constexpr Info(const Location& location, const T& default_value)
: m_location{location}, m_default_value{default_value}, m_cached_value{default_value, 0}
constexpr Info(Location location, T default_value)
: m_location{std::move(location)}, m_default_value{default_value},
m_cached_value{std::move(default_value), 0}
{
}
Info(const Info<T>& other) { *this = other; }
// Not thread-safe
Info(Info<T>&& other) { *this = std::move(other); }
Info(const Info<T>& other)
: m_location{other.m_location}, m_default_value{other.m_default_value},
m_cached_value(other.GetCachedValue())
{
}
// Make it easy to convert Info<Enum> into Info<UnderlyingType<Enum>>
// so that enum settings can still easily work with code that doesn't care about the enum values.
template <Common::TypedEnum<T> Enum>
Info(const Info<Enum>& other)
: m_location{other.GetLocation()}, m_default_value{static_cast<T>(other.GetDefaultValue())},
m_cached_value(other.template GetCachedValueCasted<T>())
{
*this = other;
}
Info<T>& operator=(const Info<T>& other)
{
m_location = other.GetLocation();
m_default_value = other.GetDefaultValue();
m_cached_value = other.GetCachedValue();
return *this;
}
~Info() = default;
// Not thread-safe
Info<T>& operator=(Info<T>&& other)
{
m_location = std::move(other.m_location);
m_default_value = std::move(other.m_default_value);
m_cached_value = std::move(other.m_cached_value);
return *this;
}
// Make it easy to convert Info<Enum> into Info<UnderlyingType<Enum>>
// so that enum settings can still easily work with code that doesn't care about the enum values.
template <Common::TypedEnum<T> Enum>
Info<T>& operator=(const Info<Enum>& other)
{
m_location = other.GetLocation();
m_default_value = static_cast<T>(other.GetDefaultValue());
m_cached_value = other.template GetCachedValueCasted<T>();
return *this;
}
// Assignments after construction would require more locking to be thread safe.
// It seems unnecessary to have this functionality anyways.
Info& operator=(const Info&) = delete;
Info& operator=(Info&&) = delete;
// Moves are also unnecessary and would be thread unsafe without additional locking.
Info(Info&&) = delete;
constexpr const Location& GetLocation() const { return m_location; }
constexpr const T& GetDefaultValue() const { return m_default_value; }
CachedValue<T> GetCachedValue() const
{
std::shared_lock lock(m_cached_value_mutex);
std::shared_lock lk{m_cached_value_mutex};
return m_cached_value;
}
template <typename U>
CachedValue<U> GetCachedValueCasted() const
{
std::shared_lock lock(m_cached_value_mutex);
return CachedValue<U>{static_cast<U>(m_cached_value.value), m_cached_value.config_version};
std::shared_lock lk{m_cached_value_mutex};
return {static_cast<U>(m_cached_value.value), m_cached_value.config_version};
}
void SetCachedValue(const CachedValue<T>& cached_value) const
// Only updates if the provided config_version is newer.
void TryToSetCachedValue(CachedValue<T> new_value) const
{
std::unique_lock lock(m_cached_value_mutex);
if (m_cached_value.config_version < cached_value.config_version)
m_cached_value = cached_value;
std::lock_guard lk{m_cached_value_mutex};
if (new_value.config_version > m_cached_value.config_version)
m_cached_value = std::move(new_value);
}
private: