From efd81f4f6be4e91225aa893787d4ede84b46ed5e Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 26 Dec 2016 23:04:57 +0000 Subject: introduce mcache class for caching audio metadata We often waste cycles rerunning commands we don't need to run frequently. Introduce a short term cache for these. --- lib/dtas/mcache.rb | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 lib/dtas/mcache.rb (limited to 'lib') diff --git a/lib/dtas/mcache.rb b/lib/dtas/mcache.rb new file mode 100644 index 0000000..b638a23 --- /dev/null +++ b/lib/dtas/mcache.rb @@ -0,0 +1,31 @@ +# Copyright (C) 2016 all contributors +# License: GPL-3.0+ +# frozen_string_literal: true +# encoding: binary +require_relative '../dtas' + +class DTAS::Mcache + def initialize(shift = 8, ttl = 60) + @mask = (1 << shift) - 1 + @ttl = ttl + @tbl = [] + end + + def lookup(infile) + bucket = infile.hash & @mask + if cur = @tbl[bucket] + if cur[:infile] == infile && (DTAS.now - cur[:btime]) < @ttl + return cur + end + end + return unless block_given? + @tbl[bucket] = begin + cur = cur ? cur.clear : {} + if ret = yield(infile, cur) + ret[:infile] = infile.frozen? ? infile : infile.dup.freeze + ret[:btime] = DTAS.now + end + ret + end + end +end -- cgit v1.2.3-24-ge0c7