// SPDX-FileCopyrightText: 2019-2024 Connor McLaughlin // SPDX-License-Identifier: PolyForm-Strict-1.0.0 #include "ini_settings_interface.h" #include "common/error.h" #include "common/file_system.h" #include "common/log.h" #include "common/path.h" #include "common/string_util.h" #include #include #include Log_SetChannel(INISettingsInterface); // To prevent races between saving and loading settings, particularly with game settings, // we only allow one ini to be parsed at any point in time. static std::mutex s_ini_load_save_mutex; INISettingsInterface::INISettingsInterface(std::string filename) : m_filename(std::move(filename)), m_ini(true, true) { } INISettingsInterface::~INISettingsInterface() { if (m_dirty) Save(); } bool INISettingsInterface::Load(Error* error /* = nullptr */) { if (m_filename.empty()) { Error::SetStringView(error, "Filename is not set."); return false; } std::unique_lock lock(s_ini_load_save_mutex); SI_Error err = SI_FAIL; auto fp = FileSystem::OpenManagedCFile(m_filename.c_str(), "rb", error); if (fp) { err = m_ini.LoadFile(fp.get()); if (err != SI_OK) Error::SetStringFmt(error, "INI LoadFile() failed: {}", static_cast(err)); } return (err == SI_OK); } bool INISettingsInterface::Save(Error* error /* = nullptr */) { if (m_filename.empty()) { Error::SetStringView(error, "Filename is not set."); return false; } std::unique_lock lock(s_ini_load_save_mutex); FileSystem::AtomicRenamedFile fp = FileSystem::CreateAtomicRenamedFile(m_filename, error); SI_Error err = SI_FAIL; if (fp) { err = m_ini.SaveFile(fp.get(), false); if (err != SI_OK) { // remove temporary file Error::SetStringFmt(error, "INI SaveFile() failed: {}", static_cast(err)); FileSystem::DiscardAtomicRenamedFile(fp); } else { err = FileSystem::CommitAtomicRenamedFile(fp, error) ? SI_OK : SI_FAIL; } } if (err != SI_OK) { WARNING_LOG("Failed to save settings to '{}'.", m_filename); return false; } m_dirty = false; return true; } void INISettingsInterface::Clear() { m_ini.Reset(); } bool INISettingsInterface::IsEmpty() { return (m_ini.GetKeyCount() == 0); } bool INISettingsInterface::GetIntValue(const char* section, const char* key, s32* value) const { const char* str_value = m_ini.GetValue(section, key); if (!str_value) return false; std::optional parsed_value = StringUtil::FromChars(str_value, 10); if (!parsed_value.has_value()) return false; *value = parsed_value.value(); return true; } bool INISettingsInterface::GetUIntValue(const char* section, const char* key, u32* value) const { const char* str_value = m_ini.GetValue(section, key); if (!str_value) return false; std::optional parsed_value = StringUtil::FromChars(str_value, 10); if (!parsed_value.has_value()) return false; *value = parsed_value.value(); return true; } bool INISettingsInterface::GetFloatValue(const char* section, const char* key, float* value) const { const char* str_value = m_ini.GetValue(section, key); if (!str_value) return false; std::optional parsed_value = StringUtil::FromChars(str_value); if (!parsed_value.has_value()) return false; *value = parsed_value.value(); return true; } bool INISettingsInterface::GetDoubleValue(const char* section, const char* key, double* value) const { const char* str_value = m_ini.GetValue(section, key); if (!str_value) return false; std::optional parsed_value = StringUtil::FromChars(str_value); if (!parsed_value.has_value()) return false; *value = parsed_value.value(); return true; } bool INISettingsInterface::GetBoolValue(const char* section, const char* key, bool* value) const { const char* str_value = m_ini.GetValue(section, key); if (!str_value) return false; std::optional parsed_value = StringUtil::FromChars(str_value); if (!parsed_value.has_value()) return false; *value = parsed_value.value(); return true; } bool INISettingsInterface::GetStringValue(const char* section, const char* key, std::string* value) const { const char* str_value = m_ini.GetValue(section, key); if (!str_value) return false; value->assign(str_value); return true; } bool INISettingsInterface::GetStringValue(const char* section, const char* key, SmallStringBase* value) const { const char* str_value = m_ini.GetValue(section, key); if (!str_value) return false; value->assign(str_value); return true; } void INISettingsInterface::SetIntValue(const char* section, const char* key, s32 value) { m_dirty = true; m_ini.SetValue(section, key, StringUtil::ToChars(value).c_str(), nullptr, true); } void INISettingsInterface::SetUIntValue(const char* section, const char* key, u32 value) { m_dirty = true; m_ini.SetValue(section, key, StringUtil::ToChars(value).c_str(), nullptr, true); } void INISettingsInterface::SetFloatValue(const char* section, const char* key, float value) { m_dirty = true; m_ini.SetValue(section, key, StringUtil::ToChars(value).c_str(), nullptr, true); } void INISettingsInterface::SetDoubleValue(const char* section, const char* key, double value) { m_dirty = true; m_ini.SetValue(section, key, StringUtil::ToChars(value).c_str(), nullptr, true); } void INISettingsInterface::SetBoolValue(const char* section, const char* key, bool value) { m_dirty = true; m_ini.SetBoolValue(section, key, value, nullptr, true); } void INISettingsInterface::SetStringValue(const char* section, const char* key, const char* value) { m_dirty = true; m_ini.SetValue(section, key, value, nullptr, true); } bool INISettingsInterface::ContainsValue(const char* section, const char* key) const { return (m_ini.GetValue(section, key, nullptr) != nullptr); } void INISettingsInterface::DeleteValue(const char* section, const char* key) { m_dirty = true; m_ini.Delete(section, key); } void INISettingsInterface::ClearSection(const char* section) { m_dirty = true; m_ini.Delete(section, nullptr); m_ini.SetValue(section, nullptr, nullptr); } void INISettingsInterface::RemoveSection(const char* section) { if (!m_ini.GetSection(section)) return; m_dirty = true; m_ini.Delete(section, nullptr); } void INISettingsInterface::RemoveEmptySections() { std::list entries; m_ini.GetAllSections(entries); for (const CSimpleIniA::Entry& entry : entries) { if (m_ini.GetSectionSize(entry.pItem) > 0) continue; m_dirty = true; m_ini.Delete(entry.pItem, nullptr); } } std::vector INISettingsInterface::GetStringList(const char* section, const char* key) const { std::list entries; if (!m_ini.GetAllValues(section, key, entries)) return {}; std::vector ret; ret.reserve(entries.size()); for (const CSimpleIniA::Entry& entry : entries) ret.emplace_back(entry.pItem); return ret; } void INISettingsInterface::SetStringList(const char* section, const char* key, const std::vector& items) { m_dirty = true; m_ini.Delete(section, key); for (const std::string& sv : items) m_ini.SetValue(section, key, sv.c_str(), nullptr, false); } bool INISettingsInterface::RemoveFromStringList(const char* section, const char* key, const char* item) { m_dirty = true; return m_ini.DeleteValue(section, key, item, true); } bool INISettingsInterface::AddToStringList(const char* section, const char* key, const char* item) { std::list entries; if (m_ini.GetAllValues(section, key, entries) && std::find_if(entries.begin(), entries.end(), [item](const CSimpleIniA::Entry& e) { return (std::strcmp(e.pItem, item) == 0); }) != entries.end()) { return false; } m_dirty = true; m_ini.SetValue(section, key, item, nullptr, false); return true; } std::vector> INISettingsInterface::GetKeyValueList(const char* section) const { using Entry = CSimpleIniA::Entry; using KVEntry = std::pair; std::vector entries; std::vector> output; std::list keys, values; if (m_ini.GetAllKeys(section, keys)) { for (Entry& key : keys) { if (!m_ini.GetAllValues(section, key.pItem, values)) // [[unlikely]] { ERROR_LOG("Got no values for a key returned from GetAllKeys!"); continue; } for (const Entry& value : values) entries.emplace_back(key.pItem, value); } } std::sort(entries.begin(), entries.end(), [](const KVEntry& a, const KVEntry& b) { return a.second.nOrder < b.second.nOrder; }); for (const KVEntry& entry : entries) output.emplace_back(entry.first, entry.second.pItem); return output; } void INISettingsInterface::SetKeyValueList(const char* section, const std::vector>& items) { m_ini.Delete(section, nullptr); for (const std::pair& item : items) m_ini.SetValue(section, item.first.c_str(), item.second.c_str(), nullptr, false); }