-
Notifications
You must be signed in to change notification settings - Fork 1
/
WeightCurve.cpp
482 lines (399 loc) · 13 KB
/
WeightCurve.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
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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
#include "WeightCurve.h"
#include <assert.h>
#include <QtGlobal>
#include <QStandardPaths>
#include <QDir>
#include <QSqlError>
#include <QSqlRecord>
#include <QSqlQuery>
#include <QSqlDriver>
#include <QSqlField>
#include <QDateTime>
#include <QVariant>
#include <QDebug>
#if defined(QT_DEBUG)
QString WeightCurve::dbFileName = "weight_debug.db";
#else
QString WeightCurve::dbFileName = "weight.db";
#endif
WeightCurve* WeightCurve::instance = nullptr;
//==============================================================================
//==============================================================================
Curve::Curve()
: mMin(std::numeric_limits<float>::max())
, mMax(std::numeric_limits<float>::lowest())
{
}
//==============================================================================
//==============================================================================
WeightCurve* WeightCurve::singleton()
{
if (!instance)
instance = new WeightCurve();
return instance;
}
void WeightCurve::destroy()
{
delete instance;
instance = nullptr;
}
void WeightCurve::initialize()
{
QString backupPath;
QDir dir;
assert(!mDB.isOpen());
mInputDate = QDate::currentDate();
backupPath = QStandardPaths::writableLocation(QStandardPaths::DataLocation);
dir.mkpath(backupPath);
mDBFilePath = backupPath + "/" + dbFileName;
qDebug("DB file path: %s\n", mDBFilePath.toUtf8().data());
// Find QSLite driver
mDB = QSqlDatabase::addDatabase("QSQLITE");
mDB.setDatabaseName(mDBFilePath);
if (!mDB.open())
qFatal("Can't open database: %s\n", mDB.lastError().text().toUtf8().data());
if (mDB.tables().empty())
{
QSqlQuery query;
query.exec("CREATE TABLE Weight "
"(id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "
"date DATE, "
"morning DECIMAL, "
"noon DECIMAL, "
"evening DECIMAL, "
"comment TEXT, "
"recordDate DATETIME DEFAULT CURRENT_TIMESTAMP)");
if (query.lastError().isValid())
qFatal("Can't create tables: %s\n", query.lastError().text().toUtf8().data());
}
else
{
QSqlQuery query;
query.exec("SELECT date FROM Weight");
for (int i = 0; query.next(); i++)
{
QString date;
QString updatedDate;
date = query.value(query.record().indexOf("date")).toString();
updatedDate = date;
updatedDate.replace("/", "-");
QSqlQuery updateQuery;
updateQuery.exec("UPDATE Weight SET date='" + updatedDate + "' WHERE date='" + date + "'");
}
}
}
bool WeightCurve::importFromCSVFile(const QUrl& sourceFilePath)
{
QFile cvsFile;
cvsFile.setFileName(sourceFilePath.toLocalFile());
if (!cvsFile.open(QIODevice::ReadOnly))
{
qFatal("Can't open file: %s\n", sourceFilePath.toLocalFile().toUtf8().data());
return false;
}
QStringList dates;
QStringList mornings;
QStringList noons;
QStringList evenings;
QStringList comments;
dates = QString(cvsFile.readLine()).split(";");
mornings = QString(cvsFile.readLine().replace(",", ".")).split(";");
noons = QString(cvsFile.readLine().replace(",", ".")).split(";");
evenings = QString(cvsFile.readLine().replace(",", ".")).split(";");
comments = QString(cvsFile.readLine()).split(";");
QSqlQuery query;
for (int i = 0; i < dates.size(); i++)
{
QString date;
QRegExp rx("([0-9]{2}/[0-9]{2}/[0-9]{4})");
rx.indexIn(dates[i]);
date = rx.cap(1);
// TODO improve performances with a batch
if (!date.isEmpty())
{
query.exec(QString("INSERT INTO Weight (date, morning, noon, evening, comment) VALUES ('%1', '%2', '%3', '%4', '%5')")
.arg(date).arg(mornings[i]).arg(noons[i]).arg(evenings[i]).arg(comments[i]));
}
}
if (query.lastError().isValid())
qFatal("Can't create tables: %s\n", query.lastError().text().toUtf8().data());
emit morningWeightChanged(morningWeight());
emit noonWeightChanged(morningWeight());
emit eveningWeightChanged(morningWeight());
return true;
}
bool WeightCurve::exportToCSVFile(const QUrl& destinationFilePath)
{
(void)destinationFilePath;
return false;
}
void WeightCurve::setInputDate(const QDate& date)
{
mInputDate = date;
emit inputDateChanged(date);
emit dateChanged();
}
QDate WeightCurve::inputDate() const
{
return mInputDate;
}
void WeightCurve::setMorningWeight(float weight)
{
QSqlQuery query;
query.exec(QString("SELECT date FROM Weight WHERE date='%1'")
.arg(mInputDate.toString("dd-MM-yyyy")));
if (query.next())
{
query.exec(QString("UPDATE Weight SET morning='%1' WHERE date='%2'")
.arg(weight).arg(mInputDate.toString("dd-MM-yyyy")));
}
else
{
query.exec(QString("INSERT INTO Weight (date, morning) VALUES ('%1', '%2')")
.arg(mInputDate.toString("dd-MM-yyyy")).arg(weight));
}
emit morningWeightChanged(weight);
updateCurve("morning", mMorningCurve);
emit morningCurveChanged(morningCurve());
}
float WeightCurve::morningWeight() const
{
QSqlQuery query;
bool ok;
float result = std::numeric_limits<float>::quiet_NaN();
query.exec(QString("SELECT morning FROM Weight WHERE date='%1'")
.arg(mInputDate.toString("dd-MM-yyyy")));
if (query.next())
{
float tmp = query.value(query.record().indexOf("morning")).toString().toFloat(&ok);
if (ok)
result = tmp;
}
return result;
}
void WeightCurve::setNoonWeight(float weight)
{
QSqlQuery query;
query.exec(QString("SELECT date FROM Weight WHERE date='%1'")
.arg(mInputDate.toString("dd-MM-yyyy")));
if (query.next())
{
query.exec(QString("UPDATE Weight SET noon='%1' WHERE date='%2'")
.arg(weight).arg(mInputDate.toString("dd-MM-yyyy")));
}
else
{
query.exec(QString("INSERT INTO Weight (date, noon) VALUES ('%1', '%2')")
.arg(mInputDate.toString("dd-MM-yyyy")).arg(weight));
}
emit noonWeightChanged(weight);
updateCurve("noon", mNoonCurve);
emit noonCurveChanged(noonCurve());
}
float WeightCurve::noonWeight() const
{
QSqlQuery query;
bool ok;
float result = std::numeric_limits<float>::quiet_NaN();
query.exec(QString("SELECT noon FROM Weight WHERE date='%1'")
.arg(mInputDate.toString("dd-MM-yyyy")));
if (query.next())
{
float tmp = query.value(query.record().indexOf("noon")).toString().toFloat(&ok);
if (ok)
result = tmp;
}
return result;
}
void WeightCurve::setEveningWeight(float weight)
{
QSqlQuery query;
query.exec(QString("SELECT date FROM Weight WHERE date='%1'")
.arg(mInputDate.toString("dd-MM-yyyy")));
if (query.next())
{
query.exec(QString("UPDATE Weight SET evening='%1' WHERE date='%2'")
.arg(weight).arg(mInputDate.toString("dd-MM-yyyy")));
}
else
{
query.exec(QString("INSERT INTO Weight (date, evening) VALUES ('%1', '%2')")
.arg(mInputDate.toString("dd-MM-yyyy")).arg(weight));
}
emit eveningWeightChanged(weight);
updateCurve("evening", mEveningCurve);
emit eveningCurveChanged(eveningCurve());
}
float WeightCurve::eveningWeight() const
{
QSqlQuery query;
bool ok;
float result = std::numeric_limits<float>::quiet_NaN();
query.exec(QString("SELECT evening FROM Weight WHERE date='%1'")
.arg(mInputDate.toString("dd-MM-yyyy")));
if (query.next())
{
float tmp = query.value(query.record().indexOf("evening")).toString().toFloat(&ok);
if (ok)
result = tmp;
}
return result;
}
void WeightCurve::setComment(const QString& comment)
{
QSqlQuery query;
QSqlField commentField("comment", QVariant::String);
QString text;
commentField.setValue(comment);
text = mDB.driver()->formatValue(commentField); // Necessary to avoid issue with characters like quotes,...
query.exec(QString("SELECT comment FROM Weight WHERE date='%1'")
.arg(mInputDate.toString("dd-MM-yyyy")));
if (query.next())
{
query.exec(QString("UPDATE Weight SET comment=%1 WHERE date='%2'")
.arg(text).arg(mInputDate.toString("dd-MM-yyyy")));
}
else
{
query.exec(QString("INSERT INTO Weight (date, comment) VALUES ('%1', %2)")
.arg(mInputDate.toString("dd-MM-yyyy")).arg(text));
}
emit commentChanged(comment);
updateCurves();
}
QString WeightCurve::comment() const
{
QSqlQuery query;
QString result;
query.exec(QString("SELECT comment FROM Weight WHERE date='%1'")
.arg(mInputDate.toString("dd-MM-yyyy")));
if (query.next())
{
result = query.value(query.record().indexOf("comment")).toString();
}
return result;
}
Curve *WeightCurve::morningCurve()
{
return &mMorningCurve;
}
Curve* WeightCurve::noonCurve()
{
return &mNoonCurve;
}
Curve* WeightCurve::eveningCurve()
{
return &mEveningCurve;
}
void WeightCurve::setStartDate(const QDate& date)
{
mStartDate = date;
emit startDateChanged(mStartDate);
updateCurves();
}
QDate WeightCurve::startDate() const
{
return mStartDate;
}
void WeightCurve::setEndDate(const QDate& date)
{
mEndDate = date;
emit endDateChanged(mEndDate);
updateCurves();
}
QDate WeightCurve::endDate() const
{
return mEndDate;
}
void WeightCurve::onTimerUpdated()
{
static QDate oldDate = QDate::currentDate();
QDate currentDate = QDate::currentDate();
if (currentDate != oldDate)
{
oldDate = currentDate;
emit dateChanged();
}
}
void WeightCurve::onDateChanged()
{
emit morningWeightChanged(morningWeight());
emit noonWeightChanged(noonWeight());
emit eveningWeightChanged(eveningWeight());
emit commentChanged(comment());
}
WeightCurve::WeightCurve()
{
QObject::connect(&mTimer, SIGNAL(timeout()), this, SLOT(onTimerUpdated()));
QObject::connect(this, SIGNAL(dateChanged()), this, SLOT(onDateChanged()));
mTimer.setSingleShot(false);
mTimer.setInterval(0);
mTimer.start();
}
WeightCurve::~WeightCurve()
{
}
void WeightCurve::updateCurves()
{
updateCurve("morning", mMorningCurve);
mMorningCurve.setColor(QColor("#4F81BD"));
emit morningCurveChanged(&mMorningCurve);
updateCurve("noon", mNoonCurve);
mNoonCurve.setColor(QColor("#268E2A"));
emit noonCurveChanged(&mNoonCurve);
updateCurve("evening", mEveningCurve);
mEveningCurve.setColor(QColor("#FF9523"));
emit eveningCurveChanged(&mEveningCurve);
}
void WeightCurve::updateCurve(const QString &columnName, Curve &curve)
{
QString queryString;
QSqlQuery query;
QVariantList points;
QStringList comments;
float min = std::numeric_limits<float>::max();
float max = std::numeric_limits<float>::lowest();
if (!mStartDate.isValid() || !mEndDate.isValid())
return;
queryString = "SELECT date, " + columnName + ", comment FROM Weight";
// Dates range is made manually cause of an issue with this request
/* queryString = "SELECT date, " + columnName + ", comment FROM Weight"
" date BETWEEN '" + mStartDate.toString("yyyy-MM-dd") + "'"
" AND '" + mEndDate.toString("yyyy-MM-dd") + "'";*/
query.exec(queryString);
if (query.lastError().isValid())
qWarning("Failed to retrieve values : %s\n", query.lastError().text().toUtf8().data());
while (query.next())
{
float value;
QPointF point;
QDate date;
bool ok;
date = QDate::fromString(query.value(query.record().indexOf("date")).toString(), "dd-MM-yyyy");
if (!(date > mStartDate && date <= mEndDate))
continue;
value = query.value(query.record().indexOf(columnName)).toString().toFloat(&ok);
if (!ok)
value = std::numeric_limits<float>::quiet_NaN();
else
{
min = std::min(min, value);
max = std::max(max, value);
}
point.setX(mStartDate.daysTo(date) - 1);
point.setY(value);
// Find the position for ordered insertion (It's slow but SQLITE failed to sort on dates)
int i = 0;
for (i = 0; i < points.size(); i++)
if (points[i].toPointF().x() >= point.x())
break;
// --
points.insert(i, point);
comments.insert(i, query.value(query.record().indexOf("comment")).toString());
}
curve.setMin(min);
curve.setMax(max);
curve.setName(columnName + " weight");
curve.setPoints(points);
curve.setComments(comments);
}