Directory.hxx 6.05 KB
Newer Older
1
/*
2
 * Copyright (C) 2003-2013 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 "check.h"
24
#include "util/list.h"
25
#include "gcc.h"
26
#include "DatabaseVisitor.hxx"
27
#include "PlaylistVector.hxx"
28

29
#include <glib.h>
30
#include <stdbool.h>
31
#include <sys/types.h>
32

33 34
#define DEVICE_INARCHIVE (dev_t)(-1)
#define DEVICE_CONTAINER (dev_t)(-2)
35

36 37 38 39 40 41
#define directory_for_each_child(pos, directory) \
	list_for_each_entry(pos, &directory->children, siblings)

#define directory_for_each_child_safe(pos, n, directory) \
	list_for_each_entry_safe(pos, n, &directory->children, siblings)

42 43 44 45 46 47 48
#define directory_for_each_song(pos, directory) \
	list_for_each_entry(pos, &directory->songs, siblings)

#define directory_for_each_song_safe(pos, n, directory) \
	list_for_each_entry_safe(pos, n, &directory->songs, siblings)

struct song;
49
struct db_visitor;
50
class SongFilter;
51

52
struct Directory {
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
	/**
	 * 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.
	 */
	struct list_head siblings;

	/**
	 * 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.
	 */
	struct list_head children;

71 72 73 74 75 76 77
	/**
	 * 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.
	 */
	struct list_head songs;
78

79
	PlaylistVector playlists;
80

81
	Directory *parent;
82
	time_t mtime;
83 84
	ino_t inode;
	dev_t device;
85
	bool have_stat; /* not needed if ino_t == dev_t == 0 is impossible */
86
	char path[sizeof(long)];
87

88 89 90 91 92 93 94 95 96 97
protected:
	Directory(const char *path);

	gcc_malloc gcc_nonnull_all
	static Directory *Allocate(const char *path);

public:
	/**
	 * Default constructor, needed for #detached_root.
	 */
98
	Directory();
99 100
	~Directory();

101
	/**
102
	 * Generic constructor for #Directory object.
103
	 */
104
	gcc_malloc
105
	static Directory *NewGeneric(const char *path_utf8, Directory *parent);
106

107
	/**
108
	 * Create a new root #Directory object.
109 110
	 */
	gcc_malloc
111
	static Directory *NewRoot() {
112 113
		return NewGeneric("", nullptr);
	}
114

115
	/**
116
	 * Free this #Directory object (and the whole object tree within it),
117 118 119
	 * assuming it was already removed from the parent.
	 */
	void Free();
120

121
	/**
122 123
	 * Remove this #Directory object from its parent and free it.  This
	 * must not be called with the root Directory.
124 125 126 127
	 *
	 * Caller must lock the #db_mutex.
	 */
	void Delete();
128

129
	/**
130
	 * Create a new #Directory object as a child of the given one.
131 132 133 134 135 136
	 *
	 * Caller must lock the #db_mutex.
	 *
	 * @param name_utf8 the UTF-8 encoded name of the new sub directory
	 */
	gcc_malloc
137
	Directory *CreateChild(const char *name_utf8);
138

139 140 141 142
	/**
	 * Caller must lock the #db_mutex.
	 */
	gcc_pure
143
	const Directory *FindChild(const char *name) const;
144

145
	gcc_pure
146 147 148
	Directory *FindChild(const char *name) {
		const Directory *cthis = this;
		return const_cast<Directory *>(cthis->FindChild(name));
149
	}
150

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

164 165 166 167
	/**
	 * Looks up a directory by its relative URI.
	 *
	 * @param uri the relative URI
168
	 * @return the Directory, or NULL if none was found
169 170
	 */
	gcc_pure
171
	Directory *LookupDirectory(const char *uri);
172

173 174 175 176
	gcc_pure
	bool IsEmpty() const {
		return list_empty(&children) &&
			list_empty(&songs) &&
177
			playlists.empty();
178
	}
179

180 181 182 183
	gcc_pure
	const char *GetPath() const {
		return path;
	}
184

185 186 187 188 189
	/**
	 * Returns the base name of the directory.
	 */
	gcc_pure
	const char *GetName() const;
190

191 192 193 194 195 196 197
	/**
	 * Is this the root directory of the music database?
	 */
	gcc_pure
	bool IsRoot() const {
		return parent == NULL;
	}
198

199 200 201 202 203 204 205
	/**
	 * Look up a song in this directory by its name.
	 *
	 * Caller must lock the #db_mutex.
	 */
	gcc_pure
	const song *FindSong(const char *name_utf8) const;
Warren Dukes's avatar
Warren Dukes committed
206

207 208
	gcc_pure
	song *FindSong(const char *name_utf8) {
209
		const Directory *cthis = this;
210 211
		return const_cast<song *>(cthis->FindSong(name_utf8));
	}
Warren Dukes's avatar
Warren Dukes committed
212

213 214 215 216 217 218 219 220 221 222
	/**
	 * Looks up a song by its relative URI.
	 *
	 * Caller must lock the #db_mutex.
	 *
	 * @param uri the relative URI
	 * @return the song, or NULL if none was found
	 */
	gcc_pure
	song *LookupSong(const char *uri);
223

224 225 226 227 228
	/**
	 * Add a song object to this directory.  Its "parent" attribute must
	 * be set already.
	 */
	void AddSong(song *song);
229

230 231 232 233 234 235
	/**
	 * Remove a song object from this directory (which effectively
	 * invalidates the song object, because the "parent" attribute becomes
	 * stale), but does not free it.
	 */
	void RemoveSong(song *song);
236

237 238 239 240
	/**
	 * Caller must lock the #db_mutex.
	 */
	void PruneEmpty();
241

242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
	/**
	 * Sort all directory entries recursively.
	 *
	 * Caller must lock the #db_mutex.
	 */
	void Sort();

	/**
	 * Caller must lock #db_mutex.
	 */
	bool Walk(bool recursive, const SongFilter *match,
		  VisitDirectory visit_directory, VisitSong visit_song,
		  VisitPlaylist visit_playlist,
		  GError **error_r) const;
};

static inline bool
isRootDirectory(const char *name)
{
	return name[0] == 0 || (name[0] == '/' && name[1] == 0);
}
263

Warren Dukes's avatar
Warren Dukes committed
264
#endif