Sha256: 589aeca1ae1c4dc8b1207c8ba2c87e513d26cbbecb9382175c5533c9b43595e9

Contents?: true

Size: 1.25 KB

Versions: 5

Compression:

Stored size: 1.25 KB

Contents

# frozen_string_literal: true

#
# The TTL store is a data structure which keeps data by a key, and with a time-to-live.
# It is specifically designed for data which is static, i.e. for a certain key in a
# sufficiently large span, the value will be the same.
#
# Because of that, synchronizations around reads do not exist, while write synchronizations
# will be short-circuited by a read.
#
class Rodauth::OAuth::TtlStore
  DEFAULT_TTL = 60 * 60 * 24 # default TTL is one day

  def initialize
    @store_mutex = Mutex.new
    @store = Hash.new {}
  end

  def [](key)
    lookup(key, now)
  end

  def set(key, &block)
    @store_mutex.synchronize do
      # short circuit
      return @store[key][:payload] if @store[key] && @store[key][:ttl] < now

      payload, ttl = block.call
      @store[key] = { payload: payload, ttl: (ttl || (now + DEFAULT_TTL)) }

      @store[key][:payload]
    end
  end

  def uncache(key)
    @store_mutex.synchronize do
      @store.delete(key)
    end
  end

  private

  def now
    Process.clock_gettime(Process::CLOCK_MONOTONIC)
  end

  # do not use directly!
  def lookup(key, ttl)
    return unless @store.key?(key)

    value = @store[key]

    return if value.empty?

    return unless value[:ttl] > ttl

    value[:payload]
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rodauth-oauth-0.3.0 lib/rodauth/oauth/ttl_store.rb
rodauth-oauth-0.2.0 lib/rodauth/oauth/ttl_store.rb
rodauth-oauth-0.1.0 lib/rodauth/oauth/ttl_store.rb
rodauth-oauth-0.0.6 lib/rodauth/oauth/ttl_store.rb
rodauth-oauth-0.0.5 lib/rodauth/oauth/ttl_store.rb