2012-08-15 21:32:34 +02:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
2012-08-15 21:32:34 +02:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2014-01-24 16:18:50 +01:00
|
|
|
#include "Helpers.hxx"
|
2014-02-19 22:54:52 +01:00
|
|
|
#include "Stats.hxx"
|
|
|
|
#include "Interface.hxx"
|
2014-01-19 10:51:34 +01:00
|
|
|
#include "LightSong.hxx"
|
2013-09-05 18:22:02 +02:00
|
|
|
#include "tag/Tag.hxx"
|
2012-08-15 21:32:34 +02:00
|
|
|
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
struct StringLess {
|
|
|
|
gcc_pure
|
|
|
|
bool operator()(const char *a, const char *b) const {
|
|
|
|
return strcmp(a, b) < 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::set<const char *, StringLess> StringSet;
|
|
|
|
|
2012-08-15 22:20:28 +02:00
|
|
|
static void
|
|
|
|
StatsVisitTag(DatabaseStats &stats, StringSet &artists, StringSet &albums,
|
2013-07-30 20:11:57 +02:00
|
|
|
const Tag &tag)
|
2012-08-15 22:20:28 +02:00
|
|
|
{
|
|
|
|
if (tag.time > 0)
|
|
|
|
stats.total_duration += tag.time;
|
|
|
|
|
2014-07-12 17:22:39 +02:00
|
|
|
for (const auto &item : tag) {
|
2012-08-15 22:20:28 +02:00
|
|
|
switch (item.type) {
|
|
|
|
case TAG_ARTIST:
|
2014-04-24 18:17:07 +02:00
|
|
|
#if defined(__clang__) || GCC_CHECK_VERSION(4,8)
|
|
|
|
artists.emplace(item.value);
|
|
|
|
#else
|
2012-08-15 22:20:28 +02:00
|
|
|
artists.insert(item.value);
|
2014-04-24 18:17:07 +02:00
|
|
|
#endif
|
2012-08-15 22:20:28 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TAG_ALBUM:
|
2014-04-24 18:17:07 +02:00
|
|
|
#if defined(__clang__) || GCC_CHECK_VERSION(4,8)
|
|
|
|
albums.emplace(item.value);
|
|
|
|
#else
|
2012-08-15 22:20:28 +02:00
|
|
|
albums.insert(item.value);
|
2014-04-24 18:17:07 +02:00
|
|
|
#endif
|
2012-08-15 22:20:28 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
StatsVisitSong(DatabaseStats &stats, StringSet &artists, StringSet &albums,
|
2014-01-19 10:51:34 +01:00
|
|
|
const LightSong &song)
|
2012-08-15 22:20:28 +02:00
|
|
|
{
|
|
|
|
++stats.song_count;
|
|
|
|
|
2014-01-19 10:51:34 +01:00
|
|
|
StatsVisitTag(stats, artists, albums, *song.tag);
|
2012-08-15 22:20:28 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
GetStats(const Database &db, const DatabaseSelection &selection,
|
2013-08-10 18:02:44 +02:00
|
|
|
DatabaseStats &stats, Error &error)
|
2012-08-15 22:20:28 +02:00
|
|
|
{
|
|
|
|
stats.Clear();
|
|
|
|
|
|
|
|
StringSet artists, albums;
|
|
|
|
using namespace std::placeholders;
|
|
|
|
const auto f = std::bind(StatsVisitSong,
|
|
|
|
std::ref(stats), std::ref(artists),
|
|
|
|
std::ref(albums), _1);
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!db.Visit(selection, f, error))
|
2012-08-15 22:20:28 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
stats.artist_count = artists.size();
|
|
|
|
stats.album_count = albums.size();
|
|
|
|
return true;
|
|
|
|
}
|