2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2011-01-29 10:13:54 +01:00
|
|
|
* Copyright (C) 2003-2011 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
|
|
|
*/
|
|
|
|
|
2008-10-31 09:19:53 +01:00
|
|
|
#ifndef MPD_DIRECTORY_H
|
|
|
|
#define MPD_DIRECTORY_H
|
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"
|
2010-07-21 08:58:15 +02:00
|
|
|
#include "playlist_vector.h"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2011-09-10 19:24:30 +02:00
|
|
|
#include <glib.h>
|
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
|
|
|
|
2008-10-08 11:07:35 +02:00
|
|
|
#define DIRECTORY_DIR "directory: "
|
|
|
|
|
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;
|
|
|
|
|
2008-10-08 10:49:05 +02: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
|
|
|
|
|
|
|
struct playlist_vector playlists;
|
|
|
|
|
2008-10-08 10:49:05 +02:00
|
|
|
struct 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)];
|
2008-10-08 10:49:05 +02:00
|
|
|
};
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2008-10-08 11:06:44 +02:00
|
|
|
static inline bool
|
|
|
|
isRootDirectory(const char *name)
|
|
|
|
{
|
|
|
|
return name[0] == 0 || (name[0] == '/' && name[1] == 0);
|
|
|
|
}
|
2007-05-24 19:06:59 +02:00
|
|
|
|
2012-01-24 19:07:11 +01:00
|
|
|
/**
|
|
|
|
* Generic constructor for #directory object.
|
|
|
|
*/
|
|
|
|
G_GNUC_MALLOC
|
2008-10-08 10:49:05 +02:00
|
|
|
struct directory *
|
2008-10-08 11:07:58 +02:00
|
|
|
directory_new(const char *dirname, struct directory *parent);
|
2008-10-08 10:48:48 +02:00
|
|
|
|
2012-01-24 19:07:11 +01:00
|
|
|
/**
|
|
|
|
* Create a new root #directory object.
|
|
|
|
*/
|
|
|
|
G_GNUC_MALLOC
|
|
|
|
static inline struct directory *
|
|
|
|
directory_new_root(void)
|
|
|
|
{
|
|
|
|
return directory_new("", NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Free this #directory object (and the whole object tree within it),
|
|
|
|
* assuming it was already removed from the parent.
|
|
|
|
*/
|
2008-10-08 10:48:48 +02:00
|
|
|
void
|
2008-10-08 11:07:58 +02:00
|
|
|
directory_free(struct directory *directory);
|
2008-10-08 10:48:48 +02:00
|
|
|
|
2012-01-24 19:07:11 +01:00
|
|
|
/**
|
|
|
|
* Remove this #directory object from its parent and free it. This
|
|
|
|
* must not be called with the root directory.
|
2012-01-31 22:12:14 +01:00
|
|
|
*
|
|
|
|
* Caller must lock the #db_mutex.
|
2012-01-24 19:07:11 +01:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
directory_delete(struct directory *directory);
|
|
|
|
|
2008-10-08 10:48:49 +02:00
|
|
|
static inline bool
|
2008-10-13 09:56:57 +02:00
|
|
|
directory_is_empty(const struct directory *directory)
|
2008-10-08 10:48:49 +02:00
|
|
|
{
|
2012-01-24 18:20:58 +01:00
|
|
|
return list_empty(&directory->children) &&
|
2012-01-24 21:33:09 +01:00
|
|
|
list_empty(&directory->songs) &&
|
2011-05-09 21:37:43 +02:00
|
|
|
playlist_vector_is_empty(&directory->playlists);
|
2008-10-08 10:48:49 +02:00
|
|
|
}
|
|
|
|
|
2008-10-08 11:08:04 +02:00
|
|
|
static inline const char *
|
2008-10-13 09:56:57 +02:00
|
|
|
directory_get_path(const struct directory *directory)
|
2008-10-08 11:08:04 +02:00
|
|
|
{
|
|
|
|
return directory->path;
|
|
|
|
}
|
|
|
|
|
2009-01-04 19:08:52 +01:00
|
|
|
/**
|
|
|
|
* Is this the root directory of the music database?
|
|
|
|
*/
|
|
|
|
static inline bool
|
|
|
|
directory_is_root(const struct directory *directory)
|
|
|
|
{
|
|
|
|
return directory->parent == NULL;
|
|
|
|
}
|
|
|
|
|
2008-10-13 16:32:39 +02:00
|
|
|
/**
|
|
|
|
* Returns the base name of the directory.
|
|
|
|
*/
|
2012-01-24 19:07:11 +01:00
|
|
|
G_GNUC_PURE
|
2008-10-13 16:32:39 +02:00
|
|
|
const char *
|
|
|
|
directory_get_name(const struct directory *directory);
|
|
|
|
|
2012-01-31 22:12:14 +01:00
|
|
|
/**
|
|
|
|
* Caller must lock the #db_mutex.
|
|
|
|
*/
|
2012-01-24 18:20:58 +01:00
|
|
|
G_GNUC_PURE
|
|
|
|
struct directory *
|
|
|
|
directory_get_child(const struct directory *directory, const char *name);
|
2008-10-09 15:34:07 +02:00
|
|
|
|
2012-01-24 19:07:11 +01:00
|
|
|
/**
|
|
|
|
* Create a new #directory object as a child of the given one.
|
|
|
|
*
|
2012-01-31 22:12:14 +01:00
|
|
|
* Caller must lock the #db_mutex.
|
|
|
|
*
|
2012-01-24 19:07:11 +01:00
|
|
|
* @param parent the parent directory the new one will be added to
|
|
|
|
* @param name_utf8 the UTF-8 encoded name of the new sub directory
|
|
|
|
*/
|
|
|
|
G_GNUC_MALLOC
|
|
|
|
struct directory *
|
|
|
|
directory_new_child(struct directory *parent, const char *name_utf8);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Look up a sub directory, and create the object if it does not
|
|
|
|
* exist.
|
2012-01-31 22:12:14 +01:00
|
|
|
*
|
|
|
|
* Caller must lock the #db_mutex.
|
2012-01-24 19:07:11 +01:00
|
|
|
*/
|
2008-10-09 15:34:07 +02:00
|
|
|
static inline struct directory *
|
2012-01-24 19:07:11 +01:00
|
|
|
directory_make_child(struct directory *directory, const char *name_utf8)
|
2008-10-09 15:34:07 +02:00
|
|
|
{
|
2012-01-24 19:07:11 +01:00
|
|
|
struct directory *child = directory_get_child(directory, name_utf8);
|
|
|
|
if (child == NULL)
|
|
|
|
child = directory_new_child(directory, name_utf8);
|
|
|
|
return child;
|
2008-10-09 15:34:07 +02:00
|
|
|
}
|
|
|
|
|
2012-01-31 22:12:14 +01:00
|
|
|
/**
|
|
|
|
* Caller must lock the #db_mutex.
|
|
|
|
*/
|
2008-10-08 10:48:48 +02:00
|
|
|
void
|
2008-10-08 11:07:58 +02:00
|
|
|
directory_prune_empty(struct directory *directory);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2009-04-01 18:41:33 +02:00
|
|
|
/**
|
|
|
|
* Looks up a directory by its relative URI.
|
|
|
|
*
|
|
|
|
* @param directory the parent (or grandparent, ...) directory
|
|
|
|
* @param uri the relative URI
|
|
|
|
* @return the directory, or NULL if none was found
|
|
|
|
*/
|
2008-10-08 11:07:35 +02:00
|
|
|
struct directory *
|
2009-04-01 18:41:33 +02:00
|
|
|
directory_lookup_directory(struct directory *directory, const char *uri);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2012-01-24 21:38:31 +01:00
|
|
|
/**
|
|
|
|
* Add a song object to this directory. Its "parent" attribute must
|
|
|
|
* be set already.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
directory_add_song(struct directory *directory, struct song *song);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
directory_remove_song(struct directory *directory, struct song *song);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Look up a song in this directory by its name.
|
2012-01-31 22:12:14 +01:00
|
|
|
*
|
|
|
|
* Caller must lock the #db_mutex.
|
2012-01-24 21:38:31 +01:00
|
|
|
*/
|
|
|
|
G_GNUC_PURE
|
|
|
|
struct song *
|
|
|
|
directory_get_song(const struct directory *directory, const char *name_utf8);
|
|
|
|
|
2009-04-01 18:41:37 +02:00
|
|
|
/**
|
|
|
|
* Looks up a song by its relative URI.
|
|
|
|
*
|
2012-01-31 22:12:14 +01:00
|
|
|
* Caller must lock the #db_mutex.
|
|
|
|
*
|
2009-04-01 18:41:37 +02:00
|
|
|
* @param directory the parent (or grandparent, ...) directory
|
|
|
|
* @param uri the relative URI
|
|
|
|
* @return the song, or NULL if none was found
|
|
|
|
*/
|
|
|
|
struct song *
|
|
|
|
directory_lookup_song(struct directory *directory, const char *uri);
|
|
|
|
|
2012-01-31 22:12:14 +01:00
|
|
|
/**
|
|
|
|
* Sort all directory entries recursively.
|
|
|
|
*
|
|
|
|
* Caller must lock the #db_mutex.
|
|
|
|
*/
|
2008-10-08 11:07:35 +02:00
|
|
|
void
|
2008-10-08 11:07:58 +02:00
|
|
|
directory_sort(struct directory *directory);
|
|
|
|
|
2012-01-24 18:20:58 +01:00
|
|
|
/**
|
|
|
|
* Caller must lock #db_mutex.
|
|
|
|
*/
|
2011-09-10 19:24:30 +02:00
|
|
|
bool
|
2011-09-10 18:48:10 +02:00
|
|
|
directory_walk(const struct directory *directory, bool recursive,
|
2011-09-10 19:24:30 +02:00
|
|
|
const struct db_visitor *visitor, void *ctx,
|
|
|
|
GError **error_r);
|
2004-11-11 03:36:25 +01:00
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
#endif
|