1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
|
// SPDX-License-Identifier: BSD-3-Clause
// Copyright The Music Player Daemon Project
/*! \file
* \brief MPD client library
*
* Search songs in the database or the queue.
*
* Do not include this header directly. Use mpd/client.h instead.
*/
#ifndef LIBMPDCLIENT_SEARCH_H
#define LIBMPDCLIENT_SEARCH_H
#include "connection.h"
#include "tag.h"
#include "position.h"
#include "compiler.h"
#include <stdbool.h>
#include <time.h>
/**
* This type is not yet used, it is reserved for a future protocol
* extension which will allow us to specify a comparison operator for
* constraints.
*/
enum mpd_operator {
/**
* The default search operator. If "exact" was passed as
* "true", then it means "full string comparison"; if false,
* then it means "search for substring".
*/
MPD_OPERATOR_DEFAULT,
};
#ifdef __cplusplus
extern "C" {
#endif
/**
* Search for songs in the database.
* Constraints may be specified with mpd_search_add_tag_constraint().
* Send the search command with mpd_search_commit(), and read the
* response items with mpd_recv_song().
*
* @param connection the connection to MPD
* @param exact if to match exact
* @return true on success, false on error
*/
bool
mpd_search_db_songs(struct mpd_connection *connection, bool exact);
/**
* Search for songs in the database and adds the result to the queue.
* Constraints may be specified with mpd_search_add_tag_constraint().
* Send the search command with mpd_search_commit().
*
* @param connection the connection to MPD
* @param exact if to match exact (only "true" supported by MPD 0.16)
* @return true on success, false on error
*/
bool
mpd_search_add_db_songs(struct mpd_connection *connection, bool exact);
/**
* Search for songs in the database and adds the result to a playlist.
* Constraints may be specified with mpd_search_add_tag_constraint().
* Send the search command with mpd_search_commit().
*
* @param connection the connection to MPD
* @param playlist_name the name of the playlist where songs shall be
* added
* @return true on success, false on error
*
* @since libmpdclient 2.17.
*/
bool
mpd_search_add_db_songs_to_playlist(struct mpd_connection *connection,
const char *playlist_name);
/**
* Search for songs in the queue.
* Constraints may be specified with mpd_search_add_tag_constraint().
* Send the search command with mpd_search_commit(), and read the
* response items with mpd_recv_song().
*
* @param connection the connection to MPD
* @param exact if to match exact
* @return true on success, false on error
*/
bool
mpd_search_queue_songs(struct mpd_connection *connection, bool exact);
/**
* Obtains a list of unique tag values from the database.
* Constraints may be specified with mpd_search_add_tag_constraint().
* Send the search command with mpd_search_commit(), and read the
* response items with mpd_recv_pair_tag().
*
* @param connection the connection to MPD
* @param type The type of the tags to search for
* @return true on success, false on error
*/
bool
mpd_search_db_tags(struct mpd_connection *connection, enum mpd_tag_type type);
/**
* Gathers statistics on a set of songs in the database.
* Constraints may be specified with mpd_search_add_tag_constraint().
* Send the command with mpd_search_commit(), and read the response
* with mpd_recv_stats().
*
* @param connection the connection to MPD
* @return true on success, false on error
*/
bool mpd_count_db_songs(struct mpd_connection *connection);
/**
* Gathers statistics on a set of songs in the database.
* This is the case insensitive variant of mpd_count_db_songs().
* Constraints may be specified with mpd_search_add_tag_constraint().
* Send the command with mpd_search_commit(), and read the response
* with mpd_recv_stats().
*
* @param connection the connection to MPD
* @return true on success, false on error
*/
bool
mpd_searchcount_db_songs(struct mpd_connection *connection);
/**
* Limit the search to a certain directory.
*
* @param connection a #mpd_connection
* @param oper reserved, pass #MPD_OPERATOR_DEFAULT
* @param value the URI relative to the music directory
* @return true on success, false on error
*
* @since libmpdclient 2.9
*/
bool
mpd_search_add_base_constraint(struct mpd_connection *connection,
enum mpd_operator oper,
const char *value);
/**
* Add a constraint on the song's URI.
*
* @param connection a #mpd_connection
* @param oper reserved, pass #MPD_OPERATOR_DEFAULT
* @param value The value of the constraint
* @return true on success, false on error
*/
bool
mpd_search_add_uri_constraint(struct mpd_connection *connection,
enum mpd_operator oper,
const char *value);
/**
* Add a constraint to a search limiting the value of a tag.
*
* @param connection a #mpd_connection
* @param oper reserved, pass #MPD_OPERATOR_DEFAULT
* @param type The tag type of the constraint
* @param value The value of the constraint
* @return true on success, false on error
*/
bool
mpd_search_add_tag_constraint(struct mpd_connection *connection,
enum mpd_operator oper,
enum mpd_tag_type type,
const char *value);
/**
* Add a constraint to a search, search for a value in any tag.
*
* @param connection a #mpd_connection
* @param oper reserved, pass #MPD_OPERATOR_DEFAULT
* @param value The value of the constraint
* @return true on success, false on error
*/
bool
mpd_search_add_any_tag_constraint(struct mpd_connection *connection,
enum mpd_operator oper,
const char *value);
/**
* Limit the search to files modified after the given time stamp.
*
* @param connection a #mpd_connection
* @param oper reserved, pass #MPD_OPERATOR_DEFAULT
* @param value the reference time stamp
* @return true on success, false on error
*
* @since libmpdclient 2.10
*/
bool
mpd_search_add_modified_since_constraint(struct mpd_connection *connection,
enum mpd_operator oper,
time_t value);
/**
* Limit the search to files added after the given time stamp.
*
* @param connection a #mpd_connection
* @param oper reserved, pass #MPD_OPERATOR_DEFAULT
* @param value the reference time stamp
* @return true on success, false on error
*
* @since libmpdclient 2.21, MPD 0.24
*/
bool
mpd_search_add_added_since_constraint(struct mpd_connection *connection,
enum mpd_operator oper,
time_t value);
/**
* Add an expression string.
*
* @param connection a #mpd_connection
* @param expression the expression string; must be enclosed in
* parentheses
* @return true on success, false on error
*
* @since libmpdclient 2.15, MPD 0.21
*/
bool
mpd_search_add_expression(struct mpd_connection *connection,
const char *expression);
/**
* Group the results by the specified tag.
*
* @param connection a #mpd_connection
* @param type the tag type to group by
* @return true on success, false on error
*
* @since libmpdclient 2.12, MPD 0.19
*/
bool
mpd_search_add_group_tag(struct mpd_connection *connection,
enum mpd_tag_type type);
/**
* Sort the results by the specified named attribute.
*
* @param connection a #mpd_connection
* @param name the attribute name to sort with; can be a tag name or
* "Last-Modified"
* @param descending sort in reverse order?
* @return true on success, false on error
*
* @since MPD 0.21, libmpdclient 2.15
*/
bool
mpd_search_add_sort_name(struct mpd_connection *connection,
const char *name, bool descending);
/**
* Sort the results by the specified tag.
*
* @param connection a #mpd_connection
* @param type the tag type to sort with
* @param descending sort in reverse order?
* @return true on success, false on error
*
* @since MPD 0.21, libmpdclient 2.11; #descending since libmpdclient
* 2.15
*/
bool
mpd_search_add_sort_tag(struct mpd_connection *connection,
enum mpd_tag_type type, bool descending);
/**
* Request only a portion of the result set.
*
* @param connection a #mpd_connection
* @param start the start offset (including)
* @param end the end offset (not including)
* @return true on success, false on error
*
* @since libmpdclient 2.10
*/
bool
mpd_search_add_window(struct mpd_connection *connection,
unsigned start, unsigned end);
/**
* Adds the search to the specified position in the queue.
*
* @param connection a #mpd_connection
* @param position the position in the queue
* @param whence how to interpret the position parameter
*
* @since libmpdclient 2.20
*/
bool
mpd_search_add_position(struct mpd_connection *connection,
unsigned position, enum mpd_position_whence whence);
/**
* Starts the real search with constraints added with
* mpd_search_add_constraint().
*
* @param connection the connection to MPD
* @return true on success, false on error
*/
bool
mpd_search_commit(struct mpd_connection *connection);
/**
* Cancels the search request before you have called
* mpd_search_commit(). Call this to clear the current search
* request.
*
* @param connection the connection to MPD
*/
void
mpd_search_cancel(struct mpd_connection *connection);
/**
* Same as mpd_recv_pair_named(), but the pair name is specified as
* #mpd_tag_type.
*
* @param connection the connection to MPD
* @param type the tag type you are looking for
* @return a pair, or NULL on error or if there are no more matching
* pairs in this response
*/
mpd_malloc
struct mpd_pair *
mpd_recv_pair_tag(struct mpd_connection *connection, enum mpd_tag_type type);
#ifdef __cplusplus
}
#endif
#endif
|