author | František Kučera <franta-hg@frantovo.cz> |
Sat, 27 Nov 2021 23:15:17 +0100 | |
branch | v_0 |
changeset 9 | 42dbdee1d9f0 |
parent 1 | e04e5bbc147b |
permissions | -rw-r--r-- |
0 | 1 |
/** |
2 |
* Relational pipes |
|
3 |
* Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info) |
|
4 |
* |
|
5 |
* This program is free software: you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation, version 3 of the License. |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
16 |
*/ |
|
17 |
#pragma once |
|
18 |
||
19 |
#include <memory> |
|
20 |
#include <string> |
|
21 |
#include <vector> |
|
22 |
#include <iostream> |
|
23 |
#include <sstream> |
|
24 |
#include <locale> |
|
25 |
#include <codecvt> |
|
26 |
||
27 |
#include <relpipe/common/type/typedefs.h> |
|
28 |
#include <relpipe/reader/TypeId.h> |
|
29 |
#include <relpipe/reader/handlers/RelationalReaderStringHandler.h> |
|
30 |
#include <relpipe/reader/handlers/AttributeMetadata.h> |
|
31 |
||
32 |
#include "Configuration.h" |
|
33 |
#include "INIWriter.h" |
|
34 |
||
35 |
namespace relpipe { |
|
36 |
namespace out { |
|
37 |
namespace ini { |
|
38 |
||
39 |
class INILiteralHandler : public relpipe::reader::handlers::RelationalReaderStringHandler { |
|
40 |
private: |
|
41 |
INIWriter& writer; |
|
1
e04e5bbc147b
add --style section-first
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
42 |
bool hasSections = false; |
0 | 43 |
relpipe::common::type::StringX currentSection; |
44 |
std::vector<relpipe::reader::handlers::AttributeMetadata> currentAttributes; |
|
45 |
relpipe::common::type::Integer relationCount = 0; |
|
46 |
relpipe::common::type::Integer currentAttributeIndex = 0; |
|
47 |
public: |
|
48 |
||
1
e04e5bbc147b
add --style section-first
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
49 |
INILiteralHandler(INIWriter& writer) : writer(writer) { |
0 | 50 |
} |
51 |
||
52 |
virtual ~INILiteralHandler() { |
|
53 |
} |
|
54 |
||
55 |
void startRelation(relpipe::common::type::StringX name, std::vector<relpipe::reader::handlers::AttributeMetadata> attributes) override { |
|
56 |
if (relationCount) writer.endSection(); |
|
57 |
currentSection = name; |
|
58 |
currentAttributes = attributes; |
|
59 |
INIWriter::SectionStartEvent e; |
|
60 |
e.name = name; |
|
61 |
writer.startSection(e); |
|
1
e04e5bbc147b
add --style section-first
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
62 |
hasSections = true; |
0 | 63 |
relationCount++; |
64 |
} |
|
65 |
||
66 |
void attribute(const relpipe::common::type::StringX& value) override { |
|
67 |
if (currentAttributeIndex && currentAttributeIndex % currentAttributes.size() == 0) { |
|
68 |
currentAttributeIndex = 0; |
|
69 |
writer.endSection(); |
|
70 |
// Usually there should be only one record in each relation. |
|
71 |
// But if there are more of them, we will rather create multiple sections with same name (makes more sense) |
|
72 |
// than duplicate keys in a single section. |
|
73 |
INIWriter::SectionStartEvent e; |
|
74 |
e.name = currentSection; |
|
75 |
writer.startSection(e); |
|
1
e04e5bbc147b
add --style section-first
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
76 |
hasSections = true; |
0 | 77 |
} |
78 |
||
79 |
INIWriter::EntryEvent e; |
|
80 |
e.key = currentAttributes[currentAttributeIndex].getAttributeName(); |
|
81 |
e.value = value; |
|
82 |
writer.entry(e); |
|
83 |
||
84 |
currentAttributeIndex++; |
|
85 |
} |
|
86 |
||
87 |
void endOfPipe() { |
|
1
e04e5bbc147b
add --style section-first
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
88 |
if (hasSections) writer.endSection(); |
0 | 89 |
} |
90 |
||
91 |
}; |
|
92 |
||
93 |
} |
|
94 |
} |
|
95 |
} |