libmpdclient  2.7
mpd/search.h
Go to the documentation of this file.
00001 /* libmpdclient
00002    (c) 2003-2010 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 
00055 enum mpd_operator {
00061         MPD_OPERATOR_DEFAULT,
00062 };
00063 
00064 #ifdef __cplusplus
00065 extern "C" {
00066 #endif
00067 
00078 bool
00079 mpd_search_db_songs(struct mpd_connection *connection, bool exact);
00080 
00090 bool
00091 mpd_search_add_db_songs(struct mpd_connection *connection, bool exact);
00092 
00103 bool
00104 mpd_search_queue_songs(struct mpd_connection *connection, bool exact);
00105 
00116 bool
00117 mpd_search_db_tags(struct mpd_connection *connection, enum mpd_tag_type type);
00118 
00128 bool mpd_count_db_songs(struct mpd_connection *connection);
00129 
00138 bool
00139 mpd_search_add_uri_constraint(struct mpd_connection *connection,
00140                               enum mpd_operator oper,
00141                               const char *value);
00142 
00152 bool
00153 mpd_search_add_tag_constraint(struct mpd_connection *connection,
00154                               enum mpd_operator oper,
00155                               enum mpd_tag_type type,
00156                               const char *value);
00157 
00166 bool
00167 mpd_search_add_any_tag_constraint(struct mpd_connection *connection,
00168                                   enum mpd_operator oper,
00169                                   const char *value);
00170 
00178 bool
00179 mpd_search_commit(struct mpd_connection *connection);
00180 
00188 void
00189 mpd_search_cancel(struct mpd_connection *connection);
00190 
00200 mpd_malloc
00201 struct mpd_pair *
00202 mpd_recv_pair_tag(struct mpd_connection *connection, enum mpd_tag_type type);
00203 
00204 #ifdef __cplusplus
00205 }
00206 #endif
00207 
00208 #endif