Module: SimpleDaemon::Controller

Defined in:
lib/simple-daemon.rb

Class Method Summary (collapse)

Class Method Details

+ (Object) daemonize(daemon)



25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/simple-daemon.rb', line 25

def self.daemonize(daemon)
  case !ARGV.empty? && ARGV[0]
  when 'start'
    start(daemon)
  when 'stop'
    stop(daemon)
  when 'restart'
    stop(daemon)
    start(daemon)
  else
    puts "Usage <start|stop|restart>"
    exit
  end
end

+ (Object) start(daemon)



40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/simple-daemon.rb', line 40

def self.start(daemon)
  fork do
    Process.setsid
    exit if fork
    if File.file?(daemon.pid_fn)
      puts "Pid file #{daemon.pid_fn} already exists.  Not starting."
      exit 1
    end
    PidFile.store(daemon, Process.pid)
    Dir.chdir CfgHandler.base_dir
    File.umask 0000
    log = File.new(CfgHandler.daemon_log, "a")
    STDIN.reopen "/dev/null"
    STDOUT.reopen log
    STDERR.reopen STDOUT
    trap("TERM") {daemon.stop; exit}
    daemon.start
    puts "Daemon started. pid => #{Process.pid}"
  end
end

+ (Object) stop(daemon)



61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/simple-daemon.rb', line 61

def self.stop(daemon)
  if !File.file?(daemon.pid_fn)
    puts "Pid file not found. Is the daemon started?"
    exit
  end
  pid = PidFile.recall(daemon)
  FileUtils.rm(daemon.pid_fn)
  pid && Process.kill("TERM", pid)
  puts "Daemon stopped."
rescue Errno::ESRCH
  puts "Pid file found, but process was not running. The daemon may have died."
end