class RubyProf::GraphHtmlPrinter

def create_link(thread, overall_time, method)

printed out.
specified by the user, since they will not be
links to methods which are under the min_percent
Creates a link to a method. Note that we do not create
def create_link(thread, overall_time, method)
  total_percent = (method.total_time/overall_time) * 100
  if total_percent < min_percent
    # Just return name
    h method.full_name
  else
    href = '#' + method_href(thread, method)
    "<a href=\"#{href}\">#{h method.full_name}</a>"
  end
end

def file_link(path, linenum)

def file_link(path, linenum)
  if path.nil?
    ""
  else
    srcfile = File.expand_path(path)
    "<a href=\"file://#{h srcfile}##{linenum}\" title=\"#{h srcfile}:#{linenum}\">#{linenum}</a>"
  end
end

def method_href(thread, method)

def method_href(thread, method)
  h(method.full_name.gsub(/[><#\.\?=:]/,"_") + "_" + thread.fiber_id.to_s)
end

def print(output = STDOUT, min_time: nil, nonzero: false,

def print(output = STDOUT, min_time: nil, nonzero: false,
          min_percent: 0, max_percent: 100, filter_by: :self_time, sort_method: nil, **)
  @min_percent = min_percent
  @max_percent = max_percent
  @filter_by = filter_by
  @sort_method = sort_method
  @min_time = min_time
  @nonzero = nonzero
  output << ERB.new(self.template).result(binding)
end

def template

def template
  open_asset('graph_printer.html.erb')
end