-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
417 lines (391 loc) · 12.5 KB
/
main.go
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
package main
import (
"bytes"
"encoding/xml"
e "errors"
"fmt"
"log"
"net/http"
"os"
"runtime"
"slices"
"strconv"
"strings"
"time"
_ "time/tzdata"
)
var (
infoLogger *log.Logger
errorLogger *log.Logger
hoursInThePast time.Duration
wsdlService string
)
const scalingMaxFreqFile = "/sys/devices/system/cpu/cpu%d/cpufreq/scaling_max_freq"
const scalingAvailableFrequenciesFile = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies"
type Times struct {
startDate string
endDate string
startHour string
endHour string
}
type ElectricityDailyForAgentureTrade struct {
XMLName xml.Name `xml:"Envelope"`
Body struct {
XMLName xml.Name `xml:"Body"`
GetDamPriceEResponse struct {
XMLName xml.Name `xml:"http://www.ote-cr.cz/schema/service/public GetDamPriceEResponse"`
Result struct {
XMLName xml.Name `xml:"Result"`
Items []struct {
XMLName xml.Name `xml:"Item"`
Date string `xml:"Date"`
Hour int `xml:"Hour"`
Price float32 `xml:"Price"`
Volume float32 `xml:"Volume"`
} `xml:"Item"`
} `xml:"Result"`
} `xml:"GetDamPriceEResponse"`
} `xml:"Body"`
}
type ElectricityDayAheadTrade struct {
XMLName xml.Name `xml:"Envelope"`
Body struct {
XMLName xml.Name `xml:"Body"`
GetDamIndexEResponse struct {
XMLName xml.Name `xml:"http://www.ote-cr.cz/schema/service/public GetDamIndexEResponse"`
Result struct {
XMLName xml.Name `xml:"Result"`
DamIndex []struct {
XMLName xml.Name `xml:"DamIndex"`
Date string `xml:"Date"`
EurRate float32 `xml:"EurRate"`
BaseLoad float32 `xml:"BaseLoad"`
PeakLoad float32 `xml:"PeakLoad"`
OffpeakLoad float32 `xml:"OffpeakLoad"`
Emerg int `xml:"Emerg""`
} `xml:"DamIndex"`
} `xml:"Result"`
} `xml:"GetDamIndexEResponse"`
} `xml:"Body"`
}
type ElectricityIntraDayTrade struct {
XMLName xml.Name `xml:"Envelope"`
Body struct {
XMLName xml.Name `xml:"Body"`
GetImPriceEResponse struct {
XMLName xml.Name `xml:"http://www.ote-cr.cz/schema/service/public GetImPriceEResponse"`
Result struct {
XMLName xml.Name `xml:"Result"`
Item []struct {
XMLName xml.Name `xml:"Item"`
Date string `xml:"Date"`
Hour int `xml:"Hour"`
Price float32 `xml:"Price"`
Volume float32 `xml:"Volume"`
} `xml:"Item"`
} `xml:"Result"`
} `xml:"GetImPriceEResponse"`
} `xml:"Body"`
}
func init() {
infoLogger = log.New(os.Stdout, "INFO: ", log.Ldate|log.Ltime|log.Lshortfile)
errorLogger = log.New(os.Stderr, "ERROR: ", log.Ldate|log.Ltime|log.Lshortfile)
}
func sendRequest(soapAction string, payload []byte) *http.Response {
req, err := http.NewRequest("POST", wsdlService, bytes.NewReader(payload))
if err != nil {
errorLogger.Printf("Error on creating request object: %s\n", err.Error())
return nil
}
req.Header.Set("Content-type", "text/xml")
req.Header.Set("SOAPAction", soapAction)
client := &http.Client{}
res, err := client.Do(req)
if err != nil {
errorLogger.Printf("Error on dispatching request: %s\n", err.Error())
return nil
}
if res.Status != "200 OK" {
errorLogger.Printf("Status %s on result: %s\n", res.Status, res)
return nil
}
return res
}
func parseGetDamPriceE(res *http.Response) {
result := new(ElectricityDailyForAgentureTrade)
err := xml.NewDecoder(res.Body).Decode(result)
if err != nil {
errorLogger.Printf("Error on unmarshaling xml: %s\n", err.Error())
return
}
hourlyRate := result.Body.GetDamPriceEResponse.Result.Items
var i float32 = 0
for _, s := range hourlyRate {
infoLogger.Printf("Date: %s Hour: %d Price: %f Volume: %f\n", s.Date, s.Hour, s.Price, s.Volume)
i += s.Price
}
}
func parseGetDamIndexE(res *http.Response) {
result := new(ElectricityDayAheadTrade)
err := xml.NewDecoder(res.Body).Decode(result)
if err != nil {
infoLogger.Printf("Error on unmarshaling xml: %s\n", err.Error())
return
}
loadIndex := result.Body.GetDamIndexEResponse.Result.DamIndex
for _, index := range loadIndex {
infoLogger.Printf("Date: %s BaseLoad: %f, PeakLoad: %f, OffPeakLoad: %f\n",
index.Date, index.BaseLoad, index.PeakLoad, index.OffpeakLoad)
}
}
func extractPricesFromGetImPriceE(res *http.Response) ([]float32, error) {
var prices []float32
result := new(ElectricityIntraDayTrade)
err := xml.NewDecoder(res.Body).Decode(result)
if err != nil {
errorLogger.Printf("Error on unmarshaling xml: %s\n", err.Error())
return prices, err
}
hourlyRate := result.Body.GetImPriceEResponse.Result.Item
for _, s := range hourlyRate {
infoLogger.Printf("Date: %s Hour: %d Price: %f Volume: %f\n", s.Date, s.Hour, s.Price, s.Volume)
prices = append(prices, s.Price)
}
return prices, nil
}
// Vraci hodnotu energie a cenu v EUR po hodinách z denního trhu s elektřinou pro zadané období. (pro
// agentury)
// https://www.ote-cr.cz/cs/dokumentace/dokumentace-elektrina/uzivatelsky-manual_webove_sluzby_ote_c.pdf
//
// optional: startHour (int), EndHour (int), InEur (bool)
func getDamPriceE(startDate, endDate string) {
payload := []byte(strings.TrimSpace(fmt.Sprintf(`
<?xml version="1.0" encoding="UTF-8" ?>
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:pub="http://www.ote-cr.cz/schema/service/public">
<soapenv:Header/>
<soapenv:Body>
<pub:GetDamPriceE>
<pub:StartDate>%s</pub:StartDate>
<pub:EndDate>%s</pub:EndDate>
<!--<pub:StartHour>[int?]</pub:StartHour>-->
<!--<pub:EndHour>[int?]</pub:EndHour>-->
<!--<pub:InEur>[boolean?]</pub:InEur>-->
</pub:GetDamPriceE>
</soapenv:Body>
</soapenv:Envelope>`, startDate, endDate),
))
soapAction := "urn:GetDamPriceE" // The format is `urn:<soap_action>`
httpResponse := sendRequest(soapAction, payload)
if httpResponse == nil {
return
}
parseGetDamPriceE(httpResponse)
}
// GetDamIndexE Vraci indexy krátkodobého obchodu za elektřinu pro zadané období.
// https://www.ote-cr.cz/cs/dokumentace/dokumentace-elektrina/uzivatelsky-manual_webove_sluzby_ote_c.pdf
//
// neviem, ci to chapem spravne, ale vracia cenu za ktoru sa predala eletrina
// na base/peak/offpeak load na ten den - je to asi blokovy trh podla
// https://www.ote-cr.cz/cs/kratkodobe-trhy/elektrina/files-informace-vdt-vt/trh_s_elektrinou.pdf
func GetDamIndexE(startDate, endDate string) {
payload := []byte(strings.TrimSpace(fmt.Sprintf(`
<?xml version="1.0" encoding="UTF-8" ?>
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:pub="http://www.ote-cr.cz/schema/service/public">
<soapenv:Header/>
<soapenv:Body>
<pub:GetDamIndexE>
<pub:StartDate>%s</pub:StartDate>
<pub:EndDate>%s</pub:EndDate>
</pub:GetDamIndexE>
</soapenv:Body>
</soapenv:Envelope>`, startDate, endDate),
))
soapAction := "urn:GetDamIndexE" // The format is `urn:<soap_action>`
httpResponse := sendRequest(soapAction, payload)
if httpResponse == nil {
return
}
parseGetDamIndexE(httpResponse)
}
// GetImPriceE Vraci ceny a množství za vnitrodenní obchody s elektřinou pro zadané období.
// https://www.ote-cr.cz/cs/dokumentace/dokumentace-elektrina/uzivatelsky-manual_webove_sluzby_ote_c.pdf
func GetImPriceE(startDate, endDate, startHour, endHour string) *http.Response {
payload := []byte(strings.TrimSpace(fmt.Sprintf(`
<?xml version="1.0" encoding="UTF-8" ?>
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:pub="http://www.ote-cr.cz/schema/service/public">
<soapenv:Header/>
<soapenv:Body>
<pub:GetImPriceE>
<pub:StartDate>%s</pub:StartDate>
<pub:EndDate>%s</pub:EndDate>
<pub:StartHour>%s</pub:StartHour>
<pub:EndHour>%s</pub:EndHour>
</pub:GetImPriceE>
</soapenv:Body>
</soapenv:Envelope>`, startDate, endDate, startHour, endHour),
))
soapAction := "urn:GetImPriceE" // The format is `urn:<soap_action>`
httpResponse := sendRequest(soapAction, payload)
if httpResponse == nil {
return nil
}
return httpResponse
}
// getTimeRange returns Times struct filled with start/end date/hour
func getTimeRange() *Times {
times := new(Times)
loc, err := time.LoadLocation("Europe/Budapest")
if err != nil {
errorLogger.Fatalf("Error getting location: %s\n", err.Error())
}
now := time.Now().In(loc)
before := now.Add(hoursInThePast * time.Hour)
times.startHour = strconv.Itoa(before.Hour())
times.endHour = strconv.Itoa(now.Hour())
ny, nm, nd := now.Date()
by, bm, bd := before.Date()
times.startDate = fmt.Sprintf("%04d-%02d-%02d", by, bm, bd)
times.endDate = fmt.Sprintf("%04d-%02d-%02d", ny, nm, nd)
return times
}
func getElectrictyPrices(times *Times) []float32 {
var prices []float32
infoLogger.Println("------- Function Call: GetImPriceE vnitrodenna cena-------")
if times.startDate != times.endDate {
htr := GetImPriceE(times.startDate, times.startDate, times.startHour, "24")
if htr == nil {
errorLogger.Println("HTTP Error, exiting.")
return prices
}
prices1, err := extractPricesFromGetImPriceE(htr)
if err != nil {
infoLogger.Println("Error getting prices from previous day, continuing on second.")
}
htr = GetImPriceE(times.endDate, times.endDate, "0", times.endHour)
if htr == nil {
errorLogger.Println("HTTP Error, exiting.")
return prices
}
prices2, err := extractPricesFromGetImPriceE(htr)
if err != nil {
errorLogger.Println("Error getting prices from this day, exiting.")
return prices
}
prices = slices.Concat(prices1, prices2)
} else {
htr := GetImPriceE(times.startDate, times.endDate, times.startHour, times.endHour)
if htr == nil {
errorLogger.Println("HTTP Error, exiting.")
return prices
}
var err error
prices, err = extractPricesFromGetImPriceE(htr)
if err != nil {
errorLogger.Println("Error getting prices from today, exiting.")
return prices
}
}
return prices
}
func scaleCPUFrequency(prices []float32) {
// A stupid basic comparator; will need redesign
dec, inc := 0, 0
for i := 0; i < len(prices)-1; i++ {
if prices[i+1] <= prices[i] {
dec += 1
} else {
inc += 1
}
}
frequencies := getAvailableCPUFrequencies("/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies")
minF, maxF := 10000000, 0
for _, frequency := range frequencies {
if f, err := strconv.Atoi(frequency); err == nil {
if f > maxF {
maxF = f
}
if f < minF {
minF = f
}
}
}
if dec < inc {
infoLogger.Println("Prices are increasing over the last three hours")
for i := 0; i < runtime.NumCPU()-1; i++ {
err := writeFile(fmt.Sprintf("/sys/devices/system/cpu/cpu%d/cpufreq/scaling_max_freq", i), fmt.Sprintf("%d", minF))
if err != nil {
infoLogger.Printf("Not scaling cpu%d to frequency %d\n", i, minF)
} else {
infoLogger.Printf("Scaling cpu%d to frequency %d\n", i, minF)
}
}
} else {
infoLogger.Println("Prices are decreasing over the last three hours.")
for i := 0; i < runtime.NumCPU()-1; i++ {
err := writeFile(fmt.Sprintf("/sys/devices/system/cpu/cpu%d/cpufreq/scaling_max_freq", i), fmt.Sprintf("%d", maxF))
if err != nil {
infoLogger.Printf("Not scaling cpu%d to frequency %d\n", i, maxF)
} else {
infoLogger.Printf("Scaling cpu%d to frequency %d\n", i, maxF)
}
}
}
}
func readFile(path string) string {
if _, err := os.Stat(path); e.Is(err, os.ErrNotExist) {
errorLogger.Printf("Path %s does not exist\n", path)
return ""
}
content, err := os.ReadFile(path)
if err != nil {
errorLogger.Printf("Failed to open path %s\n", path)
return ""
}
return string(content)
}
func writeFile(path, frequency string) error {
err := os.WriteFile(path, []byte(frequency), 0644)
if err != nil {
errorLogger.Printf("Error writing frequency %s to path %s: %s\n", frequency, path, err.Error())
return err
}
return nil
}
func getAvailableCPUFrequencies(path string) []string {
fc := readFile(path)
if fc == "" {
return nil
}
return strings.Split(fc, " ")
}
func getEnvironmentVariables() {
var err error
hours := os.Getenv("HOURS")
if len(hours) == 0 {
hoursInThePast = -3
} else {
hoursInThePast, err = time.ParseDuration(hours)
if err != nil {
hoursInThePast = -3
infoLogger.Printf("Error parsing hours %s to duration. Setting -3.\n", hours)
}
}
wsdls := os.Getenv("WSDL")
if len(wsdls) == 0 {
wsdlService = "https://www.ote-cr.cz/services/PublicDataService"
} else {
wsdlService = wsdls
}
}
func main() {
getEnvironmentVariables()
times := getTimeRange()
prices := getElectrictyPrices(times)
scaleCPUFrequency(prices)
}