“nil无法强制进入Fixnum”错误

时间:2012-02-23 05:04:11

标签: ruby null

全部,
升级到Ruby 1.9.3后,我正在敲打一段代码。它在Ruby 1.8.7中运行良好。 代码会抓取进程并获取该进程的“rsize”值,将其存储在文件中,然后绘制图形。但在ruby 1.9.3中我一直收到这个错误:
ERROR TypeError:nil无法强制进入Fixnum

SVG / Graph / Graph.rb:375:在'*'中:nil无法强制转换为Fixnum(TypeError)

以下是监视Safari进程的内存使用情况的代码

def begin_memprofile
clear_screen
FileUtils.mkdir_p "#{PATH}"

begin
  loop do
      cmd = "top -l 1 -stats pid,rsize,command |grep Safari | awk '{print $2};'"  
      process_data = `#{cmd}`.split("\n") # array
      arr=process_data[0]
      log "Data: #{arr}"
      if arr =~ /^[0-9]+M[\+\-]?$/  # accepts rsize values like 80M+, 80M-, 80M
          memory= arr.to_s.scan(/\d+/).first.to_i 
      end    
      log "Memory: #{memory}"
      data = [Time.now.to_i, memory]
      write_memory(data) # This function writes data into a csv file
      sleep(INTERVAL)
  end
end
 end

csv文件将有两列(时间戳,内存)。示例值将如下:
1329972936 80
1329972937 50

上面的代码循环运行,直到用户点击CTRL + C.当用户执行此操作时,我调用一个函数 从csv文件中检索数据并呈现图形

  def render_graph
if !File.exist?(CSV_FILENAME) 
  log "Could not open csv file."
  exit_profiler
end

data = []
fields = []
csv_data = {}


# import data
File.open(CSV_FILENAME, "r").each_line do |line|
  line = line.strip.split(',')
  csv_data[line.first.to_s] = line.last
end
pp "#{csv_data}"



csv_data.each do |row|
  content = row.first
  log "Creating data point: #{content}:: #{row.last.to_i}"
  fields << content
  data << row.last.to_i
end

# strip any nil elements
data.compact!
fields.compact!

        graph = SVG::Graph::Line.new({
  :show_graph_title => true,
  :graph_title => 'Memory Footprint (MB)',
  :height => 800, 
  :width => 1024, 
  :y_title => "RSIZE(MB)",
  :x_title => "TIME",
  :fields => fields
})

graph.add_data(
  :data => data,
  :title => "data"
)

graph.show_y_guidelines = true
graph.min_scale_value = 0

graph.show_x_title = true
graph.show_y_title = true

graph.show_data_points = true
graph.show_data_values = true
graph.show_x_labels = true
graph.rotate_x_labels = false

graph.area_fill = true


# config graph
graph.scale_integers = true
graph.key = false

File.open("#{PATH}/memory-#{TIMESTAMP}.svg", 'w') {|f| 
  f << graph.burn
}    
     end

我是ruby的新手,我正在修改其他人的代码。我升级到ruby 1.9.3,因为我想要排序哈希。我无法理解为什么我会收到这个错误。

3 个答案:

答案 0 :(得分:1)

来自SVG :: Graph V0.6.1的SVG / Graph / Graph.rb。问题在于 methods.include?串

在Ruby V1.9.3中,必须用self.respond_to?(str)替换它。

[root@victor svg_graph_0.6.1]# grep respond_to lib/SVG/Graph/*.rb
lib/SVG/Graph/Graph.rb: set_defaults if self.respond_to?( "set_defaults" )
lib/SVG/Graph/Graph.rb:        calculations if self.respond_to?('calculations')
lib/SVG/Graph/Graph.rb:          self.send( key.to_s+"=", value ) if 
                                       self.respond_to?( key.to_s )

此外,SVG :: Graph V0.6.1 install.rb在Ruby 1.9.3中不再起作用。它必须由gemspec文件替换。

[root@victor svg_graph_0.6.1]# cat SVG.gemspec
s = Gem::Specification.new do |spec|
        spec.description = <<-EOF
           SVG::Graph V0.6.1 generates HTTP image/svg+xml graphs.
EOF
        spec.author = 'Sean E. Russell'
        spec.email = 'ser@germane.software.com'
#       spec.rubyforge_project = 'SVG::Graph'
        spec.homepage = 'http://www.germane-software.com/software/SVG/SVG::Graph/'
        spec.name = 'SVG'
        spec.version = '0.6.1'
        spec.summary = 'Ruby based Graphs library.'
        spec.files = Dir['lib/**/*.rb']
#       spec.require_path = '.'
end

当然,从SVG :: Graph根目录,你必须:

[root@victor svg_graph_0.6.1] mkdir lib
[root@victor svg_graph_0.6.1] cp -R SVG/ lib/

然后仍然来自SVG :: Graph根目录,你必须

[root@victor svg_graph_0.6.1]# /usr/bin/gem uninstall SVG
[root@victor svg_graph_0.6.1]# /usr/bin/gem build SVG.gemspec
[root@victor svg_graph_0.6.1]# /usr/bin/gem install SVG

我将在我的网站上提供我的版本的SVG :: Graph for Ruby 1.9.3

你真的, 菲利普

答案 1 :(得分:1)

适用于Ruby 1.8.x和Ruby 1.9.x的SVG :: Graph Version 0.6.1可以在http://vouters.dyndns.org/zip/svg_graph_0.6.1.tar.gz找到。这包括个人代码添加。 http://vouters.dyndns.org/tima/HP-UX-OpenView-Ruby-Displaying_System_Metrics_on_Web_browsers.html以及我使用它的方式描述了如何使用和安装它。

你真的, 菲利普

答案 2 :(得分:0)

错误意味着你有值nil,你应该有一个Fixnum。在您的位置,我会尝试使用rdebug来确定您的代码有什么问题。