-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRakefile
230 lines (201 loc) · 6.56 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
require './lib/init'
@logger = logger = SemanticLogger['Rakefile']
require 'active_record_migrations'
ActiveRecordMigrations.load_tasks
ActiveRecordMigrations.configure do |c|
c.schema_format = :sql
end
ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.datetime_type = :timestamptz
unless Rails.env.test?
ActiveRecord::ConnectionAdapters::AbstractAdapter.set_callback :checkout, :after do |conn|
conn.exec_query "SET timescaledb.max_tuples_decompressed_per_dml_transaction TO 1000000"
end
end
#ActiveRecord::Base.logger = Logger.new(STDOUT)
ActiveSupport.on_load(:active_record) { extend Timescaledb::ActsAsHypertable }
def pump_task(name, source)
desc "Run refresh task"
task name do |t|
SemanticLogger.tagged(task: t.to_s) do
Pump::Process.new(source).run
rescue
@logger.error "Exception", $!
end
end
end
def loop_task(name, clazz)
desc "Run refresh task"
task name do |t|
SemanticLogger.tagged(task: t.to_s) do
clazz.each &:process
rescue
@logger.error "Exception", $!
end
end
end
def oneshot_task(name, clazz)
desc "Run refresh task"
task name do |t|
SemanticLogger.tagged(task: t.to_s) do
clazz.new.process
rescue
@logger.error "Exception", $!
end
end
end
task :ping do |t|
SemanticLogger.tagged(task: t.to_s) { logger.info "ping" }
end
desc "Run all refresh tasks"
multitask all: ['entsoe:all', 'aemo:all', 'ieso:all', 'eia:all', :ercot, 'caiso:all', 'elexon:all', :nationalgrideso, :opennem, :ree, 'aeso:all', :hydroquebec, :tohoku, 'eskom:all', :ons, 'cammesa:all', :taipower]
namespace :ieso do
desc "Run refresh tasks"
task all: [:unit, :load, :price, :intertie]
loop_task :unit, Ieso::Unit
loop_task :load, Ieso::Load
loop_task :price, Ieso::Price
pump_task :intertie, Ieso::Intertie
end
namespace :eia do
desc "Run refresh tasks"
task all: [:generation, :load, :interchange]
loop_task :generation, Eia::Generation
loop_task :load, Eia::Load
loop_task :interchange, Eia::Interchange
end
oneshot_task :ercot, Ercot::Generation
namespace :caiso do
desc "Run refresh tasks"
task all: [:fuelsource, :load]
pump_task :fuelsource, Caiso::FuelSource
pump_task :load, Caiso::Load
end
namespace :elexon do
desc "Run refresh tasks"
task all: [:fuelinst, :load, :unit]
pump_task :fuelinst, Elexon::Fuelinst
pump_task :load, Elexon::Load
loop_task :unit, Elexon::Unit
pump_task :generation, Elexon::Generation
end
pump_task :nationalgrideso, NationalGridEso::DemandLive
namespace :entsoe do
desc "Run refresh tasks"
task all: [:generation, :unit, :load, :price, :transmission]
loop_task :generation, EntsoeSftp::Generation
loop_task :unit, EntsoeSftp::Unit
loop_task :load, EntsoeSftp::Load
loop_task :price, EntsoeSftp::Price
pump_task :price_api, Entsoe::Price
loop_task :transmission, EntsoeSftp::Transmission
end
namespace :nordpool do
desc "Run refresh tasks"
task all: [:transmission, :capacity, :price]
pump_task :transmission, Nordpool::Transmission
pump_task :capacity, Nordpool::Capacity
pump_task :price, Nordpool::Price
pump_task :price_sek, Nordpool::PriceSEK
end
oneshot_task :opennem, Opennem::Latest
namespace :aemo do
desc "Run refresh tasks"
task all: ['nem:all', 'wem:all']
namespace :nem do
desc "Run refresh tasks"
task all: [:trading, :dispatch, :scada, :rooftoppv, :causer_pays]
loop_task :trading, AemoNem::Trading
loop_task :dispatch, AemoNem::Dispatch
loop_task :scada, AemoNem::Scada
loop_task :rooftoppv, AemoNem::RooftopPv
loop_task :causer_pays, AemoNem::CauserPays
end
namespace :wem do
desc "Run refresh tasks"
task all: [:balancing, :scada, :scada_reform, :distributed_pv, :reference_trading_price, :operational_demand]
loop_task :scada_reform, AemoWem::ScadaReform
loop_task :reference_trading_price, AemoWem::ReferenceTradingPrice
loop_task :operational_demand, AemoWem::OperationalDemand
oneshot_task :scada, AemoWem::ScadaLive
loop_task :distributed_pv, AemoWem::DistributedPv
#loop_task :balancing, AemoWem::Balancing
oneshot_task :balancing, AemoWem::BalancingLive
end
end
namespace :eskom do
task all: [:generation, :demand]
oneshot_task :generation, Eskom::Generation
oneshot_task :demand, Eskom::Demand
end
pump_task :ree, Ree::Generation
desc "Run refresh tasks"
task :hydroquebec do |t|
SemanticLogger.tagged(task: t.to_s) do
HydroQuebec::Generation.new.process
rescue
logger.error "Exception", $!
end
end
# task :nspower do
# Nspower::Combined.new.process
# rescue
# logger.error "Exception", $!
# end
pump_task :tohoku, Tohoku::Juyo
loop_task :ons, Ons
loop_task :taipower, Taipower::Generation
namespace :aeso do
task all: [:generation, :price]
loop_task :generation, Aeso::Generation
loop_task :price, Aeso::Price
end
namespace :cammesa do
task all: [:renovables, :programacion_diaria]
pump_task :renovables, Cammesa::Renovables
pump_task :programacion_diaria, Cammesa::ProgramacionDiaria
end
desc 'Export areas to test/fixtures/areas.yml'
task :fixtures_areas do
File.open("test/fixtures/areas.yml", 'w') do |f|
Area.order(:source, :code).all.each do |a|
f.write({"#{a.source}_#{a.code}" => a.attributes }.
to_yaml.sub!(/---\s?/, ""))
end
end
end
desc 'Export areas to test/fixtures/locations.yml'
task :fixtures_locations do
File.open("test/fixtures/locations.yml", 'w') do |f|
Location.order(:name).all.each do |l|
f.write({"#{l.name}" => l.attributes }.
to_yaml.sub!(/---\s?/, ""))
end
end
end
desc 'Export production types to test/fixtures/production_types.yml'
task :fixtures_pt do
File.open("test/fixtures/production_types.yml", 'w') do |f|
ProductionType.order(:name).all.each do |pt|
f.write({"#{pt.name}" => pt.attributes }.
to_yaml.sub!(/---\s?/, ""))
end
end
end
desc 'Export area production types to test/fixtures/areas_production_types.yml'
task :fixtures_apt do
File.open("test/fixtures/areas_production_types.yml", 'w') do |f|
AreasProductionType.order(:area_id, :production_type_id).all.each do |apt|
f.write({"#{apt.area.code}_#{apt.production_type.name}" => apt.attributes }.
to_yaml.sub!(/---\s?/, ""))
end
end
end
desc 'Export areas areas to test/fixtures/areas_areas.yml'
task :fixtures_aa do
File.open("test/fixtures/areas_areas.yml", 'w') do |f|
AreasArea.order(:from_area_id, :to_area_id).all.each do |aa|
f.write({"#{aa.from_area.source}_#{aa.from_area.code}_#{aa.to_area.source}_#{aa.to_area.code}" => aa.attributes }.
to_yaml.sub!(/---\s?/, ""))
end
end
end