2024-04-01 10:57:04 +00:00
|
|
|
// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team
|
2024-07-30 11:42:36 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0+
|
2022-08-22 13:21:39 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "HeterogeneousContainers.h"
|
|
|
|
#include "SettingsInterface.h"
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class MemorySettingsInterface final : public SettingsInterface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MemorySettingsInterface();
|
|
|
|
~MemorySettingsInterface();
|
|
|
|
|
2024-04-01 10:57:04 +00:00
|
|
|
bool Save(Error* error = nullptr) override;
|
2022-08-22 13:21:39 +00:00
|
|
|
|
|
|
|
void Clear() override;
|
|
|
|
|
2024-05-04 13:33:35 +00:00
|
|
|
bool IsEmpty() override;
|
|
|
|
|
2022-08-22 13:21:39 +00:00
|
|
|
bool GetIntValue(const char* section, const char* key, s32* value) const override;
|
|
|
|
bool GetUIntValue(const char* section, const char* key, u32* value) const override;
|
|
|
|
bool GetFloatValue(const char* section, const char* key, float* value) const override;
|
|
|
|
bool GetDoubleValue(const char* section, const char* key, double* value) const override;
|
|
|
|
bool GetBoolValue(const char* section, const char* key, bool* value) const override;
|
|
|
|
bool GetStringValue(const char* section, const char* key, std::string* value) const override;
|
2024-04-12 13:39:43 +00:00
|
|
|
bool GetStringValue(const char* section, const char* key, SmallStringBase* value) const override;
|
2022-08-22 13:21:39 +00:00
|
|
|
|
|
|
|
void SetIntValue(const char* section, const char* key, s32 value) override;
|
|
|
|
void SetUIntValue(const char* section, const char* key, u32 value) override;
|
|
|
|
void SetFloatValue(const char* section, const char* key, float value) override;
|
|
|
|
void SetDoubleValue(const char* section, const char* key, double value) override;
|
|
|
|
void SetBoolValue(const char* section, const char* key, bool value) override;
|
|
|
|
void SetStringValue(const char* section, const char* key, const char* value) override;
|
2022-12-21 12:38:31 +00:00
|
|
|
|
|
|
|
std::vector<std::pair<std::string, std::string>> GetKeyValueList(const char* section) const override;
|
|
|
|
void SetKeyValueList(const char* section, const std::vector<std::pair<std::string, std::string>>& items) override;
|
|
|
|
|
2022-08-22 13:21:39 +00:00
|
|
|
bool ContainsValue(const char* section, const char* key) const override;
|
|
|
|
void DeleteValue(const char* section, const char* key) override;
|
|
|
|
void ClearSection(const char* section) override;
|
2024-05-04 13:33:35 +00:00
|
|
|
void RemoveSection(const char* section) override;
|
|
|
|
void RemoveEmptySections() override;
|
2022-08-22 13:21:39 +00:00
|
|
|
|
|
|
|
std::vector<std::string> GetStringList(const char* section, const char* key) const override;
|
|
|
|
void SetStringList(const char* section, const char* key, const std::vector<std::string>& items) override;
|
|
|
|
bool RemoveFromStringList(const char* section, const char* key, const char* item) override;
|
|
|
|
bool AddToStringList(const char* section, const char* key, const char* item) override;
|
|
|
|
|
|
|
|
// default parameter overloads
|
|
|
|
using SettingsInterface::GetBoolValue;
|
|
|
|
using SettingsInterface::GetDoubleValue;
|
|
|
|
using SettingsInterface::GetFloatValue;
|
|
|
|
using SettingsInterface::GetIntValue;
|
|
|
|
using SettingsInterface::GetStringValue;
|
|
|
|
using SettingsInterface::GetUIntValue;
|
|
|
|
|
|
|
|
private:
|
|
|
|
using KeyMap = UnorderedStringMultimap<std::string>;
|
|
|
|
using SectionMap = UnorderedStringMap<KeyMap>;
|
|
|
|
|
|
|
|
void SetValue(const char* section, const char* key, std::string value);
|
|
|
|
|
|
|
|
SectionMap m_sections;
|
|
|
|
};
|