2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2015-01-01 19:48:13 +01:00
|
|
|
* Copyright (C) 2003-2015 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2004-02-24 00:41:20 +01:00
|
|
|
*
|
|
|
|
* This program 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; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2004-02-24 00:41:20 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-30 19:44:59 +01:00
|
|
|
#include "ConfigFile.hxx"
|
2015-01-21 21:49:09 +01:00
|
|
|
#include "Data.hxx"
|
2015-01-21 21:14:25 +01:00
|
|
|
#include "Param.hxx"
|
2015-01-21 22:13:44 +01:00
|
|
|
#include "Block.hxx"
|
2013-01-30 17:53:13 +01:00
|
|
|
#include "ConfigTemplates.hxx"
|
2013-04-08 23:51:39 +02:00
|
|
|
#include "util/Tokenizer.hxx"
|
2013-04-09 01:08:20 +02:00
|
|
|
#include "util/StringUtil.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
|
|
|
#include "util/Domain.hxx"
|
2013-01-21 19:14:37 +01:00
|
|
|
#include "fs/Path.hxx"
|
2015-01-21 23:36:57 +01:00
|
|
|
#include "fs/io/FileReader.hxx"
|
|
|
|
#include "fs/io/BufferedReader.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2008-12-28 19:54:49 +01:00
|
|
|
|
2009-01-25 17:37:45 +01:00
|
|
|
#include <assert.h>
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2015-01-21 22:12:16 +01:00
|
|
|
static constexpr char CONF_COMMENT = '#';
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
static constexpr Domain config_file_domain("config_file");
|
|
|
|
|
2011-09-09 21:06:23 +02:00
|
|
|
static bool
|
2015-01-21 22:13:44 +01:00
|
|
|
config_read_name_value(ConfigBlock &block, char *input, unsigned line,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error)
|
2011-09-09 21:06:23 +02:00
|
|
|
{
|
2013-04-08 23:51:39 +02:00
|
|
|
Tokenizer tokenizer(input);
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
const char *name = tokenizer.NextWord(error);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (name == nullptr) {
|
2013-04-08 23:51:39 +02:00
|
|
|
assert(!tokenizer.IsEnd());
|
2011-09-09 21:06:23 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
const char *value = tokenizer.NextString(error);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (value == nullptr) {
|
2013-04-08 23:51:39 +02:00
|
|
|
if (tokenizer.IsEnd()) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Set(config_file_domain, "Value missing");
|
2011-09-09 21:06:23 +02:00
|
|
|
} else {
|
2013-08-10 18:02:44 +02:00
|
|
|
assert(error.IsDefined());
|
2011-09-09 21:06:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-04-08 23:51:39 +02:00
|
|
|
if (!tokenizer.IsEnd() && tokenizer.CurrentChar() != CONF_COMMENT) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Set(config_file_domain, "Unknown tokens after value");
|
2011-09-09 21:06:23 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
const BlockParam *bp = block.GetBlockParam(name);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (bp != nullptr) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(config_file_domain,
|
|
|
|
"\"%s\" is duplicate, first defined on line %i",
|
|
|
|
name, bp->line);
|
2011-09-09 21:16:46 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
block.AddBlockParam(name, value, line);
|
2011-09-09 21:16:46 +02:00
|
|
|
return true;
|
2011-09-09 21:06:23 +02:00
|
|
|
}
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
static ConfigBlock *
|
2015-01-21 23:43:32 +01:00
|
|
|
config_read_block(BufferedReader &reader, Error &error)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2015-01-21 22:13:44 +01:00
|
|
|
auto *ret = new ConfigBlock(reader.GetLineNumber());
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2009-07-19 15:11:37 +02:00
|
|
|
while (true) {
|
2015-01-21 23:36:57 +01:00
|
|
|
char *line = reader.ReadLine();
|
2013-10-19 18:19:03 +02:00
|
|
|
if (line == nullptr) {
|
2013-01-30 22:00:32 +01:00
|
|
|
delete ret;
|
2015-01-21 23:36:57 +01:00
|
|
|
|
|
|
|
if (reader.Check(error))
|
|
|
|
error.Set(config_file_domain,
|
|
|
|
"Expected '}' before end-of-file");
|
2013-10-19 18:19:03 +02:00
|
|
|
return nullptr;
|
2009-09-24 21:40:07 +02:00
|
|
|
}
|
2006-10-06 12:33:27 +02:00
|
|
|
|
2014-08-07 14:53:07 +02:00
|
|
|
line = StripLeft(line);
|
2009-07-19 15:11:37 +02:00
|
|
|
if (*line == 0 || *line == CONF_COMMENT)
|
|
|
|
continue;
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2009-07-19 15:11:37 +02:00
|
|
|
if (*line == '}') {
|
|
|
|
/* end of this block; return from the function
|
|
|
|
(and from this "while" loop) */
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2014-08-07 14:53:07 +02:00
|
|
|
line = StripLeft(line + 1);
|
2009-09-24 21:40:07 +02:00
|
|
|
if (*line != 0 && *line != CONF_COMMENT) {
|
2013-01-30 22:00:32 +01:00
|
|
|
delete ret;
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(config_file_domain,
|
2015-12-16 11:13:09 +01:00
|
|
|
"line %u: Unknown tokens after '}'",
|
2015-01-21 23:43:32 +01:00
|
|
|
reader.GetLineNumber());
|
2013-01-10 18:11:12 +01:00
|
|
|
return nullptr;
|
2009-09-24 21:40:07 +02:00
|
|
|
}
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2009-07-19 15:11:37 +02:00
|
|
|
return ret;
|
2004-11-11 04:20:49 +01:00
|
|
|
}
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2009-07-19 15:11:37 +02:00
|
|
|
/* parse name and value */
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
if (!config_read_name_value(*ret, line, reader.GetLineNumber(),
|
2015-01-21 23:43:32 +01:00
|
|
|
error)) {
|
2009-07-19 15:11:37 +02:00
|
|
|
assert(*line != 0);
|
2013-01-30 22:00:32 +01:00
|
|
|
delete ret;
|
2015-01-21 23:43:32 +01:00
|
|
|
error.FormatPrefix("line %u: ", reader.GetLineNumber());
|
2013-10-19 18:19:03 +02:00
|
|
|
return nullptr;
|
2004-10-28 07:14:55 +02:00
|
|
|
}
|
2009-07-19 15:11:37 +02:00
|
|
|
}
|
2004-10-28 07:14:55 +02:00
|
|
|
}
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
gcc_nonnull_all
|
|
|
|
static void
|
|
|
|
Append(ConfigBlock *&head, ConfigBlock *p)
|
|
|
|
{
|
|
|
|
assert(p->next == nullptr);
|
|
|
|
|
|
|
|
auto **i = &head;
|
|
|
|
while (*i != nullptr)
|
|
|
|
i = &(*i)->next;
|
|
|
|
|
|
|
|
*i = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
ReadConfigBlock(ConfigData &config_data, BufferedReader &reader,
|
2015-01-22 19:08:09 +01:00
|
|
|
const char *name, ConfigBlockOption o,
|
2015-01-21 22:13:44 +01:00
|
|
|
Tokenizer &tokenizer,
|
|
|
|
Error &error)
|
|
|
|
{
|
|
|
|
const unsigned i = unsigned(o);
|
|
|
|
const ConfigTemplate &option = config_block_templates[i];
|
|
|
|
ConfigBlock *&head = config_data.blocks[i];
|
|
|
|
|
|
|
|
if (head != nullptr && !option.repeatable) {
|
|
|
|
ConfigBlock *block = head;
|
|
|
|
error.Format(config_file_domain,
|
|
|
|
"config parameter \"%s\" is first defined "
|
|
|
|
"on line %d and redefined on line %u\n",
|
|
|
|
name, block->line,
|
|
|
|
reader.GetLineNumber());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now parse the block or the value */
|
|
|
|
|
|
|
|
if (tokenizer.CurrentChar() != '{') {
|
|
|
|
error.Format(config_file_domain,
|
|
|
|
"line %u: '{' expected",
|
|
|
|
reader.GetLineNumber());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *line = StripLeft(tokenizer.Rest() + 1);
|
|
|
|
if (*line != 0 && *line != CONF_COMMENT) {
|
|
|
|
error.Format(config_file_domain,
|
|
|
|
"line %u: Unknown tokens after '{'",
|
|
|
|
reader.GetLineNumber());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto *param = config_read_block(reader, error);
|
|
|
|
if (param == nullptr)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
Append(head, param);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-30 22:37:17 +01:00
|
|
|
gcc_nonnull_all
|
|
|
|
static void
|
|
|
|
Append(config_param *&head, config_param *p)
|
|
|
|
{
|
|
|
|
assert(p->next == nullptr);
|
|
|
|
|
|
|
|
config_param **i = &head;
|
|
|
|
while (*i != nullptr)
|
|
|
|
i = &(*i)->next;
|
|
|
|
|
|
|
|
*i = p;
|
|
|
|
}
|
|
|
|
|
2013-01-30 19:59:49 +01:00
|
|
|
static bool
|
2015-01-21 23:23:56 +01:00
|
|
|
ReadConfigParam(ConfigData &config_data, BufferedReader &reader,
|
|
|
|
const char *name, ConfigOption o,
|
|
|
|
Tokenizer &tokenizer,
|
|
|
|
Error &error)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2015-01-21 23:23:56 +01:00
|
|
|
const unsigned i = unsigned(o);
|
2015-01-21 22:13:44 +01:00
|
|
|
const ConfigTemplate &option = config_param_templates[i];
|
2015-01-21 23:23:56 +01:00
|
|
|
config_param *&head = config_data.params[i];
|
|
|
|
|
|
|
|
if (head != nullptr && !option.repeatable) {
|
|
|
|
struct config_param *param = head;
|
|
|
|
error.Format(config_file_domain,
|
|
|
|
"config parameter \"%s\" is first defined "
|
|
|
|
"on line %d and redefined on line %u\n",
|
|
|
|
name, param->line,
|
|
|
|
reader.GetLineNumber());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now parse the block or the value */
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
const char *value = tokenizer.NextString(error);
|
|
|
|
if (value == nullptr) {
|
|
|
|
if (tokenizer.IsEnd())
|
2015-01-21 23:23:56 +01:00
|
|
|
error.Format(config_file_domain,
|
2015-01-21 22:13:44 +01:00
|
|
|
"line %u: Value missing",
|
2015-01-21 23:23:56 +01:00
|
|
|
reader.GetLineNumber());
|
2015-01-21 22:13:44 +01:00
|
|
|
else
|
|
|
|
error.FormatPrefix("line %u: ",
|
|
|
|
reader.GetLineNumber());
|
2015-01-21 23:23:56 +01:00
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-21 23:23:56 +01:00
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
if (!tokenizer.IsEnd() &&
|
|
|
|
tokenizer.CurrentChar() != CONF_COMMENT) {
|
|
|
|
error.Format(config_file_domain,
|
|
|
|
"line %u: Unknown tokens after value",
|
|
|
|
reader.GetLineNumber());
|
|
|
|
return false;
|
2015-01-21 23:23:56 +01:00
|
|
|
}
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
auto *param = new config_param(value, reader.GetLineNumber());
|
2015-01-21 23:23:56 +01:00
|
|
|
Append(head, param);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
ReadConfigFile(ConfigData &config_data, BufferedReader &reader, Error &error)
|
|
|
|
{
|
2015-01-21 23:36:57 +01:00
|
|
|
while (true) {
|
|
|
|
char *line = reader.ReadLine();
|
|
|
|
if (line == nullptr)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
line = StripLeft(line);
|
2009-07-19 15:11:37 +02:00
|
|
|
if (*line == 0 || *line == CONF_COMMENT)
|
|
|
|
continue;
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2009-07-19 15:11:37 +02:00
|
|
|
/* the first token in each line is the name, followed
|
|
|
|
by either the value or '{' */
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2013-04-08 23:51:39 +02:00
|
|
|
Tokenizer tokenizer(line);
|
2015-01-21 23:23:56 +01:00
|
|
|
const char *name = tokenizer.NextWord(error);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (name == nullptr) {
|
2013-04-08 23:51:39 +02:00
|
|
|
assert(!tokenizer.IsEnd());
|
2015-01-21 23:43:32 +01:00
|
|
|
error.FormatPrefix("line %u: ", reader.GetLineNumber());
|
2009-09-24 21:40:07 +02:00
|
|
|
return false;
|
2004-11-11 04:20:49 +01:00
|
|
|
}
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2009-07-19 15:11:37 +02:00
|
|
|
/* get the definition of that option, and check the
|
|
|
|
"repeatable" flag */
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2013-01-30 17:52:51 +01:00
|
|
|
const ConfigOption o = ParseConfigOptionName(name);
|
2015-01-21 22:13:44 +01:00
|
|
|
ConfigBlockOption bo;
|
2015-01-21 23:23:56 +01:00
|
|
|
if (o != ConfigOption::MAX) {
|
|
|
|
if (!ReadConfigParam(config_data, reader, name, o,
|
|
|
|
tokenizer, error))
|
|
|
|
return false;
|
2015-01-21 22:13:44 +01:00
|
|
|
} else if ((bo = ParseConfigBlockOptionName(name)) != ConfigBlockOption::MAX) {
|
2015-01-22 19:08:09 +01:00
|
|
|
if (!ReadConfigBlock(config_data, reader, name, bo,
|
2015-01-21 22:13:44 +01:00
|
|
|
tokenizer, error))
|
|
|
|
return false;
|
2015-01-21 23:23:56 +01:00
|
|
|
} else {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(config_file_domain,
|
|
|
|
"unrecognized parameter in config file at "
|
2015-01-21 23:43:32 +01:00
|
|
|
"line %u: %s\n",
|
|
|
|
reader.GetLineNumber(), name);
|
2009-09-24 21:40:07 +02:00
|
|
|
return false;
|
|
|
|
}
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2004-10-28 07:14:55 +02:00
|
|
|
}
|
2013-01-30 19:59:49 +01:00
|
|
|
|
|
|
|
bool
|
2013-10-17 21:59:35 +02:00
|
|
|
ReadConfigFile(ConfigData &config_data, Path path, Error &error)
|
2013-01-30 19:59:49 +01:00
|
|
|
{
|
|
|
|
assert(!path.IsNull());
|
|
|
|
const std::string path_utf8 = path.ToUTF8();
|
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatDebug(config_file_domain, "loading file %s", path_utf8.c_str());
|
2013-01-30 19:59:49 +01:00
|
|
|
|
2015-01-21 23:36:57 +01:00
|
|
|
FileReader file(path, error);
|
|
|
|
if (!file.IsDefined())
|
2013-01-30 19:59:49 +01:00
|
|
|
return false;
|
|
|
|
|
2015-01-21 23:36:57 +01:00
|
|
|
BufferedReader reader(file);
|
|
|
|
return ReadConfigFile(config_data, reader, error) &&
|
|
|
|
reader.Check(error);
|
2013-01-30 19:59:49 +01:00
|
|
|
}
|