Commit a94d4be4 authored by Max Kellermann's avatar Max Kellermann

db_plugin: add method visit()

parent b7d2d4cf
...@@ -276,6 +276,7 @@ src_mpd_SOURCES = \ ...@@ -276,6 +276,7 @@ src_mpd_SOURCES = \
src/db_print.c src/db_print.h \ src/db_print.c src/db_print.h \
src/db_plugin.h \ src/db_plugin.h \
src/db_visitor.h \ src/db_visitor.h \
src/db_selection.h \
src/db/simple_db_plugin.c src/db/simple_db_plugin.h \ src/db/simple_db_plugin.c src/db/simple_db_plugin.h \
src/dirvec.c \ src/dirvec.c \
src/exclude.c \ src/exclude.c \
......
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
#include "database.h" #include "database.h"
#include "db_error.h" #include "db_error.h"
#include "db_save.h" #include "db_save.h"
#include "db_selection.h"
#include "db_visitor.h" #include "db_visitor.h"
#include "db_plugin.h" #include "db_plugin.h"
#include "db/simple_db_plugin.h" #include "db/simple_db_plugin.h"
...@@ -108,9 +109,9 @@ db_get_song(const char *file) ...@@ -108,9 +109,9 @@ db_get_song(const char *file)
} }
bool bool
db_walk(const char *uri, db_visit(const struct db_selection *selection,
const struct db_visitor *visitor, void *ctx, const struct db_visitor *visitor, void *ctx,
GError **error_r) GError **error_r)
{ {
if (db == NULL) { if (db == NULL) {
g_set_error_literal(error_r, db_quark(), DB_DISABLED, g_set_error_literal(error_r, db_quark(), DB_DISABLED,
...@@ -118,23 +119,18 @@ db_walk(const char *uri, ...@@ -118,23 +119,18 @@ db_walk(const char *uri,
return false; return false;
} }
struct directory *directory = db_get_directory(uri); return db_plugin_visit(db, selection, visitor, ctx, error_r);
if (directory == NULL) { }
struct song *song;
if (visitor->song != NULL &&
(song = db_get_song(uri)) != NULL)
return visitor->song(song, ctx, error_r);
g_set_error(error_r, db_quark(), DB_NOT_FOUND,
"No such directory: %s", uri);
return false;
}
if (visitor->directory != NULL && bool
!visitor->directory(directory, ctx, error_r)) db_walk(const char *uri,
return false; const struct db_visitor *visitor, void *ctx,
GError **error_r)
{
struct db_selection selection;
db_selection_init(&selection, uri, true);
return directory_walk(directory, visitor, ctx, error_r); return db_visit(&selection, visitor, ctx, error_r);
} }
bool bool
......
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
struct config_param; struct config_param;
struct directory; struct directory;
struct db_selection;
struct db_visitor; struct db_visitor;
/** /**
...@@ -59,6 +60,12 @@ db_get_song(const char *file); ...@@ -59,6 +60,12 @@ db_get_song(const char *file);
gcc_nonnull(1,2) gcc_nonnull(1,2)
bool bool
db_visit(const struct db_selection *selection,
const struct db_visitor *visitor, void *ctx,
GError **error_r);
gcc_nonnull(1,2)
bool
db_walk(const char *uri, db_walk(const char *uri,
const struct db_visitor *visitor, void *ctx, const struct db_visitor *visitor, void *ctx,
GError **error_r); GError **error_r);
......
...@@ -21,6 +21,8 @@ ...@@ -21,6 +21,8 @@
#include "simple_db_plugin.h" #include "simple_db_plugin.h"
#include "db_internal.h" #include "db_internal.h"
#include "db_error.h" #include "db_error.h"
#include "db_selection.h"
#include "db_visitor.h"
#include "db_save.h" #include "db_save.h"
#include "conf.h" #include "conf.h"
#include "glib_compat.h" #include "glib_compat.h"
...@@ -48,6 +50,17 @@ simple_db_quark(void) ...@@ -48,6 +50,17 @@ simple_db_quark(void)
return g_quark_from_static_string("simple_db"); return g_quark_from_static_string("simple_db");
} }
G_GNUC_PURE
static const struct directory *
simple_db_lookup_directory(const struct simple_db *db, const char *uri)
{
assert(db != NULL);
assert(db->root != NULL);
assert(uri != NULL);
return directory_lookup_directory(db->root, uri);
}
static struct db * static struct db *
simple_db_init(const struct config_param *param, GError **error_r) simple_db_init(const struct config_param *param, GError **error_r)
{ {
...@@ -230,6 +243,33 @@ simple_db_get_song(struct db *_db, const char *uri, GError **error_r) ...@@ -230,6 +243,33 @@ simple_db_get_song(struct db *_db, const char *uri, GError **error_r)
return song; return song;
} }
static bool
simple_db_visit(struct db *_db, const struct db_selection *selection,
const struct db_visitor *visitor, void *ctx,
GError **error_r)
{
const struct simple_db *db = (const struct simple_db *)_db;
const struct directory *directory =
simple_db_lookup_directory(db, selection->uri);
if (directory == NULL) {
struct song *song;
if (visitor->song != NULL &&
(song = simple_db_get_song(_db, selection->uri, NULL)) != NULL)
return visitor->song(song, ctx, error_r);
g_set_error(error_r, db_quark(), DB_NOT_FOUND,
"No such directory");
return false;
}
if (selection->recursive && visitor->directory != NULL &&
!visitor->directory(directory, ctx, error_r))
return false;
return directory_walk(directory, selection->recursive,
visitor, ctx, error_r);
}
const struct db_plugin simple_db_plugin = { const struct db_plugin simple_db_plugin = {
.name = "simple", .name = "simple",
.init = simple_db_init, .init = simple_db_init,
...@@ -237,6 +277,7 @@ const struct db_plugin simple_db_plugin = { ...@@ -237,6 +277,7 @@ const struct db_plugin simple_db_plugin = {
.open = simple_db_open, .open = simple_db_open,
.close = simple_db_close, .close = simple_db_close,
.get_song = simple_db_get_song, .get_song = simple_db_get_song,
.visit = simple_db_visit,
}; };
struct directory * struct directory *
......
...@@ -31,6 +31,8 @@ ...@@ -31,6 +31,8 @@
#include <stdbool.h> #include <stdbool.h>
struct config_param; struct config_param;
struct db_selection;
struct db_visitor;
struct db { struct db {
const struct db_plugin *plugin; const struct db_plugin *plugin;
...@@ -67,6 +69,13 @@ struct db_plugin { ...@@ -67,6 +69,13 @@ struct db_plugin {
*/ */
struct song *(*get_song)(struct db *db, const char *uri, struct song *(*get_song)(struct db *db, const char *uri,
GError **error_r); GError **error_r);
/**
* Visit the selected entities.
*/
bool (*visit)(struct db *db, const struct db_selection *selection,
const struct db_visitor *visitor, void *ctx,
GError **error_r);
}; };
G_GNUC_MALLOC G_GNUC_MALLOC
...@@ -78,6 +87,7 @@ db_plugin_new(const struct db_plugin *plugin, const struct config_param *param, ...@@ -78,6 +87,7 @@ db_plugin_new(const struct db_plugin *plugin, const struct config_param *param,
assert(plugin->init != NULL); assert(plugin->init != NULL);
assert(plugin->finish != NULL); assert(plugin->finish != NULL);
assert(plugin->get_song != NULL); assert(plugin->get_song != NULL);
assert(plugin->visit != NULL);
assert(error_r == NULL || *error_r == NULL); assert(error_r == NULL || *error_r == NULL);
struct db *db = plugin->init(param, error_r); struct db *db = plugin->init(param, error_r);
...@@ -129,4 +139,18 @@ db_plugin_get_song(struct db *db, const char *uri, GError **error_r) ...@@ -129,4 +139,18 @@ db_plugin_get_song(struct db *db, const char *uri, GError **error_r)
return db->plugin->get_song(db, uri, error_r); return db->plugin->get_song(db, uri, error_r);
} }
static inline bool
db_plugin_visit(struct db *db, const struct db_selection *selection,
const struct db_visitor *visitor, void *ctx,
GError **error_r)
{
assert(db != NULL);
assert(db->plugin != NULL);
assert(selection != NULL);
assert(visitor != NULL);
assert(error_r == NULL || *error_r == NULL);
return db->plugin->visit(db, selection, visitor, ctx, error_r);
}
#endif #endif
/*
* Copyright (C) 2003-2011 The Music Player Daemon Project
* http://www.musicpd.org
*
* 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.
*
* 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.
*/
#ifndef MPD_DB_SELECTION_H
#define MPD_DB_SELECTION_H
#include "gcc.h"
#include <assert.h>
struct directory;
struct song;
struct db_selection {
/**
* The base URI of the search (UTF-8). Must not begin or end
* with a slash. NULL or an empty string searches the whole
* database.
*/
const char *uri;
/**
* Recursively search all sub directories?
*/
bool recursive;
};
gcc_nonnull(1,2)
static inline void
db_selection_init(struct db_selection *selection,
const char *uri, bool recursive)
{
assert(selection != NULL);
assert(uri != NULL);
selection->uri = uri;
selection->recursive = recursive;
}
#endif
...@@ -169,7 +169,7 @@ directory_sort(struct directory *directory) ...@@ -169,7 +169,7 @@ directory_sort(struct directory *directory)
} }
bool bool
directory_walk(struct directory *directory, directory_walk(const struct directory *directory, bool recursive,
const struct db_visitor *visitor, void *ctx, const struct db_visitor *visitor, void *ctx,
GError **error_r) GError **error_r)
{ {
...@@ -178,7 +178,7 @@ directory_walk(struct directory *directory, ...@@ -178,7 +178,7 @@ directory_walk(struct directory *directory,
assert(error_r == NULL || *error_r == NULL); assert(error_r == NULL || *error_r == NULL);
if (visitor->song != NULL) { if (visitor->song != NULL) {
struct songvec *sv = &directory->songs; const struct songvec *sv = &directory->songs;
for (size_t i = 0; i < sv->nr; ++i) for (size_t i = 0; i < sv->nr; ++i)
if (!visitor->song(sv->base[i], ctx, error_r)) if (!visitor->song(sv->base[i], ctx, error_r))
return false; return false;
...@@ -192,7 +192,8 @@ directory_walk(struct directory *directory, ...@@ -192,7 +192,8 @@ directory_walk(struct directory *directory,
!visitor->directory(child, ctx, error_r)) !visitor->directory(child, ctx, error_r))
return false; return false;
if (!directory_walk(child, visitor, ctx, error_r)) if (recursive &&
!directory_walk(child, recursive, visitor, ctx, error_r))
return false; return false;
} }
......
...@@ -131,7 +131,7 @@ void ...@@ -131,7 +131,7 @@ void
directory_sort(struct directory *directory); directory_sort(struct directory *directory);
bool bool
directory_walk(struct directory *directory, directory_walk(const struct directory *directory, bool recursive,
const struct db_visitor *visitor, void *ctx, const struct db_visitor *visitor, void *ctx,
GError **error_r); GError **error_r);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment