forked from foldynl/QLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSVFormat.cpp
98 lines (76 loc) · 2.27 KB
/
CSVFormat.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
#include <QSqlRecord>
#include "CSVFormat.h"
#include "core/debug.h"
MODULE_IDENTIFICATION("qlog.logformat.csvformat");
CSVFormat::CSVFormat(QTextStream &stream) :
AdxFormat(stream),
delimiter(',')
{
FCT_IDENTIFICATION;
}
void CSVFormat::exportStart()
{
FCT_IDENTIFICATION;
}
void CSVFormat::exportContact(const QSqlRecord &record, QMap<QString, QString> *applTags)
{
FCT_IDENTIFICATION;
qCDebug(function_parameters) << record;
currectRecord.clear();
writeSQLRecord(record, applTags);
exportedRecords << currectRecord;
}
void CSVFormat::exportEnd()
{
FCT_IDENTIFICATION;
// Print Header - QMap sorts keys automatically
const QList<QString> headerKeys(header.keys());
QStringList row;
for ( const QString& headerField : headerKeys )
{
row << headerField;
}
stream << row.join(delimiter) << "\n";
// Normalize and print exported records
for ( const QHash<QString, QString> &record : static_cast<const QList<QHash<QString, QString>>&>(exportedRecords) )
{
row.clear();
for ( const QString& headerField : headerKeys )
{
row << record.value(headerField);
}
stream << row.join(delimiter) << "\n";
}
}
void CSVFormat::setDelimiter(const QChar &inDelimiter)
{
FCT_IDENTIFICATION;
delimiter = inDelimiter;
}
void CSVFormat::writeField(const QString &name,
bool presenceCondition,
const QString &value,
const QString &type)
{
FCT_IDENTIFICATION;
qCDebug(function_parameters)<< name
<< presenceCondition
<< value
<< type;
if ( !presenceCondition ) return;
header[name] = 0; // using QMap only due to ordering and uniq, number is not used at this moment;
currectRecord[name] = csvStringValue(value);
}
const QString CSVFormat::toDate(const QVariant &var)
{
return var.toDate().toString("yyyy-MM-dd");
}
const QString CSVFormat::toTime(const QVariant &var)
{
return var.toTime().toString("hh:mm:ss");
}
QString CSVFormat::csvStringValue(const QString &value)
{
FCT_IDENTIFICATION;
return ((value.contains(delimiter))? "\"" + value + "\"" : value);
}