aboutsummaryrefslogtreecommitdiff
path: root/bin/mauveserver
blob: c576c85cf01e8c9f589fec755d40cc41d623080e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#! /usr/bin/ruby1.8

begin
  eval "Proc.new { |a,&b| }"
rescue SyntaxError => no_blocks_with_procs
  STDERR.print "mauveserver must have Ruby 1.8.7 or later, sorry (if you "+
    "try, you'll get a SyntaxError trying to load one of its libraries)\n"
  exit 1
end
  
require 'mauve/configuration'
include Mauve

configuration_file = ARGV[0]
if configuration_file.nil?
  %w(/etc/mauvealert/mauveserver.conf mauveserver.conf).each do |configuration_file|
    break if File.exists?(configuration_file)
  end
end

unless File.exists?(configuration_file)
  if ARGV[0]
    STDERR.print "Configuration file #{configuration_file} not found"
  else
    STDERR.print "Syntax: #{$0} <configuration filename>\n"
  end
  exit 1
end

Configuration.current = ConfigurationBuilder.load(configuration_file)

class RestartSignalReceived < Exception; end
class TerminateSignalReceived < Exception; end

%w(HUP).each do |sig|
  trap("HUP") do
    # this blows up if you do it twice in quick succession, but don't really 
    # care about that case as it's only for log rotation.
    Configuration.current.logger.warn "#{sig} signal received.  Restarting."
    Configuration.current.server.stop
    #
    # Reload configuration
    #
    Configuration.current = ConfigurationBuilder.load(configuration_file)
    Configuration.current.server.start
  end
end

%w(QUIT TERM INT).each do |sig|
  trap(sig) do
    Configuration.current.logger.warn "#{sig} signal received.  Exiting."
    Configuration.current.server.stop
    exit 0
  end
end

#begin
  Mauve::Server.instance.run
#rescue SystemExit
  # Woo!
#  exit 0
#rescue Exception => ex
#  [ex.class.to_s, ex.to_s, ex.backtrace.join("\n")].each do |s|
#    Configuration.current.logger.fatal s
#    warn s
#  end
#
#  exit 1
#end
#