2011-09-05 23:09:20 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2011 The Music Player Daemon Project
|
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MPD_DB_PRINT_H
|
|
|
|
#define MPD_DB_PRINT_H
|
|
|
|
|
2013-10-15 09:21:13 +02:00
|
|
|
#include "Compiler.h"
|
2011-09-13 21:36:51 +02:00
|
|
|
|
2012-08-29 19:27:03 +02:00
|
|
|
class SongFilter;
|
2012-08-07 23:06:41 +02:00
|
|
|
struct DatabaseSelection;
|
2011-09-10 19:24:30 +02:00
|
|
|
struct db_visitor;
|
2013-01-03 17:27:26 +01:00
|
|
|
class Client;
|
2013-08-10 18:02:44 +02:00
|
|
|
class Error;
|
2011-09-05 23:09:20 +02:00
|
|
|
|
2012-08-07 23:10:34 +02:00
|
|
|
gcc_nonnull(1)
|
2011-09-13 21:24:22 +02:00
|
|
|
bool
|
2013-01-03 17:27:26 +01:00
|
|
|
db_selection_print(Client *client, const DatabaseSelection &selection,
|
2013-08-10 18:02:44 +02:00
|
|
|
bool full, Error &error);
|
2011-09-13 21:24:22 +02:00
|
|
|
|
2011-09-13 21:36:51 +02:00
|
|
|
gcc_nonnull(1,2)
|
2011-09-10 19:24:30 +02:00
|
|
|
bool
|
2013-08-10 18:02:44 +02:00
|
|
|
printAllIn(Client *client, const char *uri_utf8, Error &error);
|
2011-09-05 23:09:20 +02:00
|
|
|
|
2011-09-13 21:36:51 +02:00
|
|
|
gcc_nonnull(1,2)
|
2011-09-10 19:24:30 +02:00
|
|
|
bool
|
2013-01-03 17:27:26 +01:00
|
|
|
printInfoForAllIn(Client *client, const char *uri_utf8,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error);
|
2011-09-05 23:09:20 +02:00
|
|
|
|
2012-08-15 20:18:17 +02:00
|
|
|
gcc_nonnull(1,2)
|
2011-09-10 19:24:30 +02:00
|
|
|
bool
|
2013-01-03 17:27:26 +01:00
|
|
|
searchStatsForSongsIn(Client *client, const char *name,
|
2012-08-29 19:27:03 +02:00
|
|
|
const SongFilter *filter,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error);
|
2011-09-05 23:09:20 +02:00
|
|
|
|
2012-08-15 20:18:17 +02:00
|
|
|
gcc_nonnull(1)
|
2011-09-10 19:24:30 +02:00
|
|
|
bool
|
2013-01-03 17:27:26 +01:00
|
|
|
listAllUniqueTags(Client *client, int type,
|
2012-08-29 19:27:03 +02:00
|
|
|
const SongFilter *filter,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error);
|
2011-09-05 23:09:20 +02:00
|
|
|
|
|
|
|
#endif
|