From 6cc0ae1f3e365015fe219703ccab77b19db4705b Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 24 Jan 2022 08:43:55 +0000 Subject: player: expire sox metadata cache on file st_ctime changes We still need the TTL to deal with fuse.sshfs and maybe other weird FSes which don't return the st_ctime properly. --- lib/dtas/mcache.rb | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/dtas/mcache.rb b/lib/dtas/mcache.rb index 4f1e9e8..e0a39af 100644 --- a/lib/dtas/mcache.rb +++ b/lib/dtas/mcache.rb @@ -13,14 +13,25 @@ class DTAS::Mcache def lookup(infile) bucket = infile.hash & @mask + st = nil if cur = @tbl[bucket] if cur[:infile] == infile && (DTAS.now - cur[:btime]) < @ttl - return cur + begin + st = File.stat(infile) + return cur if cur[:ctime] == st.ctime + rescue + end end end return unless block_given? @tbl[bucket] = begin cur = cur ? cur.clear : {} + begin + st ||= File.stat(infile) + cur[:ctime] = st.ctime + rescue + return + end if ret = yield(infile, cur) ret[:infile] = infile.frozen? ? infile : -(infile.dup) ret[:btime] = DTAS.now -- cgit v1.2.3-24-ge0c7