345

我们最近遇到了一个问题,在发生一系列提交后,后端进程无法运行。现在,我们都是好孩子,rake test每次签到后都会跑,但是由于 Rails 库加载的一些奇怪之处,只有当我们在生产模式下直接从 Mongrel 运行它时才会发生这种情况。

我跟踪了这​​个错误,这是由于一个新的 Rails gem 覆盖了 String 类中的一个方法,这种方式打破了运行时 Rails 代码中的一个狭窄用途。

无论如何,长话短说,有没有办法在运行时询问 Ruby 在哪里定义了一个方法?类似的东西whereami( :foo )回来了/path/to/some/file.rb line #45?在这种情况下,告诉我它是在 String 类中定义的将是没有帮助的,因为它被某个库重载了。

我不能保证源代码存在于我的项目中,因此 grepping for'def foo'不一定能给我我需要的东西,更不用说我是否有很多 def foo's,有时我直到运行时才知道我可能正在使用哪一个。

4

10 回答 10

441

这真的很晚了,但是您可以通过以下方式找到定义方法的位置:

http://gist.github.com/76951

# How to find out where a method comes from.
# Learned this from Dave Thomas while teaching Advanced Ruby Studio
# Makes the case for separating method definitions into
# modules, especially when enhancing built-in classes.
module Perpetrator
  def crime
  end
end

class Fixnum
  include Perpetrator
end

p 2.method(:crime) # The "2" here is an instance of Fixnum.
#<Method: Fixnum(Perpetrator)#crime>

如果您使用的是 Ruby 1.9+,则可以使用source_location

require 'csv'

p CSV.new('string').method(:flock)
# => #<Method: CSV#flock>

CSV.new('string').method(:flock).source_location
# => ["/path/to/ruby/1.9.2-p290/lib/ruby/1.9.1/forwardable.rb", 180]

请注意,这不适用于所有内容,例如本机编译代码。Method 类也有一些简洁的函数,例如Method#owner,它返回定义方法的文件。

编辑:另请参阅其他答案中 REE 的__file____line__和注释,它们也很方便。-- wg

于 2009-03-18T21:12:44.903 回答
85

您实际上可以比上面的解决方案走得更远。对于 Ruby 1.8 企业版,实例上有__file____line__方法:Method

require 'rubygems'
require 'activesupport'

m = 2.days.method(:ago)
# => #<Method: Fixnum(ActiveSupport::CoreExtensions::Numeric::Time)#ago>

m.__file__
# => "/Users/james/.rvm/gems/ree-1.8.7-2010.01/gems/activesupport-2.3.8/lib/active_support/core_ext/numeric/time.rb"
m.__line__
# => 64

对于 Ruby 1.9 及更高版本,有source_location(感谢 Jonathan!):

require 'active_support/all'
m = 2.days.method(:ago)
# => #<Method: Fixnum(Numeric)#ago>    # comes from the Numeric module

m.source_location   # show file and line
# => ["/var/lib/gems/1.9.1/gems/activesupport-3.0.6/.../numeric/time.rb", 63]
于 2010-08-25T09:52:04.090 回答
39

我来晚了这个帖子,很惊讶没有人提到Method#owner

class A; def hello; puts "hello"; end end
class B < A; end
b = B.new
b.method(:hello).owner
=> A
于 2012-02-20T04:07:21.567 回答
15

从一个更新的类似问题中复制我的答案,为这个问题添加了新信息。

Ruby 1.9有一个名为source_location的方法:

返回包含此方法的 Ruby 源文件名和行号,如果此方法未在 Ruby(即本机)中定义,则返回 nil

此 gem 已将其向后移植到1.8.7

因此,您可以请求该方法:

m = Foo::Bar.method(:create)

然后询问source_location该方法的:

m.source_location

这将返回一个包含文件名和行号的数组。例如对于ActiveRecord::Base#validates这个返回:

ActiveRecord::Base.method(:validates).source_location
# => ["/Users/laas/.rvm/gems/ruby-1.9.2-p0@arveaurik/gems/activemodel-3.2.2/lib/active_model/validations/validates.rb", 81]

对于类和模块,Ruby 不提供内置支持,但是有一个优秀的 Gist 可以在source_location没有指定方法的情况下返回给定方法的文件或类的第一个文件:

在行动:

where_is(ActiveRecord::Base, :validates)

# => ["/Users/laas/.rvm/gems/ruby-1.9.2-p0@arveaurik/gems/activemodel-3.2.2/lib/active_model/validations/validates.rb", 81]

在安装了 TextMate 的 Mac 上,这也会在指定位置弹出编辑器。

于 2012-10-22T16:29:23.560 回答
7

这可能会有所帮助,但您必须自己编写代码。从博客粘贴:

Ruby 提供了一个 method_added() 回调,每次在类中添加或重新定义方法时都会调用该回调。它是模块类的一部分,每个类都是一个模块。还有两个相关的回调,称为 method_removed() 和 method_undefined()。

http://scie.nti.st/2008/9/17/making-methods-immutable-in-ruby

于 2008-10-06T20:01:29.790 回答
6

如果你可以让这个方法崩溃,你会得到一个回溯,它会告诉你它在哪里。

不幸的是,如果你不能让它崩溃,那么你就无法找出它是在哪里定义的。如果您试图通过覆盖或覆盖它来使用该方法,那么任何崩溃都将来自您覆盖或覆盖的方法,并且它没有任何用处。

崩溃方法的有用方法:

  1. 通过nil它禁止它的地方 - 很多时候该方法会在 nil 类上引发一个ArgumentError或永远存在的。NoMethodError
  2. 如果您对该方法有内部了解,并且知道该方法又会调用其他方法,那么您可以覆盖其他方法,并在其中引发。
于 2008-10-06T20:01:50.630 回答
6

也许#source_location可以帮助找到方法来自哪里。

前任:

ModelName.method(:has_one).source_location

返回

[project_path/vendor/ruby/version_number/gems/activerecord-number/lib/active_record/associations.rb", line_number_of_where_method_is]

或者

ModelName.new.method(:valid?).source_location

返回

[project_path/vendor/ruby/version_number/gems/activerecord-number/lib/active_record/validations.rb", line_number_of_where_method_is]
于 2016-07-14T07:51:48.673 回答
4

很晚的答案:)但早期的答案对我没有帮助

set_trace_func proc{ |event, file, line, id, binding, classname|
  printf "%8s %s:%-2d %10s %8s\n", event, file, line, id, classname
}
# call your method
set_trace_func nil
于 2010-05-14T18:36:18.477 回答
3

您可能可以执行以下操作:

foo_finder.rb:

 class String
   def String.method_added(name)
     if (name==:foo)
        puts "defining #{name} in:\n\t"
        puts caller.join("\n\t")
     end
   end
 end

然后确保 foo_finder 首先加载类似

ruby -r foo_finder.rb railsapp

(我只是弄乱了轨道,所以我不知道确切,但我想有一种方法可以像这样开始它。)

这将向您展示 String#foo 的所有重新定义。通过一点元编程,您可以将其概括为您想要的任何功能。但它确实需要在实际执行重新定义的文件之前加载。

于 2008-10-06T20:16:47.620 回答
3

您始终可以使用caller().

于 2008-10-07T05:07:14.150 回答