src/GuileHandler.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 30 Mar 2019 16:14:42 +0100
branchv_0
changeset 18 3f46b784b617
parent 16 2dcc22b7a424
child 20 dccbfd273a5a
permissions -rw-r--r--
fix typo: Hadler → Handler
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     1
/**
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
 * Relational pipes
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
 * Copyright © 2019 František Kučera (Frantovo.cz, GlobalCode.info)
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     4
 *
f36bf14d45cb 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
f36bf14d45cb 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
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     7
 * the Free Software Foundation, either version 3 of the License, or
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
 * (at your option) any later version.
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
 *
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    13
 * GNU General Public License for more details.
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    14
 *
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    16
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    17
 */
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    18
#pragma once
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    19
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    20
#include <memory>
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    21
#include <string>
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    22
#include <vector>
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    23
#include <iostream>
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    24
#include <sstream>
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    25
#include <locale>
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    26
#include <codecvt>
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    27
#include <regex>
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    28
#include <assert.h>
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    29
1
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    30
#include <libguile.h>
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    31
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    32
#include <relpipe/reader/typedefs.h>
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    33
#include <relpipe/reader/TypeId.h>
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    34
#include <relpipe/reader/handlers/RelationalReaderValueHandler.h>
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    35
#include <relpipe/reader/handlers/AttributeMetadata.h>
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    36
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    37
#include <relpipe/writer/Factory.h>
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    38
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    39
#include <relpipe/cli/RelpipeCLIException.h>
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    40
6
4062b8436838 CLI parser: first version (only single relation is supported)
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    41
#include "Configuration.h"
4062b8436838 CLI parser: first version (only single relation is supported)
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    42
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    43
namespace relpipe {
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    44
namespace tr {
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    45
namespace guile {
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    46
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    47
using namespace std;
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    48
using namespace relpipe;
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    49
using namespace relpipe::reader;
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    50
using namespace relpipe::reader::handlers;
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    51
18
3f46b784b617 fix typo: Hadler → Handler
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    52
class GuileHandler : public RelationalReaderValueHandler {
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    53
private:
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    54
	std::wstring_convert<codecvt_utf8<wchar_t>> convertor; // TODO: support also other encodings or use always UTF-8 between C++ and Guile
1
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    55
6
4062b8436838 CLI parser: first version (only single relation is supported)
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    56
	Configuration configuration;
7
61fc569b77e6 RelationalWriter dependency injection
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
    57
	writer::RelationalWriter* relationalWriter;
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    58
8
1e6206284c6c Guile can now process multiple relations in the stream
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    59
	RelationConfiguration* currentRelationConfiguration = nullptr;
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    60
	vector<AttributeMetadata> currentReaderMetadata;
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    61
	vector<writer::AttributeMetadata> currentWriterMetadata;
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    62
	integer_t currentAttributeIndex = 0;
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    63
	boolean_t includeCurrentRecord = false;
1
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    64
15
051e58022783 add --input-attributes-append and --input-attributes-prepend for adding attributes using --output-attribute instead of replacing whole attribute list
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
    65
	void add(vector<AttributeMetadata>& readerAttributes, vector<writer::AttributeMetadata>& writerAttributes) {
051e58022783 add --input-attributes-append and --input-attributes-prepend for adding attributes using --output-attribute instead of replacing whole attribute list
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
    66
		for (AttributeMetadata readerAttributes : readerAttributes)
051e58022783 add --input-attributes-append and --input-attributes-prepend for adding attributes using --output-attribute instead of replacing whole attribute list
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
    67
			writerAttributes.push_back({
051e58022783 add --input-attributes-append and --input-attributes-prepend for adding attributes using --output-attribute instead of replacing whole attribute list
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
    68
				readerAttributes.getAttributeName(),
051e58022783 add --input-attributes-append and --input-attributes-prepend for adding attributes using --output-attribute instead of replacing whole attribute list
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
    69
				relationalWriter->toTypeId(readerAttributes.getTypeName())
051e58022783 add --input-attributes-append and --input-attributes-prepend for adding attributes using --output-attribute instead of replacing whole attribute list
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
    70
			});
051e58022783 add --input-attributes-append and --input-attributes-prepend for adding attributes using --output-attribute instead of replacing whole attribute list
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
    71
	}
051e58022783 add --input-attributes-append and --input-attributes-prepend for adding attributes using --output-attribute instead of replacing whole attribute list
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
    72
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    73
	/**
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    74
	 * @param attributeName name from relational pipe
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    75
	 * @return variable name in Guile
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    76
	 */
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    77
	string_t a2v(const string_t& attributeName) {
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    78
		// TODO: escape spaces and special characters
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    79
		return L"$" + attributeName;
1
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    80
	}
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    81
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    82
	SCM toGuileSymbol(const string_t& name) {
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    83
		return scm_string_to_symbol(scm_from_locale_string(convertor.to_bytes(name).c_str()));
1
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    84
	}
2
7fb4d2c70e8c record filtering in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    85
9
65f9d6b94f5c Guile --for-each record
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    86
	/**
65f9d6b94f5c Guile --for-each record
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    87
	 * @param code guile source code e.g. (+ 1 2 3) or #t
65f9d6b94f5c Guile --for-each record
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    88
	 * @param defaultReturnValue is returned if code is empty
65f9d6b94f5c Guile --for-each record
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    89
	 * @return result of code execution or defaultReturnValue
65f9d6b94f5c Guile --for-each record
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    90
	 */
65f9d6b94f5c Guile --for-each record
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    91
	SCM evalGuileCode(const string_t& code, SCM defaultReturnValue = SCM_BOOL_F) {
65f9d6b94f5c Guile --for-each record
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    92
		if (code.size()) return scm_eval_string(toGuileValue(&code, typeid (string_t), TypeId::STRING));
65f9d6b94f5c Guile --for-each record
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    93
		else return defaultReturnValue;
1
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    94
	}
2
7fb4d2c70e8c record filtering in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    95
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    96
	SCM toGuileValue(const void* value, const std::type_info& typeInfo, TypeId type) {
1
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    97
		switch (type) {
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    98
			case TypeId::BOOLEAN:
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    99
			{
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   100
				assert(typeInfo == typeid (boolean_t));
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   101
				auto* typedValue = static_cast<const boolean_t*> (value);
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   102
				return *typedValue ? SCM_BOOL_T : SCM_BOOL_F;
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   103
			}
1
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   104
			case TypeId::INTEGER:
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   105
			{
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   106
				assert(typeInfo == typeid (integer_t));
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   107
				auto* typedValue = static_cast<const integer_t*> (value);
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   108
				return scm_from_uint64(*typedValue);
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   109
			}
1
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   110
			case TypeId::STRING:
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   111
			{
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   112
				assert(typeInfo == typeid (string_t));
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   113
				auto* typedValue = static_cast<const string_t*> (value);
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   114
				return scm_from_locale_string(convertor.to_bytes(*typedValue).c_str());
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   115
			}
1
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   116
			default:
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   117
				throw cli::RelpipeCLIException(L"Unsupported type in toGuileValue()", cli::CLI::EXIT_CODE_UNEXPECTED_ERROR);
1
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   118
		}
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   119
	}
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   120
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   121
	void defineGuileVariable(const string_t& name, const void* value, const std::type_info& typeInfo, TypeId type) {
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   122
		scm_define(toGuileSymbol(name), toGuileValue(value, typeInfo, type));
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   123
	}
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   124
11
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   125
	/**
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   126
	 * TODO: use a common method
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   127
	 */
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   128
	bool parseBoolean(const string_t& value) {
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   129
		if (value == L"true") return true;
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   130
		else if (value == L"false") return false;
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   131
		else throw relpipe::cli::RelpipeCLIException(L"Unable to parse boolean value: " + value + L" (expecting true or false)", relpipe::cli::CLI::EXIT_CODE_BAD_CLI_ARGUMENTS);
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   132
	}
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   133
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   134
	void defineGuileVariable(const DefinitionRecipe& definition) {
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   135
		switch (relationalWriter->toTypeId(definition.type)) {
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   136
			case writer::TypeId::BOOLEAN:
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   137
			{
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   138
				boolean_t value = parseBoolean(definition.value);
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   139
				defineGuileVariable(definition.name, &value, typeid (value), TypeId::BOOLEAN);
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   140
				break;
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   141
			}
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   142
			case writer::TypeId::INTEGER:
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   143
			{
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   144
				integer_t value = stoul(definition.value);
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   145
				defineGuileVariable(definition.name, &value, typeid (value), TypeId::INTEGER);
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   146
				break;
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   147
			}
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   148
			case writer::TypeId::STRING:
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   149
			{
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   150
				defineGuileVariable(definition.name, &definition.value, typeid (definition.value), TypeId::STRING);
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   151
				break;
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   152
			}
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   153
			default:
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   154
				throw cli::RelpipeCLIException(L"Unsupported type in defineGuileVariable(): " + definition.type, cli::CLI::EXIT_CODE_UNEXPECTED_ERROR);
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   155
		}
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   156
	}
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   157
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   158
	void undefineGuileVariable(const string_t& name) {
1
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   159
		scm_define(toGuileSymbol(name), scm_make_undefined_variable()); // undefined != (define n)
3
d4d0e50f54da add $ prefix to attribute variables
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   160
		// TODO: or use: scm_variable_unset_x() ?
1
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   161
	}
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   162
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   163
	void writeGuileValueToAttribute(const writer::AttributeMetadata& attribute) {
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   164
		string_t variableName = a2v(attribute.attributeName);
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   165
		SCM guileValue = scm_eval_string(toGuileValue(&variableName, typeid (variableName), TypeId::STRING));
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   166
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   167
		switch (attribute.typeId) {
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   168
			case writer::TypeId::BOOLEAN:
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   169
			{
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   170
				boolean_t value = scm_to_bool(guileValue);
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   171
				return relationalWriter->writeAttribute(&value, typeid (value));
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   172
			}
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   173
			case writer::TypeId::INTEGER:
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   174
			{
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   175
				integer_t value = scm_to_uint64(guileValue);
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   176
				return relationalWriter->writeAttribute(&value, typeid (value));
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   177
			}
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   178
			case writer::TypeId::STRING:
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   179
			{
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   180
				char* ch = scm_to_locale_string(guileValue);
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   181
				string_t value = convertor.from_bytes(ch);
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   182
				free(ch);
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   183
				return relationalWriter->writeAttribute(&value, typeid (value));
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   184
			}
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   185
			default:
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   186
				throw cli::RelpipeCLIException(L"Unsupported type in writeGuileValueToAttribute()", cli::CLI::EXIT_CODE_UNEXPECTED_ERROR);
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   187
		}
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   188
	}
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   189
16
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   190
	/**
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   191
	 * Read from the Guile variables and write to relational output stream.
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   192
	 */
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   193
	void writeCurrentRecord() {
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   194
		for (auto attribute : currentWriterMetadata) writeGuileValueToAttribute(attribute);
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   195
	}
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   196
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   197
	void writeMoreRecords() {
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   198
		while (scm_to_bool(evalGuileCode(currentRelationConfiguration->guileHasMoreRecords, SCM_BOOL_F))) writeCurrentRecord();
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   199
	}
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   200
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   201
public:
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   202
7
61fc569b77e6 RelationalWriter dependency injection
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
   203
	GuileHandler(writer::RelationalWriter* relationalWriter, Configuration& configuration, const vector<string_t>& arguments) : relationalWriter(relationalWriter), configuration(configuration) {
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   204
	}
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   205
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   206
	void startRelation(string_t name, vector<AttributeMetadata> attributes) override {
11
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   207
		if (currentRelationConfiguration) {
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   208
			evalGuileCode(currentRelationConfiguration->guileAfterRecords);
16
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   209
			writeMoreRecords();
11
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   210
			for (DefinitionRecipe definition : currentRelationConfiguration->definitions) undefineGuileVariable(definition.name);
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   211
		}
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   212
		for (auto attribute : currentReaderMetadata) undefineGuileVariable(attribute.getAttributeName());
14
82bd0f57a889 add --drop option: all Guile code will be executed but not relational output for given relation will be generated
František Kučera <franta-hg@frantovo.cz>
parents: 13
diff changeset
   213
13
c9fece435aa2 add --define for global variables (can be overridden by relation's ones)
František Kučera <franta-hg@frantovo.cz>
parents: 12
diff changeset
   214
		for (DefinitionRecipe definition : configuration.definitions) defineGuileVariable(definition);
1
9179406ab3b3 link to the Guile library and add some Guile demo code – evaluate code from CLI argument
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   215
10
f7f9a2553128 Guile --before-records, --after-records and relpipe-relation-name variable
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   216
		currentRelationConfiguration = nullptr;
8
1e6206284c6c Guile can now process multiple relations in the stream
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   217
		for (int i = 0; i < configuration.relationConfigurations.size(); i++) {
1e6206284c6c Guile can now process multiple relations in the stream
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   218
			if (regex_match(name, wregex(configuration.relationConfigurations[i].relation))) {
1e6206284c6c Guile can now process multiple relations in the stream
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   219
				currentRelationConfiguration = &configuration.relationConfigurations[i];
11
9603e64324bc add --define for passing parameters from the outside environment
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   220
				for (DefinitionRecipe definition : currentRelationConfiguration->definitions) defineGuileVariable(definition);
8
1e6206284c6c Guile can now process multiple relations in the stream
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   221
				break; // it there are multiple matches, only the first configuration is used
1e6206284c6c Guile can now process multiple relations in the stream
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   222
			}
1e6206284c6c Guile can now process multiple relations in the stream
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   223
		}
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   224
12
7977c1bdba1f add --output-attribute so output relation can have different attributes than the input relation
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   225
		currentReaderMetadata = attributes;
7977c1bdba1f add --output-attribute so output relation can have different attributes than the input relation
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   226
		// TODO: move to a reusable method (or use same metadata on both reader and writer side?)
7977c1bdba1f add --output-attribute so output relation can have different attributes than the input relation
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   227
		currentWriterMetadata.clear();
7977c1bdba1f add --output-attribute so output relation can have different attributes than the input relation
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   228
		if (currentRelationConfiguration && currentRelationConfiguration->writerMetadata.size()) {
15
051e58022783 add --input-attributes-append and --input-attributes-prepend for adding attributes using --output-attribute instead of replacing whole attribute list
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
   229
			if (currentRelationConfiguration->inputAttributesPrepend) add(currentReaderMetadata, currentWriterMetadata);
051e58022783 add --input-attributes-append and --input-attributes-prepend for adding attributes using --output-attribute instead of replacing whole attribute list
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
   230
			currentWriterMetadata.insert(currentWriterMetadata.end(), currentRelationConfiguration->writerMetadata.begin(), currentRelationConfiguration->writerMetadata.end());
051e58022783 add --input-attributes-append and --input-attributes-prepend for adding attributes using --output-attribute instead of replacing whole attribute list
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
   231
			if (currentRelationConfiguration->inputAttributesAppend) add(currentReaderMetadata, currentWriterMetadata);
12
7977c1bdba1f add --output-attribute so output relation can have different attributes than the input relation
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   232
		} else {
15
051e58022783 add --input-attributes-append and --input-attributes-prepend for adding attributes using --output-attribute instead of replacing whole attribute list
František Kučera <franta-hg@frantovo.cz>
parents: 14
diff changeset
   233
			add(currentReaderMetadata, currentWriterMetadata);
12
7977c1bdba1f add --output-attribute so output relation can have different attributes than the input relation
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   234
		}
7977c1bdba1f add --output-attribute so output relation can have different attributes than the input relation
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   235
14
82bd0f57a889 add --drop option: all Guile code will be executed but not relational output for given relation will be generated
František Kučera <franta-hg@frantovo.cz>
parents: 13
diff changeset
   236
		if (!currentRelationConfiguration || !currentRelationConfiguration->drop) relationalWriter->startRelation(name, currentWriterMetadata, true);
10
f7f9a2553128 Guile --before-records, --after-records and relpipe-relation-name variable
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   237
f7f9a2553128 Guile --before-records, --after-records and relpipe-relation-name variable
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   238
		if (currentRelationConfiguration) {
f7f9a2553128 Guile --before-records, --after-records and relpipe-relation-name variable
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   239
			// TODO: better variable name, object, function?
f7f9a2553128 Guile --before-records, --after-records and relpipe-relation-name variable
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   240
			defineGuileVariable(L"relpipe-relation-name", &name, typeid (name), TypeId::STRING);
f7f9a2553128 Guile --before-records, --after-records and relpipe-relation-name variable
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   241
			evalGuileCode(currentRelationConfiguration->guileBeforeRecords);
f7f9a2553128 Guile --before-records, --after-records and relpipe-relation-name variable
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   242
		}
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   243
	}
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   244
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   245
	void attribute(const void* value, const std::type_info& type) override {
8
1e6206284c6c Guile can now process multiple relations in the stream
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   246
		if (currentRelationConfiguration) {
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   247
			defineGuileVariable(a2v(currentReaderMetadata[currentAttributeIndex].getAttributeName()), value, type, currentReaderMetadata[currentAttributeIndex].getTypeId());
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   248
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   249
			currentAttributeIndex++;
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   250
7
61fc569b77e6 RelationalWriter dependency injection
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
   251
			// TODO: > 0 ?:
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   252
			if (currentAttributeIndex > 0 && currentAttributeIndex % currentReaderMetadata.size() == 0) {
9
65f9d6b94f5c Guile --for-each record
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
   253
				evalGuileCode(currentRelationConfiguration->guileForEach);
65f9d6b94f5c Guile --for-each record
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
   254
				includeCurrentRecord = scm_to_bool(evalGuileCode(currentRelationConfiguration->guileWhere, SCM_BOOL_T));
16
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   255
				if (includeCurrentRecord && !currentRelationConfiguration->drop) writeCurrentRecord();
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   256
				includeCurrentRecord = false;
16
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   257
				writeMoreRecords();
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   258
			}
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   259
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   260
			currentAttributeIndex = currentAttributeIndex % currentReaderMetadata.size();
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   261
		} else {
5
17bb45570099 ValueHandler instead of StringHandler interface; Guile now allows filtering and record modifications
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   262
			relationalWriter->writeAttribute(value, type);
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   263
		}
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   264
	}
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   265
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   266
	void endOfPipe() {
16
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   267
		if (currentRelationConfiguration) {
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   268
			evalGuileCode(currentRelationConfiguration->guileAfterRecords);
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   269
			writeMoreRecords();
2dcc22b7a424 add --has-more-records and allow adding more records dynamically in Guile
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
   270
		}
0
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   271
	}
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   272
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   273
};
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   274
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   275
}
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   276
}
f36bf14d45cb project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   277
}