src/StreamRelationalReader.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 08 Sep 2018 23:27:49 +0200
branchv_0
changeset 21 abd3e7f26584
parent 19 3e1308e7606d
child 22 e81019af67dc
permissions -rw-r--r--
use for-each and type aliases
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     1
#pragma once
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
#include <string>
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     4
#include <iostream>
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     5
#include <vector>
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     6
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     7
#include <relpipe/protocol/constants.h>
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
#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
    10
#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
    11
#include "../include/relpipe/reader/TypeId.h"
16
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
    12
#include "../include/relpipe/reader/handlers/RelationalReaderBaseHandler.h"
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
    13
#include "../include/relpipe/reader/handlers/RelationalReaderStringHandler.h"
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
    14
#include "../include/relpipe/reader/handlers/RelationalReaderValueHandler.h"
14
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    15
#include "DataTypeReaderBase.h"
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    16
#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
    17
#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
    18
#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
    19
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    20
namespace relpipe {
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    21
namespace reader {
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    22
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    23
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
    24
21
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
    25
using StringHandler = relpipe::reader::handlers::RelationalReaderStringHadler;
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
    26
using ValuesHandler = relpipe::reader::handlers::RelationalReaderValueHadler;
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
    27
14
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    28
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
    29
private:
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    30
	std::istream &input;
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    31
	types::BooleanDataTypeReader booleanReader;
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    32
	types::IntegerDataTypeReader integerReader;
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    33
	types::StringDataTypeReader stringReader;
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    34
	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
    35
21
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
    36
	std::vector<StringHandler*> stringHandlers;
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
    37
	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
    38
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    39
	/**
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    40
	 * 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
    41
	 */
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    42
	integer_t columnCount;
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
	 * 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
    45
	 */
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    46
	integer_t currentColumn;
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    47
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    48
	/**
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    49
	 * 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
    50
	 */
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    51
	std::vector<TypeId> columnTypes;
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    52
	std::vector<string_t> columnNames;
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    53
	std::vector<std::pair<string_t, TypeId>> columns;
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    54
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    55
	/**
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    56
	 * TODO: remove?
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    57
	 */
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    58
	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
    59
		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
    60
		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
    61
	}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    62
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    63
	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
    64
		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
    65
		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
    66
	}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    67
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    68
	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
    69
		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
    70
		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
    71
	}
14
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    72
19
3e1308e7606d add endOfPipe() to handlers
František Kučera <franta-hg@frantovo.cz>
parents: 18
diff changeset
    73
	void endOfPipe() {
21
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
    74
		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
    75
		for (ValuesHandler* handler : valuesHandlers) handler->endOfPipe();
19
3e1308e7606d add endOfPipe() to handlers
František Kučera <franta-hg@frantovo.cz>
parents: 18
diff changeset
    76
	}
3e1308e7606d add endOfPipe() to handlers
František Kučera <franta-hg@frantovo.cz>
parents: 18
diff changeset
    77
14
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    78
public:
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    79
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    80
	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
    81
	input(input) {
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    82
	}
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    83
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    84
	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
    85
		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
    86
		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
    87
	}
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    88
21
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
    89
	void addHandler(StringHandler* handler) override {
17
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    90
		stringHandlers.push_back(handler);
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    91
	}
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    92
21
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
    93
	void addHandler(ValuesHandler* handler) override {
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
    94
		valuesHandlers.push_back(handler);
17
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    95
	}
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    96
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    97
	void process() override {
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    98
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
    99
		while (true) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   100
			integer_t dataPart;
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   101
			try {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   102
				dataPart = integerReader.readValue(input);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   103
				// output << "dataPart: " << dataPart << endl;
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   104
			} catch (RelpipeReaderException e) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   105
				if (input.eof() && input.gcount() == 0) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   106
					if (dataPart == DATA_PART_ROW) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   107
						// last part was row
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   108
						// input was fully read
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   109
						// we are finished
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   110
						// TODO: printCachedData(output); ???
19
3e1308e7606d add endOfPipe() to handlers
František Kučera <franta-hg@frantovo.cz>
parents: 18
diff changeset
   111
						endOfPipe();
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   112
						return;
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   113
					} else if (dataPart == DATA_PART_START) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   114
						// 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
   115
						// 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
   116
						// 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
   117
						endOfPipe();
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   118
						return;
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   119
					} else {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   120
						// 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
   121
						// so this will never happen
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   122
						// but maybe later…
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   123
						throw RelpipeReaderException(L"Unexpected EOF");
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   124
					}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   125
				} else if (input.eof()) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   126
					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
   127
					throw e;
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   128
				} else {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   129
					// other error
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   130
					throw e;
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   131
				}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   132
			}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   133
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   134
			if (dataPart == DATA_PART_START) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   135
				// Print data of previous table
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   136
				// TODO: if (values.size() > 0) printCachedData(output); ???
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   137
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   138
				// Read table name
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   139
				string_t tableName = stringReader.readValue(input);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   140
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   141
				// Read column count
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   142
				columnCount = integerReader.readValue(input);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   143
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   144
				columnTypes.resize(columnCount);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   145
				columnNames.resize(columnCount);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   146
				columns.resize(columnCount);
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
				// Read column names
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   149
				for (int i = 0; i < columnCount; i++) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   150
					columnNames[i] = stringReader.readValue(input);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   151
				}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   152
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   153
				// Read column types
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   154
				for (int i = 0; i < columnCount; i++) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   155
					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
   156
					string_t typeCode = toTypeCode(typeId); // validate typeId TODO: je potřeba?
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   157
					columnTypes[i] = typeId;
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   158
				}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   159
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   160
				for (int i = 0; i < columnCount; i++) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   161
					columns[i] = {columnNames[i], columnTypes[i]};
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   162
				}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   163
21
abd3e7f26584 use for-each and type aliases
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
   164
				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
   165
				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
   166
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   167
			} else if (dataPart == DATA_PART_ROW) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   168
				for (int i = 0; i < columnCount; i++) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   169
					TypeId typeId = columnTypes[i];
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   170
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   171
					if (stringHandlers.empty()) {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   172
						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
   173
							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
   174
						}, typeId);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   175
					} else {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   176
						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
   177
							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
   178
							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
   179
						}, typeId);
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   180
					}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   181
				}
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   182
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   183
			} else {
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   184
				throw RelpipeReaderException(L"Unknown data part");
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   185
			}
17
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   186
		}
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   187
18
e11f1ad20826 read using std::function
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   188
		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
   189
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   190
	}
ec750c536705 interface + dummy implementation
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   191
14
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   192
};
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   193
e8de089f95dd refactoring, move files, use TypeId instead of integer_t
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   194
}
19
3e1308e7606d add endOfPipe() to handlers
František Kučera <franta-hg@frantovo.cz>
parents: 18
diff changeset
   195
}