Data.hxx 3.72 KB
Newer Older
1
/*
2
 * Copyright 2003-2018 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
struct ConfigParam;
32
struct ConfigBlock;
33
class AllocatedPath;
34

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

	void Clear();
40

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

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

49
	void AddParam(ConfigOption option, ConfigParam &&param) noexcept;
50

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

57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
	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;

73 74 75 76 77 78 79 80
	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);
	}

81 82 83
	unsigned GetPositive(ConfigOption option,
			     unsigned default_value) const;

84 85 86 87 88 89 90 91
	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);
	}

92 93
	bool GetBool(ConfigOption option, bool default_value) const;

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

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

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

	ConfigBlock &MakeBlock(ConfigBlockOption option,
				     const char *key, const char *value);
126 127
};

128
#endif