src/StreamRelationalReader.h
author František Kučera <franta-hg@frantovo.cz>
Tue, 22 Oct 2019 19:45:24 +0200
branchv_0
changeset 42 3442e0d6caec
parent 38 7ae5c79af5d0
permissions -rw-r--r--
fix license version: GNU LGPLv3 or GPLv2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
29
755978b0935c license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
     1
/**
30
ef99f5a6c9f6 license of protocol, reader and writer: GNU LGPLv3+ or GNU GPLv2+
František Kučera <franta-hg@frantovo.cz>
parents: 29
diff changeset
     2
 * Relational pipes (library)
29
755978b0935c license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
     3
 * Copyright © 2018 František Kučera (Frantovo.cz, GlobalCode.info)
755978b0935c license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
     4
 *
755978b0935c license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
     5
 * This program is free software: you can redistribute it and/or modify
30
ef99f5a6c9f6 license of protocol, reader and writer: GNU LGPLv3+ or GNU GPLv2+
František Kučera <franta-hg@frantovo.cz>
parents: 29
diff changeset
     6
 * it under the terms of the:
ef99f5a6c9f6 license of protocol, reader and writer: GNU LGPLv3+ or GNU GPLv2+
František Kučera <franta-hg@frantovo.cz>
parents: 29
diff changeset
     7
 *  - GNU Lesser General Public License as published by the Free Software Foundation;
42
3442e0d6caec fix license version: GNU LGPLv3 or GPLv2
František Kučera <franta-hg@frantovo.cz>
parents: 38
diff changeset
     8
 *    version 3 of the License or (at your option)
30
ef99f5a6c9f6 license of protocol, reader and writer: GNU LGPLv3+ or GNU GPLv2+
František Kučera <franta-hg@frantovo.cz>
parents: 29
diff changeset
     9
 *  - GNU General Public License as published by the Free Software Foundation;
42
3442e0d6caec fix license version: GNU LGPLv3 or GPLv2
František Kučera <franta-hg@frantovo.cz>
parents: 38
diff changeset
    10
 *    version 2 of the License.
29
755978b0935c license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    11
 *
755978b0935c license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    12
 * This program is distributed in the hope that it will be useful,
755978b0935c license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
755978b0935c license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
755978b0935c license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    15
 * GNU General Public License for more details.
755978b0935c license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    16
 *
755978b0935c license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    17
 * You should have received a copy of the GNU General Public License
755978b0935c license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    18
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
755978b0935c license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 28
diff changeset
    19
 */
14
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    20
#pragma once
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    21
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    22
#include <string>
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    23
#include <iostream>
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    24
#include <vector>
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    25
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    26
#include <relpipe/protocol/constants.h>
26
019edca46769 AttributeMetadata: use smart pointer and avoid memory-leak
František Kučera <franta-hg@frantovo.cz>
parents: 25
diff changeset
    27
#include <memory>
14
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    28
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    29
#include "../include/relpipe/reader/typedefs.h"
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    30
#include "../include/relpipe/reader/RelationalReader.h"
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    31
#include "../include/relpipe/reader/TypeId.h"
16
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
    32
#include "../include/relpipe/reader/handlers/RelationalReaderBaseHandler.h"
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
    33
#include "../include/relpipe/reader/handlers/RelationalReaderStringHandler.h"
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
    34
#include "../include/relpipe/reader/handlers/RelationalReaderValueHandler.h"
24
6f7acc3b274c AttributeMetadata: pImpl / d-pointer version but with memory-leak and unwanted empty constructor
František Kučera <franta-hg@frantovo.cz>
parents: 22
diff changeset
    35
#include "AttributeMetadataPrivate.h"
14
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    36
#include "DataTypeReaderBase.h"
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    37
#include "types/BooleanDataTypeReader.h"
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    38
#include "types/IntegerDataTypeReader.h"
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    39
#include "types/StringDataTypeReader.h"
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    40
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    41
namespace relpipe {
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    42
namespace reader {
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    43
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    44
using namespace relpipe::protocol;
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    45
38
7ae5c79af5d0 fix typo: Hadler → Handler
František Kučera <franta-hg@frantovo.cz>
parents: 30
diff changeset
    46
using StringHandler = relpipe::reader::handlers::RelationalReaderStringHandler;
7ae5c79af5d0 fix typo: Hadler → Handler
František Kučera <franta-hg@frantovo.cz>
parents: 30
diff changeset
    47
using ValuesHandler = relpipe::reader::handlers::RelationalReaderValueHandler;
26
019edca46769 AttributeMetadata: use smart pointer and avoid memory-leak
František Kučera <franta-hg@frantovo.cz>
parents: 25
diff changeset
    48
using AttributeMetadata = relpipe::reader::handlers::AttributeMetadata;
019edca46769 AttributeMetadata: use smart pointer and avoid memory-leak
František Kučera <franta-hg@frantovo.cz>
parents: 25
diff changeset
    49
using AttributeMetadataPrivate = relpipe::reader::handlers::AttributeMetadataPrivate;
21
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
    50
14
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    51
class StreamRelationalReader : public RelationalReader {
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    52
private:
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    53
	std::istream &input;
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    54
	types::BooleanDataTypeReader booleanReader;
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    55
	types::IntegerDataTypeReader integerReader;
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    56
	types::StringDataTypeReader stringReader;
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    57
	std::vector<DataTypeReaderBase*> readers = {&booleanReader, &integerReader, &stringReader};
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    58
21
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
    59
	std::vector<StringHandler*> stringHandlers;
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
    60
	std::vector<ValuesHandler*> valuesHandlers;
14
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    61
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    62
	/**
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    63
	 * count of columns in the current table
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    64
	 */
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    65
	integer_t columnCount;
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    66
	/**
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    67
	 * number of column (0 = first) that will be written; after writing, the number is increased and prepared for next one
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    68
	 */
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    69
	integer_t currentColumn;
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    70
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    71
	/**
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    72
	 * types of columns in the current table
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    73
	 */
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    74
	std::vector<TypeId> columnTypes;
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    75
	std::vector<string_t> columnNames;
26
019edca46769 AttributeMetadata: use smart pointer and avoid memory-leak
František Kučera <franta-hg@frantovo.cz>
parents: 25
diff changeset
    76
	std::vector<AttributeMetadata> columns;
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    77
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    78
	/**
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    79
	 * TODO: remove?
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    80
	 */
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    81
	string_t readString(std::istream &input, const TypeId typeId) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    82
		for (DataTypeReaderBase* reader : readers) if (reader->supports(typeId)) return reader->readString(input);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    83
		throw RelpipeReaderException(L"Unsupported data type: " + (int) typeId);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    84
	}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    85
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    86
	void read(std::istream &input, std::function<void(const void *, const std::type_info&) > handler, const TypeId typeId) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    87
		for (DataTypeReaderBase* reader : readers) if (reader->supports(typeId)) return reader->read(input, handler);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    88
		throw RelpipeReaderException(L"Unsupported data type: " + (int) typeId);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    89
	}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    90
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    91
	void read(std::istream &input, std::function<void(const string_t&, const void *, const std::type_info&) > handler, const TypeId typeId) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    92
		for (DataTypeReaderBase* reader : readers) if (reader->supports(typeId)) return reader->read(input, handler);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    93
		throw RelpipeReaderException(L"Unsupported data type: " + (int) typeId);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    94
	}
14
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    95
19
3e1308e7606d add endOfPipe() to handlers
František Kučera <franta-hg@frantovo.cz>
parents: 18
diff changeset
    96
	void endOfPipe() {
21
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
    97
		for (StringHandler* handler : stringHandlers) handler->endOfPipe();
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
    98
		for (ValuesHandler* handler : valuesHandlers) handler->endOfPipe();
19
3e1308e7606d add endOfPipe() to handlers
František Kučera <franta-hg@frantovo.cz>
parents: 18
diff changeset
    99
	}
3e1308e7606d add endOfPipe() to handlers
František Kučera <franta-hg@frantovo.cz>
parents: 18
diff changeset
   100
14
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   101
public:
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   102
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   103
	StreamRelationalReader(std::istream &input) :
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   104
	input(input) {
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   105
	}
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   106
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   107
	string_t toTypeCode(const TypeId typeId) override {
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   108
		for (DataTypeReaderBase* reader : readers) if (reader->supports(typeId)) return reader->getTypeCode();
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   109
		throw RelpipeReaderException(L"Unsupported data type: " + static_cast<integer_t> (typeId));
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   110
	}
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   111
21
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
   112
	void addHandler(StringHandler* handler) override {
17
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   113
		stringHandlers.push_back(handler);
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   114
	}
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   115
21
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
   116
	void addHandler(ValuesHandler* handler) override {
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
   117
		valuesHandlers.push_back(handler);
17
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   118
	}
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   119
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   120
	void process() override {
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   121
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   122
		while (true) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   123
			integer_t dataPart;
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   124
			try {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   125
				dataPart = integerReader.readValue(input);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   126
				// output << "dataPart: " << dataPart << endl;
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   127
			} catch (RelpipeReaderException e) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   128
				if (input.eof() && input.gcount() == 0) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   129
					if (dataPart == DATA_PART_ROW) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   130
						// last part was row
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   131
						// input was fully read
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   132
						// we are finished
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   133
						// TODO: printCachedData(output); ???
19
3e1308e7606d add endOfPipe() to handlers
František Kučera <franta-hg@frantovo.cz>
parents: 18
diff changeset
   134
						endOfPipe();
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   135
						return;
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   136
					} else if (dataPart == DATA_PART_START) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   137
						// Empty relation might be weird but it is valid data.
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   138
						// Actually, it is not so weird as it looks.
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   139
						// fwprintf(stderr, L"Warning: The table has no rows. Weird… but OK.\n");
19
3e1308e7606d add endOfPipe() to handlers
František Kučera <franta-hg@frantovo.cz>
parents: 18
diff changeset
   140
						endOfPipe();
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   141
						return;
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   142
					} else {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   143
						// in current format, there is no other data part
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   144
						// so this will never happen
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   145
						// but maybe later…
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   146
						throw RelpipeReaderException(L"Unexpected EOF");
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   147
					}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   148
				} else if (input.eof()) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   149
					fwprintf(stderr, L"Error: found some unexpected data on the input stream: %d\n", input.gcount());
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   150
					throw e;
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   151
				} else {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   152
					// other error
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   153
					throw e;
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   154
				}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   155
			}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   156
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   157
			if (dataPart == DATA_PART_START) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   158
				// Print data of previous table
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   159
				// TODO: if (values.size() > 0) printCachedData(output); ???
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   160
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   161
				// Read table name
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   162
				string_t tableName = stringReader.readValue(input);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   163
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   164
				// Read column count
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   165
				columnCount = integerReader.readValue(input);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   166
28
c9e03557c1e1 AttributeMetadata: call vector.clear() before vector.reserve(), fixes error (if there are multiple relations in the stream)
František Kučera <franta-hg@frantovo.cz>
parents: 26
diff changeset
   167
				columnTypes.clear();
c9e03557c1e1 AttributeMetadata: call vector.clear() before vector.reserve(), fixes error (if there are multiple relations in the stream)
František Kučera <franta-hg@frantovo.cz>
parents: 26
diff changeset
   168
				columnNames.clear();
c9e03557c1e1 AttributeMetadata: call vector.clear() before vector.reserve(), fixes error (if there are multiple relations in the stream)
František Kučera <franta-hg@frantovo.cz>
parents: 26
diff changeset
   169
				columns.clear();
25
fc0d05b72214 AttributeMetadata: use vector.reserve() instead of resize() and [i] and thus avoid unwanted AttributeMetadata() constructor call
František Kučera <franta-hg@frantovo.cz>
parents: 24
diff changeset
   170
				columnTypes.reserve(columnCount);
fc0d05b72214 AttributeMetadata: use vector.reserve() instead of resize() and [i] and thus avoid unwanted AttributeMetadata() constructor call
František Kučera <franta-hg@frantovo.cz>
parents: 24
diff changeset
   171
				columnNames.reserve(columnCount);
fc0d05b72214 AttributeMetadata: use vector.reserve() instead of resize() and [i] and thus avoid unwanted AttributeMetadata() constructor call
František Kučera <franta-hg@frantovo.cz>
parents: 24
diff changeset
   172
				columns.reserve(columnCount);
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   173
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   174
				// Read column names
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   175
				for (int i = 0; i < columnCount; i++) {
25
fc0d05b72214 AttributeMetadata: use vector.reserve() instead of resize() and [i] and thus avoid unwanted AttributeMetadata() constructor call
František Kučera <franta-hg@frantovo.cz>
parents: 24
diff changeset
   176
					columnNames.push_back(stringReader.readValue(input));
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   177
				}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   178
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   179
				// Read column types
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   180
				for (int i = 0; i < columnCount; i++) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   181
					TypeId typeId = (TypeId) integerReader.readValue(input); // TODO: přetypování OK?
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   182
					string_t typeCode = toTypeCode(typeId); // validate typeId TODO: je potřeba?
25
fc0d05b72214 AttributeMetadata: use vector.reserve() instead of resize() and [i] and thus avoid unwanted AttributeMetadata() constructor call
František Kučera <franta-hg@frantovo.cz>
parents: 24
diff changeset
   183
					columnTypes.push_back(typeId);
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   184
22
e81019af67dc use AttributeMetadata instead of std::pair for relation header
František Kučera <franta-hg@frantovo.cz>
parents: 21
diff changeset
   185
					// put together names, type ids and type codes:
26
019edca46769 AttributeMetadata: use smart pointer and avoid memory-leak
František Kučera <franta-hg@frantovo.cz>
parents: 25
diff changeset
   186
					columns.push_back(std::shared_ptr<AttributeMetadataPrivate>(new AttributeMetadataPrivate({columnNames[i], columnTypes[i], typeCode})));
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   187
				}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   188
21
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
   189
				for (StringHandler* handler : stringHandlers) handler->startRelation(tableName, columns);
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
   190
				for (ValuesHandler* handler : valuesHandlers) handler->startRelation(tableName, columns);
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   191
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   192
			} else if (dataPart == DATA_PART_ROW) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   193
				for (int i = 0; i < columnCount; i++) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   194
					TypeId typeId = columnTypes[i];
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   195
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   196
					if (stringHandlers.empty()) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   197
						read(input, [&](const void * rawValue, const std::type_info & typeInfo) {
21
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
   198
							for (ValuesHandler* handler : valuesHandlers) handler->attribute(rawValue, typeInfo);
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   199
						}, typeId);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   200
					} else {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   201
						read(input, [&](const string_t& stringValue, const void * rawValue, const std::type_info & typeInfo) {
21
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
   202
							for (StringHandler* handler : stringHandlers) handler->attribute(stringValue);
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
   203
							for (ValuesHandler* handler : valuesHandlers) handler->attribute(rawValue, typeInfo);
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   204
						}, typeId);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   205
					}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   206
				}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   207
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   208
			} else {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   209
				throw RelpipeReaderException(L"Unknown data part");
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   210
			}
17
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   211
		}
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   212
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   213
		throw RelpipeReaderException(L"Unexpected exception"); // should never happen
17
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   214
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   215
	}
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   216
14
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   217
};
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   218
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   219
}
19
3e1308e7606d add endOfPipe() to handlers
František Kučera <franta-hg@frantovo.cz>
parents: 18
diff changeset
   220
}