]> kaliko git repositories - mpd-sima.git/commitdiff
Improved ETag support, add some stats
authorkaliko <efrim@azylum.org>
Fri, 21 Feb 2014 22:26:59 +0000 (23:26 +0100)
committerkaliko <efrim@azylum.org>
Fri, 21 Feb 2014 22:34:43 +0000 (23:34 +0100)
sima/lib/cache.py
sima/lib/http.py
sima/lib/simaecho.py
sima/lib/simafm.py
sima/plugins/internal/echonest.py

index ebed3fcb3977bf12741163ff35c4a50f25e27f11..d7175617c171849dfcef0a4a47a93a8072707f09 100644 (file)
@@ -23,7 +23,6 @@ dictionary, which in turns means it is not threadsafe for writing.
 """
 
 import os
-import base64
 import codecs
 
 from hashlib import md5
@@ -93,3 +92,9 @@ class FileCache:
     def delete(self, key):
         if not self.forever:
             os.remove(self._fn(key))
+
+    def __iter__(self):
+        for dirpath, dirnames, filenames in os.walk(self.directory):
+            for item in filenames:
+                name = os.path.join(dirpath, item)
+                yield load(codecs.open(name, 'rb'))
index 8dbfe0de804de1b47045d852cb8427ed610f83b6..c07ad38e7bd96576a1fe2c972653d6c157e74c1e 100644 (file)
@@ -58,8 +58,6 @@ class CacheController(object):
         if not path:
             path = "/"
 
-        # Order of params might changed
-        query = ''.join(sorted(query.split('&')))
         # Could do syntax based normalization of the URI before
         # computing the digest. See Section 6.2.2 of Std 66.
         request_uri = query and "?".join([path, query]) or path
index 27bbce2d0f122f8952438aafbf2979538a616f37..2706513b47c5f8d0ad2114ed316769fa493b2774 100644 (file)
@@ -50,7 +50,10 @@ class SimaEch:
     ratelimit = None
     name = 'EchoNest'
     cache = False
-    stats = {'304':0, 'cached':0, 'minrl':'120'}
+    stats = {'etag':0,
+            'ccontrol':0,
+            'minrl':120,
+            'total':0}
 
     def __init__(self):
         self.controller = CacheController(self.cache)
@@ -62,10 +65,11 @@ class SimaEch:
         """
         req = Request('GET', ressource, params=payload,
                       ).prepare()
+        SimaEch.stats.update(total=SimaEch.stats.get('total')+1)
         if self.cache:
             cached_response = self.controller.cached_request(req.url, req.headers)
             if cached_response:
-                SimaEch.stat.update(cached=SimaEch.stat.get('cached')+1)
+                SimaEch.stats.update(ccontrol=SimaEch.stats.get('ccontrol')+1)
                 return cached_response.json()
         try:
             return self._fetch_ws(req)
@@ -81,14 +85,14 @@ class SimaEch:
         sess = Session()
         resp = sess.send(prepreq, timeout=SOCKET_TIMEOUT)
         if resp.status_code == 304:
-            SimaEch.stats.update({'304':SimaEch.stats.get('304')+1})
+            SimaEch.stats.update(etag=SimaEch.stats.get('etag')+1)
             resp = self.controller.update_cached_response(prepreq, resp)
         elif resp.status_code != 200:
             raise WSHTTPError('{0.status_code}: {0.reason}'.format(resp))
         ans = resp.json()
         self._controls_answer(ans)
         SimaEch.ratelimit = resp.headers.get('x-ratelimit-remaining', None)
-        minrl = min(SimaEch.ratelimit, SimaEch.stats.get('minrl'))
+        minrl = min(int(SimaEch.ratelimit), SimaEch.stats.get('minrl'))
         SimaEch.stats.update(minrl=minrl)
         if self.cache:
             self.controller.cache_response(resp.request, resp)
@@ -127,7 +131,9 @@ class SimaEch:
                 payload.update(artist=name)
             payload.update(results=100)
             payload.update(sort='song_hotttnesss-desc')
-        return payload
+        # > hashing the URL into a cache key
+        # return a sorted list of 2-tuple to have consistent cache
+        return sorted(payload.items(), key=lambda param: param[0])
 
     def get_similar(self, artist=None):
         """Fetch similar artists
index f54ab015e99a57a01ddded9e58db83a711795ac9..cc70cf7bcac4d0989dbb992425be4c6c37ccc1f2 100644 (file)
@@ -120,7 +120,9 @@ class SimaFM:
         payload.update(results=100)
         if method == 'track':
             payload.update(track=track)
-        return payload
+        # > hashing the URL into a cache key
+        # return a sorted list of 2-tuple to have consistent cache
+        return sorted(payload.items(), key=lambda param: param[0])
 
     def get_similar(self, artist=None):
         """Fetch similar artists
index ad3a6f9d25967744c798bdeaa968d8dfec1bdcde..1c0b1f791a974ff1427d2938bbcd084d89696b2d 100644 (file)
@@ -43,5 +43,12 @@ class EchoNest(WebService):
         SimaEch.cache = FileCache(join(vardir, 'http'))
         self.ws = SimaEch
 
+    def callback_playlist(self):
+        if self.player.state != 'play':
+            return
+        msg = 'ETag:{etag:>3d}, Cache-Control:{ccontrol:>3d},'
+        msg += 'total:{total:>3d}, min(rate-limit):{minrl:>3d}'
+        self.log.debug(msg.format(**SimaEch.stats))
+
 # VIM MODLINE
 # vim: ai ts=4 sw=4 sts=4 expandtab