Class: Daemons::Pid

Inherits:
Object show all
Defined in:
lib/gems/daemons-1.0.10/lib/daemons/pid.rb

Direct Known Subclasses

PidFile, PidMem

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePid

Initialization method



77
78
# File 'lib/gems/daemons-1.0.10/lib/daemons/pid.rb', line 77

def initialize
end

Class Method Details

.dir(dir_mode, dir, script) ⇒ Object

Returns the directory that should be used to write the pid file to depending on the given mode.

Some modes may require an additionaly hint, others may determine the directory automatically.

If no valid directory is found, returns nil.



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/gems/daemons-1.0.10/lib/daemons/pid.rb', line 60

def Pid.dir(dir_mode, dir, script)
  # nil script parameter is allowed as long as dir_mode is not :script
  return nil if dir_mode == :script && script.nil?                         
  
  case dir_mode
    when :normal
      return File.expand_path(dir)
    when :script
      return File.expand_path(File.join(File.dirname(script),dir))
    when :system  
      return '/var/run'
    else
      raise Error.new("pid file mode '#{dir_mode}' not implemented")
  end
end

.running?(pid) ⇒ Boolean

Returns:

  • (Boolean)


8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/gems/daemons-1.0.10/lib/daemons/pid.rb', line 8

def Pid.running?(pid)
  # Check if process is in existence
  # The simplest way to do this is to send signal '0'
  # (which is a single system call) that doesn't actually
  # send a signal
  begin
    Process.kill(0, pid)
    return true
  rescue Errno::ESRCH
    return false
  rescue ::Exception   # for example on EPERM (process exists but does not belong to us)
    return true
  #rescue Errno::EPERM
  #  return false
  end
end

Instance Method Details

#cleanupObject

Cleanup method



90
91
# File 'lib/gems/daemons-1.0.10/lib/daemons/pid.rb', line 90

def cleanup
end

#exist?Boolean

Exists? method

Returns:

  • (Boolean)


94
95
96
# File 'lib/gems/daemons-1.0.10/lib/daemons/pid.rb', line 94

def exist?
  true
end

#pidObject

Get method



82
83
# File 'lib/gems/daemons-1.0.10/lib/daemons/pid.rb', line 82

def pid
end

#pid=(p) ⇒ Object

Set method



86
87
# File 'lib/gems/daemons-1.0.10/lib/daemons/pid.rb', line 86

def pid=(p)
end