2020-10-10 14:16:11 +02:00
|
|
|
# typed: false
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-04-17 18:25:08 +09:00
|
|
|
require "cli/parser"
|
2019-03-09 13:00:15 -05:00
|
|
|
|
2018-02-27 12:07:30 +00:00
|
|
|
module Homebrew
|
|
|
|
module_function
|
|
|
|
|
2018-10-08 22:48:52 -04:00
|
|
|
def prof_args
|
|
|
|
Homebrew::CLI::Parser.new do
|
|
|
|
usage_banner <<~EOS
|
2020-08-03 02:07:06 +01:00
|
|
|
`prof` [<command>]
|
2018-10-08 22:48:52 -04:00
|
|
|
|
2020-08-20 13:01:58 +01:00
|
|
|
Run Homebrew with a Ruby profiler, e.g. `brew prof readall`.
|
2018-10-08 22:48:52 -04:00
|
|
|
EOS
|
2020-08-20 13:01:58 +01:00
|
|
|
switch "--stackprof",
|
|
|
|
description: "Use `stackprof` instead of `ruby-prof` (the default)."
|
2018-10-08 22:48:52 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-27 12:07:30 +00:00
|
|
|
def prof
|
2020-08-03 02:07:06 +01:00
|
|
|
args = prof_args.parse
|
2019-03-27 11:49:56 +00:00
|
|
|
|
2018-02-27 12:07:30 +00:00
|
|
|
brew_rb = (HOMEBREW_LIBRARY_PATH/"brew.rb").resolved_path
|
2020-08-20 13:01:58 +01:00
|
|
|
FileUtils.mkdir_p "prof"
|
|
|
|
|
|
|
|
if args.stackprof?
|
|
|
|
Homebrew.install_gem_setup_path! "stackprof"
|
|
|
|
with_env HOMEBREW_STACKPROF: "1" do
|
|
|
|
safe_system ENV["HOMEBREW_RUBY_PATH"], brew_rb, *args.named
|
|
|
|
end
|
|
|
|
output_filename = "prof/d3-flamegraph.html"
|
|
|
|
safe_system "stackprof --d3-flamegraph prof/stackprof.dump > #{output_filename}"
|
|
|
|
else
|
|
|
|
Homebrew.install_gem_setup_path! "ruby-prof"
|
|
|
|
output_filename = "prof/call_stack.html"
|
|
|
|
safe_system "ruby-prof", "--printer=call_stack", "--file=#{output_filename}", brew_rb, "--", *args.named
|
|
|
|
end
|
|
|
|
|
|
|
|
exec_browser output_filename
|
2018-02-27 12:07:30 +00:00
|
|
|
end
|
|
|
|
end
|