libmpdclient 2.10
|
00001 /* libmpdclient 00002 (c) 2003-2015 The Music Player Daemon Project 00003 This project's homepage is: http://www.musicpd.org 00004 00005 Redistribution and use in source and binary forms, with or without 00006 modification, are permitted provided that the following conditions 00007 are met: 00008 00009 - Redistributions of source code must retain the above copyright 00010 notice, this list of conditions and the following disclaimer. 00011 00012 - Redistributions in binary form must reproduce the above copyright 00013 notice, this list of conditions and the following disclaimer in the 00014 documentation and/or other materials provided with the distribution. 00015 00016 - Neither the name of the Music Player Daemon nor the names of its 00017 contributors may be used to endorse or promote products derived from 00018 this software without specific prior written permission. 00019 00020 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00021 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00022 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 00023 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR 00024 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00025 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00026 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00027 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00028 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00029 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00030 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00031 */ 00032 00041 #ifndef MPD_DB_H 00042 #define MPD_DB_H 00043 00044 #include <mpd/connection.h> 00045 #include <mpd/tag.h> 00046 #include <mpd/compiler.h> 00047 00048 #include <stdbool.h> 00049 #include <time.h> 00050 00056 enum mpd_operator { 00062 MPD_OPERATOR_DEFAULT, 00063 }; 00064 00065 #ifdef __cplusplus 00066 extern "C" { 00067 #endif 00068 00079 bool 00080 mpd_search_db_songs(struct mpd_connection *connection, bool exact); 00081 00091 bool 00092 mpd_search_add_db_songs(struct mpd_connection *connection, bool exact); 00093 00104 bool 00105 mpd_search_queue_songs(struct mpd_connection *connection, bool exact); 00106 00117 bool 00118 mpd_search_db_tags(struct mpd_connection *connection, enum mpd_tag_type type); 00119 00129 bool mpd_count_db_songs(struct mpd_connection *connection); 00130 00139 bool 00140 mpd_search_add_base_constraint(struct mpd_connection *connection, 00141 enum mpd_operator oper, 00142 const char *value); 00143 00152 bool 00153 mpd_search_add_uri_constraint(struct mpd_connection *connection, 00154 enum mpd_operator oper, 00155 const char *value); 00156 00166 bool 00167 mpd_search_add_tag_constraint(struct mpd_connection *connection, 00168 enum mpd_operator oper, 00169 enum mpd_tag_type type, 00170 const char *value); 00171 00180 bool 00181 mpd_search_add_any_tag_constraint(struct mpd_connection *connection, 00182 enum mpd_operator oper, 00183 const char *value); 00184 00193 bool 00194 mpd_search_add_modified_since_constraint(struct mpd_connection *connection, 00195 enum mpd_operator oper, 00196 time_t value); 00197 00207 bool 00208 mpd_search_add_window(struct mpd_connection *connection, 00209 unsigned start, unsigned end); 00210 00218 bool 00219 mpd_search_commit(struct mpd_connection *connection); 00220 00228 void 00229 mpd_search_cancel(struct mpd_connection *connection); 00230 00240 mpd_malloc 00241 struct mpd_pair * 00242 mpd_recv_pair_tag(struct mpd_connection *connection, enum mpd_tag_type type); 00243 00244 #ifdef __cplusplus 00245 } 00246 #endif 00247 00248 #endif