Project

verd

0.0
Low commit activity in last 3 years
No release in over a year
rails-erd + echarts + iview
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 1.6.1
 Project Readme

TraceTree

Print TracePoint(:b_call, :b_return, :c_call, :c_return, :call, :return, :class, :end, :thread_begin, :thread_end) in tree view, to console or html.

Notice: it does not trace :raise, which can be represented by Kernel#raise(:c_call)

  • Installation
  • Usage
    • Parameters
    • Example 1: Output to HTML
    • Example 2: Output to STDOUT

Installation

Add this line to your application's Gemfile:

gem 'trace_tree'

And then execute:

$ bundle

Or install it yourself as:

$ gem install trace_tree

Usage

Just call the method you want to trace in the block passed to binding.trace_tree:

things_done = binding.trace_tree do
  somebody.do_something
end

Parameters

You may pass optional parameters while invoking binding.trace_tree, for example:

binding.trace_tree(file, color: false, gem: false) do
  somebody.do_something
end
  • file == STDOUT by default. You can give it a File object or anything responds to puts.
  • :color => true by default. It makes method names have different color than source_location in output. When you print the output to file, you may want to set it false to discard those color ANSI escape sequences.
  • :gem => true by default. Replace the gem paths in source_location with $GemPathN, which shorten lines. To see what are replaced, inspect TraceTree::GemPaths.
  • :html => nil by default. Set it true to generate a html in which a tree constructed with <ul>, <li>. (No need to set color).
  • :tmp => nil by default. Set it true or a string or an array of string to specify a tmp file under the default tmp dir of your system. (No need to provide file argument. It makes parent directories as needed). The tmp dir location can be found with TraceTree.tmp.
  • :htmp => nil by default. It is combination of :html and :tmp.
  • :return => true by default. It stores return values of functions in generated html. Hover function call and press r to print return value in console.
  • :args => false by default. Set it true to puts arguments of :call functions into html. Since arguments are always return values of other functions, so this option is not necessary.
  • :no_methods => nil by default. Give it regexp(s) to hide stack under matching methods. Useful when you want to dump stack of a rack middleware but lower middlewares.
  • :warm => nil by default. Set it something unique to the code block so that the code block will be traced only when it's called second time, in case we dump lots of code loading and initialization.
  • :timer => nil by default. Set it true if you want to know how much time spent in tracing and drawing tree. Notice the file should be appendable, otherwise the time will overwrite the tree.
  • :debug => nil by default. Give it STDOUT/STDERR or anything responds to :puts to output a whole list of TracePoints. Or give it a file name in the default tmp dir of your system.
  • :transcode => false by default. Set it true to convert unknown character into "?" when you see Encoding::UndefinedConversionError.

Methods' return values

By default it stores return values of functions in generated html. If there is any kind of value can not be stringified, you can do something like this to avoid exception:

TraceTree::ReturnValue.formatted(Mongo::Protocol::Message) { |_| "Mongo::Protocol::Message" }

Example 1: Output to HTML

Try to remove a non-existing index:

[4] pry(main)> binding.trace_tree(htmp: 'migrate_rm_index'){ ActiveRecord::Migration.new.remove_index "cars", [:online_at] }
-- remove_index("cars", [:online_at])
ArgumentError: Index name 'index_cars_on_online_at' on table 'cars' does not exist

Then find the result HTML in tmp dir. Move your mouse on any method name, and:

  • press f/u to fold/unfold it's callee
  • press p/n to jump to it's previous/next sibling call
  • press r to print return value in console
  • press a to print ascii tree in console

You may type group_by_file() in console, to group callees defined in same file, under additional li tag. Type group_by_file() once again to switch back.

image

Example 2: Output to STDOUT

Want to know what Sinatra::Base#call does? Wrap it with binding.trace_tree:

require 'sinatra'
require 'trace_tree'

get '/' do
  'welcome'
end

class Sinatra::Base
  alias_method :o_call, :call

  def call env
    binding.trace_tree do
      o_call env
    end
  end
end

Execute that sinatra script as normal, then you will see in console:

image