author | František Kučera <franta-hg@frantovo.cz> |
Sat, 30 Mar 2019 16:14:41 +0100 | |
branch | v_0 |
changeset 38 | 129b8cca9b98 |
parent 29 | src/QtRelationalReaderStringHadler.h@0f9f7d6564cd |
child 42 | 707a6734f364 |
permissions | -rw-r--r-- |
29
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
1 |
/** |
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
2 |
* Relational pipes |
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
3 |
* Copyright © 2018 František Kučera (Frantovo.cz, GlobalCode.info) |
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
4 |
* |
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
5 |
* This program is free software: you can redistribute it and/or modify |
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
6 |
* it under the terms of the GNU General Public License as published by |
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
7 |
* the Free Software Foundation, either version 3 of the License, or |
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
8 |
* (at your option) any later version. |
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
9 |
* |
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
10 |
* This program is distributed in the hope that it will be useful, |
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
13 |
* GNU General Public License for more details. |
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
14 |
* |
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License |
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
16 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
0f9f7d6564cd
license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
17 |
*/ |
13
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
18 |
#pragma once |
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
19 |
|
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
20 |
#include <QObject> |
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
21 |
|
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
22 |
#include <relpipe/reader/typedefs.h> |
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
23 |
#include <relpipe/reader/TypeId.h> |
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
24 |
#include <relpipe/reader/handlers/RelationalReaderStringHandler.h> |
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
25 |
#include <relpipe/reader/handlers/AttributeMetadata.h> |
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
26 |
|
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
27 |
using namespace relpipe::reader; |
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
28 |
using namespace relpipe::reader::handlers; |
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
29 |
|
38
129b8cca9b98
fix typo: Hadler → Handler
František Kučera <franta-hg@frantovo.cz>
parents:
29
diff
changeset
|
30 |
class QtRelationalReaderStringHandler : public QObject, public RelationalReaderStringHandler { |
13
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
31 |
|
20
b13e7ed9eea3
better use of signal/slot mechanism, threads, Qt::ConnectionType::QueuedConnection
František Kučera <franta-hg@frantovo.cz>
parents:
18
diff
changeset
|
32 |
Q_OBJECT |
b13e7ed9eea3
better use of signal/slot mechanism, threads, Qt::ConnectionType::QueuedConnection
František Kučera <franta-hg@frantovo.cz>
parents:
18
diff
changeset
|
33 |
public: |
38
129b8cca9b98
fix typo: Hadler → Handler
František Kučera <franta-hg@frantovo.cz>
parents:
29
diff
changeset
|
34 |
QtRelationalReaderStringHandler(QObject* parent) : QObject(parent) { |
13
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
35 |
} |
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
36 |
|
38
129b8cca9b98
fix typo: Hadler → Handler
František Kučera <franta-hg@frantovo.cz>
parents:
29
diff
changeset
|
37 |
virtual ~QtRelationalReaderStringHandler() { |
13
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
38 |
} |
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
39 |
|
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
40 |
virtual void startRelation(string_t name, std::vector<AttributeMetadata> attributes) override { |
20
b13e7ed9eea3
better use of signal/slot mechanism, threads, Qt::ConnectionType::QueuedConnection
František Kučera <franta-hg@frantovo.cz>
parents:
18
diff
changeset
|
41 |
emit startRelationReceived(name, attributes); |
13
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
42 |
} |
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
43 |
|
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
44 |
virtual void attribute(const string_t& value) override { |
20
b13e7ed9eea3
better use of signal/slot mechanism, threads, Qt::ConnectionType::QueuedConnection
František Kučera <franta-hg@frantovo.cz>
parents:
18
diff
changeset
|
45 |
emit attributeReceived(value); |
13
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
46 |
}; |
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
47 |
|
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
48 |
virtual void endOfPipe() override { |
20
b13e7ed9eea3
better use of signal/slot mechanism, threads, Qt::ConnectionType::QueuedConnection
František Kučera <franta-hg@frantovo.cz>
parents:
18
diff
changeset
|
49 |
emit endOfPipeReceived(); |
13
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
50 |
}; |
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
51 |
|
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
52 |
signals: |
20
b13e7ed9eea3
better use of signal/slot mechanism, threads, Qt::ConnectionType::QueuedConnection
František Kučera <franta-hg@frantovo.cz>
parents:
18
diff
changeset
|
53 |
void startRelationReceived(const string_t name, std::vector<AttributeMetadata> attributes); |
b13e7ed9eea3
better use of signal/slot mechanism, threads, Qt::ConnectionType::QueuedConnection
František Kučera <franta-hg@frantovo.cz>
parents:
18
diff
changeset
|
54 |
void attributeReceived(const string_t value); |
b13e7ed9eea3
better use of signal/slot mechanism, threads, Qt::ConnectionType::QueuedConnection
František Kučera <franta-hg@frantovo.cz>
parents:
18
diff
changeset
|
55 |
void endOfPipeReceived(); |
13
c84042d014c9
background thread for STDIN reading + proxy with signals/slots for passing data to the GUI thread
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
56 |
}; |