forked from foldynl/QLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUpdatableSQLRecord.cpp
95 lines (75 loc) · 2.37 KB
/
UpdatableSQLRecord.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
#include <QSqlField>
#include "UpdatableSQLRecord.h"
#include "debug.h"
MODULE_IDENTIFICATION("qlog.core.updatableqslrecord");
UpdatableSQLRecord::UpdatableSQLRecord(int interval, QObject *parent)
: QObject{parent},
interval(interval)
{
FCT_IDENTIFICATION;
connect(&timer, &QTimer::timeout, this, &UpdatableSQLRecord::emitStoreRecord);
}
UpdatableSQLRecord::~UpdatableSQLRecord()
{
FCT_IDENTIFICATION;
timer.stop();
}
void UpdatableSQLRecord::updateRecord(const QSqlRecord &record)
{
FCT_IDENTIFICATION;
if ( internalRecord.isEmpty() )
{
internalRecord = record;
qCDebug(runtime) << "Record is empty, starting timer" << interval;
timer.start(interval);
return;
}
else if ( !matchQSO(QSOMatchingType, record) )
{
qCDebug(runtime) << "Records do not match";
timer.stop();
emitStoreRecord();
internalRecord = record;
}
else
{
qCDebug(runtime) << "Records match";
timer.stop();
for ( int i = 0; i < record.count(); ++i )
{
const QString &fieldName = record.fieldName(i);
if ( !internalRecord.contains(fieldName) )
internalRecord.append(record.field(i));
else if ( !record.value(i).toString().isEmpty()
&& internalRecord.value(fieldName).toString().isEmpty() )
internalRecord.setValue(fieldName, record.value(i));
}
}
qCDebug(runtime) << "starting timer" << interval;
timer.start(interval);
}
void UpdatableSQLRecord::emitStoreRecord()
{
FCT_IDENTIFICATION;
timer.stop();
if ( internalRecord.isEmpty() )
return;
qCDebug(runtime) << "emitting record";
emit recordReady(internalRecord);
internalRecord.clear();
}
bool UpdatableSQLRecord::matchQSO(const MatchingType matchingType,
const QSqlRecord &record)
{
FCT_IDENTIFICATION;
const QStringList &fields = matchingFields.value(matchingType);
for ( const QString &fieldName : fields )
{
qCDebug(runtime) << "compare field name " << fieldName
<< "In value" << internalRecord.value(fieldName)
<< "New value" << record.value(fieldName);
if ( internalRecord.value(fieldName) != record.value(fieldName))
return false;
}
return true;
}