2018-02-28 10:39:15 -05:00
|
|
|
require "json"
|
|
|
|
|
|
|
|
#
|
2018-05-22 14:46:14 +01:00
|
|
|
# `CacheStoreDatabase` acts as an interface to a persistent storage mechanism
|
2018-02-28 10:39:15 -05:00
|
|
|
# residing in the `HOMEBREW_CACHE`
|
|
|
|
#
|
2018-05-22 14:46:14 +01:00
|
|
|
class CacheStoreDatabase
|
|
|
|
# Yields the cache store database.
|
|
|
|
# Closes the database after use if it has been loaded.
|
|
|
|
#
|
|
|
|
# @param [Symbol] type
|
|
|
|
# @yield [CacheStoreDatabase] self
|
|
|
|
def self.use(type)
|
|
|
|
database = CacheStoreDatabase.new(type)
|
|
|
|
return_value = yield(database)
|
|
|
|
database.close_if_open!
|
|
|
|
return_value
|
|
|
|
end
|
|
|
|
|
|
|
|
# Sets a value in the underlying database (and creates it if necessary).
|
|
|
|
def set(key, value)
|
|
|
|
db[key] = value
|
|
|
|
end
|
|
|
|
|
|
|
|
# Gets a value from the underlying database (if it already exists).
|
|
|
|
def get(key)
|
|
|
|
return unless created?
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2018-05-22 14:46:14 +01:00
|
|
|
db[key]
|
|
|
|
end
|
|
|
|
|
|
|
|
# Gets a value from the underlying database (if it already exists).
|
|
|
|
def delete(key)
|
|
|
|
return unless created?
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2018-05-22 14:46:14 +01:00
|
|
|
db.delete(key)
|
|
|
|
end
|
|
|
|
|
2018-09-25 20:19:30 +01:00
|
|
|
# Closes the underlying database (if it is created and open).
|
2018-05-22 14:46:14 +01:00
|
|
|
def close_if_open!
|
2018-09-25 20:19:30 +01:00
|
|
|
return unless @db
|
|
|
|
cache_path.atomic_write(JSON.dump(@db))
|
2018-05-22 14:46:14 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
# Returns `true` if the cache file has been created for the given `@type`
|
|
|
|
#
|
|
|
|
# @return [Boolean]
|
|
|
|
def created?
|
2018-09-20 10:57:27 +01:00
|
|
|
cache_path.exist?
|
2018-05-22 14:46:14 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-05-18 16:37:01 -04:00
|
|
|
# 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
|
|
|
|
#
|
2018-09-25 20:19:30 +01:00
|
|
|
# @return [Hash] db
|
2018-05-18 16:37:01 -04:00
|
|
|
def db
|
2018-06-21 13:59:07 +01:00
|
|
|
@db ||= begin
|
2018-09-25 20:19:30 +01:00
|
|
|
JSON.parse(cache_path.read) if created?
|
|
|
|
rescue JSON::ParserError
|
|
|
|
nil
|
2018-06-21 13:59:07 +01:00
|
|
|
end
|
2018-09-25 20:19:30 +01:00
|
|
|
@db ||= {}
|
2018-05-18 16:37:01 -04:00
|
|
|
end
|
|
|
|
|
2018-05-22 14:46:14 +01:00
|
|
|
# Creates a CacheStoreDatabase
|
2018-02-28 10:39:15 -05:00
|
|
|
#
|
2018-05-18 16:37:01 -04:00
|
|
|
# @param [Symbol] type
|
2018-02-28 10:39:15 -05:00
|
|
|
# @return [nil]
|
2018-05-18 16:37:01 -04:00
|
|
|
def initialize(type)
|
|
|
|
@type = type
|
|
|
|
end
|
|
|
|
|
|
|
|
# The path where the database resides in the `HOMEBREW_CACHE` for the given
|
|
|
|
# `@type`
|
|
|
|
#
|
|
|
|
# @return [String]
|
|
|
|
def cache_path
|
2018-09-25 20:19:30 +01:00
|
|
|
HOMEBREW_CACHE/"#{@type}.json"
|
2018-02-28 10:39:15 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# `CacheStore` provides methods to mutate and fetch data from a persistent
|
|
|
|
# storage mechanism
|
|
|
|
#
|
|
|
|
class CacheStore
|
2018-05-22 14:46:14 +01:00
|
|
|
# @param [CacheStoreDatabase] database
|
2018-02-28 10:39:15 -05:00
|
|
|
# @return [nil]
|
2018-05-22 14:46:14 +01:00
|
|
|
def initialize(database)
|
|
|
|
@database = database
|
2018-02-28 10:39:15 -05:00
|
|
|
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
|
|
|
|
|
2018-05-22 14:46:14 +01:00
|
|
|
# @return [CacheStoreDatabase]
|
|
|
|
attr_reader :database
|
2018-02-28 10:39:15 -05:00
|
|
|
end
|