-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcache.cpp
247 lines (190 loc) · 6.77 KB
/
cache.cpp
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
#include "cache.h"
#include "common.h"
#include <QDir>
#include <QSqlDatabase>
#include <QSqlError>
#include <QSqlQuery>
#include <QVariant>
#include <fmt/format.h>
#include <array>
namespace {
constexpr auto const *CACHE_DIR = ".local/share/elekter";
constexpr auto const *DB_NAME = "nordpool.db";
constexpr std::array<char const *, 4> const CREATE_TABLES = {
R"(CREATE TABLE IF NOT EXISTS blocks (
id INTEGER PRIMARY KEY,
region CHAR(2) NOT NULL,
start_h INTEGER NOT NULL,
size INTEGER NOT NULL))",
"CREATE UNIQUE INDEX IF NOT EXISTS idx_blocks ON blocks (region, start_h)",
R"(CREATE TABLE IF NOT EXISTS prices (
block_id INTEGER NOT NULL,
time_h INTEGER NOT NULL,
price DOUBLE NOT NULL))",
"CREATE UNIQUE INDEX IF NOT EXISTS idx_price_blocks ON prices (block_id, time_h)"
};
constexpr auto const *INSERT_BLOCK = "INSERT INTO blocks (region, start_h, size) VALUES (?,?,?)";
constexpr auto const *INSERT_PRICE = "INSERT INTO prices (block_id, time_h, price) VALUES (?,?,?)";
constexpr auto const *GET_PRICE_BLOCKS =
R"(SELECT id, start_h, size FROM blocks
WHERE region = :region AND
(start_h >= :start OR (start_h + size) > :start) AND
(start_h <= :end))";
constexpr auto const *GET_PRICES =
R"(SELECT time_h, price FROM prices
WHERE block_id=:block_id AND time_h >= :start AND time_h <= :end)";
class Transaction {
public:
inline Transaction(QSqlDatabase &db)
: _db(&db)
{
_db->transaction();
}
inline ~Transaction()
{
if (_db != nullptr) {
_db->rollback();
}
}
inline auto commit() -> bool
{
auto const rval = _db->commit();
if (rval) {
_db = nullptr;
}
return rval;
}
private:
QSqlDatabase *_db = nullptr;
};
} // namespace
namespace El {
// -----------------------------------------------------------------------------
Cache::Cache(App const &app)
: _app(app)
{
// create the cache directory
auto const home = QDir::home();
if (!home.mkpath(CACHE_DIR)) {
fmt::print(stderr, "Vahemälu kausta {} loomine ebaõnnestus\n", CACHE_DIR);
return;
}
// initialize the database
if (!init_database()) {
return;
}
_valid = true;
}
auto Cache::init_database() -> bool
{
using namespace Qt::Literals::StringLiterals;
auto db = QSqlDatabase::addDatabase(u"QSQLITE"_s);
// open the database
auto const db_name = QString{u"%1/%2/%3"_s}.arg(QDir::homePath(), CACHE_DIR, DB_NAME);
db.setDatabaseName(db_name);
if (!db.open()) {
fmt::print(stderr, "Vahemälu andmebaasi faili {} avamine ebaõnnestus: {}\n", db_name, db.lastError().text());
return false;
}
// create tables
QSqlQuery q{db};
for (auto const *sql : CREATE_TABLES) {
if (!q.prepare(sql)) {
fmt::print(stderr, "Päringu {} ettevalmistamine ebaõnnestus: {}\n", q.lastQuery(), q.lastError().text());
return false;
}
if (!q.exec()) {
fmt::print(stderr, "Päringu {} käivitamine ebaõnnestus: {}\n", q.lastQuery(), q.lastError().text());
return false;
}
}
return true;
}
auto Cache::get_prices(QString const ®ion, int start_h, int end_h) const -> PriceBlocks
{
using namespace Qt::Literals::StringLiterals;
if (!_valid) {
throw Exception{"vahemälu ei ole avatud"};
}
auto db = QSqlDatabase::database();
if (!db.isOpen()) {
throw Exception{"andmebaas ei ole avatud"};
}
// prepare SQL statements
QSqlQuery q_blocks{db};
if (!q_blocks.prepare(GET_PRICE_BLOCKS)) {
throw Exception{"päringu {} ettevalmistamine ebaõnnestus: {}", q_blocks.lastQuery(), q_blocks.lastError().text()};
}
q_blocks.bindValue(u":region"_s, region);
q_blocks.bindValue(u":start"_s, QVariant{start_h});
q_blocks.bindValue(u":end"_s, QVariant{end_h});
QSqlQuery q_prices{db};
if (!q_prices.prepare(GET_PRICES)) {
throw Exception{"päringu {} ettevalmistamine ebaõnnestus: {}", q_prices.lastQuery(), q_prices.lastError().text()};
}
q_prices.bindValue(u":start"_s, QVariant{start_h});
q_prices.bindValue(u":end"_s, QVariant{end_h});
if (!q_blocks.exec()) {
throw Exception{"päringu {} käivitamine ebaõnnestus: {}", q_blocks.lastQuery(), q_blocks.lastError().text()};
}
// we now have zero, one or multiple price blocks
PriceBlocks blocks{};
while (q_blocks.next()) {
// load all the prices from this block that are within the request time frame
q_prices.bindValue(u":block_id"_s, q_blocks.value(0).toLongLong());
if (!q_prices.exec()) {
throw Exception{"päringu {} käivitamine ebaõnnestus: {}", q_prices.lastQuery(), q_prices.lastError().text()};
}
// now we have price records
PriceBlock block{};
while (q_prices.next()) {
block.append({q_prices.value(0).toInt(), q_prices.value(1).toDouble()});
}
if (!block.empty()) {
blocks.append(std::move(block));
}
}
return blocks;
}
void Cache::store_prices(QString const ®ion, PriceBlocks const &prices) const
{
if (!_valid) {
throw Exception{"vahemälu ei ole avatud"};
}
auto db = QSqlDatabase::database();
if (!db.isOpen()) {
throw Exception{"andmebaas ei ole avatud"};
}
// prepare SQL statements
QSqlQuery q_block{db};
if (!q_block.prepare(INSERT_BLOCK)) {
throw Exception{"päringu {} ettevalmistamine ebaõnnestus: {}", q_block.lastQuery(), q_block.lastError().text()};
}
q_block.bindValue(0, region);
QSqlQuery q_price{db};
if (!q_price.prepare(INSERT_PRICE)) {
throw Exception{"päringu {} ettevalmistamine ebaõnnestus: {}", q_price.lastQuery(), q_price.lastError().text()};
}
Transaction tr{db};
// store all the blocks and prices
for (auto const &b : prices.blocks()) {
auto time_h = b.start_time_h;
q_block.bindValue(1, QVariant{b.start_time_h});
q_block.bindValue(2, QVariant{b.size()});
if (!q_block.exec()) {
throw Exception{"päringu {} käivitamine ebaõnnestus: {}", q_block.lastQuery(), q_block.lastError().text()};
}
q_price.bindValue(0, q_block.lastInsertId());
for (auto const price : b.prices) {
q_price.bindValue(1, QVariant{time_h++});
q_price.bindValue(2, QVariant{price});
if (!q_price.exec()) {
throw Exception{"päringu {} käivitamine ebaõnnestus: {}", q_price.lastQuery(), q_price.lastError().text()};
}
}
}
if (!tr.commit()) {
throw Exception{"andmebaasi salvestamine ebaõnnestus: {}", db.lastError().text()};
}
}
} // namespace El