Class: DatabaseConsistency::Processors::BaseProcessor

Inherits:
Object
  • Object
show all
Defined in:
lib/database_consistency/processors/base_processor.rb

Overview

The base class for processors

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(configuration = nil) ⇒ BaseProcessor

Returns a new instance of BaseProcessor.

Parameters:



25
26
27
# File 'lib/database_consistency/processors/base_processor.rb', line 25

def initialize(configuration = nil)
  @configuration = configuration || Configuration.new
end

Instance Attribute Details

#configurationObject (readonly)

Returns the value of attribute configuration.



22
23
24
# File 'lib/database_consistency/processors/base_processor.rb', line 22

def configuration
  @configuration
end

Instance Method Details

#enabled_checkersArray<Class>

Returns:

  • (Array<Class>)


40
41
42
# File 'lib/database_consistency/processors/base_processor.rb', line 40

def enabled_checkers
  self.class::CHECKERS.select { |checker| checker.enabled?(configuration) }
end

#reports(catch_errors: true) ⇒ Array<Hash>

Returns:

  • (Array<Hash>)


30
31
32
33
34
35
36
37
# File 'lib/database_consistency/processors/base_processor.rb', line 30

def reports(catch_errors: true)
  @reports ||= check
rescue StandardError => e
  raise e unless catch_errors

  RescueError.call(e)
  []
end