Aptana 3 ruby debugger - Exception in DebugThread loop: undefined method `is_binary_data?'

左心房为你撑大大i 提交于 2019-11-30 04:25:48

My ruby version:

ruby 1.9.3p0 (2011-10-30) [i386-mingw32]

My gems list:

...
linecache19 (0.5.13)
ruby-debug-base19 (0.11.26)
ruby-debug-ide19 (0.4.12)
...

In Aptana 3, I got same error.

Exception in DebugThread loop: undefined method `is_binary_data?' for "#<PostsController:0x65a8da8>":String

See ruby-debug-ide19-0.4.12 / xml_printer.rb .

  value_str = "[Binary Data]" if value_str.is_binary_data?
  print("<variable name=\"%s\" kind=\"%s\" value=\"%s\" type=\"%s\" hasChildren=\"%s\" objectId=\"%#+x\"/>",
      CGI.escapeHTML(name), kind, CGI.escapeHTML(value_str), value.class,
      has_children, value.respond_to?(:object_id) ? value.object_id : value.id)

See http://apidock.com/ruby/String/is_binary_data%3F .

String#is_binary_data?

This method is deprecated or moved on the latest stable version. The last existing version (v1_9_1_378) is shown here.

 def is_binary_data?
   ( self.count( "^ -~", "^\r\n" ).fdiv(self.size) > 0.3 || self.index( "\x00" ) ) unless empty?
 end

Add this code to xml_printer.rb (or to your code).

class String
  def is_binary_data?
    ( self.count( "^ -~", "^\r\n" ).fdiv(self.size) > 0.3 || self.index( "\x00" ) ) unless empty?
  end
end

Thank you.

It worked for me, make sure the code is added outside of the "module Debugger" block in xml_printer.rb. I added the code inside the module block the first time and got the same exception, but placing it outside the module block got rid of the exception and allows variables to be inspected.

I was using exabug's solution for a while but this awful bug in such a critical feature of a programming language like debugging didn't let me rest, so I investigated it a little bit closer, and that's what I found out.

Firstly, ruby-debug-ide implemented a workaround to the problem, which should be included in beta versions of the gem so you may give them a try. See here to find out what versions are available. The latest beta crashed on my computer, though, and I haven't tested the rest.

Secondly, the problem exists because is_binary_data? method has been moved to a standard library called Syck. So adding require 'syck' to xml_printer.rb is in my opinion a cleaner solution than both the one implemented by ruby-debug-ide and proposed by exabugs.

I'm quite new to Ruby but I must say a bug which completely prevents me from debugging anything, which remains unfixed in stable versions for a year, doesn't make a very good impression about the whole language.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!