aboutsummaryrefslogtreecommitdiffstats
path: root/src/DatabaseSelection.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-06-23 09:12:51 +0200
committerMax Kellermann <max@duempel.org>2014-06-23 09:18:11 +0200
commit848ed1478866e4d99c10aa962a6d976a6b989536 (patch)
tree5da39e4368027e24d690bc5d004b9cf6d30bc396 /src/DatabaseSelection.hxx
parent4c8a5dfb0522b0ff7d6acb96fd2fbc33c22c14e6 (diff)
downloadmpd-848ed1478866e4d99c10aa962a6d976a6b989536.tar.gz
mpd-848ed1478866e4d99c10aa962a6d976a6b989536.tar.xz
mpd-848ed1478866e4d99c10aa962a6d976a6b989536.zip
db/proxy: fall back to recursive walk on old libmpdclient/MPD
Error message was 'too few arguments for "find"' because the "base" constraint was not supported, and no other constraints remained.
Diffstat (limited to 'src/DatabaseSelection.hxx')
-rw-r--r--src/DatabaseSelection.hxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/DatabaseSelection.hxx b/src/DatabaseSelection.hxx
index 6c1a1dc8d..4825c738c 100644
--- a/src/DatabaseSelection.hxx
+++ b/src/DatabaseSelection.hxx
@@ -45,6 +45,15 @@ struct DatabaseSelection {
const SongFilter *_filter=nullptr);
gcc_pure
+ bool IsEmpty() const;
+
+ /**
+ * Does this selection contain constraints other than "base"?
+ */
+ gcc_pure
+ bool HasOtherThanBase() const;
+
+ gcc_pure
bool Match(const Song &song) const;
};