guard-rails/lib/guard/rails/runner.rb

88 lines
1.6 KiB
Ruby
Raw Normal View History

module Guard
class RailsRunner
2011-06-01 14:42:53 +00:00
MAX_WAIT_COUNT = 10
attr_reader :options
def initialize(options)
@options = options
end
def start
kill_unmanaged_pid! if options[:force_run]
run_rails_command!
count = 0
2011-06-01 14:42:53 +00:00
while !has_pid? && count < MAX_WAIT_COUNT
wait_for_pid_action
count += 1
end
2011-06-01 14:42:53 +00:00
!(count == MAX_WAIT_COUNT)
end
def stop
if File.file?(pid_file)
system %{kill -KILL #{File.read(pid_file).strip}}
end
end
def restart
stop
start
end
def build_rails_command
rails_options = [
'-e', options[:environment],
'-p', options[:port],
'--pid', pid_file
]
rails_options << '-d' if options[:daemon]
%{sh -c 'cd #{Dir.pwd} && rails s #{rails_options.join(' ')} &'}
end
2011-06-01 14:28:32 +00:00
def pid_file
File.expand_path("tmp/pids/#{options[:environment]}.pid")
end
def pid
File.file?(pid_file) ? File.read(pid_file).to_i : nil
end
2011-06-01 14:42:53 +00:00
def sleep_time
options[:timeout].to_f / MAX_WAIT_COUNT.to_f
end
private
def run_rails_command!
system build_rails_command
end
def has_pid?
File.file?(pid_file)
end
def wait_for_pid_action
2011-06-01 14:42:53 +00:00
sleep sleep_time
end
def kill_unmanaged_pid!
if pid = unmanaged_pid
system %{kill -KILL #{pid}}
end
end
def unmanaged_pid
2011-06-20 13:14:00 +00:00
pid_command = "lsof -n -i TCP:#{options[:port]}"
%x{pid_command}.each_line { |line|
if line["*:#{options[:port]} "]
return line.split("\s")[1]
end
}
nil
end
end
end