diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-06-03 14:59:43 +0100 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-06-03 14:59:43 +0100 |
commit | 96ca2e6f659c8d15c6d080c58226e4ebd9162f25 (patch) | |
tree | 7cc251e2ae33301599b55b7eda5bc4f9747ec917 /lib/byteback/util.rb | |
parent | c9c52d21442b763d63cc1cda7e15e59f8727f52a (diff) |
Reformatted the code to lose literal TABs, etc.
Diffstat (limited to 'lib/byteback/util.rb')
-rw-r--r-- | lib/byteback/util.rb | 116 |
1 files changed, 57 insertions, 59 deletions
diff --git a/lib/byteback/util.rb b/lib/byteback/util.rb index 391e051..99a5b23 100644 --- a/lib/byteback/util.rb +++ b/lib/byteback/util.rb @@ -1,68 +1,66 @@ require 'tempfile' module Byteback - module Util - @@lockfile = "/var/lock/byteback/byteback.lock" + module Util + @@lockfile = '/var/lock/byteback/byteback.lock' - def remove_lockfile! - begin - File.unlink(@@lockfile) - rescue Errno::ENOENT - end - end + def remove_lockfile! + File.unlink(@@lockfile) + rescue Errno::ENOENT + end - def claim_lockfile! - # Check the lockfile first - if File.directory?(File.dirname(@@lockfile)) - if File.exists? @@lockfile - # check the lockfile is sane - exist_pid = File.read(@@lockfile).to_i - if exist_pid > 1 and exist_pid < (File.read("/proc/sys/kernel/pid_max").to_i) - begin - Process.getpgid(exist_pid) - # if no exception, process is running, abort - fatal("Process is running (#{exist_pid} from #{@@lockfile})") - rescue Errno::ESRCH - # no process running with that pid, pidfile is stale - remove_lockfile! - end - else - # lockfile isn't sane, remove it and continue - remove_lockfile! - end - end - else - Dir.mkdir(File.dirname(@@lockfile)) - # lockfile didn't exist so just carry on - end + def claim_lockfile! + # Check the lockfile first + if File.directory?(File.dirname(@@lockfile)) + if File.exist? @@lockfile + # check the lockfile is sane + exist_pid = File.read(@@lockfile).to_i + if exist_pid > 1 && exist_pid < (File.read('/proc/sys/kernel/pid_max').to_i) + begin + Process.getpgid(exist_pid) + # if no exception, process is running, abort + fatal("Process is running (#{exist_pid} from #{@@lockfile})") + rescue Errno::ESRCH + # no process running with that pid, pidfile is stale + remove_lockfile! + end + else + # lockfile isn't sane, remove it and continue + remove_lockfile! + end + end + else + Dir.mkdir(File.dirname(@@lockfile)) + # lockfile didn't exist so just carry on + end - # Own the pidfile ourselves - File.open(@@lockfile, "w") do |lockfile| - lockfile.puts Process::pid - end - end + # Own the pidfile ourselves + File.open(@@lockfile, 'w') do |lockfile| + lockfile.puts Process.pid + end + end - def lock_out_other_processes(name) - @@lockfile = "/var/lock/byteback/#{name}.lock" - claim_lockfile! - at_exit { remove_lockfile! } - end + def lock_out_other_processes(name) + @@lockfile = "/var/lock/byteback/#{name}.lock" + claim_lockfile! + at_exit { remove_lockfile! } + end - def log_system(*args) - debug("system: " + args.map { |a| / /.match(a) ? "\"#{a}\"" : a }.join(" ")) - rd, wr = IO.pipe - pid = fork - if pid.nil? # child - rd.close - STDOUT.reopen(wr) - STDERR.reopen(wr) - # any cleanup actually necessary here? - exec(*args) - end - wr.close - rd.each_line { |line| debug(line.chomp) } - pid2, status = Process.waitpid2(pid, 0) - status.exitstatus - end - end + def log_system(*args) + debug('system: ' + args.map { |a| / /.match(a) ? "\"#{a}\"" : a }.join(' ')) + rd, wr = IO.pipe + pid = fork + if pid.nil? # child + rd.close + STDOUT.reopen(wr) + STDERR.reopen(wr) + # any cleanup actually necessary here? + exec(*args) + end + wr.close + rd.each_line { |line| debug(line.chomp) } + pid2, status = Process.waitpid2(pid, 0) + status.exitstatus + end + end end |