Ruby守护程序脚本只运行一次

时间:2011-01-05 16:44:22

标签: ruby-on-rails ruby rubygems daemon irb

我已经编写了一个ruby NFC阅读器脚本并用守护进程宝石守护它。这一切都很有效,除了脚本只运行一次......

Daemon.rb

require 'rubygems'
require 'daemons'

pwd  = File.dirname(File.expand_path(__FILE__))
file = pwd + '/touchatag.rb'

Daemons.run_proc(
  'touchatag_project_daemon', # name of daemon
  :dir_mode => :normal,
  :dir => File.join(pwd, 'tmp/pids'), # directory where pid file will be stored
  :backtrace => true,
  :monitor => true,
  :log_output => true
) do
  exec "ruby #{file}"
end

touchatag.rb

quire 'rubygems'
require 'nfc'
require 'httparty'

class TagAssociator
  include HTTParty
  base_uri 'localhost:3000'
end

NFC.instance.find do |tag|
  puts "Processing tag..."
  TagAssociator.post('/answers/answer', :query => {:uid => tag.uid})
end

这很好用,我在我的应用程序中收到了tag.uid。但是当我扫描另一个RFID标签时,剧本不会再次运行......

有没有人知道如何调整它“永远”运行的脚本并在守护程序停止时停止?

由于

更新

我更新了我的daemon.rb脚本:

require 'rubygems'
require 'daemons'

options = {
  :app_name   => "touchatag_project_daemon",
  :ARGV       => ['start', '-f', '--', 'param_for_myscript'],
  :dir_mode   => :script,
  :dir        => 'tmp/pids',
  :multiple   => true,
  :ontop      => true,
  # :mode       => :exec,
  :backtrace  => true,
  :monitor    => true
}

Daemons.run(File.join(File.dirname(__FILE__), '/touchatag.rb'), options)

但它只运行一次......我没有得到任何其他建议吗?

1 个答案:

答案 0 :(得分:1)

您几乎肯定希望使用Daemon.run。如果您想将代码从run_proc移至touchtag.rb,则Daemon.rb会很有用。

http://daemons.rubyforge.org/classes/Daemons.html#M000004