Class: AbstractImporter::Base
- Inherits:
-
Object
- Object
- AbstractImporter::Base
- Defined in:
- lib/abstract_importer/base.rb
Instance Attribute Summary collapse
-
#collection_importers ⇒ Object
readonly
Returns the value of attribute collection_importers.
-
#collections ⇒ Object
readonly
Returns the value of attribute collections.
-
#generate_id ⇒ Object
readonly
Returns the value of attribute generate_id.
-
#id_map ⇒ Object
readonly
Returns the value of attribute id_map.
-
#import_plan ⇒ Object
readonly
Returns the value of attribute import_plan.
-
#only ⇒ Object
readonly
Returns the value of attribute only.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#parent ⇒ Object
readonly
Returns the value of attribute parent.
-
#reporter ⇒ Object
readonly
Returns the value of attribute reporter.
-
#skip ⇒ Object
readonly
Returns the value of attribute skip.
-
#source ⇒ Object
readonly
Returns the value of attribute source.
Class Method Summary collapse
- .dependencies ⇒ Object
- .depends_on(*dependencies) ⇒ Object
- .import {|@import_plan = ImportPlan.new| ... } ⇒ Object
- .import_plan ⇒ Object
Instance Method Summary collapse
- #atomic? ⇒ Boolean
- #collection_counts ⇒ Object
- #count_collection(collection) ⇒ Object
- #describe_destination ⇒ Object
- #describe_source ⇒ Object
- #dry_run? ⇒ Boolean
-
#initialize(parent, source, options = {}) ⇒ Base
constructor
A new instance of Base.
- #map_foreign_key(legacy_id, plural, foreign_key, depends_on) ⇒ Object
- #perform! ⇒ Object
- #remap_foreign_key?(plural, foreign_key) ⇒ Boolean
- #setup ⇒ Object
- #skip?(collection) ⇒ Boolean
- #strategy_for(collection_importer) ⇒ Object
- #teardown ⇒ Object
- #use_id_map_for?(collection) ⇒ Boolean
Constructor Details
#initialize(parent, source, options = {}) ⇒ Base
Returns a new instance of Base.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/abstract_importer/base.rb', line 48 def initialize(parent, source, ={}) @parent = parent @source = source @options = io = .fetch(:io, $stderr) @reporter = default_reporter(, io) @dry_run = .fetch(:dry_run, false) id_map = .fetch(:id_map, true) @import_plan = self.class.import_plan.to_h @atomic = .fetch(:atomic, false) @strategies = .fetch(:strategy, {}) @generate_id = [:generate_id] @skip = Array([:skip]) @only = Array([:only]) if .key?(:only) @collections = [] @use_id_map, @id_map = id_map.is_a?(IdMap) ? [true, id_map] : [id_map, IdMap.new] verify_source! verify_parent! instantiate_collections! @collection_importers = [] collections.each do |collection| next if skip? collection @collection_importers.push CollectionImporter.new(self, collection) end end |
Instance Attribute Details
#collection_importers ⇒ Object (readonly)
Returns the value of attribute collection_importers.
79 80 81 |
# File 'lib/abstract_importer/base.rb', line 79 def collection_importers @collection_importers end |
#collections ⇒ Object (readonly)
Returns the value of attribute collections.
79 80 81 |
# File 'lib/abstract_importer/base.rb', line 79 def collections @collections end |
#generate_id ⇒ Object (readonly)
Returns the value of attribute generate_id.
79 80 81 |
# File 'lib/abstract_importer/base.rb', line 79 def generate_id @generate_id end |
#id_map ⇒ Object (readonly)
Returns the value of attribute id_map.
79 80 81 |
# File 'lib/abstract_importer/base.rb', line 79 def id_map @id_map end |
#import_plan ⇒ Object (readonly)
Returns the value of attribute import_plan.
79 80 81 |
# File 'lib/abstract_importer/base.rb', line 79 def import_plan @import_plan end |
#only ⇒ Object (readonly)
Returns the value of attribute only.
79 80 81 |
# File 'lib/abstract_importer/base.rb', line 79 def only @only end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
79 80 81 |
# File 'lib/abstract_importer/base.rb', line 79 def @options end |
#parent ⇒ Object (readonly)
Returns the value of attribute parent.
79 80 81 |
# File 'lib/abstract_importer/base.rb', line 79 def parent @parent end |
#reporter ⇒ Object (readonly)
Returns the value of attribute reporter.
79 80 81 |
# File 'lib/abstract_importer/base.rb', line 79 def reporter @reporter end |
#skip ⇒ Object (readonly)
Returns the value of attribute skip.
79 80 81 |
# File 'lib/abstract_importer/base.rb', line 79 def skip @skip end |
#source ⇒ Object (readonly)
Returns the value of attribute source.
79 80 81 |
# File 'lib/abstract_importer/base.rb', line 79 def source @source end |
Class Method Details
.dependencies ⇒ Object
25 26 27 |
# File 'lib/abstract_importer/base.rb', line 25 def dependencies read_inheritable_instance_variable(:@dependencies) || [] end |
.depends_on(*dependencies) ⇒ Object
21 22 23 |
# File 'lib/abstract_importer/base.rb', line 21 def depends_on(*dependencies) @dependencies = dependencies end |
.import {|@import_plan = ImportPlan.new| ... } ⇒ Object
17 18 19 |
# File 'lib/abstract_importer/base.rb', line 17 def import yield @import_plan = ImportPlan.new end |
.import_plan ⇒ Object
29 30 31 |
# File 'lib/abstract_importer/base.rb', line 29 def import_plan read_inheritable_instance_variable(:@import_plan) end |
Instance Method Details
#atomic? ⇒ Boolean
97 98 99 |
# File 'lib/abstract_importer/base.rb', line 97 def atomic? @atomic end |
#collection_counts ⇒ Object
144 145 146 147 148 149 150 151 152 |
# File 'lib/abstract_importer/base.rb', line 144 def collection_counts @collection_counts ||= Hash.new do |counts, collection_name| counts[collection_name] = if source.respond_to?(:"#{collection_name}_count") source.public_send(:"#{collection_name}_count") else source.public_send(collection_name).count end end end |
#count_collection(collection) ⇒ Object
139 140 141 142 |
# File 'lib/abstract_importer/base.rb', line 139 def count_collection(collection) collection_name = collection.respond_to?(:name) ? collection.name : collection collection_counts[collection_name] end |
#describe_destination ⇒ Object
184 185 186 |
# File 'lib/abstract_importer/base.rb', line 184 def describe_destination parent.to_s end |
#describe_source ⇒ Object
180 181 182 |
# File 'lib/abstract_importer/base.rb', line 180 def describe_source source.to_s end |
#dry_run? ⇒ Boolean
101 102 103 |
# File 'lib/abstract_importer/base.rb', line 101 def dry_run? @dry_run end |
#map_foreign_key(legacy_id, plural, foreign_key, depends_on) ⇒ Object
196 197 198 199 200 201 202 |
# File 'lib/abstract_importer/base.rb', line 196 def map_foreign_key(legacy_id, plural, foreign_key, depends_on) return nil if legacy_id.nil? return legacy_id unless use_id_map_for?(depends_on) id_map.apply!(depends_on, legacy_id) rescue KeyError raise IdNotMappedError, "#{plural}.#{foreign_key} will be nil: a #{depends_on.to_s.singularize} with the legacy id #{legacy_id} was not mapped." end |
#perform! ⇒ Object
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
# File 'lib/abstract_importer/base.rb', line 109 def perform! {}.tap do |results| reporter.start_all(self) setup_ms = benchmark do setup end reporter.finish_setup(self, setup_ms) ms = benchmark do with_transaction do collection_importers.each do |importer| results[importer.name] = importer.perform! end end end teardown_ms = benchmark do teardown end reporter.finish_teardown(self, teardown_ms) reporter.finish_all(self, setup_ms + ms + teardown_ms) end end |
#remap_foreign_key?(plural, foreign_key) ⇒ Boolean
192 193 194 |
# File 'lib/abstract_importer/base.rb', line 192 def remap_foreign_key?(plural, foreign_key) true end |
#setup ⇒ Object
135 136 137 |
# File 'lib/abstract_importer/base.rb', line 135 def setup prepopulate_id_map! end |
#skip?(collection) ⇒ Boolean
157 158 159 160 161 162 |
# File 'lib/abstract_importer/base.rb', line 157 def skip?(collection) collection_name = collection.respond_to?(:name) ? collection.name : collection return true if skip.member?(collection_name) return true if only && !only.member?(collection_name) false end |
#strategy_for(collection_importer) ⇒ Object
164 165 166 167 168 169 170 171 172 173 174 |
# File 'lib/abstract_importer/base.rb', line 164 def strategy_for(collection_importer) collection = collection_importer.collection strategy_name = @strategies.fetch collection.name, :default = {} if strategy_name.is_a?(Hash) = strategy_name strategy_name = strategy_name[:name] end strategy_klass = AbstractImporter::Strategies.const_get :"#{strategy_name.capitalize}Strategy" strategy_klass.new(collection_importer, ) end |
#teardown ⇒ Object
154 155 |
# File 'lib/abstract_importer/base.rb', line 154 def teardown end |
#use_id_map_for?(collection) ⇒ Boolean
91 92 93 94 95 |
# File 'lib/abstract_importer/base.rb', line 91 def use_id_map_for?(collection) collection = find_collection(collection) if collection.is_a?(Symbol) return false unless collection @use_id_map && collection.has_legacy_id? end |