module BinData::TraceHook

def turn_on_tracing

def turn_on_tracing
  if !method_defined? :do_read_without_hook
    alias_method :do_read_without_hook, :do_read
    alias_method :do_read, :do_read_with_hook
  end
end