summaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/coreSQLiteStudio/csvserializer.cpp
blob: 7d7d20b86d9f1c89e8209f0dad8b282c92cf9950 (plain) (blame)
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
#include "csvserializer.h"
#include <QStringList>

// TODO write unit tests for CsvSerializer

QString CsvSerializer::serialize(const QList<QStringList>& data, const CsvFormat& format)
{
    QStringList outputRows;

    foreach (const QStringList& dataRow, data)
        outputRows << serialize(dataRow, format);

    return outputRows.join(format.rowSeparator);
}

QString CsvSerializer::serialize(const QStringList& data, const CsvFormat& format)
{
    QString value;
    bool hasQuote;
    QStringList outputCells;
    foreach (const QString& rowValue, data)
    {
        value = rowValue;

        hasQuote = value.contains("\"");
        if (hasQuote)
            value.replace("\"", "\"\"");

        if (hasQuote || value.contains(format.columnSeparator) || value.contains(format.rowSeparator))
            value = "\""+value+"\"";

        outputCells << value;
    }

    return outputCells.join(format.columnSeparator);
}

template <class T>
QList<QList<T>> typedDeserialize(const T& data, const CsvFormat& format)
{
    QList<QList<T>> rows;
    QList<T> cells;

    int pos = 0;
    int lgt = data.length();
    bool quotes = false;
    bool sepAsLast = false;
    T field = "";
    QChar c;

    while (pos < lgt)
    {
        c = data[pos];
        sepAsLast = false;
        if (!quotes && c == '"' )
        {
            quotes = true;
        }
        else if (quotes && c == '"' )
        {
            if (pos + 1 < data.length() && data[pos+1] == '"' )
            {
               field += c;
               pos++;
            }
            else
            {
               quotes = false;
            }
        }
        else if (!quotes && format.columnSeparator.contains(c))
        {
            cells << field;
            field.clear();
            sepAsLast = true;
        }
        else if (!quotes && format.rowSeparator.contains(c))
        {
            cells << field;
            rows << cells;
            cells.clear();
            field.clear();
        }
        else
        {
            field += c;
        }
        pos++;
    }

    if (field.size() > 0 || sepAsLast)
        cells << field;

    if (cells.size() > 0)
        rows << cells;

    return rows;
}

QList<QList<QByteArray> > CsvSerializer::deserialize(const QByteArray& data, const CsvFormat& format)
{
    return typedDeserialize<QByteArray>(data, format);
}

QList<QStringList> CsvSerializer::deserialize(const QString& data, const CsvFormat& format)
{
    QList<QList<QString>> deserialized = typedDeserialize<QString>(data, format);

    QList<QStringList> finalList;
    for (const QList<QString>& resPart : deserialized)
        finalList << QStringList(resPart);

    return finalList;
}


//QList<QStringList> CsvSerializer::deserialize(const QByteArray& data, const CsvFormat& format)
//{
//    QList<QStringList> rows;
//    QStringList cells;

//    int pos = 0;
//    int lgt = data.length();
//    bool quotes = false;
//    bool sepAsLast = false;
//    QString field = "";
//    QChar c;

//    while (pos < lgt)
//    {
//        c = data[pos];
//        sepAsLast = false;
//        if (!quotes && c == '"' )
//        {
//            quotes = true;
//        }
//        else if (quotes && c == '"' )
//        {
//            if (pos + 1 < data.length() && data[pos+1] == '"' )
//            {
//               field += c;
//               pos++;
//            }
//            else
//            {
//               quotes = false;
//            }
//        }
//        else if (!quotes && format.columnSeparator.contains(c))
//        {
//            cells << field;
//            field.clear();
//            sepAsLast = true;
//        }
//        else if (!quotes && format.rowSeparator.contains(c))
//        {
//            cells << field;
//            rows << cells;
//            cells.clear();
//            field.clear();
//        }
//        else
//        {
//            field += c;
//        }
//        pos++;
//    }

//    if (field.size() > 0 || sepAsLast)
//        cells << field;

//    if (cells.size() > 0)
//        rows << cells;

//    return rows;
//}