2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2013-01-02 22:52:08 +01:00
|
|
|
* Copyright (C) 2003-2013 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"
|
2012-01-24 18:20:58 +01:00
|
|
|
#include "util/list.h"
|
2012-08-08 20:06:20 +02:00
|
|
|
#include "gcc.h"
|
2012-07-30 07:26:08 +02:00
|
|
|
#include "DatabaseVisitor.hxx"
|
2013-01-02 22:16:52 +01:00
|
|
|
#include "PlaylistVector.hxx"
|
2013-01-30 22:53:12 +01:00
|
|
|
#include "gerror.h"
|
2012-07-30 07:26:08 +02:00
|
|
|
|
2008-10-08 10:48:49 +02:00
|
|
|
#include <stdbool.h>
|
2008-10-08 11:25:33 +02:00
|
|
|
#include <sys/types.h>
|
2008-10-08 10:48:49 +02:00
|
|
|
|
2010-12-21 19:53:17 +01:00
|
|
|
#define DEVICE_INARCHIVE (dev_t)(-1)
|
|
|
|
#define DEVICE_CONTAINER (dev_t)(-2)
|
2008-12-16 21:42:42 +01:00
|
|
|
|
2012-01-24 18:20:58 +01:00
|
|
|
#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)
|
|
|
|
|
2012-01-24 21:33:09 +01:00
|
|
|
#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;
|
2011-09-10 19:24:30 +02:00
|
|
|
struct db_visitor;
|
2012-08-29 19:27:03 +02:00
|
|
|
class SongFilter;
|
2011-09-10 19:24:30 +02:00
|
|
|
|
2013-01-02 23:06:20 +01:00
|
|
|
struct Directory {
|
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.
|
|
|
|
*/
|
|
|
|
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;
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
struct list_head 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;
|
2008-09-23 20:47:45 +02:00
|
|
|
ino_t inode;
|
|
|
|
dev_t device;
|
2011-11-27 20:15:25 +01:00
|
|
|
bool have_stat; /* not needed if ino_t == dev_t == 0 is impossible */
|
2008-10-13 09:55:00 +02:00
|
|
|
char path[sizeof(long)];
|
2012-07-30 07:26:08 +02:00
|
|
|
|
2013-01-03 01:36:28 +01:00
|
|
|
protected:
|
|
|
|
Directory(const char *path);
|
|
|
|
|
|
|
|
gcc_malloc gcc_nonnull_all
|
|
|
|
static Directory *Allocate(const char *path);
|
|
|
|
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Default constructor, needed for #detached_root.
|
|
|
|
*/
|
2013-01-03 02:12:34 +01:00
|
|
|
Directory();
|
2013-01-03 01:36:28 +01:00
|
|
|
~Directory();
|
|
|
|
|
2012-07-30 07:26:08 +02:00
|
|
|
/**
|
2013-01-02 23:06:20 +01:00
|
|
|
* Generic constructor for #Directory object.
|
2012-07-30 07:26:08 +02:00
|
|
|
*/
|
2013-01-02 23:06:10 +01:00
|
|
|
gcc_malloc
|
2013-01-02 23:06:20 +01:00
|
|
|
static Directory *NewGeneric(const char *path_utf8, Directory *parent);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
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() {
|
2013-01-02 23:06:10 +01:00
|
|
|
return NewGeneric("", nullptr);
|
|
|
|
}
|
2007-05-24 19:06:59 +02:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
2013-01-02 23:06:20 +01:00
|
|
|
* Free this #Directory object (and the whole object tree within it),
|
2013-01-02 23:06:10 +01:00
|
|
|
* assuming it was already removed from the parent.
|
|
|
|
*/
|
|
|
|
void Free();
|
2008-10-08 10:48:48 +02:00
|
|
|
|
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
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
|
|
|
* Looks up a directory by its relative URI.
|
|
|
|
*
|
|
|
|
* @param uri the relative URI
|
2013-01-02 23:06:20 +01:00
|
|
|
* @return the Directory, or NULL if none was found
|
2013-01-02 23:06:10 +01:00
|
|
|
*/
|
|
|
|
gcc_pure
|
2013-01-02 23:06:20 +01:00
|
|
|
Directory *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 {
|
|
|
|
return list_empty(&children) &&
|
|
|
|
list_empty(&songs) &&
|
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 {
|
|
|
|
return path;
|
|
|
|
}
|
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 {
|
|
|
|
return parent == NULL;
|
|
|
|
}
|
2008-10-09 15:34:07 +02:00
|
|
|
|
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
|
|
|
|
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
|
|
|
|
song *FindSong(const char *name_utf8) {
|
2013-01-02 23:06:20 +01:00
|
|
|
const Directory *cthis = this;
|
2013-01-02 23:06:10 +01:00
|
|
|
return const_cast<song *>(cthis->FindSong(name_utf8));
|
|
|
|
}
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
|
|
|
* 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);
|
2012-01-24 21:38:31 +01:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
/**
|
|
|
|
* Add a song object to this directory. Its "parent" attribute must
|
|
|
|
* be set already.
|
|
|
|
*/
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
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);
|
|
|
|
}
|
2008-10-08 11:07:58 +02:00
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
#endif
|