diff options
author | Max Kellermann <max@duempel.org> | 2012-08-02 18:55:53 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-08-02 19:14:53 +0200 |
commit | 0a3ada4fead32da5b6cd1b4738fbe4304e028213 (patch) | |
tree | d33ba540e1a592f5e19894c4baf761475e841797 /src/Stats.cxx | |
parent | 8bdf7917c40968d19cc0ca8e8e6df8c6fcc462d1 (diff) | |
download | mpd-0a3ada4fead32da5b6cd1b4738fbe4304e028213.tar.gz mpd-0a3ada4fead32da5b6cd1b4738fbe4304e028213.tar.xz mpd-0a3ada4fead32da5b6cd1b4738fbe4304e028213.zip |
stats: convert to C++
Diffstat (limited to '')
-rw-r--r-- | src/Stats.cxx (renamed from src/stats.c) | 57 |
1 files changed, 31 insertions, 26 deletions
diff --git a/src/stats.c b/src/Stats.cxx index fe6a064a6..fa76893f1 100644 --- a/src/stats.c +++ b/src/Stats.cxx @@ -18,15 +18,24 @@ */ #include "config.h" + +extern "C" { #include "stats.h" #include "database.h" -#include "db_visitor.h" +#include "db_selection.h" #include "tag.h" #include "song.h" #include "client.h" #include "player_control.h" #include "strset.h" #include "client_internal.h" +} + +#include "DatabaseGlue.hxx" +#include "DatabasePlugin.hxx" + +#include <functional> +#include <set> struct stats stats; @@ -40,13 +49,17 @@ void stats_global_finish(void) g_timer_destroy(stats.timer); } -struct visit_data { - struct strset *artists; - struct strset *albums; +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; + static void -visit_tag(struct visit_data *data, const struct tag *tag) +visit_tag(StringSet &artists, StringSet &albums, const struct tag *tag) { if (tag->time > 0) stats.song_duration += tag->time; @@ -56,11 +69,11 @@ visit_tag(struct visit_data *data, const struct tag *tag) switch (item->type) { case TAG_ARTIST: - strset_add(data->artists, item->value); + artists.insert(item->value); break; case TAG_ALBUM: - strset_add(data->albums, item->value); + albums.insert(item->value); break; default: @@ -70,41 +83,33 @@ visit_tag(struct visit_data *data, const struct tag *tag) } static bool -collect_stats_song(struct song *song, void *_data, - G_GNUC_UNUSED GError **error_r) +collect_stats_song(StringSet &artists, StringSet &albums, struct song *song) { - struct visit_data *data = _data; - ++stats.song_count; if (song->tag != NULL) - visit_tag(data, song->tag); + visit_tag(artists, albums, song->tag); return true; } -static const struct db_visitor collect_stats_visitor = { - .song = collect_stats_song, -}; - void stats_update(void) { - struct visit_data data; - stats.song_count = 0; stats.song_duration = 0; stats.artist_count = 0; - data.artists = strset_new(); - data.albums = strset_new(); - - db_walk("", &collect_stats_visitor, &data, NULL); + struct db_selection selection; + db_selection_init(&selection, "", true); - stats.artist_count = strset_size(data.artists); - stats.album_count = strset_size(data.albums); + StringSet artists, albums; + using namespace std::placeholders; + const auto f = std::bind(collect_stats_song, + std::ref(artists), std::ref(albums), _1); + GetDatabase()->Visit(&selection, f, NULL); - strset_free(data.artists); - strset_free(data.albums); + stats.artist_count = artists.size(); + stats.album_count = albums.size(); } int stats_print(struct client *client) |