From 7bfaf7e94eed64dbc1e534e2eee0f9e224e6f146 Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Sat, 24 Nov 2012 14:40:03 +0000 Subject: Initial/stub implementation of a factory for generating alerting objects. --- lib/custodian/alertfactory.rb | 70 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 lib/custodian/alertfactory.rb (limited to 'lib/custodian/alertfactory.rb') diff --git a/lib/custodian/alertfactory.rb b/lib/custodian/alertfactory.rb new file mode 100644 index 0000000..f82706f --- /dev/null +++ b/lib/custodian/alertfactory.rb @@ -0,0 +1,70 @@ + + +# +# +# Base class for custodian alerters. +# +# Each subclass will register themselves, via the call +# to 'register_alert_type'. +# +# This class is a factory that will return the correct +# derived class. +# +# +module Custodian + + class AlertFactory + + + # + # The subclasses we have. + # + @@subclasses = { } + + + # + # Create an alerter object, based upon the type + # + def self.create( alert_type, obj ) + + c = @@subclasses[alert_type] + if c + c.new( obj ) + else + raise ArgumentError, "Bad alert type: '#{alert_type}'" + end + end + + + # + # Register a new test type - this must be called by our derived classes + # + def self.register_alert_type name + @@subclasses[name] = self + end + + + # + # Return an array of test-types we know about + # + # i.e. Derived classes that have registered themselves. + # + # + def self.known_alerters + @@subclasses + end + + + + def raise + raise NoMethod, "This should be implemented in a derived class" + end + + + + def clear + raise NoMethod, "This should be implemented in a derived class" + end + end + +end -- cgit v1.2.1