diff options
author | Max Kellermann <max@duempel.org> | 2014-06-23 09:12:51 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-06-23 09:18:11 +0200 |
commit | 848ed1478866e4d99c10aa962a6d976a6b989536 (patch) | |
tree | 5da39e4368027e24d690bc5d004b9cf6d30bc396 /src/DatabaseSelection.hxx | |
parent | 4c8a5dfb0522b0ff7d6acb96fd2fbc33c22c14e6 (diff) | |
download | mpd-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 '')
-rw-r--r-- | src/DatabaseSelection.hxx | 9 |
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; }; |