brew/Library/Homebrew/cache_store.rb

129 lines
3.1 KiB
Ruby
Raw Normal View History

require "dbm"
require "json"
#
# `DatabaseCache` acts as an interface to a persistent storage mechanism
# residing in the `HOMEBREW_CACHE`
#
class DatabaseCache
# The mode of any created files will be 0664 (that is, readable and writable
# by the owner and the group, and readable by everyone else). Files created
# will also be modified by the process' umask value at the time of creation:
# https://docs.oracle.com/cd/E17276_01/html/api_reference/C/envopen.html
DATABASE_MODE = 0664
def self.use(type)
return_value = nil
DatabaseCache.new(type) do |database_cache|
return_value = yield(database_cache)
end
return_value
end
# Lazily loaded database in read/write mode. If this method is called, a
# database file with be created in the `HOMEBREW_CACHE` with name
# corresponding to the `@type` instance variable
#
# @return [DBM] db
def db
# DBM::WRCREAT: Creates the database if it does not already exist
@db ||= DBM.open(dbm_file_path, DATABASE_MODE, DBM::WRCREAT)
end
# Returns `true` if the cache is empty for the given `@type`
#
# @return [Boolean]
def empty?
!File.exist?(cache_path)
end
private
# Opens and yields the cache. Closes the database after use if it has been
# loaded
#
# @param [Symbol] type
# @yield [DatabaseCache] self
# @return [nil]
def initialize(type)
@type = type
yield(self)
@db&.close
end
# `DBM` appends `.db` file extension to the path provided, which is why it's
# not included
#
# @return [String]
def dbm_file_path
File.join(HOMEBREW_CACHE, @type.to_s)
end
# The path where the database resides in the `HOMEBREW_CACHE` for the given
# `@type`
#
# @return [String]
def cache_path
"#{dbm_file_path}.db"
end
end
#
# `CacheStore` provides methods to mutate and fetch data from a persistent
# storage mechanism
#
class CacheStore
# @param [DBM] db
# @return [nil]
def initialize(db)
@db = db
end
# Inserts new values or updates existing cached values to persistent storage
# mechanism
#
# @abstract
def update!(*)
raise NotImplementedError
end
# Fetches cached values in persistent storage according to the type of data
# stored
#
# @abstract
def fetch_type(*)
raise NotImplementedError
end
# Deletes data from the cache based on a condition defined in a concrete class
#
# @abstract
def flush_cache!
raise NotImplementedError
end
protected
# @return [DBM]
attr_reader :db
# DBM stores ruby objects as a ruby `String`. Hence, when fetching the data,
# to convert the ruby string back into a ruby `Hash`, the string is converted
# into a JSON compatible string in `ruby_hash_to_json_string`, where it may
# later be parsed by `JSON.parse` in the `json_string_to_ruby_hash` method
#
# @param [Hash] ruby `Hash` to be converted to `JSON` string
# @return [String]
def ruby_hash_to_json_string(hash)
hash.to_json
end
# @param [String] `JSON` string to be converted to ruby `Hash`
# @return [Hash]
def json_string_to_ruby_hash(string)
JSON.parse(string)
end
end