RubyDNSSourceRubyDNSRule

class Rule

Represents a single rule in the server.

Definitions

def self.for(pattern, &block)

Create a new rule with a given pattern and callback.

Signature

parameter pattern Array

The pattern to match against.

Implementation

def self.for(pattern, &block)
	new(pattern, block)
end

def initialize(pattern, callback)

Create a new rule with a given pattern and callback.

Signature

parameter pattern Array

The pattern to match against.

parameter callback Proc

The callback to invoke when the pattern matches.

Implementation

def initialize(pattern, callback)
	@pattern = pattern
	@callback = callback
end

def match(name, resource_class)

Returns true if the name and resource_class are sufficient:

Implementation

def match(name, resource_class)
	# If the pattern doesn't specify any resource classes, we implicitly pass this test:
	return true if @pattern.size < 2
	
	# Otherwise, we try to match against some specific resource classes:
	if Class === @pattern[1]
		@pattern[1] == resource_class
	else
		@pattern[1].include?(resource_class) rescue false
	end
end

def call(server, name, resource_class, transaction)

Invoke the rule, if it matches the incoming request, it is evaluated and returns true, otherwise returns false.

Implementation

def call(server, name, resource_class, transaction)
	unless match(name, resource_class)
		Console.debug "<#{transaction.query.id}> Resource class #{resource_class} failed to match #{@pattern[1].inspect}!"
		
		return false
	end
	
	# Does this rule match against the supplied name?
	case @pattern[0]
	when Regexp
		match_data = @pattern[0].match(name)
		
		if match_data
			Console.debug "<#{transaction.query.id}> Regexp pattern matched with #{match_data.inspect}."
			
			@callback.call(transaction, match_data)
			
			return true
		end
	when String
		if @pattern[0] == name
			Console.debug "<#{transaction.query.id}> String pattern matched."
			
			@callback.call(transaction)
			
			return true
		end
	else
		if (@pattern[0].call(name, resource_class) rescue false)
			Console.debug "<#{transaction.query.id}> Callable pattern matched."
			
			@callback.call(transaction)
			
			return true
		end
	end
	
	Console.debug "<#{transaction.query.id}> No pattern matched."
	
	# We failed to match the pattern.
	return false
end

def to_s

Return a string representation of the rule.

Implementation

def to_s
	"#<#{self.class} #{@pattern}>"
end