Object
Helper class to simplify printing profiles of several types from one profiling run. Currently prints a flat profile, a callgrind profile, a call stack profile and a graph profile.
the name of the flat profile file
# File lib/ruby-prof/printers/multi_printer.rb, line 50 def flat_profile "#{@directory}/#{@profile}.flat.txt" end
the name of the graph profile file
# File lib/ruby-prof/printers/multi_printer.rb, line 40 def graph_profile "#{@directory}/#{@profile}.graph.html" end
create profile files under options or the current directory. options is used as the base name for the pofile file, defaults to “profile”.
# File lib/ruby-prof/printers/multi_printer.rb, line 17 def print(options) @profile = options.delete(:profile) || "profile" @directory = options.delete(:path) || File.expand_path(".") File.open(stack_profile, "w") do |f| @stack_printer.print(f, options.merge(:graph => "#{@profile}.graph.html")) end File.open(graph_profile, "w") do |f| @graph_printer.print(f, options) end File.open(tree_profile, "w") do |f| @tree_printer.print(f, options) end File.open(flat_profile, "w") do |f| @flat_printer.print(f, options) end end
Generated with the Darkfish Rdoc Generator 2.