Data.hxx 3.87 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2019 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * http://www.musicpd.org
 *
 * 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.
 *
 * 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.
 */

#ifndef MPD_CONFIG_DATA_HXX
#define MPD_CONFIG_DATA_HXX

23
#include "Option.hxx"
24 25
#include "Param.hxx"
#include "Block.hxx"
26

27
#include <array>
28
#include <chrono>
29
#include <forward_list>
30

31
class AllocatedPath;
32

33
struct ConfigData {
34 35
	std::array<std::forward_list<ConfigParam>, std::size_t(ConfigOption::MAX)> params;
	std::array<std::forward_list<ConfigBlock>, std::size_t(ConfigBlockOption::MAX)> blocks;
36 37

	void Clear();
38

39 40 41 42 43 44 45 46
	auto &GetParamList(ConfigOption option) noexcept {
		return params[size_t(option)];
	}

	const auto &GetParamList(ConfigOption option) const noexcept {
		return params[size_t(option)];
	}

47
	void AddParam(ConfigOption option, ConfigParam &&param) noexcept;
48

49
	gcc_pure
50
	const ConfigParam *GetParam(ConfigOption option) const noexcept {
51 52
		const auto &list = GetParamList(option);
		return list.empty() ? nullptr : &list.front();
53 54
	}

55 56 57 58 59 60 61 62
	template<typename F>
	auto With(ConfigOption option, F &&f) const {
		const auto *param = GetParam(option);
		return param != nullptr
			? param->With(std::forward<F>(f))
			: f(nullptr);
	}

63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
	gcc_pure
	const char *GetString(ConfigOption option,
			      const char *default_value=nullptr) const noexcept;

	/**
	 * Returns an optional configuration variable which contains an
	 * absolute path.  If there is a tilde prefix, it is expanded.
	 * Returns nullptr if the value is not present.
	 *
	 * Throws #std::runtime_error on error.
	 */
	AllocatedPath GetPath(ConfigOption option) const;

	unsigned GetUnsigned(ConfigOption option,
			     unsigned default_value) const;

79 80 81 82 83 84 85 86
	std::chrono::steady_clock::duration
	GetUnsigned(ConfigOption option,
		    std::chrono::steady_clock::duration default_value) const {
		// TODO: allow unit suffixes
		auto u = GetUnsigned(option, default_value.count());
		return std::chrono::steady_clock::duration(u);
	}

87 88 89
	unsigned GetPositive(ConfigOption option,
			     unsigned default_value) const;

90 91 92 93 94 95 96 97
	std::chrono::steady_clock::duration
	GetPositive(ConfigOption option,
		    std::chrono::steady_clock::duration default_value) const {
		// TODO: allow unit suffixes
		auto u = GetPositive(option, default_value.count());
		return std::chrono::steady_clock::duration(u);
	}

98 99
	bool GetBool(ConfigOption option, bool default_value) const;

100 101 102 103 104 105 106 107 108
	auto &GetBlockList(ConfigBlockOption option) noexcept {
		return blocks[size_t(option)];
	}

	const auto &GetBlockList(ConfigBlockOption option) const noexcept {
		return blocks[size_t(option)];
	}

	ConfigBlock &AddBlock(ConfigBlockOption option,
109
			      ConfigBlock &&block) noexcept;
110

111
	gcc_pure
112
	const ConfigBlock *GetBlock(ConfigBlockOption option) const noexcept {
113 114
		const auto &list = GetBlockList(option);
		return list.empty() ? nullptr : &list.front();
115
	}
116

117
	/**
118 119
	 * Find a block with a matching attribute.
	 *
120
	 * Throws if a block doesn't have the specified (mandatory) key.
121 122 123 124
	 *
	 * @param option the blocks to search
	 * @param key the attribute name
	 * @param value the expected attribute value
125
	 */
126 127
	gcc_pure
	const ConfigBlock *FindBlock(ConfigBlockOption option,
128
				     const char *key, const char *value) const;
129 130 131

	ConfigBlock &MakeBlock(ConfigBlockOption option,
				     const char *key, const char *value);
132 133
};

134
#endif