Module: Stagehand::Database
- Extended by:
- Database
- Included in:
- Database
- Defined in:
- lib/stagehand/database.rb
Defined Under Namespace
Modules: ConnectionStack
Classes: InvalidConnectionError, NoRetryError, Probe, ProductionProbe, StagingProbe
Instance Method Summary
collapse
Instance Method Details
#connected_to_production? ⇒ Boolean
#connected_to_staging? ⇒ Boolean
#each(&block) ⇒ Object
33
34
35
36
|
# File 'lib/stagehand/database.rb', line 33
def each(&block)
with_production_connection(&block) unless Configuration.single_connection?
with_staging_connection(&block)
end
|
#production_connection ⇒ Object
46
47
48
|
# File 'lib/stagehand/database.rb', line 46
def production_connection
ProductionProbe.connection
end
|
#production_database_name ⇒ Object
#production_database_versions ⇒ Object
#staging_connection ⇒ Object
#staging_database_name ⇒ Object
#staging_database_versions ⇒ Object
#transaction ⇒ Object
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# File 'lib/stagehand/database.rb', line 8
def transaction
raise InvalidConnectionError, "Calling Stagehand::Database.transaction is not valid unless connected to staging" unless connected_to_staging?
success = false
attempts = 0
output = nil
ActiveRecord::Base.transaction do
Production::Record.transaction do
attempts += 1
raise NoRetryError, "Retrying is not allowed in Stagehand::Database.transaction" if attempts > 1
output = yield
success = true
end
raise ActiveRecord::Rollback unless success
end
return output
ensure
Rails.logger.warn "Stagehand::Database transaction was rolled back" unless success
end
|
#with_connection(connection_name, &block) ⇒ Object
78
79
80
81
82
83
84
85
86
87
88
|
# File 'lib/stagehand/database.rb', line 78
def with_connection(connection_name, &block)
if current_connection_name != connection_name.to_sym
Rails.logger.debug "Connecting to #{connection_name}"
output = swap_connection(connection_name, &block)
Rails.logger.debug "Restoring connection to #{current_connection_name}"
else
Rails.logger.debug "Already connected to #{connection_name}"
output = yield connection_name
end
return output
end
|
#with_production_connection(&block) ⇒ Object
#with_staging_connection(&block) ⇒ Object