Issue #10470 has been reported by Tomohiro Hashidate.
Bug #10470: TracePoint cannot trace attr_accessor/reader/writer method
- Author: Tomohiro Hashidate
- Status: Open
- Priority: Normal
- Assignee:
- Category:
- Target version: current: 2.2.0
- ruby -v: ruby 2.2.0dev (2014-11-01 trunk 48219) [x86_64-darwin13]
- Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN
TracePointを利用してattr_accessorで定義したメソッドの:c_call,
:c_returnイベントを取得することができません。
class Foo
attr_accessor :hoge
def bar
@bar
end
def initialize(val)
@bar = val
end
end
foo = Foo.new("FOO")
trace = TracePoint.new(:return, :c_return) do |tp|
p [tp.lineno, tp.defined_class, tp.method_id, tp.event, tp.binding,
tp.return_value]
end
trace.enable do
foo.bar
foo.hoge = "hoge"
foo.hoge
end
上記のコードを実行した時、attr_accessorで定義したhogeメソッドのイベントが発生しません。
調査した所、EXEC_EVENT_HOOKの呼び出し自体が無いようです。
このため、例えばpower_assertを利用した時にアクセサメソッドの戻り値を取得できない等の問題が発生します。
attributeの読み書きを行う処理の中にEXEC_EVENT_HOOKを呼び出す簡単なパッチを書きましたので、添付します。
—Files--------------------------------
fix_attr_accessor_event.diff (1.98 KB)