From 4836e968d6edfe8275984dc87d10564bea875211 Mon Sep 17 00:00:00 2001 From: John Bintz Date: Wed, 29 Jun 2011 09:47:08 -0400 Subject: [PATCH] slightly better runner support --- lib/guard/rails/runner.rb | 34 ++++++++++++++++++++++++---------- 1 file changed, 24 insertions(+), 10 deletions(-) diff --git a/lib/guard/rails/runner.rb b/lib/guard/rails/runner.rb index 8c7d5a1..f909a49 100644 --- a/lib/guard/rails/runner.rb +++ b/lib/guard/rails/runner.rb @@ -13,18 +13,14 @@ module Guard def start kill_unmanaged_pid! if options[:force_run] run_rails_command! - count = 0 - while !has_pid? && count < MAX_WAIT_COUNT - wait_for_pid_action - count += 1 - end - !(count == MAX_WAIT_COUNT) + wait_for_pid end def stop if File.file?(pid_file) system %{kill -KILL #{File.read(pid_file).strip}} - sleep sleep_time + wait_for_no_pid if $?.exitstatus == 0 + FileUtils.rm pid_file end end @@ -72,20 +68,38 @@ module Guard def kill_unmanaged_pid! if pid = unmanaged_pid - system %{kill -KILL #{pid}} + system %{kill -KILL #{pid}} FileUtils.rm pid_file + wait_for_no_pid end end def unmanaged_pid - pid_command = "lsof -n -i TCP:#{options[:port]}" - %x{#{pid_command}}.each_line { |line| + %x{lsof -n -i TCP:#{options[:port]}}.each_line { |line| if line["*:#{options[:port]} "] return line.split("\s")[1] end } nil end + + private + def wait_for_pid + wait_for_pid_loop + end + + def wait_for_no_pid + wait_for_pid_loop(false) + end + + def wait_for_pid_loop(check_for_existince = true) + count = 0 + while !(check_for_existince ? has_pid? : !has_pid?) && count < MAX_WAIT_COUNT + wait_for_pid_action + count += 1 + end + !(count == MAX_WAIT_COUNT) + end end end