2006-07-13 21:20:34 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2006-07-13 21:20:34 +02:00
|
|
|
* This project's homepage is: 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2004-11-10 22:58:27 +01:00
|
|
|
#ifndef DB_UTILS_H
|
|
|
|
#define DB_UTILS_H
|
|
|
|
|
2007-02-24 01:54:54 +01:00
|
|
|
#include "locate.h"
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2008-09-07 13:53:55 +02:00
|
|
|
struct client;
|
|
|
|
|
|
|
|
int printAllIn(struct client *client, const char *name);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2008-09-07 13:48:37 +02:00
|
|
|
int addAllIn(const char *name);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2008-09-07 13:48:37 +02:00
|
|
|
int addAllInToStoredPlaylist(const char *name, const char *utf8file);
|
2006-11-20 16:37:58 +01:00
|
|
|
|
2008-09-07 13:53:55 +02:00
|
|
|
int printInfoForAllIn(struct client *client, const char *name);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2008-09-07 13:53:55 +02:00
|
|
|
int searchForSongsIn(struct client *client, const char *name,
|
|
|
|
int numItems, LocateTagItem * items);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2008-09-07 13:53:55 +02:00
|
|
|
int findSongsIn(struct client *client, const char *name,
|
|
|
|
int numItems, LocateTagItem * items);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2008-09-07 13:53:55 +02:00
|
|
|
int searchStatsForSongsIn(struct client *client, const char *name,
|
|
|
|
int numItems, LocateTagItem * items);
|
2007-04-26 01:46:11 +02:00
|
|
|
|
2008-09-07 13:48:37 +02:00
|
|
|
int countSongsIn(const char *name);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2008-09-07 13:48:37 +02:00
|
|
|
unsigned long sumSongTimesIn(const char *name);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2008-09-07 13:53:55 +02:00
|
|
|
int listAllUniqueTags(struct client *client, int type, int numConditiionals,
|
2006-07-20 18:02:40 +02:00
|
|
|
LocateTagItem * conditionals);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2006-08-20 02:50:44 +02:00
|
|
|
void printSavedMemoryFromFilenames(void);
|
2004-11-11 03:36:25 +01:00
|
|
|
|
2004-11-10 22:58:27 +01:00
|
|
|
#endif
|