/lastfm-java/src/net/roarsoftware/lastfm/cache/DefaultExpirationPolicy.java

http://pmix.googlecode.com/ · Java · 77 lines · 41 code · 10 blank · 26 comment · 3 complexity · 4379c7edef84047bc20dfcdaea101881 MD5 · raw file

  1. package net.roarsoftware.lastfm.cache;
  2. import java.util.HashSet;
  3. import java.util.Map;
  4. import java.util.Set;
  5. /**
  6. * This Policy maintains a list of methods which should be cached one week. Everything else won't be cached if
  7. * using this policy.
  8. *
  9. * @author Janni Kovacs
  10. */
  11. public class DefaultExpirationPolicy implements ExpirationPolicy {
  12. /**
  13. * One day in milliseconds
  14. */
  15. protected static final long ONE_DAY = 1000 * 60 * 60 * 24;
  16. /**
  17. * One week in milliseconds
  18. */
  19. protected static final long ONE_WEEK = ONE_DAY * 7;
  20. /**
  21. * Contains method names for all requests that should be cached 1 week
  22. */
  23. protected static final Set<String> ONE_WEEK_METHODS = new HashSet<String>();
  24. static {
  25. // similar data
  26. ONE_WEEK_METHODS.add("artist.getsimilar");
  27. ONE_WEEK_METHODS.add("tag.getsimilar");
  28. ONE_WEEK_METHODS.add("track.getsimilar");
  29. // top chart data
  30. ONE_WEEK_METHODS.add("artist.gettopalbums");
  31. ONE_WEEK_METHODS.add("artist.gettoptracks");
  32. ONE_WEEK_METHODS.add("geo.gettopartists");
  33. ONE_WEEK_METHODS.add("geo.gettoptracks");
  34. ONE_WEEK_METHODS.add("tag.gettopalbums");
  35. ONE_WEEK_METHODS.add("tag.gettopartists");
  36. ONE_WEEK_METHODS.add("tag.gettoptags");
  37. ONE_WEEK_METHODS.add("tag.gettoptracks");
  38. ONE_WEEK_METHODS.add("user.gettopalbums");
  39. ONE_WEEK_METHODS.add("user.gettopartists");
  40. ONE_WEEK_METHODS.add("user.gettoptracks");
  41. ONE_WEEK_METHODS.add("user.gettoptags");
  42. }
  43. /**
  44. * Contains the expiration time for weekly chart data for the current week, which is
  45. * one week by default; last.fm TOS says:
  46. * "You agree to cache similar artist and any chart data (top tracks, top artists, top albums) for a minimum of one week."
  47. * but they might be outdated the next day.
  48. * For now we will cache them one week. If you always need the latest charts but don't want to disable
  49. * caching use the {@link #setCacheRecentWeeklyCharts(long)} method to set this value.
  50. * This variable also applies to the getWeeklyChartList method
  51. */
  52. protected long cacheRecentWeeklyCharts = ONE_WEEK;
  53. public long getExpirationTime(String method, Map<String, String> params) {
  54. method = method.toLowerCase();
  55. if (method.contains("weekly")) {
  56. if (!method.contains("list"))
  57. return params.containsKey("to") && params
  58. .containsKey("from") ? Long.MAX_VALUE : cacheRecentWeeklyCharts;
  59. else
  60. return cacheRecentWeeklyCharts;
  61. }
  62. return ONE_WEEK_METHODS.contains(method) ? ONE_WEEK : -1;
  63. }
  64. public void setCacheRecentWeeklyCharts(long cacheRecentWeeklyCharts) {
  65. this.cacheRecentWeeklyCharts = cacheRecentWeeklyCharts;
  66. }
  67. }