brew/Library/Homebrew/cmd/cleanup.rb

77 lines
2.4 KiB
Ruby
Raw Normal View History

2020-11-29 22:36:24 +01:00
# typed: false
# frozen_string_literal: true
require "cleanup"
2019-04-17 18:25:08 +09:00
require "cli/parser"
module Homebrew
2020-10-20 12:03:48 +02:00
extend T::Sig
2016-09-26 01:44:51 +02:00
module_function
2020-10-20 12:03:48 +02:00
sig { returns(CLI::Parser) }
2018-12-12 02:02:19 +05:30
def cleanup_args
Homebrew::CLI::Parser.new do
days = Homebrew::EnvConfig::ENVS[:HOMEBREW_CLEANUP_MAX_AGE_DAYS][:default]
description <<~EOS
Remove stale lock files and outdated downloads for all formulae and casks,
2018-12-12 02:02:19 +05:30
and remove old versions of installed formulae. If arguments are specified,
only do this for the given formulae and casks. Removes all downloads more than
#{days} days old. This can be adjusted with `HOMEBREW_CLEANUP_MAX_AGE_DAYS`.
2018-12-12 02:02:19 +05:30
EOS
flag "--prune=",
2022-06-28 10:09:59 +01:00
description: "Remove all cache files older than specified <days>. " \
"If you want to remove everything, use `--prune=all`."
2018-12-12 02:02:19 +05:30
switch "-n", "--dry-run",
2019-04-30 08:44:35 +01:00
description: "Show what would be removed, but do not actually remove anything."
2018-12-12 02:02:19 +05:30
switch "-s",
2022-06-28 10:09:59 +01:00
description: "Scrub the cache, including downloads for even the latest versions. " \
"Note that downloads for any installed formulae or casks will still not be deleted. " \
2019-04-30 08:44:35 +01:00
"If you want to delete those too: `rm -rf \"$(brew --cache)\"`"
switch "--prune-prefix",
2019-04-30 08:44:35 +01:00
description: "Only prune the symlinks and directories from the prefix and remove no other files."
2021-01-10 14:26:40 -05:00
named_args [:formula, :cask]
end
2018-12-12 02:02:19 +05:30
end
def cleanup
2020-07-30 18:40:10 +02:00
args = cleanup_args.parse
2022-04-23 01:47:37 +01:00
days = args.prune.presence&.then do |prune|
2020-11-29 22:36:24 +01:00
case prune
when /\A\d+\Z/
prune.to_i
when "all"
0
else
2023-02-10 23:15:40 -05:00
raise UsageError, "`--prune` expects an integer or `all`."
2020-11-29 22:36:24 +01:00
end
2020-08-12 08:22:45 -05:00
end
2020-11-29 22:36:24 +01:00
cleanup = Cleanup.new(*args.named, dry_run: args.dry_run?, scrub: args.s?, days: days)
if args.prune_prefix?
cleanup.prune_prefix_symlinks_and_directories
return
end
2018-08-08 11:20:53 +02:00
cleanup.clean!
2016-09-22 20:12:28 +02:00
2018-08-08 11:20:53 +02:00
unless cleanup.disk_cleanup_size.zero?
disk_space = disk_usage_readable(cleanup.disk_cleanup_size)
if args.dry_run?
ohai "This operation would free approximately #{disk_space} of disk space."
else
ohai "This operation has freed approximately #{disk_space} of disk space."
end
end
2018-08-08 11:20:53 +02:00
return if cleanup.unremovable_kegs.empty?
2017-10-15 02:28:32 +02:00
ofail <<~EOS
Could not cleanup old kegs! Fix your permissions on:
2018-08-08 11:20:53 +02:00
#{cleanup.unremovable_kegs.join "\n "}
EOS
end
end