I need to get a stack trace object in Ruby; not to print it, just to get it to do some recording and dumping for later analysis. Is that possible? How?

link|improve this question

feedback

5 Answers

up vote 12 down vote accepted

You can use Kernel.caller for this. The same method is used when generating stack traces for exceptions.

From the docs:

def a(skip)
  caller(skip)
end
def b(skip)
  a(skip)
end
def c(skip)
  b(skip)
end
c(0)    »   ["prog:2:in `a'", "prog:5:in `b'", "prog:8:in `c'", "prog:10"]
c(1)    »   ["prog:5:in `b'", "prog:8:in `c'", "prog:11"]
c(2)    »   ["prog:8:in `c'", "prog:12"]
c(3)    »   ["prog:13"]
link|improve this answer
feedback

Try error.backtrace:

# Returns any backtrace associated with the exception.  
# The backtrace is an array of strings, each containing either ``filename:lineNo: in `method’’’ or ``filename:lineNo.’‘

def a
  raise "boom"
end

def b
  a()
end

begin
  b()
rescue => detail
  print detail.backtrace.join("\n")
end

produces:

prog.rb:2:in `a'
prog.rb:6:in `b'
prog.rb:10
link|improve this answer
I presume I'll have to throw an exception just to get the stack trace. – J. Pablo Fernández Sep 30 '10 at 9:07
@J. Pablo Seems so. Post here if you find a way to get it directly. – Nikita Rybak Sep 30 '10 at 9:11
1  
Sven nailed it with Kernel.caller. – J. Pablo Fernández Sep 30 '10 at 9:37
You've got 17K rep, but a downvote causes you to swear? – Andrew Grimm Jan 13 '11 at 3:49
1  
@Andrew I had a bad day, I guess :) – Nikita Rybak Jan 13 '11 at 8:52
feedback

This link explains exception handling mechanism in ruby.

link|improve this answer
I'm not interested in exceptions, just in getting a stack trace. – J. Pablo Fernández Sep 30 '10 at 9:37
feedback

You can create your own if you want as well. As demonstrated in Eloquent Ruby by Russ Olsen:

# define a proc to use that will handle your trace 
proc_object = proc do |event, file, line, id, binding, klass| 
  puts "#{event} in #{file}/#{line} #{id} #{klass}"
end 

# tell Ruby to use your proc on traceable events
set_trace_func(proc_object)
link|improve this answer
feedback

Do not know, wether it is still of value, but I stumbled upon this post, that simply uses caller(0) (a kernel function). It helped me to make a quick and dirty log function, to show deep down in the call hierarchy, where the hell the function was called from, without the need to raise an exception

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.