Data.hxx 3.6 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2021 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
	std::chrono::steady_clock::duration
	GetUnsigned(ConfigOption option,
81
		    std::chrono::steady_clock::duration default_value) const;
82

83 84 85
	unsigned GetPositive(ConfigOption option,
			     unsigned default_value) const;

86 87
	std::chrono::steady_clock::duration
	GetPositive(ConfigOption option,
88
		    std::chrono::steady_clock::duration default_value) const;
89

90 91
	bool GetBool(ConfigOption option, bool default_value) const;

92 93 94 95 96 97 98 99 100
	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,
101
			      ConfigBlock &&block) noexcept;
102

103
	gcc_pure
104
	const ConfigBlock *GetBlock(ConfigBlockOption option) const noexcept {
105 106
		const auto &list = GetBlockList(option);
		return list.empty() ? nullptr : &list.front();
107
	}
108

109
	/**
110 111
	 * Find a block with a matching attribute.
	 *
112
	 * Throws if a block doesn't have the specified (mandatory) key.
113 114 115 116
	 *
	 * @param option the blocks to search
	 * @param key the attribute name
	 * @param value the expected attribute value
117
	 */
118 119
	gcc_pure
	const ConfigBlock *FindBlock(ConfigBlockOption option,
120
				     const char *key, const char *value) const;
121 122 123

	ConfigBlock &MakeBlock(ConfigBlockOption option,
				     const char *key, const char *value);
124 125
};

126
#endif