2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <cstring>
|
2014-06-24 17:28:02 +00:00
|
|
|
#include <list>
|
2013-09-06 17:56:19 +00:00
|
|
|
#include <map>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <string>
|
2010-06-03 18:05:08 +00:00
|
|
|
#include <vector>
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2015-09-26 21:13:07 +00:00
|
|
|
#include "Common/CommonFuncs.h"
|
2014-02-20 03:11:52 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2018-06-03 12:18:58 +00:00
|
|
|
#include "Common/StringUtil.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2013-09-06 17:56:19 +00:00
|
|
|
struct CaseInsensitiveStringCompare
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
bool operator()(const std::string& a, const std::string& b) const
|
|
|
|
{
|
|
|
|
return strcasecmp(a.c_str(), b.c_str()) < 0;
|
|
|
|
}
|
2013-09-06 17:56:19 +00:00
|
|
|
};
|
|
|
|
|
2010-06-04 19:56:34 +00:00
|
|
|
class IniFile
|
2008-12-08 04:46:09 +00:00
|
|
|
{
|
2010-06-03 18:05:08 +00:00
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
class Section
|
|
|
|
{
|
|
|
|
friend class IniFile;
|
|
|
|
|
|
|
|
public:
|
2017-03-22 22:19:53 +00:00
|
|
|
Section();
|
|
|
|
explicit Section(std::string name_);
|
2016-06-24 08:43:46 +00:00
|
|
|
bool Exists(const std::string& key) const;
|
|
|
|
bool Delete(const std::string& key);
|
|
|
|
|
|
|
|
void Set(const std::string& key, const std::string& newValue);
|
2018-06-03 12:18:58 +00:00
|
|
|
template <typename T>
|
|
|
|
void Set(const std::string& key, const T& new_value)
|
|
|
|
{
|
|
|
|
Set(key, ValueToString(new_value));
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
template <typename T>
|
2018-06-03 12:18:58 +00:00
|
|
|
void Set(const std::string& key, const T& new_value, const std::common_type_t<T>& default_value)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2018-06-03 12:18:58 +00:00
|
|
|
if (new_value != default_value)
|
|
|
|
Set(key, new_value);
|
2016-06-24 08:43:46 +00:00
|
|
|
else
|
|
|
|
Delete(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Set(const std::string& key, const std::vector<std::string>& newValues);
|
|
|
|
|
|
|
|
bool Get(const std::string& key, std::string* value,
|
|
|
|
const std::string& defaultValue = NULL_STRING) const;
|
2018-06-03 12:39:38 +00:00
|
|
|
template <typename T>
|
|
|
|
bool Get(const std::string& key, T* value,
|
|
|
|
const std::common_type_t<T>& default_value = {}) const
|
|
|
|
{
|
|
|
|
std::string temp;
|
|
|
|
bool retval = Get(key, &temp);
|
|
|
|
if (retval && TryParse(temp, value))
|
|
|
|
return true;
|
|
|
|
*value = default_value;
|
|
|
|
return false;
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
bool Get(const std::string& key, std::vector<std::string>* values) const;
|
|
|
|
|
2016-02-10 18:19:15 +00:00
|
|
|
void SetLines(const std::vector<std::string>& lines);
|
2017-03-22 22:49:11 +00:00
|
|
|
void SetLines(std::vector<std::string>&& lines);
|
2016-02-10 18:19:15 +00:00
|
|
|
bool GetLines(std::vector<std::string>* lines, const bool remove_comments = true) const;
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
bool operator<(const Section& other) const { return name < other.name; }
|
2016-01-14 22:38:06 +00:00
|
|
|
using SectionMap = std::map<std::string, std::string, CaseInsensitiveStringCompare>;
|
|
|
|
|
|
|
|
const std::string& GetName() const { return name; }
|
|
|
|
const SectionMap& GetValues() const { return values; }
|
2016-02-10 18:19:15 +00:00
|
|
|
bool HasLines() const { return !m_lines.empty(); }
|
2018-04-12 12:18:04 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
protected:
|
|
|
|
std::string name;
|
|
|
|
|
|
|
|
std::vector<std::string> keys_order;
|
2016-01-14 22:38:06 +00:00
|
|
|
SectionMap values;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-02-10 18:19:15 +00:00
|
|
|
std::vector<std::string> m_lines;
|
2016-06-24 08:43:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads sections and keys.
|
|
|
|
* @param filename filename of the ini file which should be loaded
|
|
|
|
* @param keep_current_data If true, "extends" the currently loaded list of sections and keys with
|
|
|
|
* the loaded data (and replaces existing entries). If false, existing data will be erased.
|
|
|
|
* @warning Using any other operations than "Get*" and "Exists" is untested and will behave
|
|
|
|
* unexpectedly
|
|
|
|
* @todo This really is just a hack to support having two levels of gameinis (defaults and
|
|
|
|
* user-specified) and should eventually be replaced with a less stupid system.
|
|
|
|
*/
|
|
|
|
bool Load(const std::string& filename, bool keep_current_data = false);
|
|
|
|
|
|
|
|
bool Save(const std::string& filename);
|
|
|
|
|
|
|
|
// Returns true if key exists in section
|
|
|
|
bool Exists(const std::string& sectionName, const std::string& key) const;
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
bool GetIfExists(const std::string& sectionName, const std::string& key, T* value)
|
|
|
|
{
|
|
|
|
if (Exists(sectionName, key))
|
|
|
|
return GetOrCreateSection(sectionName)->Get(key, value);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
bool GetIfExists(const std::string& sectionName, const std::string& key, T* value, T defaultValue)
|
|
|
|
{
|
|
|
|
if (Exists(sectionName, key))
|
|
|
|
return GetOrCreateSection(sectionName)->Get(key, value, defaultValue);
|
|
|
|
else
|
|
|
|
*value = defaultValue;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GetKeys(const std::string& sectionName, std::vector<std::string>* keys) const;
|
|
|
|
|
|
|
|
void SetLines(const std::string& sectionName, const std::vector<std::string>& lines);
|
2017-03-22 22:49:11 +00:00
|
|
|
void SetLines(const std::string& section_name, std::vector<std::string>&& lines);
|
2016-06-24 08:43:46 +00:00
|
|
|
bool GetLines(const std::string& sectionName, std::vector<std::string>* lines,
|
|
|
|
const bool remove_comments = true) const;
|
|
|
|
|
|
|
|
bool DeleteKey(const std::string& sectionName, const std::string& key);
|
|
|
|
bool DeleteSection(const std::string& sectionName);
|
|
|
|
|
|
|
|
void SortSections();
|
|
|
|
|
|
|
|
Section* GetOrCreateSection(const std::string& section);
|
|
|
|
|
|
|
|
// This function is related to parsing data from lines of INI files
|
|
|
|
// It's used outside of IniFile, which is why it is exposed publicly
|
|
|
|
// In particular it is used in PostProcessing for its configuration
|
|
|
|
static void ParseLine(const std::string& line, std::string* keyOut, std::string* valueOut);
|
2014-07-29 16:47:56 +00:00
|
|
|
|
2016-01-14 22:38:06 +00:00
|
|
|
const std::list<Section>& GetSections() const { return sections; }
|
2018-04-12 12:18:04 +00:00
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
private:
|
2016-06-24 08:43:46 +00:00
|
|
|
std::list<Section> sections;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
const Section* GetSection(const std::string& section) const;
|
|
|
|
Section* GetSection(const std::string& section);
|
2014-03-29 10:05:44 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static const std::string& NULL_STRING;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|