2023-03-06 09:49:53 -08:00
|
|
|
# typed: true
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-06-05 23:19:18 -04:00
|
|
|
require "fetch"
|
2019-04-17 18:25:08 +09:00
|
|
|
require "cli/parser"
|
2020-08-10 12:23:32 -04:00
|
|
|
require "cask/download"
|
2014-03-10 14:56:03 -05:00
|
|
|
|
2014-06-18 22:41:47 -05:00
|
|
|
module Homebrew
|
2020-07-23 02:43:22 +02:00
|
|
|
extend Fetch
|
|
|
|
|
2020-10-20 12:03:48 +02:00
|
|
|
sig { returns(CLI::Parser) }
|
2023-03-06 09:49:53 -08:00
|
|
|
def self.__cache_args
|
2019-01-30 21:29:21 +00:00
|
|
|
Homebrew::CLI::Parser.new do
|
2021-01-15 15:04:02 -05:00
|
|
|
description <<~EOS
|
2019-01-30 21:29:21 +00:00
|
|
|
Display Homebrew's download cache. See also `HOMEBREW_CACHE`.
|
|
|
|
|
2020-06-23 11:50:50 -04:00
|
|
|
If <formula> is provided, display the file or directory used to cache <formula>.
|
2019-01-30 21:29:21 +00:00
|
|
|
EOS
|
2023-04-14 15:33:40 +02:00
|
|
|
flag "--os=",
|
|
|
|
description: "Show cache file for the given operating system." \
|
|
|
|
"(Pass `all` to show cache files for all operating systems.)"
|
|
|
|
flag "--arch=",
|
|
|
|
description: "Show cache file for the given CPU architecture." \
|
|
|
|
"(Pass `all` to show cache files for all architectures.)"
|
2019-01-30 21:29:21 +00:00
|
|
|
switch "-s", "--build-from-source",
|
2019-04-30 08:44:35 +01:00
|
|
|
description: "Show the cache file used when building from source."
|
2019-01-30 21:29:21 +00:00
|
|
|
switch "--force-bottle",
|
2019-04-30 08:44:35 +01:00
|
|
|
description: "Show the cache file used when pouring a bottle."
|
2022-06-28 11:20:22 -04:00
|
|
|
flag "--bottle-tag=",
|
2021-08-26 14:37:27 -07:00
|
|
|
description: "Show the cache file used when pouring a bottle for the given tag."
|
2021-08-23 20:37:02 -07:00
|
|
|
switch "--HEAD",
|
|
|
|
description: "Show the cache file used when building from HEAD."
|
2021-11-18 12:41:03 -08:00
|
|
|
switch "--formula", "--formulae",
|
2020-06-25 12:01:52 -04:00
|
|
|
description: "Only show cache files for formulae."
|
2021-11-18 12:41:03 -08:00
|
|
|
switch "--cask", "--casks",
|
2020-06-25 12:01:52 -04:00
|
|
|
description: "Only show cache files for casks."
|
2020-11-27 11:41:08 -05:00
|
|
|
|
2021-08-26 14:37:27 -07:00
|
|
|
conflicts "--build-from-source", "--force-bottle", "--bottle-tag", "--HEAD", "--cask"
|
2020-08-07 09:53:30 +01:00
|
|
|
conflicts "--formula", "--cask"
|
2023-04-14 15:33:40 +02:00
|
|
|
conflicts "--os", "--bottle-tag"
|
|
|
|
conflicts "--arch", "--bottle-tag"
|
2021-01-10 14:26:40 -05:00
|
|
|
|
|
|
|
named_args [:formula, :cask]
|
2019-01-30 21:29:21 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-29 22:34:53 +01:00
|
|
|
sig { void }
|
2023-03-06 09:49:53 -08:00
|
|
|
def self.__cache
|
2020-07-26 07:24:14 +02:00
|
|
|
args = __cache_args.parse
|
2019-01-30 21:29:21 +00:00
|
|
|
|
2020-03-04 17:28:15 +00:00
|
|
|
if args.no_named?
|
2010-09-11 20:22:54 +01:00
|
|
|
puts HOMEBREW_CACHE
|
2020-08-10 12:23:32 -04:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2020-12-28 23:14:22 +09:00
|
|
|
formulae_or_casks = args.named.to_formulae_and_casks
|
2023-04-14 15:33:40 +02:00
|
|
|
os_arch_combinations = args.os_arch_combinations
|
2020-08-10 12:23:32 -04:00
|
|
|
|
|
|
|
formulae_or_casks.each do |formula_or_cask|
|
2023-04-14 15:33:40 +02:00
|
|
|
case formula_or_cask
|
|
|
|
when Formula
|
|
|
|
formula = T.cast(formula_or_cask, Formula)
|
|
|
|
ref = formula.loaded_from_api? ? formula.full_name : formula.path
|
|
|
|
|
|
|
|
os_arch_combinations.each do |os, arch|
|
|
|
|
SimulateSystem.with os: os, arch: arch do
|
|
|
|
Formulary.clear_cache
|
|
|
|
formula = Formulary.factory(ref)
|
|
|
|
print_formula_cache(formula, os: os, arch: arch, args: args)
|
|
|
|
end
|
|
|
|
end
|
2020-08-10 12:23:32 -04:00
|
|
|
else
|
2023-04-14 15:33:40 +02:00
|
|
|
cask = formula_or_cask
|
|
|
|
ref = cask.loaded_from_api? ? cask.full_token : cask.sourcefile_path
|
|
|
|
|
|
|
|
os_arch_combinations.each do |os, arch|
|
|
|
|
next if os == :linux
|
|
|
|
|
|
|
|
SimulateSystem.with os: os, arch: arch do
|
|
|
|
cask = Cask::CaskLoader.load(ref)
|
|
|
|
print_cask_cache(cask)
|
|
|
|
end
|
|
|
|
end
|
2014-03-10 14:56:03 -05:00
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|
|
|
|
end
|
2020-06-23 09:30:24 -04:00
|
|
|
|
2023-04-14 15:33:40 +02:00
|
|
|
sig { params(formula: Formula, os: Symbol, arch: Symbol, args: CLI::Args).void }
|
|
|
|
def self.print_formula_cache(formula, os:, arch:, args:)
|
|
|
|
if fetch_bottle?(
|
|
|
|
formula,
|
|
|
|
force_bottle: args.force_bottle?,
|
|
|
|
bottle_tag: args.bottle_tag&.to_sym,
|
|
|
|
build_from_source_formulae: args.build_from_source_formulae,
|
|
|
|
os: args.os&.to_sym,
|
|
|
|
arch: args.arch&.to_sym,
|
|
|
|
)
|
|
|
|
bottle_tag = if (bottle_tag = args.bottle_tag&.to_sym)
|
|
|
|
# TODO: odeprecate "--bottle-tag"
|
|
|
|
Utils::Bottles::Tag.from_symbol(bottle_tag)
|
|
|
|
else
|
|
|
|
Utils::Bottles::Tag.new(system: os, arch: arch)
|
|
|
|
end
|
|
|
|
|
|
|
|
bottle = formula.bottle_for_tag(bottle_tag)
|
|
|
|
|
|
|
|
if bottle.nil?
|
|
|
|
opoo "Bottle for tag #{bottle_tag.to_sym.inspect} is unavailable."
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
puts bottle.cached_download
|
2021-08-23 20:37:02 -07:00
|
|
|
elsif args.HEAD?
|
|
|
|
puts formula.head.cached_download
|
2020-06-23 09:30:24 -04:00
|
|
|
else
|
|
|
|
puts formula.cached_download
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-29 22:34:53 +01:00
|
|
|
sig { params(cask: Cask::Cask).void }
|
2023-03-06 09:49:53 -08:00
|
|
|
def self.print_cask_cache(cask)
|
2020-08-10 12:23:32 -04:00
|
|
|
puts Cask::Download.new(cask).downloader.cached_location
|
2020-06-23 09:30:24 -04:00
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|