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

20 21
#ifndef MPD_SONG_FILTER_HXX
#define MPD_SONG_FILTER_HXX
22

23
#include "lib/icu/Compare.hxx"
24
#include "util/AllocatedString.hxx"
25
#include "Compiler.h"
26

27
#include <list>
28
#include <chrono>
29

30
#include <stdint.h>
31

32 33 34 35
/**
 * Limit the search to files within the given directory.
 */
#define LOCATE_TAG_BASE_TYPE (TAG_NUM_OF_ITEM_TYPES + 1)
36
#define LOCATE_TAG_MODIFIED_SINCE (TAG_NUM_OF_ITEM_TYPES + 2)
37

38 39 40 41 42
/**
 * Special value for the db_selection_print() sort parameter.
 */
#define SORT_TAG_LAST_MODIFIED (TAG_NUM_OF_ITEM_TYPES + 3)

43 44 45
#define LOCATE_TAG_FILE_TYPE	TAG_NUM_OF_ITEM_TYPES+10
#define LOCATE_TAG_ANY_TYPE     TAG_NUM_OF_ITEM_TYPES+20

46
template<typename T> struct ConstBuffer;
Max Kellermann's avatar
Max Kellermann committed
47 48
struct Tag;
struct TagItem;
49
struct LightSong;
50
class DetachedSong;
51

52
class SongFilter {
53
public:
54 55 56
	class Item {
		uint8_t tag;

57
		AllocatedString<> value;
58

59 60 61 62 63
		/**
		 * This value is only set if case folding is enabled.
		 */
		IcuCompare fold_case;

64 65 66
		/**
		 * For #LOCATE_TAG_MODIFIED_SINCE
		 */
67
		std::chrono::system_clock::time_point time;
68

69 70 71
	public:
		gcc_nonnull(3)
		Item(unsigned tag, const char *value, bool fold_case=false);
72
		Item(unsigned tag, std::chrono::system_clock::time_point time);
73 74

		Item(const Item &other) = delete;
75
		Item(Item &&) = default;
76 77 78 79 80 81 82

		Item &operator=(const Item &other) = delete;

		unsigned GetTag() const {
			return tag;
		}

83 84 85 86
		bool GetFoldCase() const {
			return fold_case;
		}

87 88
		const char *GetValue() const {
			return value.c_str();
89 90
		}

91
		gcc_pure gcc_nonnull(2)
92
		bool StringMatch(const char *s) const noexcept;
93 94

		gcc_pure
95
		bool Match(const TagItem &tag_item) const noexcept;
96 97

		gcc_pure
98
		bool Match(const Tag &tag) const noexcept;
99 100

		gcc_pure
101
		bool Match(const DetachedSong &song) const noexcept;
102 103

		gcc_pure
104
		bool Match(const LightSong &song) const noexcept;
105 106
	};

107
private:
108 109 110 111 112 113 114 115 116 117 118 119 120
	std::list<Item> items;

public:
	SongFilter() = default;

	gcc_nonnull(3)
	SongFilter(unsigned tag, const char *value, bool fold_case=false);

	~SongFilter();

	gcc_nonnull(2,3)
	bool Parse(const char *tag, const char *value, bool fold_case=false);

121
	bool Parse(ConstBuffer<const char *> args, bool fold_case=false);
122 123

	gcc_pure
124
	bool Match(const Tag &tag) const noexcept;
125 126

	gcc_pure
127
	bool Match(const DetachedSong &song) const noexcept;
128

129
	gcc_pure
130
	bool Match(const LightSong &song) const noexcept;
131

132
	const std::list<Item> &GetItems() const noexcept {
133 134
		return items;
	}
135

136
	gcc_pure
137
	bool IsEmpty() const noexcept {
138 139 140
		return items.empty();
	}

141 142 143 144
	/**
	 * Is there at least one item with "fold case" enabled?
	 */
	gcc_pure
145
	bool HasFoldCase() const noexcept {
146 147 148 149 150 151 152
		for (const auto &i : items)
			if (i.GetFoldCase())
				return true;

		return false;
	}

153 154 155 156
	/**
	 * Does this filter contain constraints other than "base"?
	 */
	gcc_pure
157
	bool HasOtherThanBase() const noexcept;
158

159
	/**
160 161
	 * Returns the "base" specification (if there is one) or
	 * nullptr.
162 163
	 */
	gcc_pure
164
	const char *GetBase() const noexcept;
165 166
};

167 168 169
/**
 * @return #TAG_NUM_OF_ITEM_TYPES on error
 */
170
gcc_pure
171
unsigned
172
locate_parse_type(const char *str) noexcept;
173

174
#endif