Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle irb monkey-patching in StackProf::Report #137

Open
parkr opened this issue Jun 4, 2020 · 6 comments
Open

Handle irb monkey-patching in StackProf::Report #137

parkr opened this issue Jun 4, 2020 · 6 comments

Comments

@parkr
Copy link

parkr commented Jun 4, 2020

Hey!

I generated a StackProf::Report in production for a slow process. I found a method that appeared to be quite expensive and refactored it. I applied the monkey-patch in my irb session and regenerated the stackprof. Unfortunately, when I went to call Report#print_method, I got an error saying that stackprof couldn't open file irb.

Could we add support for reading source from irb? Report#source_display currently calls File.readlines(file), but when the source location of a method is in irb, then it errors.

@parkr
Copy link
Author

parkr commented Jun 4, 2020

I took a stab at this today. The irb module took some getting used to, but I found a solution.

module StackProf
  class Report
    def source_file_lines(file)
      if file.eql?("(irb)")
        IRB.CurrentContext.io.instance_variable_get(:@line)
      else
        File.readlines(file)
      end
    end

    def source_display(f, file, lines, range=nil)
      source_file_lines(file).each_with_index do |code, i|
        next unless range.nil? || range.include?(i)
        if lines and lineinfo = lines[i+1]
          total_samples, samples = lineinfo
          if version == 1.0
            samples = total_samples
            f.printf "% 5d % 7s  | % 5d  | %s", samples, "(%2.1f%%)" % (100.0*samples/overall_samples), i+1, code
          elsif samples > 0
            f.printf "% 5d  % 8s / % 5d  % 7s  | % 5d  | %s", total_samples, "(%2.1f%%)" % (100.0*total_samples/overall_samples), samples, "(%2.1f%%)" % (100.0*samples/overall_samples), i+1, code
          else
            f.printf "% 5d  % 8s                   | % 5d  | %s", total_samples, "(%3.1f%%)" % (100.0*total_samples/overall_samples), i+1, code
          end
        else
          if version == 1.0
            f.printf "               | % 5d  | %s", i+1, code
          else
            f.printf "                                  | % 5d  | %s", i+1, code
          end
        end
      end
    rescue SystemCallError
      f.puts "        SOURCE UNAVAILABLE"
    end

  end
end

The IRB.CurrentContext.io returns some form of "input method." These input methods all define a @line instance variable which holds all the IRB history of the current session.

Here's sample output:

GitHub[production] (main):161:0> report.print_method("Object#foobar")
Object#foobar ((irb):1)
  samples:  9823 self (88.0%)  /   9823 total (88.0%)
  callers:
    9823  (  100.0%)  Object#irb_binding
  code:
                                  |     1  |  9823   (88.0%) /  9823  (88.0%)  |     2  | def foobar
                                  |     3  | end

@parkr
Copy link
Author

parkr commented Jun 4, 2020

If you add a newline to the end of each line of code in the IRB history, then you get this:

GitHub[production] (main):185:0> report.print_method("Object#foobar")
Object#foobar ((irb):1)
  samples:  9823 self (88.0%)  /   9823 total (88.0%)
  callers:
    9823  (  100.0%)  Object#irb_binding
  code:
                                  |     1  |
 9823   (88.0%) /  9823  (88.0%)  |     2  | def foobar

                                  |     3  | end

All you need to do is change #source_file_lines:

module StackProf
  class Report
    def source_file_lines(file)
      if file.eql?("(irb)")
        IRB.CurrentContext.io.instance_variable_get(:@line).map { |line| line.to_s+"\n" }
      else
        File.readlines(file)
      end
    end
  end
end

@NickLaMuro
Copy link
Contributor

@parkr You probably could do:

IRB.CurrentContext.io.instance_variable_get(:@line).map(&:to_s).join("\n")

If you wanted something a little more terse. Though, does cause one extra loop iteration.

@parkr
Copy link
Author

parkr commented Jun 4, 2020

@NickLaMuro That would create just one string for all of IRB history, I think. I’m looking to mimic File.readlines, which returns an array of lines, each with terminating new lines.

@NickLaMuro
Copy link
Contributor

Ah , you are correct. My bad

@parkr
Copy link
Author

parkr commented Jun 5, 2020

No problem! Thanks for the optimization help anyway!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants