2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2004-02-24 00:41:20 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2004-02-24 00:41:20 +01:00
|
|
|
*/
|
|
|
|
|
2013-01-02 22:52:08 +01:00
|
|
|
#ifndef MPD_DIRECTORY_HXX
|
|
|
|
#define MPD_DIRECTORY_HXX
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "check.h"
|
2013-10-15 09:21:13 +02:00
|
|
|
#include "Compiler.h"
|
2014-01-24 16:18:50 +01:00
|
|
|
#include "db/Visitor.hxx"
|
2014-02-26 09:17:41 +01:00
|
|
|
#include "db/PlaylistVector.hxx"
|
2014-06-10 21:15:40 +02:00
|
|
|
#include "Song.hxx"
|
|
|
|
|
|
|
|
#include <boost/intrusive/list.hpp>
|
2012-07-30 07:26:08 +02:00
|
|
|
|
2014-01-09 13:14:14 +01:00
|
|
|
#include <string>
|
|
|
|
|
2014-02-26 08:54:14 +01:00
|
|
|
/**
|
|
|
|
* Virtual directory that is really an archive file or a folder inside
|
|
|
|
* the archive (special value for Directory::device).
|
|
|
|
*/
|
2014-02-21 10:48:43 +01:00
|
|
|
static constexpr unsigned DEVICE_INARCHIVE = -1;
|
2014-02-26 08:54:14 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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).
|
|
|
|
*/
|
2014-02-21 10:48:43 +01:00
|
|
|
static constexpr unsigned DEVICE_CONTAINER = -2;
|
2008-12-16 21:42:42 +01:00
|
|
|
|
2012-08-29 19:27:03 +02:00
|
|
|
class SongFilter;
|
2014-02-26 08:39:44 +01:00
|
|
|
class Database;
|
2011-09-10 19:24:30 +02:00
|
|
|
|
2013-01-02 23:06:20 +01:00
|
|
|
struct Directory {
|
2014-06-10 21:15:40 +02:00
|
|
|
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;
|
|
|
|
|
2012-01-24 18:20:58 +01:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2014-06-10 21:15:40 +02:00
|
|
|
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;
|
2012-01-24 18:20:58 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2014-06-10 21:15:40 +02:00
|
|
|
List children;
|
2012-01-24 18:20:58 +01:00
|
|
|
|
2012-01-24 21:33:09 +01:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2014-06-10 21:15:40 +02:00
|
|
|
SongList songs;
|
2010-07-21 08:58:15 +02:00
|
|
|
|
2013-01-02 22:16:52 +01:00
|
|
|
PlaylistVector playlists;
|
2010-07-21 08:58:15 +02:00
|
|
|
|
2013-01-02 23:06:20 +01:00
|
|
|
Directory *parent;
|
2009-02-28 14:02:00 +01:00
|
|
|
time_t mtime;
|
2017-04-06 09:58:25 +02:00
|
|
|
uint64_t inode, device;
|
2012-07-30 07:26:08 +02:00
|
|
|
|
2014-01-09 13:14:14 +01:00
|
|
|
std::string path;
|
2013-01-03 01:36:28 +01:00
|
|
|
|
2014-02-26 08:39:44 +01:00
|
|
|
/**
|
|
|
|
* If this is not nullptr, then this directory does not really
|
|
|
|
* exist, but is a mount point for another #Database.
|
|
|
|
*/
|
|
|
|
Database *mounted_database;
|
|
|
|
|
2013-01-03 01:36:28 +01:00
|
|
|
public:
|
2014-02-23 22:02:02 +01:00
|
|
|
Directory(std::string &&_path_utf8, Directory *_parent);
|
2013-01-03 01:36:28 +01:00
|
|
|
~Directory();
|
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
2013-01-02 23:06:20 +01:00
|
|
|
* Create a new root #Directory object.
|
2013-01-02 23:06:10 +01:00
|
|
|
*/
|
|
|
|
gcc_malloc
|
2013-01-02 23:06:20 +01:00
|
|
|
static Directory *NewRoot() {
|
2014-02-23 22:02:02 +01:00
|
|
|
return new Directory(std::string(), nullptr);
|
2013-01-02 23:06:10 +01:00
|
|
|
}
|
2007-05-24 19:06:59 +02:00
|
|
|
|
2014-02-26 08:39:44 +01:00
|
|
|
bool IsMount() const {
|
|
|
|
return mounted_database != nullptr;
|
|
|
|
}
|
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
2013-01-02 23:06:20 +01:00
|
|
|
* Remove this #Directory object from its parent and free it. This
|
|
|
|
* must not be called with the root Directory.
|
2013-01-02 23:06:10 +01:00
|
|
|
*
|
|
|
|
* Caller must lock the #db_mutex.
|
|
|
|
*/
|
|
|
|
void Delete();
|
2012-01-24 19:07:11 +01:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
2013-01-02 23:06:20 +01:00
|
|
|
* Create a new #Directory object as a child of the given one.
|
2013-01-02 23:06:10 +01:00
|
|
|
*
|
|
|
|
* Caller must lock the #db_mutex.
|
|
|
|
*
|
|
|
|
* @param name_utf8 the UTF-8 encoded name of the new sub directory
|
|
|
|
*/
|
|
|
|
gcc_malloc
|
2013-01-02 23:06:20 +01:00
|
|
|
Directory *CreateChild(const char *name_utf8);
|
2008-10-08 10:48:48 +02:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
|
|
|
* Caller must lock the #db_mutex.
|
|
|
|
*/
|
|
|
|
gcc_pure
|
2013-01-02 23:06:20 +01:00
|
|
|
const Directory *FindChild(const char *name) const;
|
2012-01-24 19:07:11 +01:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
gcc_pure
|
2013-01-02 23:06:20 +01:00
|
|
|
Directory *FindChild(const char *name) {
|
|
|
|
const Directory *cthis = this;
|
|
|
|
return const_cast<Directory *>(cthis->FindChild(name));
|
2013-01-02 23:06:10 +01:00
|
|
|
}
|
2008-10-08 10:48:49 +02:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
|
|
|
* Look up a sub directory, and create the object if it does not
|
|
|
|
* exist.
|
|
|
|
*
|
|
|
|
* Caller must lock the #db_mutex.
|
|
|
|
*/
|
2013-01-02 23:06:20 +01:00
|
|
|
Directory *MakeChild(const char *name_utf8) {
|
|
|
|
Directory *child = FindChild(name_utf8);
|
2013-01-02 23:06:10 +01:00
|
|
|
if (child == nullptr)
|
|
|
|
child = CreateChild(name_utf8);
|
|
|
|
return child;
|
|
|
|
}
|
2008-10-08 11:08:04 +02:00
|
|
|
|
2014-02-26 19:48:37 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
|
|
|
* Looks up a directory by its relative URI.
|
|
|
|
*
|
|
|
|
* @param uri the relative URI
|
2013-10-19 18:19:03 +02:00
|
|
|
* @return the Directory, or nullptr if none was found
|
2013-01-02 23:06:10 +01:00
|
|
|
*/
|
|
|
|
gcc_pure
|
2014-02-26 19:48:37 +01:00
|
|
|
LookupResult LookupDirectory(const char *uri);
|
2009-01-04 19:08:52 +01:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
gcc_pure
|
|
|
|
bool IsEmpty() const {
|
2014-06-10 21:15:40 +02:00
|
|
|
return children.empty() &&
|
|
|
|
songs.empty() &&
|
2013-01-02 22:16:52 +01:00
|
|
|
playlists.empty();
|
2013-01-02 23:06:10 +01:00
|
|
|
}
|
2008-10-13 16:32:39 +02:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
gcc_pure
|
|
|
|
const char *GetPath() const {
|
2014-01-09 13:14:14 +01:00
|
|
|
return path.c_str();
|
2013-01-02 23:06:10 +01:00
|
|
|
}
|
2008-10-09 15:34:07 +02:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
|
|
|
* Returns the base name of the directory.
|
|
|
|
*/
|
|
|
|
gcc_pure
|
|
|
|
const char *GetName() const;
|
2012-01-24 19:07:11 +01:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
|
|
|
* Is this the root directory of the music database?
|
|
|
|
*/
|
|
|
|
gcc_pure
|
|
|
|
bool IsRoot() const {
|
2013-10-19 18:19:03 +02:00
|
|
|
return parent == nullptr;
|
2013-01-02 23:06:10 +01:00
|
|
|
}
|
2008-10-09 15:34:07 +02:00
|
|
|
|
2014-06-10 21:15:40 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
|
|
|
* Look up a song in this directory by its name.
|
|
|
|
*
|
|
|
|
* Caller must lock the #db_mutex.
|
|
|
|
*/
|
|
|
|
gcc_pure
|
2013-07-28 13:25:12 +02:00
|
|
|
const Song *FindSong(const char *name_utf8) const;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
gcc_pure
|
2013-07-28 13:25:12 +02:00
|
|
|
Song *FindSong(const char *name_utf8) {
|
2013-01-02 23:06:20 +01:00
|
|
|
const Directory *cthis = this;
|
2013-07-28 13:25:12 +02:00
|
|
|
return const_cast<Song *>(cthis->FindSong(name_utf8));
|
2013-01-02 23:06:10 +01:00
|
|
|
}
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
|
|
|
* Add a song object to this directory. Its "parent" attribute must
|
|
|
|
* be set already.
|
|
|
|
*/
|
2013-07-28 13:25:12 +02:00
|
|
|
void AddSong(Song *song);
|
2012-01-24 21:38:31 +01:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
|
|
|
* Remove a song object from this directory (which effectively
|
|
|
|
* invalidates the song object, because the "parent" attribute becomes
|
|
|
|
* stale), but does not free it.
|
|
|
|
*/
|
2013-07-28 13:25:12 +02:00
|
|
|
void RemoveSong(Song *song);
|
2012-01-24 21:38:31 +01:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
|
|
|
* Caller must lock the #db_mutex.
|
|
|
|
*/
|
|
|
|
void PruneEmpty();
|
2009-04-01 18:41:37 +02:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
|
|
|
* Sort all directory entries recursively.
|
|
|
|
*
|
|
|
|
* Caller must lock the #db_mutex.
|
|
|
|
*/
|
|
|
|
void Sort();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Caller must lock #db_mutex.
|
|
|
|
*/
|
2016-10-29 10:21:57 +02:00
|
|
|
void Walk(bool recursive, const SongFilter *match,
|
2013-01-02 23:06:10 +01:00
|
|
|
VisitDirectory visit_directory, VisitSong visit_song,
|
2016-10-29 10:21:57 +02:00
|
|
|
VisitPlaylist visit_playlist) const;
|
2014-01-22 22:40:42 +01:00
|
|
|
|
|
|
|
gcc_pure
|
|
|
|
LightDirectory Export() const;
|
2013-01-02 23:06:10 +01:00
|
|
|
};
|
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
#endif
|