Sha256: 85a6cbc76d3809debc78296958296c3ee4da8e8215694c3c7779c43571f995b2
Contents?: true
Size: 1.83 KB
Versions: 1
Compression:
Stored size: 1.83 KB
Contents
# frozen_string_literal: true module ActiveMemoize class Cache CALLER_METHOD_REGEX ||= /`([^']*)'/.freeze attr_reader :cache def initialize @cache = {} end def [](key) @cache[key] end def []=(key, val) @cache[key] = val end def clear @cache.clear end def delete(key) @cache.delete(key) end # :nocov: def each @cache.each { |key, val| yield(key, val) } end # :nocov: def empty? @cache.empty? end alias_method :blank?, :empty? def key?(key) @cache.key?(key) end alias_method :hit?, :key? def keys @cache.keys end def merge!(hash) @cache.merge!(hash) end def memoize(method_name = nil, &block) method_locals = caller_locals(block) method_name ||= caller_method method_name = "#{caller_method}:#{method_locals}" unless method_locals.nil? return @cache[method_name] if @cache.key?(method_name) @cache[method_name] = yield(block) end def present? !blank? end alias_method :hits?, :present? def size @cache.size end def to_hash @cache end alias_method :as_json, :to_hash alias_method :hits, :to_hash def values @cache.values end private # rubocop:disable Metrics/LineLength def caller_locals(block) local_vars = block.binding.local_variables local_vars = local_vars.flat_map { |name| [name, block.binding.local_variable_get(name)].join('=') } return if local_vars.empty? local_vars.join(',') end # rubocop:enable Metrics/LineLength def caller_method val = caller(2..2).first[CALLER_METHOD_REGEX, 1] return val unless val.include?('<top (required)>') caller(1..1).first[CALLER_METHOD_REGEX, 1] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
active_memoize-1.1.0 | lib/active_memoize/cache.rb |