
This improves the load time of most brew commands. For an example of one of the simplest commands this speeds up: Without Bootsnap: ``` $ hyperfine 'git checkout master; brew help' 'git checkout optimise_requires; brew help' Benchmark 1: git checkout master; brew help Time (mean ± σ): 525.0 ms ± 35.8 ms [User: 229.9 ms, System: 113.1 ms] Range (min … max): 465.3 ms … 576.6 ms 10 runs Benchmark 2: git checkout optimise_requires; brew help Time (mean ± σ): 383.3 ms ± 25.1 ms [User: 133.0 ms, System: 72.1 ms] Range (min … max): 353.0 ms … 443.6 ms 10 runs Summary git checkout optimise_requires; brew help ran 1.37 ± 0.13 times faster than git checkout master; brew help ``` With Bootsnap: ``` $ hyperfine 'git checkout master; brew help' 'git checkout optimise_requires; brew help' Benchmark 1: git checkout master; brew help Time (mean ± σ): 386.0 ms ± 30.9 ms [User: 130.2 ms, System: 93.8 ms] Range (min … max): 359.5 ms … 469.3 ms 10 runs Benchmark 2: git checkout optimise_requires; brew help Time (mean ± σ): 330.2 ms ± 32.4 ms [User: 93.4 ms, System: 73.0 ms] Range (min … max): 302.9 ms … 413.9 ms 10 runs Summary git checkout optimise_requires; brew help ran 1.17 ± 0.15 times faster than git checkout master; brew help ```
198 lines
5.9 KiB
Ruby
198 lines
5.9 KiB
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
require "livecheck/constants"
|
|
require "cask/cask"
|
|
|
|
# The {Livecheck} class implements the DSL methods used in a formula's, cask's
|
|
# or resource's `livecheck` block and stores related instance variables. Most
|
|
# of these methods also return the related instance variable when no argument
|
|
# is provided.
|
|
#
|
|
# This information is used by the `brew livecheck` command to control its
|
|
# behavior. Example `livecheck` blocks can be found in the
|
|
# [`brew livecheck` documentation](https://docs.brew.sh/Brew-Livecheck).
|
|
class Livecheck
|
|
extend Forwardable
|
|
|
|
# A very brief description of why the formula/cask/resource is skipped (e.g.
|
|
# `No longer developed or maintained`).
|
|
sig { returns(T.nilable(String)) }
|
|
attr_reader :skip_msg
|
|
|
|
sig { params(package_or_resource: T.any(Cask::Cask, T.class_of(Formula), Resource)).void }
|
|
def initialize(package_or_resource)
|
|
@package_or_resource = package_or_resource
|
|
@referenced_cask_name = T.let(nil, T.nilable(String))
|
|
@referenced_formula_name = T.let(nil, T.nilable(String))
|
|
@regex = T.let(nil, T.nilable(Regexp))
|
|
@skip = T.let(false, T::Boolean)
|
|
@skip_msg = T.let(nil, T.nilable(String))
|
|
@strategy = T.let(nil, T.nilable(Symbol))
|
|
@strategy_block = T.let(nil, T.nilable(Proc))
|
|
@throttle = T.let(nil, T.nilable(Integer))
|
|
@url = T.let(nil, T.any(NilClass, String, Symbol))
|
|
end
|
|
|
|
# Sets the `@referenced_cask_name` instance variable to the provided `String`
|
|
# or returns the `@referenced_cask_name` instance variable when no argument
|
|
# is provided. Inherited livecheck values from the referenced cask
|
|
# (e.g. regex) can be overridden in the livecheck block.
|
|
sig {
|
|
params(
|
|
# Name of cask to inherit livecheck info from.
|
|
cask_name: String,
|
|
).returns(T.nilable(String))
|
|
}
|
|
def cask(cask_name = T.unsafe(nil))
|
|
case cask_name
|
|
when nil
|
|
@referenced_cask_name
|
|
when String
|
|
@referenced_cask_name = cask_name
|
|
end
|
|
end
|
|
|
|
# Sets the `@referenced_formula_name` instance variable to the provided
|
|
# `String` or returns the `@referenced_formula_name` instance variable when
|
|
# no argument is provided. Inherited livecheck values from the referenced
|
|
# formula (e.g. regex) can be overridden in the livecheck block.
|
|
sig {
|
|
params(
|
|
# Name of formula to inherit livecheck info from.
|
|
formula_name: String,
|
|
).returns(T.nilable(String))
|
|
}
|
|
def formula(formula_name = T.unsafe(nil))
|
|
case formula_name
|
|
when nil
|
|
@referenced_formula_name
|
|
when String
|
|
@referenced_formula_name = formula_name
|
|
end
|
|
end
|
|
|
|
# Sets the `@regex` instance variable to the provided `Regexp` or returns the
|
|
# `@regex` instance variable when no argument is provided.
|
|
sig {
|
|
params(
|
|
# Regex to use for matching versions in content.
|
|
pattern: Regexp,
|
|
).returns(T.nilable(Regexp))
|
|
}
|
|
def regex(pattern = T.unsafe(nil))
|
|
case pattern
|
|
when nil
|
|
@regex
|
|
when Regexp
|
|
@regex = pattern
|
|
end
|
|
end
|
|
|
|
# Sets the `@skip` instance variable to `true` and sets the `@skip_msg`
|
|
# instance variable if a `String` is provided. `@skip` is used to indicate
|
|
# that the formula/cask/resource should be skipped and the `skip_msg` very
|
|
# briefly describes why it is skipped (e.g. "No longer developed or
|
|
# maintained").
|
|
sig {
|
|
params(
|
|
# String describing why the formula/cask is skipped.
|
|
skip_msg: String,
|
|
).returns(T::Boolean)
|
|
}
|
|
def skip(skip_msg = T.unsafe(nil))
|
|
@skip_msg = skip_msg if skip_msg.is_a?(String)
|
|
|
|
@skip = true
|
|
end
|
|
|
|
# Should `livecheck` skip this formula/cask/resource?
|
|
sig { returns(T::Boolean) }
|
|
def skip?
|
|
@skip
|
|
end
|
|
|
|
# Sets the `@strategy` instance variable to the provided `Symbol` or returns
|
|
# the `@strategy` instance variable when no argument is provided. The strategy
|
|
# symbols use snake case (e.g. `:page_match`) and correspond to the strategy
|
|
# file name.
|
|
sig {
|
|
params(
|
|
# Symbol for the desired strategy.
|
|
symbol: Symbol,
|
|
block: T.nilable(Proc),
|
|
).returns(T.nilable(Symbol))
|
|
}
|
|
def strategy(symbol = T.unsafe(nil), &block)
|
|
@strategy_block = block if block
|
|
|
|
case symbol
|
|
when nil
|
|
@strategy
|
|
when Symbol
|
|
@strategy = symbol
|
|
end
|
|
end
|
|
|
|
sig { returns(T.nilable(Proc)) }
|
|
attr_reader :strategy_block
|
|
|
|
# Sets the `@throttle` instance variable to the provided `Integer` or returns
|
|
# the `@throttle` instance variable when no argument is provided.
|
|
sig {
|
|
params(
|
|
# Throttle rate of version patch number to use for bumpable versions.
|
|
rate: Integer,
|
|
).returns(T.nilable(Integer))
|
|
}
|
|
def throttle(rate = T.unsafe(nil))
|
|
case rate
|
|
when nil
|
|
@throttle
|
|
when Integer
|
|
@throttle = rate
|
|
end
|
|
end
|
|
|
|
# Sets the `@url` instance variable to the provided argument or returns the
|
|
# `@url` instance variable when no argument is provided. The argument can be
|
|
# a `String` (a URL) or a supported `Symbol` corresponding to a URL in the
|
|
# formula/cask/resource (e.g. `:stable`, `:homepage`, `:head`, `:url`).
|
|
sig {
|
|
params(
|
|
# URL to check for version information.
|
|
url: T.any(String, Symbol),
|
|
).returns(T.nilable(T.any(String, Symbol)))
|
|
}
|
|
def url(url = T.unsafe(nil))
|
|
case url
|
|
when nil
|
|
@url
|
|
when String, :head, :homepage, :stable, :url
|
|
@url = url
|
|
when Symbol
|
|
raise ArgumentError, "#{url.inspect} is not a valid URL shorthand"
|
|
end
|
|
end
|
|
|
|
delegate version: :@package_or_resource
|
|
delegate arch: :@package_or_resource
|
|
private :version, :arch
|
|
|
|
# Returns a `Hash` of all instance variable values.
|
|
# @return [Hash]
|
|
sig { returns(T::Hash[String, T.untyped]) }
|
|
def to_hash
|
|
{
|
|
"cask" => @referenced_cask_name,
|
|
"formula" => @referenced_formula_name,
|
|
"regex" => @regex,
|
|
"skip" => @skip,
|
|
"skip_msg" => @skip_msg,
|
|
"strategy" => @strategy,
|
|
"throttle" => @throttle,
|
|
"url" => @url,
|
|
}
|
|
end
|
|
end
|