2011-03-03 20:50:24 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file ini_load.cpp Definition of the #IniLoadFile class, related to reading and storing '*.ini' files. */
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "core/alloc_func.hpp"
|
|
|
|
#include "core/mem_func.hpp"
|
|
|
|
#include "ini_type.h"
|
2012-01-03 21:47:01 +00:00
|
|
|
#include "string_func.h"
|
2011-03-03 20:50:24 +00:00
|
|
|
|
2014-04-23 20:13:33 +00:00
|
|
|
#include "safeguards.h"
|
|
|
|
|
2011-03-03 20:50:24 +00:00
|
|
|
/**
|
|
|
|
* Construct a new in-memory item of an Ini file.
|
|
|
|
* @param parent the group we belong to
|
|
|
|
* @param name the name of the item
|
|
|
|
*/
|
2023-10-10 18:26:00 +00:00
|
|
|
IniItem::IniItem(const std::string &name)
|
2011-03-03 20:50:24 +00:00
|
|
|
{
|
2021-05-29 09:21:38 +00:00
|
|
|
this->name = StrMakeValid(name);
|
2011-03-03 20:50:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Replace the current value with another value.
|
|
|
|
* @param value the value to replace with.
|
|
|
|
*/
|
2021-04-29 17:04:27 +00:00
|
|
|
void IniItem::SetValue(const std::string_view value)
|
2011-03-03 20:50:24 +00:00
|
|
|
{
|
2021-04-29 17:04:27 +00:00
|
|
|
this->value.emplace(value);
|
2011-03-03 20:50:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct a new in-memory group of an Ini file.
|
|
|
|
* @param parent the file we belong to
|
|
|
|
* @param name the name of the group
|
|
|
|
*/
|
2023-10-31 01:19:04 +00:00
|
|
|
IniGroup::IniGroup(const std::string &name, IniGroupType type) : type(type), comment("\n")
|
2011-03-03 20:50:24 +00:00
|
|
|
{
|
2021-05-29 09:21:38 +00:00
|
|
|
this->name = StrMakeValid(name);
|
2011-03-03 20:50:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-06-05 18:29:52 +00:00
|
|
|
* Get the item with the given name.
|
2011-03-03 20:50:24 +00:00
|
|
|
* @param name name of the item to find.
|
2019-04-10 21:07:06 +00:00
|
|
|
* @return the requested item or nullptr if not found.
|
2011-03-03 20:50:24 +00:00
|
|
|
*/
|
2023-10-10 23:38:57 +00:00
|
|
|
const IniItem *IniGroup::GetItem(const std::string &name) const
|
2011-03-03 20:50:24 +00:00
|
|
|
{
|
2023-10-10 23:38:57 +00:00
|
|
|
for (const IniItem &item : this->items) {
|
2023-10-10 18:26:00 +00:00
|
|
|
if (item.name == name) return &item;
|
2011-03-03 20:50:24 +00:00
|
|
|
}
|
|
|
|
|
2023-06-05 18:29:52 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the item with the given name, and if it doesn't exist create a new item.
|
|
|
|
* @param name name of the item to find.
|
|
|
|
* @return the requested item.
|
|
|
|
*/
|
|
|
|
IniItem &IniGroup::GetOrCreateItem(const std::string &name)
|
|
|
|
{
|
2023-10-10 18:26:00 +00:00
|
|
|
for (IniItem &item : this->items) {
|
|
|
|
if (item.name == name) return item;
|
2023-06-05 18:29:52 +00:00
|
|
|
}
|
2011-03-03 20:50:24 +00:00
|
|
|
|
2023-06-05 18:29:52 +00:00
|
|
|
/* Item doesn't exist, make a new one. */
|
2023-10-10 18:25:57 +00:00
|
|
|
return this->CreateItem(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create an item with the given name. This does not reuse an existing item of the same name.
|
|
|
|
* @param name name of the item to create.
|
|
|
|
* @return the created item.
|
|
|
|
*/
|
|
|
|
IniItem &IniGroup::CreateItem(const std::string &name)
|
|
|
|
{
|
2023-10-10 18:26:00 +00:00
|
|
|
return this->items.emplace_back(name);
|
2011-03-03 20:50:24 +00:00
|
|
|
}
|
|
|
|
|
2021-06-28 14:39:48 +00:00
|
|
|
/**
|
|
|
|
* Remove the item with the given name.
|
|
|
|
* @param name Name of the item to remove.
|
|
|
|
*/
|
|
|
|
void IniGroup::RemoveItem(const std::string &name)
|
|
|
|
{
|
2023-10-10 18:26:00 +00:00
|
|
|
this->items.remove_if([&name](const IniItem &item) { return item.name == name; });
|
2021-06-28 14:39:48 +00:00
|
|
|
}
|
|
|
|
|
2011-03-03 20:50:24 +00:00
|
|
|
/**
|
|
|
|
* Clear all items in the group
|
|
|
|
*/
|
|
|
|
void IniGroup::Clear()
|
|
|
|
{
|
2023-10-10 18:26:00 +00:00
|
|
|
this->items.clear();
|
2011-03-03 20:50:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct a new in-memory Ini file representation.
|
2023-10-10 18:25:59 +00:00
|
|
|
* @param list_group_names A list with group names that should be loaded as lists instead of variables. @see IGT_LIST
|
|
|
|
* @param seq_group_names A list with group names that should be loaded as lists of names. @see IGT_SEQUENCE
|
2011-03-03 20:50:24 +00:00
|
|
|
*/
|
2023-10-10 18:25:59 +00:00
|
|
|
IniLoadFile::IniLoadFile(const IniGroupNameList &list_group_names, const IniGroupNameList &seq_group_names) :
|
2011-03-03 20:56:33 +00:00
|
|
|
list_group_names(list_group_names),
|
|
|
|
seq_group_names(seq_group_names)
|
2011-03-03 20:50:24 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-10-10 23:38:57 +00:00
|
|
|
/**
|
|
|
|
* Get the group with the given name.
|
|
|
|
* @param name name of the group to find.
|
|
|
|
* @return The requested group or \c nullptr if not found.
|
|
|
|
*/
|
|
|
|
const IniGroup *IniLoadFile::GetGroup(const std::string &name) const
|
2011-03-03 20:50:24 +00:00
|
|
|
{
|
2023-10-10 23:38:57 +00:00
|
|
|
for (const IniGroup &group : this->groups) {
|
|
|
|
if (group.name == name) return &group;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
2011-03-03 20:50:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-10-10 18:25:59 +00:00
|
|
|
* Get the group with the given name.
|
2011-03-03 20:50:24 +00:00
|
|
|
* @param name name of the group to find.
|
2023-10-10 18:25:59 +00:00
|
|
|
* @return The requested group or \c nullptr if not found.
|
2011-03-03 20:50:24 +00:00
|
|
|
*/
|
2023-10-10 18:26:00 +00:00
|
|
|
IniGroup *IniLoadFile::GetGroup(const std::string &name)
|
2011-03-03 20:50:24 +00:00
|
|
|
{
|
2023-10-10 18:26:00 +00:00
|
|
|
for (IniGroup &group : this->groups) {
|
|
|
|
if (group.name == name) return &group;
|
2011-03-03 20:50:24 +00:00
|
|
|
}
|
|
|
|
|
2023-10-10 18:25:59 +00:00
|
|
|
return nullptr;
|
2011-03-03 20:50:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-10-10 18:25:58 +00:00
|
|
|
* Get the group with the given name, and if it doesn't exist create a new group.
|
|
|
|
* @param name name of the group to find.
|
|
|
|
* @return the requested group.
|
2011-03-03 20:50:24 +00:00
|
|
|
*/
|
2023-10-10 18:25:58 +00:00
|
|
|
IniGroup &IniLoadFile::GetOrCreateGroup(const std::string &name)
|
2011-03-03 20:50:24 +00:00
|
|
|
{
|
2023-10-10 18:26:00 +00:00
|
|
|
for (IniGroup &group : this->groups) {
|
|
|
|
if (group.name == name) return group;
|
2011-03-03 20:50:24 +00:00
|
|
|
}
|
|
|
|
|
2023-10-10 18:25:58 +00:00
|
|
|
/* Group doesn't exist, make a new one. */
|
|
|
|
return this->CreateGroup(name);
|
|
|
|
}
|
2011-03-03 20:50:24 +00:00
|
|
|
|
2023-10-10 18:25:57 +00:00
|
|
|
/**
|
|
|
|
* Create an group with the given name. This does not reuse an existing group of the same name.
|
|
|
|
* @param name name of the group to create.
|
|
|
|
* @return the created group.
|
|
|
|
*/
|
|
|
|
IniGroup &IniLoadFile::CreateGroup(const std::string &name)
|
|
|
|
{
|
2023-10-10 18:26:00 +00:00
|
|
|
IniGroupType type = IGT_VARIABLES;
|
|
|
|
if (std::find(this->list_group_names.begin(), this->list_group_names.end(), name) != this->list_group_names.end()) type = IGT_LIST;
|
|
|
|
if (std::find(this->seq_group_names.begin(), this->seq_group_names.end(), name) != this->seq_group_names.end()) type = IGT_SEQUENCE;
|
|
|
|
|
2023-10-10 18:26:00 +00:00
|
|
|
return this->groups.emplace_back(name, type);
|
2011-03-03 20:50:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the group with the given name.
|
|
|
|
* @param name name of the group to remove.
|
|
|
|
*/
|
2023-10-11 11:31:12 +00:00
|
|
|
void IniLoadFile::RemoveGroup(const std::string &name)
|
2011-03-03 20:50:24 +00:00
|
|
|
{
|
2023-10-11 11:31:12 +00:00
|
|
|
size_t len = name.length();
|
2023-10-10 18:26:00 +00:00
|
|
|
this->groups.remove_if([&name, &len](const IniGroup &group) { return group.name.compare(0, len, name) == 0; });
|
2011-03-03 20:50:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load the Ini file's data from the disk.
|
|
|
|
* @param filename the file to load.
|
2011-08-24 13:38:26 +00:00
|
|
|
* @param subdir the sub directory to load the file from.
|
2011-03-03 20:50:24 +00:00
|
|
|
* @pre nothing has been loaded yet.
|
|
|
|
*/
|
2021-01-30 23:24:40 +00:00
|
|
|
void IniLoadFile::LoadFromDisk(const std::string &filename, Subdirectory subdir, std::string *save)
|
2011-03-03 20:50:24 +00:00
|
|
|
{
|
2023-10-10 18:26:00 +00:00
|
|
|
assert(this->groups.empty());
|
2011-03-03 20:50:24 +00:00
|
|
|
|
|
|
|
char buffer[1024];
|
2019-04-10 21:07:06 +00:00
|
|
|
IniGroup *group = nullptr;
|
2011-03-03 20:50:24 +00:00
|
|
|
|
2019-04-10 21:07:06 +00:00
|
|
|
char *comment = nullptr;
|
2011-03-03 20:50:24 +00:00
|
|
|
uint comment_size = 0;
|
|
|
|
uint comment_alloc = 0;
|
|
|
|
|
|
|
|
size_t end;
|
2011-08-24 13:38:26 +00:00
|
|
|
FILE *in = this->OpenFile(filename, subdir, &end);
|
2019-04-10 21:07:06 +00:00
|
|
|
if (in == nullptr) return;
|
2011-03-03 20:50:24 +00:00
|
|
|
|
2020-04-21 17:17:13 +00:00
|
|
|
if (save != nullptr) {
|
|
|
|
save->clear();
|
2021-04-08 16:45:13 +00:00
|
|
|
if (end < (1 << 20)) save->reserve(end);
|
2020-04-21 17:17:13 +00:00
|
|
|
}
|
|
|
|
|
2011-03-03 20:50:24 +00:00
|
|
|
end += ftell(in);
|
|
|
|
|
|
|
|
/* for each line in the file */
|
|
|
|
while ((size_t)ftell(in) < end && fgets(buffer, sizeof(buffer), in)) {
|
2020-04-21 17:17:13 +00:00
|
|
|
if (save != nullptr) *save += buffer;
|
2011-03-03 20:50:24 +00:00
|
|
|
char c, *s;
|
|
|
|
/* trim whitespace from the left side */
|
|
|
|
for (s = buffer; *s == ' ' || *s == '\t'; s++) {}
|
|
|
|
|
|
|
|
/* trim whitespace from right side. */
|
|
|
|
char *e = s + strlen(s);
|
|
|
|
while (e > s && ((c = e[-1]) == '\n' || c == '\r' || c == ' ' || c == '\t')) e--;
|
|
|
|
*e = '\0';
|
|
|
|
|
2011-03-03 20:56:33 +00:00
|
|
|
/* Skip comments and empty lines outside IGT_SEQUENCE groups. */
|
2019-04-10 21:07:06 +00:00
|
|
|
if ((group == nullptr || group->type != IGT_SEQUENCE) && (*s == '#' || *s == ';' || *s == '\0')) {
|
2011-03-03 20:50:24 +00:00
|
|
|
uint ns = comment_size + (e - s + 1);
|
|
|
|
uint a = comment_alloc;
|
|
|
|
/* add to comment */
|
|
|
|
if (ns > a) {
|
2021-01-08 10:16:18 +00:00
|
|
|
a = std::max(a, 128U);
|
2011-03-03 20:50:24 +00:00
|
|
|
do a *= 2; while (a < ns);
|
|
|
|
comment = ReallocT(comment, comment_alloc = a);
|
|
|
|
}
|
|
|
|
uint pos = comment_size;
|
|
|
|
comment_size += (e - s + 1);
|
|
|
|
comment[pos + e - s] = '\n'; // comment newline
|
|
|
|
memcpy(comment + pos, s, e - s); // copy comment contents
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* it's a group? */
|
|
|
|
if (s[0] == '[') {
|
|
|
|
if (e[-1] != ']') {
|
2011-03-03 20:53:09 +00:00
|
|
|
this->ReportFileError("ini: invalid group name '", buffer, "'");
|
2011-03-03 20:50:24 +00:00
|
|
|
} else {
|
|
|
|
e--;
|
|
|
|
}
|
|
|
|
s++; // skip [
|
2023-10-10 18:25:57 +00:00
|
|
|
group = &this->CreateGroup(std::string(s, e - s));
|
2011-03-03 20:50:24 +00:00
|
|
|
if (comment_size != 0) {
|
2020-05-17 21:32:03 +00:00
|
|
|
group->comment.assign(comment, comment_size);
|
2011-03-03 20:50:24 +00:00
|
|
|
comment_size = 0;
|
|
|
|
}
|
2019-04-10 21:07:06 +00:00
|
|
|
} else if (group != nullptr) {
|
2011-03-03 20:56:33 +00:00
|
|
|
if (group->type == IGT_SEQUENCE) {
|
|
|
|
/* A sequence group, use the line as item name without further interpretation. */
|
2023-10-10 18:25:57 +00:00
|
|
|
IniItem &item = group->CreateItem(std::string(buffer, e - buffer));
|
2011-03-03 20:56:33 +00:00
|
|
|
if (comment_size) {
|
2023-10-10 18:25:57 +00:00
|
|
|
item.comment.assign(comment, comment_size);
|
2011-03-03 20:56:33 +00:00
|
|
|
comment_size = 0;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2011-03-03 20:50:24 +00:00
|
|
|
char *t;
|
|
|
|
/* find end of keyname */
|
|
|
|
if (*s == '\"') {
|
|
|
|
s++;
|
|
|
|
for (t = s; *t != '\0' && *t != '\"'; t++) {}
|
|
|
|
if (*t == '\"') *t = ' ';
|
|
|
|
} else {
|
|
|
|
for (t = s; *t != '\0' && *t != '=' && *t != '\t' && *t != ' '; t++) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* it's an item in an existing group */
|
2023-10-10 18:25:57 +00:00
|
|
|
IniItem &item = group->CreateItem(std::string(s, t - s));
|
2011-03-03 20:50:24 +00:00
|
|
|
if (comment_size != 0) {
|
2023-10-10 18:25:57 +00:00
|
|
|
item.comment.assign(comment, comment_size);
|
2011-03-03 20:50:24 +00:00
|
|
|
comment_size = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* find start of parameter */
|
|
|
|
while (*t == '=' || *t == ' ' || *t == '\t') t++;
|
|
|
|
|
|
|
|
bool quoted = (*t == '\"');
|
|
|
|
/* remove starting quotation marks */
|
|
|
|
if (*t == '\"') t++;
|
|
|
|
/* remove ending quotation marks */
|
|
|
|
e = t + strlen(t);
|
|
|
|
if (e > t && e[-1] == '\"') e--;
|
|
|
|
*e = '\0';
|
|
|
|
|
2019-04-10 21:07:06 +00:00
|
|
|
/* If the value was not quoted and empty, it must be nullptr */
|
2020-05-17 21:32:03 +00:00
|
|
|
if (!quoted && e == t) {
|
2023-10-10 18:25:57 +00:00
|
|
|
item.value.reset();
|
2020-05-17 21:32:03 +00:00
|
|
|
} else {
|
2023-12-29 23:55:31 +00:00
|
|
|
item.value = StrMakeValid(std::string_view(t));
|
2020-05-17 21:32:03 +00:00
|
|
|
}
|
2011-03-03 20:50:24 +00:00
|
|
|
} else {
|
|
|
|
/* it's an orphan item */
|
2011-03-03 20:53:09 +00:00
|
|
|
this->ReportFileError("ini: '", buffer, "' outside of group");
|
2011-03-03 20:50:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (comment_size > 0) {
|
2020-05-17 21:32:03 +00:00
|
|
|
this->comment.assign(comment, comment_size);
|
2011-03-03 20:50:24 +00:00
|
|
|
comment_size = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(comment);
|
|
|
|
fclose(in);
|
|
|
|
}
|
|
|
|
|