2004-02-24 00:41:20 +01: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)
|
2008-09-08 11:47:57 +02:00
|
|
|
* Copyright (C) 2008 Max Kellermann <max@duempel.org>
|
2004-02-24 00:41:20 +01: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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stats.h"
|
2008-10-08 11:07:35 +02:00
|
|
|
#include "database.h"
|
2008-09-06 20:28:31 +02:00
|
|
|
#include "tag.h"
|
2008-10-08 10:49:11 +02:00
|
|
|
#include "song.h"
|
2008-09-07 14:02:57 +02:00
|
|
|
#include "client.h"
|
2008-08-26 08:44:38 +02:00
|
|
|
#include "player_control.h"
|
2008-09-08 11:47:57 +02:00
|
|
|
#include "strset.h"
|
2009-01-04 20:57:06 +01:00
|
|
|
#include "dbUtils.h"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2009-01-18 15:22:26 +01:00
|
|
|
struct stats stats;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2009-01-18 15:22:26 +01:00
|
|
|
void stats_global_init(void)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2009-01-18 15:22:26 +01:00
|
|
|
stats.start_time = time(NULL);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2009-01-04 20:57:06 +01:00
|
|
|
void stats_update(void)
|
|
|
|
{
|
2009-01-18 15:22:26 +01:00
|
|
|
stats.song_count = countSongsIn(NULL);
|
|
|
|
stats.song_duration = sumSongTimesIn(NULL);
|
2009-01-04 20:57:06 +01:00
|
|
|
}
|
|
|
|
|
2008-09-08 11:47:57 +02:00
|
|
|
struct visit_data {
|
|
|
|
enum tag_type type;
|
|
|
|
struct strset *set;
|
|
|
|
};
|
|
|
|
|
2008-10-08 10:49:11 +02:00
|
|
|
static int
|
|
|
|
visit_tag_items(struct song *song, void *_data)
|
2008-09-08 11:47:57 +02:00
|
|
|
{
|
|
|
|
const struct visit_data *data = _data;
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
if (song->tag == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = 0; i < (unsigned)song->tag->numOfItems; ++i) {
|
|
|
|
const struct tag_item *item = song->tag->items[i];
|
|
|
|
if (item->type == data->type)
|
|
|
|
strset_add(data->set, item->value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-18 15:22:26 +01:00
|
|
|
static unsigned int
|
|
|
|
getNumberOfTagItems(enum tag_type type)
|
2008-09-08 11:47:57 +02:00
|
|
|
{
|
|
|
|
struct visit_data data = {
|
|
|
|
.type = type,
|
|
|
|
.set = strset_new(),
|
|
|
|
};
|
|
|
|
unsigned int ret;
|
|
|
|
|
2008-10-08 11:07:55 +02:00
|
|
|
db_walk(NULL, visit_tag_items, NULL, &data);
|
2008-09-08 11:47:57 +02:00
|
|
|
|
|
|
|
ret = strset_size(data.set);
|
|
|
|
strset_free(data.set);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-01-18 15:22:26 +01:00
|
|
|
int stats_print(struct client *client)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-09-07 14:02:57 +02:00
|
|
|
client_printf(client,
|
2008-09-08 11:47:57 +02:00
|
|
|
"artists: %u\n"
|
|
|
|
"albums: %u\n"
|
2008-09-07 14:02:57 +02:00
|
|
|
"songs: %i\n"
|
|
|
|
"uptime: %li\n"
|
|
|
|
"playtime: %li\n"
|
|
|
|
"db_playtime: %li\n"
|
|
|
|
"db_update: %li\n",
|
|
|
|
getNumberOfTagItems(TAG_ITEM_ARTIST),
|
|
|
|
getNumberOfTagItems(TAG_ITEM_ALBUM),
|
2009-01-18 15:22:26 +01:00
|
|
|
stats.song_count,
|
|
|
|
time(NULL) - stats.start_time,
|
2008-09-07 14:02:57 +02:00
|
|
|
(long)(getPlayerTotalPlayTime() + 0.5),
|
2009-01-18 15:22:26 +01:00
|
|
|
stats.song_duration,
|
2008-10-08 11:07:55 +02:00
|
|
|
db_get_mtime());
|
2004-02-24 00:41:20 +01:00
|
|
|
return 0;
|
|
|
|
}
|