2006-10-19 09:42:58 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-10-07 18:39:44 +00:00
|
|
|
* Copyright (C) 2006-2008 Robert Keevil
|
2006-10-19 09:42:58 +00:00
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* 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.
|
2006-10-19 09:42:58 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
/*
|
|
|
|
Audioscrobbler spec at:
|
|
|
|
http://www.audioscrobbler.net/wiki/Portable_Player_Logging
|
|
|
|
*/
|
|
|
|
|
2010-05-06 21:04:40 +00:00
|
|
|
#include <stdio.h>
|
2010-06-21 16:53:00 +00:00
|
|
|
#include <config.h>
|
2006-10-19 09:42:58 +00:00
|
|
|
#include "file.h"
|
|
|
|
#include "logf.h"
|
2008-10-15 06:38:51 +00:00
|
|
|
#include "metadata.h"
|
2006-10-19 09:42:58 +00:00
|
|
|
#include "kernel.h"
|
|
|
|
#include "audio.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "settings.h"
|
2007-02-11 05:34:14 +00:00
|
|
|
#include "ata_idle_notify.h"
|
2010-08-01 16:15:27 +00:00
|
|
|
#include "filefuncs.h"
|
2008-10-16 10:38:03 +00:00
|
|
|
#include "appevents.h"
|
2006-10-19 09:42:58 +00:00
|
|
|
|
2007-03-16 23:47:03 +00:00
|
|
|
#if CONFIG_RTC
|
2006-10-19 09:42:58 +00:00
|
|
|
#include "time.h"
|
|
|
|
#include "timefuncs.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "scrobbler.h"
|
|
|
|
|
2008-10-07 18:39:44 +00:00
|
|
|
#define SCROBBLER_VERSION "1.1"
|
2006-10-19 09:42:58 +00:00
|
|
|
|
|
|
|
/* increment this on any code change that effects output */
|
2006-10-19 10:25:10 +00:00
|
|
|
#define SCROBBLER_REVISION " $Revision$"
|
2006-10-19 09:42:58 +00:00
|
|
|
|
|
|
|
#define SCROBBLER_MAX_CACHE 32
|
|
|
|
/* longest entry I've had is 323, add a safety margin */
|
|
|
|
#define SCROBBLER_CACHE_LEN 512
|
|
|
|
|
|
|
|
static char* scrobbler_cache;
|
|
|
|
|
|
|
|
static int cache_pos;
|
|
|
|
static struct mp3entry scrobbler_entry;
|
|
|
|
static bool pending = false;
|
|
|
|
static bool scrobbler_initialised = false;
|
2007-03-16 23:47:03 +00:00
|
|
|
#if CONFIG_RTC
|
2006-10-19 09:42:58 +00:00
|
|
|
static time_t timestamp;
|
|
|
|
#else
|
|
|
|
static unsigned long timestamp;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Crude work-around for Archos Sims - return a set amount */
|
2010-06-21 16:53:00 +00:00
|
|
|
#if (CONFIG_CODEC != SWCODEC) && (CONFIG_PLATFORM & PLATFORM_HOSTED)
|
2009-10-31 19:57:52 +00:00
|
|
|
unsigned long audio_prev_elapsed(void)
|
2006-10-19 09:42:58 +00:00
|
|
|
{
|
|
|
|
return 120000;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-15 21:13:03 +00:00
|
|
|
static void get_scrobbler_filename(char *path, size_t size)
|
|
|
|
{
|
|
|
|
int used;
|
|
|
|
|
|
|
|
#if CONFIG_RTC
|
|
|
|
const char *base_filename = ".scrobbler.log";
|
|
|
|
#else
|
|
|
|
const char *base_filename = ".scrobbler-timeless.log";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Get location of USB mass storage area */
|
2011-02-15 21:32:53 +00:00
|
|
|
#ifdef APPLICATION
|
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_MAEMO)
|
2011-02-15 21:13:03 +00:00
|
|
|
used = snprintf(path, size, "/home/user/MyDocs/%s", base_filename);
|
2011-02-15 21:32:53 +00:00
|
|
|
#elif (CONFIG_PLATFORM & PLATFORM_ANDROID)
|
2011-02-15 21:13:03 +00:00
|
|
|
used = snprintf(path, size, "/sdcard/%s", base_filename);
|
2011-02-15 21:32:53 +00:00
|
|
|
#else /* SDL/unknown RaaA build */
|
2011-02-15 21:13:03 +00:00
|
|
|
used = snprintf(path, size, "%s/%s", ROCKBOX_DIR, base_filename);
|
2011-02-15 21:32:53 +00:00
|
|
|
#endif /* (CONFIG_PLATFORM & PLATFORM_MAEMO) */
|
|
|
|
|
2011-02-15 21:13:03 +00:00
|
|
|
#else
|
|
|
|
used = snprintf(path, size, "/%s", base_filename);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (used >= (int)size)
|
|
|
|
{
|
|
|
|
logf("SCROBBLER: not enough buffer space for log file");
|
|
|
|
memset(path, 0, size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-19 09:42:58 +00:00
|
|
|
static void write_cache(void)
|
|
|
|
{
|
|
|
|
int i;
|
2008-04-15 18:10:22 +00:00
|
|
|
int fd;
|
2006-10-19 09:42:58 +00:00
|
|
|
|
2011-02-15 21:13:03 +00:00
|
|
|
char scrobbler_file[MAX_PATH];
|
|
|
|
get_scrobbler_filename(scrobbler_file, MAX_PATH);
|
|
|
|
|
2006-10-19 09:42:58 +00:00
|
|
|
/* If the file doesn't exist, create it.
|
|
|
|
Check at each write since file may be deleted at any time */
|
2011-02-15 21:13:03 +00:00
|
|
|
if(!file_exists(scrobbler_file))
|
2006-10-19 09:42:58 +00:00
|
|
|
{
|
2011-02-15 21:13:03 +00:00
|
|
|
fd = open(scrobbler_file, O_RDWR | O_CREAT, 0666);
|
2008-04-15 18:10:22 +00:00
|
|
|
if(fd >= 0)
|
2006-10-19 09:42:58 +00:00
|
|
|
{
|
2008-04-15 18:10:22 +00:00
|
|
|
fdprintf(fd, "#AUDIOSCROBBLER/" SCROBBLER_VERSION "\n"
|
|
|
|
"#TZ/UNKNOWN\n"
|
2007-03-16 23:47:03 +00:00
|
|
|
#if CONFIG_RTC
|
2008-04-15 18:10:22 +00:00
|
|
|
"#CLIENT/Rockbox " TARGET_NAME SCROBBLER_REVISION "\n");
|
2006-10-19 09:42:58 +00:00
|
|
|
#else
|
2008-04-15 18:10:22 +00:00
|
|
|
"#CLIENT/Rockbox " TARGET_NAME SCROBBLER_REVISION " Timeless\n");
|
2006-10-19 09:42:58 +00:00
|
|
|
#endif
|
2008-04-15 18:10:22 +00:00
|
|
|
|
|
|
|
close(fd);
|
2006-10-19 09:42:58 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
logf("SCROBBLER: cannot create log file");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* write the cache entries */
|
2011-02-15 21:13:03 +00:00
|
|
|
fd = open(scrobbler_file, O_WRONLY | O_APPEND);
|
2008-04-15 18:10:22 +00:00
|
|
|
if(fd >= 0)
|
2006-10-19 09:42:58 +00:00
|
|
|
{
|
|
|
|
logf("SCROBBLER: writing %d entries", cache_pos);
|
|
|
|
|
|
|
|
for ( i=0; i < cache_pos; i++ )
|
|
|
|
{
|
|
|
|
logf("SCROBBLER: write %d", i);
|
2008-04-15 18:10:22 +00:00
|
|
|
fdprintf(fd, "%s", scrobbler_cache+(SCROBBLER_CACHE_LEN*i));
|
2006-10-19 09:42:58 +00:00
|
|
|
}
|
2008-04-15 18:10:22 +00:00
|
|
|
close(fd);
|
2006-10-19 09:42:58 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
logf("SCROBBLER: error writing file");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* clear even if unsuccessful - don't want to overflow the buffer */
|
|
|
|
cache_pos = 0;
|
|
|
|
}
|
|
|
|
|
2009-10-20 21:54:44 +00:00
|
|
|
static void scrobbler_flush_callback(void *data)
|
2007-02-11 05:34:14 +00:00
|
|
|
{
|
2009-10-20 21:54:44 +00:00
|
|
|
(void)data;
|
2007-02-11 05:34:14 +00:00
|
|
|
if (scrobbler_initialised && cache_pos)
|
|
|
|
write_cache();
|
|
|
|
}
|
|
|
|
|
2007-06-24 18:46:04 +00:00
|
|
|
static void add_to_cache(unsigned long play_length)
|
2006-10-19 09:42:58 +00:00
|
|
|
{
|
|
|
|
if ( cache_pos >= SCROBBLER_MAX_CACHE )
|
|
|
|
write_cache();
|
|
|
|
|
|
|
|
int ret;
|
|
|
|
char rating = 'S'; /* Skipped */
|
|
|
|
|
|
|
|
logf("SCROBBLER: add_to_cache[%d]", cache_pos);
|
|
|
|
|
2007-06-24 18:46:04 +00:00
|
|
|
if ( play_length > (scrobbler_entry.length/2) )
|
2006-10-19 09:42:58 +00:00
|
|
|
rating = 'L'; /* Listened */
|
|
|
|
|
|
|
|
if (scrobbler_entry.tracknum > 0)
|
|
|
|
{
|
|
|
|
ret = snprintf(scrobbler_cache+(SCROBBLER_CACHE_LEN*cache_pos),
|
|
|
|
SCROBBLER_CACHE_LEN,
|
2008-10-07 18:39:44 +00:00
|
|
|
"%s\t%s\t%s\t%d\t%d\t%c\t%ld\t%s\n",
|
2006-10-19 09:42:58 +00:00
|
|
|
scrobbler_entry.artist,
|
|
|
|
scrobbler_entry.album?scrobbler_entry.album:"",
|
|
|
|
scrobbler_entry.title,
|
|
|
|
scrobbler_entry.tracknum,
|
|
|
|
(int)scrobbler_entry.length/1000,
|
|
|
|
rating,
|
2008-10-07 18:39:44 +00:00
|
|
|
(long)timestamp,
|
|
|
|
scrobbler_entry.mb_track_id?scrobbler_entry.mb_track_id:"");
|
2006-10-19 09:42:58 +00:00
|
|
|
} else {
|
|
|
|
ret = snprintf(scrobbler_cache+(SCROBBLER_CACHE_LEN*cache_pos),
|
|
|
|
SCROBBLER_CACHE_LEN,
|
2008-10-07 18:39:44 +00:00
|
|
|
"%s\t%s\t%s\t\t%d\t%c\t%ld\t%s\n",
|
2006-10-19 09:42:58 +00:00
|
|
|
scrobbler_entry.artist,
|
|
|
|
scrobbler_entry.album?scrobbler_entry.album:"",
|
|
|
|
scrobbler_entry.title,
|
|
|
|
(int)scrobbler_entry.length/1000,
|
|
|
|
rating,
|
2008-10-07 18:39:44 +00:00
|
|
|
(long)timestamp,
|
|
|
|
scrobbler_entry.mb_track_id?scrobbler_entry.mb_track_id:"");
|
2006-10-19 09:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( ret >= SCROBBLER_CACHE_LEN )
|
|
|
|
{
|
|
|
|
logf("SCROBBLER: entry too long:");
|
|
|
|
logf("SCROBBLER: %s", scrobbler_entry.path);
|
2007-02-11 05:34:14 +00:00
|
|
|
} else {
|
2006-10-19 09:42:58 +00:00
|
|
|
cache_pos++;
|
2008-11-01 16:14:28 +00:00
|
|
|
register_storage_idle_func(scrobbler_flush_callback);
|
2007-02-11 05:34:14 +00:00
|
|
|
}
|
|
|
|
|
2006-10-19 09:42:58 +00:00
|
|
|
}
|
|
|
|
|
2009-10-20 21:54:44 +00:00
|
|
|
static void scrobbler_change_event(void *data)
|
2006-10-19 09:42:58 +00:00
|
|
|
{
|
2009-10-20 21:54:44 +00:00
|
|
|
struct mp3entry *id = (struct mp3entry*)data;
|
2006-10-19 09:42:58 +00:00
|
|
|
/* add entry using the previous scrobbler_entry and timestamp */
|
|
|
|
if (pending)
|
2007-06-24 18:46:04 +00:00
|
|
|
add_to_cache(audio_prev_elapsed());
|
2006-10-19 09:42:58 +00:00
|
|
|
|
|
|
|
/* check if track was resumed > %50 played
|
|
|
|
check for blank artist or track name */
|
|
|
|
if ((id->elapsed > (id->length/2)) ||
|
|
|
|
(!id->artist ) || (!id->title ) )
|
|
|
|
{
|
|
|
|
pending = false;
|
|
|
|
logf("SCROBBLER: skipping file %s", id->path);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
logf("SCROBBLER: add pending");
|
|
|
|
copy_mp3entry(&scrobbler_entry, id);
|
2007-03-16 23:47:03 +00:00
|
|
|
#if CONFIG_RTC
|
2006-10-19 09:42:58 +00:00
|
|
|
timestamp = mktime(get_time());
|
|
|
|
#else
|
|
|
|
timestamp = 0;
|
|
|
|
#endif
|
|
|
|
pending = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int scrobbler_init(void)
|
|
|
|
{
|
|
|
|
logf("SCROBBLER: init %d", global_settings.audioscrobbler);
|
2007-06-24 18:46:04 +00:00
|
|
|
|
2006-10-19 09:42:58 +00:00
|
|
|
if(!global_settings.audioscrobbler)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
scrobbler_cache = buffer_alloc(SCROBBLER_MAX_CACHE*SCROBBLER_CACHE_LEN);
|
|
|
|
|
2008-03-17 05:22:53 +00:00
|
|
|
add_event(PLAYBACK_EVENT_TRACK_CHANGE, false, scrobbler_change_event);
|
2006-10-19 09:42:58 +00:00
|
|
|
cache_pos = 0;
|
|
|
|
pending = false;
|
|
|
|
scrobbler_initialised = true;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void scrobbler_flush_cache(void)
|
|
|
|
{
|
|
|
|
if (scrobbler_initialised)
|
|
|
|
{
|
|
|
|
/* Add any pending entries to the cache */
|
|
|
|
if(pending)
|
2007-06-24 18:46:04 +00:00
|
|
|
add_to_cache(audio_prev_elapsed());
|
|
|
|
|
2006-10-19 09:42:58 +00:00
|
|
|
/* Write the cache to disk if needed */
|
|
|
|
if (cache_pos)
|
|
|
|
write_cache();
|
|
|
|
|
|
|
|
pending = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void scrobbler_shutdown(void)
|
|
|
|
{
|
|
|
|
scrobbler_flush_cache();
|
2007-06-24 18:46:04 +00:00
|
|
|
|
2006-10-19 09:42:58 +00:00
|
|
|
if (scrobbler_initialised)
|
|
|
|
{
|
2008-03-16 13:55:16 +00:00
|
|
|
remove_event(PLAYBACK_EVENT_TRACK_CHANGE, scrobbler_change_event);
|
2006-10-19 09:42:58 +00:00
|
|
|
scrobbler_initialised = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-24 18:46:04 +00:00
|
|
|
void scrobbler_poweroff(void)
|
|
|
|
{
|
|
|
|
if (scrobbler_initialised && pending)
|
|
|
|
{
|
|
|
|
if ( audio_status() )
|
|
|
|
add_to_cache(audio_current_track()->elapsed);
|
|
|
|
else
|
|
|
|
add_to_cache(audio_prev_elapsed());
|
|
|
|
|
|
|
|
/* scrobbler_shutdown is called later, the cache will be written
|
|
|
|
* make sure the final track isn't added twice when that happens */
|
|
|
|
pending = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-19 09:42:58 +00:00
|
|
|
bool scrobbler_is_enabled(void)
|
|
|
|
{
|
|
|
|
return scrobbler_initialised;
|
|
|
|
}
|