Class: ETL::Processor::CheckExistProcessor
- Inherits:
-
RowProcessor
- Object
- Processor
- RowProcessor
- ETL::Processor::CheckExistProcessor
- Defined in:
- lib/etl/processor/check_exist_processor.rb
Overview
A row-level processor that checks if the row already exists in the target table
Instance Attribute Summary collapse
-
#columns ⇒ Object
An array of columns representing the natural key.
-
#should_check ⇒ Object
Is set to true if the processor should execute the check.
-
#skip ⇒ Object
A symbol or array of symbols representing keys that should be skipped.
-
#table ⇒ Object
The name of the table to check against.
-
#target ⇒ Object
The target database.
Instance Method Summary collapse
-
#initialize(control, configuration) ⇒ CheckExistProcessor
constructor
Initialize the processor Configuration options: *
:skip
: A symbol or array of column names that should not be checked *:table
: The table name *:columns
: An array of columns which represent the natural key. -
#process(row) ⇒ Object
Process the row.
-
#should_check? ⇒ Boolean
Return true if the row should be checked.
-
#skip?(key) ⇒ Boolean
Return true if the given key should be skipped.
Constructor Details
#initialize(control, configuration) ⇒ CheckExistProcessor
Initialize the processor Configuration options:
-
:skip
: A symbol or array of column names that should not be checked -
:table
: The table name -
:columns
: An array of columns which represent the natural key
29 30 31 32 33 34 35 36 37 38 |
# File 'lib/etl/processor/check_exist_processor.rb', line 29 def initialize(control, configuration) super @skip = configuration[:skip] || [] @target = configuration[:target] || raise(ETL::ControlError, "target must be specified") @table = configuration[:table] || raise(ETL::ControlError, "table must be specified") @columns = configuration[:columns] q = "SELECT COUNT(*) FROM #{table_name}" @should_check = ETL::Engine.connection(target).select_value(q).to_i > 0 end |
Instance Attribute Details
#columns ⇒ Object
An array of columns representing the natural key
16 17 18 |
# File 'lib/etl/processor/check_exist_processor.rb', line 16 def columns @columns end |
#should_check ⇒ Object
Is set to true if the processor should execute the check. If there are no rows in the target table then this should return false.
20 21 22 |
# File 'lib/etl/processor/check_exist_processor.rb', line 20 def should_check @should_check end |
#skip ⇒ Object
A symbol or array of symbols representing keys that should be skipped
7 8 9 |
# File 'lib/etl/processor/check_exist_processor.rb', line 7 def skip @skip end |
#table ⇒ Object
The name of the table to check against
13 14 15 |
# File 'lib/etl/processor/check_exist_processor.rb', line 13 def table @table end |
#target ⇒ Object
The target database
10 11 12 |
# File 'lib/etl/processor/check_exist_processor.rb', line 10 def target @target end |
Instance Method Details
#process(row) ⇒ Object
Process the row
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/etl/processor/check_exist_processor.rb', line 56 def process(row) return row unless should_check? conn = ETL::Engine.connection(target) q = "SELECT * FROM #{table_name} WHERE " conditions = [] row.each do |k,v| if columns.nil? || columns.include?(k.to_sym) conditions << "'#{k}' = #{conn.quote(v)}" unless (skip?(k.to_sym) || v.blank?) end end q << conditions.join(" AND ") q << " LIMIT 1" #puts "query: #{q}" result = conn.select_one(q) return row if result.nil? end |
#should_check? ⇒ Boolean
Return true if the row should be checked
51 52 53 |
# File 'lib/etl/processor/check_exist_processor.rb', line 51 def should_check? @should_check ? true : false end |
#skip?(key) ⇒ Boolean
Return true if the given key should be skipped
41 42 43 44 45 46 47 48 |
# File 'lib/etl/processor/check_exist_processor.rb', line 41 def skip?(key) case skip when Array skip.include?(key) else skip.to_sym == key.to_sym end end |