src/relpipe-in-csv.cpp
author František Kučera <franta-hg@frantovo.cz>
Tue, 22 Oct 2019 19:49:39 +0200
branchv_0
changeset 10 1ae185cac1f3
parent 3 d7907be4cc40
child 14 012d491e219a
permissions -rw-r--r--
fix license version: GNU GPLv3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     1
/**
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
 * Relational pipes
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
 * Copyright © 2018 František Kučera (Frantovo.cz, GlobalCode.info)
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     4
 *
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     5
 * This program is free software: you can redistribute it and/or modify
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
10
1ae185cac1f3 fix license version: GNU GPLv3
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
     7
 * the Free Software Foundation, version 3 of the License.
0
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
 *
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    12
 * GNU General Public License for more details.
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    13
 *
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    15
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    16
 */
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    17
#include <cstdlib>
1
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    18
#include <vector>
0
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    19
#include <memory>
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    20
#include <regex>
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    21
#include <algorithm>
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    22
#include <unistd.h>
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    23
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    24
#include <relpipe/writer/RelationalWriter.h>
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    25
#include <relpipe/writer/RelpipeWriterException.h>
1
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    26
#include <relpipe/writer/AttributeMetadata.h>
0
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    27
#include <relpipe/writer/Factory.h>
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    28
#include <relpipe/writer/TypeId.h>
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    29
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    30
#include <relpipe/cli/CLI.h>
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    31
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    32
using namespace std;
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    33
using namespace relpipe::cli;
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    34
using namespace relpipe::writer;
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    35
1
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    36
bool readValue(istream& input, stringstream& currentValue, bool& lastInRecord) {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    37
	lastInRecord = false;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    38
	char ch;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    39
	input.get(ch);
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    40
	if (ch == '"') {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    41
		while (input.get(ch)) {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    42
			if (ch == '"') {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    43
				input.get(ch);
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    44
				if (ch == '"') {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    45
					currentValue << ch;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    46
				} else {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    47
					if (ch == '\r') input.get(ch);
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    48
					if (ch == '\n') lastInRecord = true;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    49
					else if (ch != ',') throw RelpipeWriterException(L"Unexpected character (should be „\\n“ or „,“)");
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    50
					return true;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    51
				}
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    52
			} else {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    53
				currentValue << ch;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    54
			}
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    55
		}
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    56
	} else if (ch == ',') {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    57
		return true;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    58
	} else if (ch == '\n') {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    59
		lastInRecord = true;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    60
		return true;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    61
	} else if (ch == '\r') {
3
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    62
		input.get(ch);
1
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    63
		if (ch == '\n') {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    64
			lastInRecord = true;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    65
			return true;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    66
		} else {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    67
			throw RelpipeWriterException(L"Crazy carriage stuck during journey");
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    68
		}
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    69
	} else {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    70
		for (currentValue << ch; input.get(ch);) {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    71
			switch (ch) {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    72
				case ',': return true;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    73
				case '\r': break;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    74
				case '\n':
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    75
					lastInRecord = true;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    76
					return true;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    77
				default: currentValue << ch;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    78
			}
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    79
		}
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    80
	}
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    81
	return false;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    82
}
0
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    83
2
e83895da3e8f optional custom relation name
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    84
void processDataStream(ostream &output, istream& input, const vector<string_t>& args) {
1
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    85
	wstring_convert < codecvt_utf8<wchar_t>> convertor; // UTF-8 is required for CSV
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    86
	std::shared_ptr<RelationalWriter> writer(Factory::create(output));
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    87
	vector<AttributeMetadata> metadata;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    88
	bool headerDone = false;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    89
	bool lastInRecord = false;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    90
	stringstream currentValue;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    91
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    92
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    93
	while (readValue(input, currentValue, lastInRecord) && input.good()) {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    94
		if (headerDone) {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    95
			writer->writeAttribute(convertor.from_bytes(currentValue.str()));
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    96
		} else {
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    97
			AttributeMetadata am;
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    98
			am.attributeName = convertor.from_bytes(currentValue.str());
3
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    99
			am.typeId = TypeId::STRING;
1
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   100
			metadata.push_back(am);
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   101
			if (lastInRecord) {
3
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   102
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   103
				/*
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   104
				 * Usage (simple syntax):
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   105
				 * relpipe-in-csv → default relation name, attribute names on the first line, all types are string
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   106
				 * relpipe-in-csv my_relation → custom relation name
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   107
				 * relpipe-in-csv my_relation a b c → custom relation name, custom attribute names (a,b,c), first line contains data
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   108
				 * relpipe-in-csv my_relation a integer b string c boolean → custom relation name, custom attribute names (a,b,c), custom types (integer,string,boolean), first line contains data
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   109
				 */
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   110
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   111
				vector<string_t> firstLine;
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   112
				if (args.size() == (1 + metadata.size())) {
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   113
					for (int i = 0; i < metadata.size(); i++) {
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   114
						firstLine.push_back(metadata[i].attributeName);
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   115
						metadata[i].attributeName = args[1 + i];
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   116
					}
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   117
				} else if (args.size() == (1 + 2 * metadata.size())) {
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   118
					for (int i = 0; i < metadata.size(); i++) {
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   119
						firstLine.push_back(metadata[i].attributeName);
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   120
						metadata[i].attributeName = args[1 + i * 2];
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   121
						metadata[i].typeId = writer->toTypeId(args[1 + i * 2 + 1]);
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   122
					}
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   123
				}
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   124
1
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   125
				headerDone = true;
2
e83895da3e8f optional custom relation name
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   126
				writer->startRelation(args.size() > 0 ? args[0] : L"csv", metadata, true);
3
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   127
				if (firstLine.size()) {
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   128
					for (string_t value : firstLine) writer->writeAttribute(value);
d7907be4cc40 allow also custom relation name, attribute names and types (optional)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   129
				}
1
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   130
			}
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   131
		}
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   132
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   133
		currentValue.str("");
5eb4d149c6e2 first working version
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   134
		currentValue.clear();
0
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   135
	}
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   136
}
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   137
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   138
int main(int argc, char** argv) {
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   139
	setlocale(LC_ALL, "");
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   140
	CLI::untieStdIO();
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   141
	CLI cli(argc, argv);
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   142
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   143
	int resultCode = CLI::EXIT_CODE_UNEXPECTED_ERROR;
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   144
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   145
	try {
2
e83895da3e8f optional custom relation name
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   146
		processDataStream(cout, cin, cli.arguments());
0
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   147
		resultCode = CLI::EXIT_CODE_SUCCESS;
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   148
	} catch (RelpipeWriterException e) {
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   149
		fwprintf(stderr, L"Caught Writer exception: %ls\n", e.getMessge().c_str());
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   150
		fwprintf(stderr, L"Debug: Input stream: eof=%ls, lastRead=%d\n", (cin.eof() ? L"true" : L"false"), cin.gcount());
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   151
		resultCode = CLI::EXIT_CODE_DATA_ERROR;
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   152
	}
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   153
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   154
	return resultCode;
eca0b23802e8 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   155
}