Directory.hxx 6.69 KB
Newer Older
1
/*
2
 * Copyright 2003-2019 The Music Player Daemon Project
3
 * http://www.musicpd.org
Warren Dukes's avatar
Warren Dukes committed
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.
Warren Dukes's avatar
Warren Dukes committed
18 19
 */

20 21
#ifndef MPD_DIRECTORY_HXX
#define MPD_DIRECTORY_HXX
Warren Dukes's avatar
Warren Dukes committed
22

23
#include "util/Compiler.h"
Max Kellermann's avatar
Max Kellermann committed
24
#include "db/Visitor.hxx"
25
#include "db/PlaylistVector.hxx"
26
#include "db/Ptr.hxx"
27 28 29
#include "Song.hxx"

#include <boost/intrusive/list.hpp>
30

31 32
#include <string>

33 34 35 36
/**
 * Virtual directory that is really an archive file or a folder inside
 * the archive (special value for Directory::device).
 */
37
static constexpr unsigned DEVICE_INARCHIVE = -1;
38 39 40 41 42 43

/**
 * Virtual directory that is really a song file with one or more "sub"
 * songs as specified by DecoderPlugin::container_scan() (special
 * value for Directory::device).
 */
44
static constexpr unsigned DEVICE_CONTAINER = -2;
45

46
class SongFilter;
47

48
struct Directory {
49 50 51 52
	static constexpr auto link_mode = boost::intrusive::normal_link;
	typedef boost::intrusive::link_mode<link_mode> LinkMode;
	typedef boost::intrusive::list_member_hook<LinkMode> Hook;

53 54 55 56 57 58 59 60
	/**
	 * Pointers to the siblings of this directory within the
	 * parent directory.  It is unused (undefined) in the root
	 * directory.
	 *
	 * This attribute is protected with the global #db_mutex.
	 * Read access in the update thread does not need protection.
	 */
61 62 63 64 65 66
	Hook siblings;

	typedef boost::intrusive::member_hook<Directory, Hook,
					      &Directory::siblings> SiblingsHook;
	typedef boost::intrusive::list<Directory, SiblingsHook,
				       boost::intrusive::constant_time_size<false>> List;
67 68 69 70 71 72 73

	/**
	 * A doubly linked list of child directories.
	 *
	 * This attribute is protected with the global #db_mutex.
	 * Read access in the update thread does not need protection.
	 */
74
	List children;
75

76 77 78 79 80 81
	/**
	 * A doubly linked list of songs within this directory.
	 *
	 * This attribute is protected with the global #db_mutex.
	 * Read access in the update thread does not need protection.
	 */
82
	SongList songs;
83

84
	PlaylistVector playlists;
85

86
	Directory *const parent;
87 88 89 90

	std::chrono::system_clock::time_point mtime =
		std::chrono::system_clock::time_point::min();

91
	uint64_t inode = 0, device = 0;
92

93
	const std::string path;
94

Max Kellermann's avatar
Max Kellermann committed
95 96 97 98
	/**
	 * If this is not nullptr, then this directory does not really
	 * exist, but is a mount point for another #Database.
	 */
99
	DatabasePtr mounted_database;
Max Kellermann's avatar
Max Kellermann committed
100

101
public:
102 103
	Directory(std::string &&_path_utf8, Directory *_parent) noexcept;
	~Directory() noexcept;
104

105
	/**
106
	 * Create a new root #Directory object.
107
	 */
108
	gcc_malloc gcc_returns_nonnull
109
	static Directory *NewRoot() noexcept {
110
		return new Directory(std::string(), nullptr);
111
	}
112

113
	bool IsMount() const noexcept {
Max Kellermann's avatar
Max Kellermann committed
114 115 116
		return mounted_database != nullptr;
	}

117
	/**
118 119
	 * Remove this #Directory object from its parent and free it.  This
	 * must not be called with the root Directory.
120 121 122
	 *
	 * Caller must lock the #db_mutex.
	 */
123
	void Delete() noexcept;
124

125
	/**
126
	 * Create a new #Directory object as a child of the given one.
127 128 129 130 131
	 *
	 * Caller must lock the #db_mutex.
	 *
	 * @param name_utf8 the UTF-8 encoded name of the new sub directory
	 */
132
	Directory *CreateChild(const char *name_utf8) noexcept;
133

134 135 136 137
	/**
	 * Caller must lock the #db_mutex.
	 */
	gcc_pure
138
	const Directory *FindChild(const char *name) const noexcept;
139

140
	gcc_pure
141
	Directory *FindChild(const char *name) noexcept {
142 143
		const Directory *cthis = this;
		return const_cast<Directory *>(cthis->FindChild(name));
144
	}
145

146 147 148 149 150 151
	/**
	 * Look up a sub directory, and create the object if it does not
	 * exist.
	 *
	 * Caller must lock the #db_mutex.
	 */
152
	Directory *MakeChild(const char *name_utf8) noexcept {
153
		Directory *child = FindChild(name_utf8);
154 155 156 157
		if (child == nullptr)
			child = CreateChild(name_utf8);
		return child;
	}
158

159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
	struct LookupResult {
		/**
		 * The last directory that was found.  If the given
		 * URI could not be resolved at all, then this is the
		 * root directory.
		 */
		Directory *directory;

		/**
		 * The remaining URI part (without leading slash) or
		 * nullptr if the given URI was consumed completely.
		 */
		const char *uri;
	};

174 175 176 177
	/**
	 * Looks up a directory by its relative URI.
	 *
	 * @param uri the relative URI
178
	 * @return the Directory, or nullptr if none was found
179 180
	 */
	gcc_pure
181
	LookupResult LookupDirectory(const char *uri) noexcept;
182

183
	gcc_pure
184
	bool IsEmpty() const noexcept {
185 186
		return children.empty() &&
			songs.empty() &&
187
			playlists.empty();
188
	}
189

190
	gcc_pure
191
	const char *GetPath() const noexcept {
192
		return path.c_str();
193
	}
194

195 196 197 198
	/**
	 * Returns the base name of the directory.
	 */
	gcc_pure
199
	const char *GetName() const noexcept;
200

201 202 203 204
	/**
	 * Is this the root directory of the music database?
	 */
	gcc_pure
205
	bool IsRoot() const noexcept {
206
		return parent == nullptr;
207
	}
208

209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
	template<typename T>
	void ForEachChildSafe(T &&t) {
		const auto end = children.end();
		for (auto i = children.begin(), next = i; i != end; i = next) {
			next = std::next(i);
			t(*i);
		}
	}

	template<typename T>
	void ForEachSongSafe(T &&t) {
		const auto end = songs.end();
		for (auto i = songs.begin(), next = i; i != end; i = next) {
			next = std::next(i);
			t(*i);
		}
	}

227 228 229 230 231 232
	/**
	 * Look up a song in this directory by its name.
	 *
	 * Caller must lock the #db_mutex.
	 */
	gcc_pure
233
	const Song *FindSong(const char *name_utf8) const noexcept;
Warren Dukes's avatar
Warren Dukes committed
234

235
	gcc_pure
236
	Song *FindSong(const char *name_utf8) noexcept {
237
		const Directory *cthis = this;
238
		return const_cast<Song *>(cthis->FindSong(name_utf8));
239
	}
Warren Dukes's avatar
Warren Dukes committed
240

241 242 243 244
	/**
	 * Add a song object to this directory.  Its "parent" attribute must
	 * be set already.
	 */
245
	void AddSong(Song *song) noexcept;
246

247 248 249 250 251
	/**
	 * Remove a song object from this directory (which effectively
	 * invalidates the song object, because the "parent" attribute becomes
	 * stale), but does not free it.
	 */
252
	void RemoveSong(Song *song) noexcept;
253

254 255 256
	/**
	 * Caller must lock the #db_mutex.
	 */
257
	void PruneEmpty() noexcept;
258

259 260 261 262 263
	/**
	 * Sort all directory entries recursively.
	 *
	 * Caller must lock the #db_mutex.
	 */
264
	void Sort() noexcept;
265 266 267 268

	/**
	 * Caller must lock #db_mutex.
	 */
269
	void Walk(bool recursive, const SongFilter *match,
270
		  VisitDirectory visit_directory, VisitSong visit_song,
271
		  VisitPlaylist visit_playlist) const;
272 273

	gcc_pure
274
	LightDirectory Export() const noexcept;
275 276
};

Warren Dukes's avatar
Warren Dukes committed
277
#endif