aboutsummaryrefslogtreecommitdiff
path: root/lib/mauve/configuration_builders/server.rb
diff options
context:
space:
mode:
authorPatrick J Cherry <patrick@bytemark.co.uk>2011-09-16 12:47:52 +0100
committerPatrick J Cherry <patrick@bytemark.co.uk>2011-09-16 12:47:52 +0100
commit38e4d877abee3c8e40edd932057e2bf16ad01e13 (patch)
treed2201a1c18fbebec4e0594b81c27974057e886b2 /lib/mauve/configuration_builders/server.rb
parentf63d7076e52a8844f1cfe43e57330687d88e83b6 (diff)
Big documentation update.
Diffstat (limited to 'lib/mauve/configuration_builders/server.rb')
-rw-r--r--lib/mauve/configuration_builders/server.rb102
1 files changed, 100 insertions, 2 deletions
diff --git a/lib/mauve/configuration_builders/server.rb b/lib/mauve/configuration_builders/server.rb
index 3a9f5ec..c000144 100644
--- a/lib/mauve/configuration_builders/server.rb
+++ b/lib/mauve/configuration_builders/server.rb
@@ -5,74 +5,157 @@ require 'mauve/configuration_builder'
module Mauve
module ConfigurationBuilders
+ #
+ # This is the HTTP server
+ #
class HTTPServer < ObjectBuilder
+ # The port the http server listens on
is_attribute "port"
+ # The IP address the http server listens on. IPv6 is *NOT* OK.
is_attribute "ip"
+ # Where all the templates are kept
is_attribute "document_root"
+ # The secret for the cookies
is_attribute "session_secret"
+ # The base URL of the server.
is_attribute "base_url"
+ # Sets up a Mauve::HTTPServer singleton as the result
+ #
+ # @return [Mauve::HTTPServer]
def builder_setup
@result = Mauve::HTTPServer.instance
end
end
+ #
+ # This is the UDP server.
+ #
class UDPServer < ObjectBuilder
+ # This is the port the server listens on
is_attribute "port"
+ # This is the IP address the server listens on. IPv6 is OK! e.g. [::] for all addresses
is_attribute "ip"
+ # This is the sleep interval for the UDP server.
is_attribute "poll_every"
+ # Sets up a Mauve::UDPServer singleton as the result
+ #
+ # @return [Mauve::UDPServer]
def builder_setup
@result = Mauve::UDPServer.instance
end
end
+ #
+ # This is the thread that pulls packets from the queue for processing.
+ #
class Processor < ObjectBuilder
+ # This is the interval between polls of the packet queue.
is_attribute "poll_every"
+ # This is the timeout for the transmission cache, which allows duplicate packets to be discarded.
is_attribute "transmission_cache_expire_time"
+ # Sets up a Mauve::Processor singleton as the result
+ #
+ # @return [Mauve::Processor]
def builder_setup
@result = Mauve::Processor.instance
end
end
+ #
+ # This is the Timer singleton.
+ #
class Timer < ObjectBuilder
+ #
+ # This is the interval at which the Timer thread is run. This will limit
+ # the rate at which notifications can be sent, if set.
+ #
is_attribute "poll_every"
+ # Sets up a Mauve::Timer singleton as the result
+ #
+ # @return [Mauve::Timer]
def builder_setup
@result = Mauve::Timer.instance
end
end
class Notifier < ObjectBuilder
+ #
+ # This is the interval at which the notification queue is polled for new
+ # notifications to be sent. This will not have any rate-limiting effect.
+ #
is_attribute "poll_every"
+ # Sets up a Mauve::Notifier singleton as the result
+ #
+ # @return [Mauve::Notifier]
def builder_setup
@result = Mauve::Notifier.instance
end
end
+ #
+ # This sends a mauve heartbeat to another Mauve instance elsewhere
+ #
class Heartbeat < ObjectBuilder
+ #
+ # The destination for the heartbeat
+ #
is_attribute "destination"
+
+ #
+ # The detail field for the heartbeat
+ #
is_attribute "detail"
+
+ #
+ # The summary field for the heartbeat.
+ #
is_attribute "summary"
+
+ #
+ # How long to raise an alert after the last heartbeat.
+ #
is_attribute "raise_after"
+
+ #
+ # The interval between heartbeats
+ #
is_attribute "send_every"
-
+
+ # Sets up a Mauve::Heartbeat singleton as the result
+ #
+ # @return [Mauve::Heartbeat]
def builder_setup
@result = Mauve::Heartbeat.instance
end
end
class Pop3Server < ObjectBuilder
+ #
+ # The IP adderess the Pop3 server listens on
+ #
is_attribute "ip"
+
+ #
+ # The POP3 server port
+ #
is_attribute "port"
+ # Sets up a Mauve::Pop3Server singleton as the result
+ #
+ # @return [Mauve::Pop3Server]
def builder_setup
@result = Mauve::Pop3Server.instance
end
end
+ #
+ # This is the main Server singleton.
+ #
class Server < ObjectBuilder
#
# Set up second-level builders
@@ -85,8 +168,19 @@ module Mauve
is_builder "heartbeat", Heartbeat
is_builder "pop3_server", Pop3Server
+ #
+ # The name of the server this instance of Mauve is running on
+ #
is_attribute "hostname"
+
+ #
+ # The database definition
+ #
is_attribute "database"
+
+ #
+ # The period of sleep during which no heartbeats are raised.
+ #
is_attribute "initial_sleep"
def builder_setup
@@ -102,8 +196,12 @@ module Mauve
is_builder "server", ConfigurationBuilders::Server
+ # This is called once the server object has been created.
+ #
+ # @raise [SyntaxError] if more than one server clause has been defined.
+ #
def created_server(server)
- raise BuildError.new("Only one 'server' clause can be specified") if @result.server
+ raise SyntaxError.new("Only one 'server' clause can be specified") if @result.server
@result.server = server
end