src/INIWriter.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 12 Dec 2020 19:52:38 +0100
branchv_0
changeset 5 bee7acb57330
parent 4 372b161669e4
child 8 7c85dc9a310b
permissions -rw-r--r--
implement --writer-option allow-sections false (flat key=value output)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     1
/**
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
 * Relational pipes
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
 * Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info)
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     4
 *
1bb084f84eb9 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
1bb084f84eb9 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
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     7
 * the Free Software Foundation, version 3 of the License.
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
 *
1bb084f84eb9 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,
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    12
 * GNU General Public License for more details.
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    13
 *
1bb084f84eb9 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
1bb084f84eb9 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/>.
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    16
 */
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    17
#pragma once
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    18
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    19
#include <string>
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    20
#include <sstream>
4
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    21
#include <regex>
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    22
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    23
#include <relpipe/common/type/typedefs.h>
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    24
#include <relpipe/reader/RelpipeReaderException.h>
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    25
3
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    26
#include "uri.h"
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    27
#include "Dialect.h"
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    28
#include "EscapingProcessor.h"
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    29
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    30
namespace relpipe {
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    31
namespace out {
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    32
namespace ini {
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    33
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    34
class INIWriter {
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    35
private:
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    36
	std::ostream& output;
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    37
	std::wstring_convert<std::codecvt_utf8<wchar_t>> convertor; // TODO: local system encoding or generate INI always in UTF-8 like XML?
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    38
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    39
	std::string keyValueSeparator = " = ";
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    40
	std::string commentSeparatorForSections = " ; ";
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    41
	std::string commentSeparatorForEntries = " ; ";
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    42
	std::string commentSeparatorStandalone = "; ";
3
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    43
5
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    44
	relpipe::common::type::StringX hierarchySeparator = L"/";
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    45
	bool allowSections = true;
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    46
2
e753a7f967c8 implement --style standard
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    47
	bool hasContent = false;
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    48
5
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    49
	std::vector<relpipe::common::type::StringX> currentSection;
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    50
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    51
	relpipe::common::type::StringX getCurrentSectionFullName() {
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    52
		std::wstringstream result;
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    53
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    54
		// TODO: configurable hierarchy delimiter
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    55
		// TODO: escape delimiter characters that are part of the section names
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    56
		for (int i = 0; i < currentSection.size(); i++) {
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    57
			if (i > 0)result << hierarchySeparator;
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    58
			result << currentSection[i];
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    59
		}
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    60
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    61
		return result.str();
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    62
	}
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    63
3
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    64
	/**
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    65
	 * TODO: use a common method
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    66
	 */
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    67
	bool parseBoolean(const relpipe::common::type::StringX& value) {
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    68
		if (value == L"true") return true;
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    69
		else if (value == L"false") return false;
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    70
		else throw relpipe::reader::RelpipeReaderException(L"Unable to parse boolean value: " + value + L" (expecting true or false)");
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    71
	}
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    72
4
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    73
	EscapingProcessor::QuotingType parseQuotingType(const relpipe::common::type::StringX& value) {
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    74
		if (value == quoting::None) return EscapingProcessor::QuotingType::None;
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    75
		else if (value == quoting::Apostrophes) return EscapingProcessor::QuotingType::Apostrophes;
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    76
		else if (value == quoting::Quotes) return EscapingProcessor::QuotingType::Quotes;
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    77
		else throw relpipe::reader::RelpipeReaderException(L"Unsupported quoting type:" + value);
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    78
	}
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    79
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    80
	class QuotingRule {
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    81
	public:
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    82
		EscapingProcessor::QuotingType type = EscapingProcessor::QuotingType::None;
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    83
		relpipe::common::type::StringX pattern;
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    84
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    85
		EscapingProcessor::QuotingType findEffectiveQuotingType(const relpipe::common::type::StringX& value) {
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    86
			if (type == EscapingProcessor::QuotingType::None) return type;
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    87
			else if (pattern.empty()) return type;
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    88
			else return std::regex_match(value, std::wregex(pattern)) ? type : EscapingProcessor::QuotingType::None;
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    89
		}
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    90
	};
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    91
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    92
	QuotingRule quotingForSections;
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    93
	QuotingRule quotingForKeys;
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    94
	QuotingRule quotingForValues;
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    95
3
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    96
	std::string escape(const relpipe::common::type::StringX& value, EscapingProcessor::TextType type) {
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    97
		relpipe::common::type::StringX result = value;
4
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    98
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    99
		EscapingProcessor::QuotingType quotingType;
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   100
		if (type == EscapingProcessor::TextType::SectionName || type == EscapingProcessor::TextType::SectionTag) quotingType = quotingForSections.findEffectiveQuotingType(value);
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   101
		else if (type == EscapingProcessor::TextType::EntryKey || type == EscapingProcessor::TextType::EntrySubKey) quotingType = quotingForKeys.findEffectiveQuotingType(value);
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   102
		else if (type == EscapingProcessor::TextType::EntryValue) quotingType = quotingForValues.findEffectiveQuotingType(value);
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   103
		else quotingType = EscapingProcessor::QuotingType::None;
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   104
3
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   105
		for (ConfiguredEscapingProcessor p : escapingProcessors) if (p.enbaled) result = p.processor->escape(result, type, quotingType);
4
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   106
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   107
		if (quotingType == EscapingProcessor::QuotingType::Quotes) result = L"\"" + result + L"\"";
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   108
		else if (quotingType == EscapingProcessor::QuotingType::Apostrophes) result = L"'" + result + L"'";
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   109
3
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   110
		return convertor.to_bytes(result);
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   111
	}
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   112
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   113
	class ConfiguredEscapingProcessor {
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   114
	public:
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   115
		std::shared_ptr<EscapingProcessor> processor;
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   116
		const relpipe::common::type::StringX uri;
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   117
		bool enbaled;
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   118
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   119
		ConfiguredEscapingProcessor(std::shared_ptr<EscapingProcessor> processor, const relpipe::common::type::StringX uri, bool enbaled) : processor(processor), uri(uri), enbaled(enbaled) {
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   120
		}
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   121
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   122
	};
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   123
3
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   124
	std::vector<ConfiguredEscapingProcessor> escapingProcessors;
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   125
3
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   126
	bool setEscaping(const relpipe::common::type::StringX& uri, const relpipe::common::type::StringX& value) {
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   127
		for (ConfiguredEscapingProcessor& p : escapingProcessors) {
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   128
			if (p.uri == uri) {
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   129
				p.enbaled = parseBoolean(value);
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   130
				return true;
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   131
			}
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   132
		}
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   133
		return false;
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   134
	}
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   135
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   136
	class ConfiguredDialect {
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   137
	public:
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   138
		std::shared_ptr<Dialect> dialect;
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   139
		const relpipe::common::type::StringX uri;
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   140
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   141
		ConfiguredDialect(std::shared_ptr<Dialect> dialect, const relpipe::common::type::StringX uri) : dialect(dialect), uri(uri) {
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   142
		}
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   143
3
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   144
	};
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   145
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   146
	std::vector<ConfiguredDialect> dialects;
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   147
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   148
	void setDialect(const relpipe::common::type::StringX& uri) {
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   149
		for (ConfiguredDialect& d : dialects) {
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   150
			if (d.uri == uri) {
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   151
				d.dialect->apply(*this);
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   152
				return;
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   153
			}
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   154
		}
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   155
		throw relpipe::reader::RelpipeReaderException(L"Unsupported INI dialect: " + uri);
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   156
	}
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   157
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   158
public:
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   159
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   160
	class SectionStartEvent {
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   161
	public:
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   162
		relpipe::common::type::StringX comment;
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   163
		relpipe::common::type::StringX name;
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   164
		relpipe::common::type::StringX tag;
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   165
	};
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   166
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   167
	class EntryEvent {
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   168
	public:
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   169
		relpipe::common::type::StringX comment;
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   170
		relpipe::common::type::StringX key;
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   171
		relpipe::common::type::StringX subKey;
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   172
		relpipe::common::type::StringX value;
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   173
	};
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   174
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   175
	class CommentEvent {
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   176
	public:
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   177
		relpipe::common::type::StringX comment;
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   178
	};
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   179
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   180
	class WhitespaceEvent {
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   181
	public:
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   182
		relpipe::common::type::StringX whitespace;
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   183
	};
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   184
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   185
	INIWriter(std::ostream& output) : output(output) {
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   186
	}
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   187
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   188
	virtual ~INIWriter() {
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   189
	};
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   190
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   191
	void setOption(relpipe::common::type::StringX uri, relpipe::common::type::StringX value) {
3
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   192
		if (uri == option::Dialect) setDialect(value);
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   193
		else if (uri == option::CommentSeparatorForSections) commentSeparatorForSections = convertor.to_bytes(value);
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   194
		else if (uri == option::CommentSeparatorForEntries) commentSeparatorForEntries = convertor.to_bytes(value);
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   195
		else if (uri == option::CommentSeparatorStandalone) commentSeparatorStandalone = convertor.to_bytes(value);
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   196
		else if (uri == option::KeyValueSeparator) keyValueSeparator = convertor.to_bytes(value);
5
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   197
		else if (uri == option::HierarchySeparator) hierarchySeparator = value;
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   198
		else if (uri == option::AllowSections) allowSections = parseBoolean(value);
4
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   199
		else if (uri == option::QuotesTypeForSections) quotingForSections.type = parseQuotingType(value);
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   200
		else if (uri == option::QuotesTypeForKeys) quotingForKeys.type = parseQuotingType(value);
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   201
		else if (uri == option::QuotesTypeForValues) quotingForValues.type = parseQuotingType(value);
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   202
		else if (uri == option::QuotesPatternForSections) quotingForSections.pattern = value;
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   203
		else if (uri == option::QuotesPatternForKeys) quotingForKeys.pattern = value;
372b161669e4 configurable quoting
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   204
		else if (uri == option::QuotesPatternForValues) quotingForValues.pattern = value;
3
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   205
		else if (setEscaping(uri, value));
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   206
		else throw relpipe::reader::RelpipeReaderException(L"Unsupported writer option: " + uri);
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   207
	}
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   208
3
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   209
	void addDialect(std::shared_ptr<Dialect> dialect, const relpipe::common::type::StringX uri, bool enabledByDefault) {
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   210
		dialects.push_back({dialect, uri});
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   211
		if (enabledByDefault) dialect->apply(*this);
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   212
	}
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   213
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   214
	void addEscapingProcessor(std::shared_ptr<EscapingProcessor> processor, const relpipe::common::type::StringX uri, bool enabledByDefault) {
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   215
		escapingProcessors.push_back({processor, uri, enabledByDefault});
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   216
	}
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   217
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   218
	void startDocument() {
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   219
	}
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   220
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   221
	void endDocument() {
5
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   222
		if (currentSection.size()) throw relpipe::reader::RelpipeReaderException(L"There are still " + std::to_wstring(currentSection.size()) + L" open sections during the endDocument() call. Need to call endSection() before.");
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   223
		output.flush();
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   224
	}
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   225
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   226
	void startSection(const SectionStartEvent& event) {
5
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   227
		currentSection.push_back(event.name);
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   228
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   229
		if (allowSections) {
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   230
			if (hasContent) output << std::endl;
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   231
			output << "[" << escape(getCurrentSectionFullName(), EscapingProcessor::TextType::SectionName) << "]";
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   232
			if (event.tag.size()) output << "[" << escape(event.tag, EscapingProcessor::TextType::SectionTag) << "]";
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   233
			if (event.comment.size()) output << commentSeparatorForSections << escape(event.comment, EscapingProcessor::TextType::SectionComment);
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   234
			output << std::endl;
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   235
		}
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   236
2
e753a7f967c8 implement --style standard
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   237
		hasContent = true;
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   238
	}
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   239
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   240
	void endSection() {
5
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   241
		currentSection.pop_back();
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   242
		output.flush();
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   243
	}
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   244
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   245
	void entry(const EntryEvent& event) {
5
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   246
		// TODO: escape/quote parts separately + configurable quoting of parts or whole + the same for sub keys
bee7acb57330 implement --writer-option allow-sections false (flat key=value output)
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   247
		if (!allowSections && currentSection.size()) output << escape(getCurrentSectionFullName(), EscapingProcessor::TextType::EntryKey) << convertor.to_bytes(hierarchySeparator);
3
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   248
		output << escape(event.key, EscapingProcessor::TextType::EntryKey);
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   249
		if (event.subKey.size()) output << "[" << escape(event.subKey, EscapingProcessor::TextType::EntrySubKey) << "]";
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   250
		output << keyValueSeparator << escape(event.value, EscapingProcessor::TextType::EntryValue);
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   251
		if (event.comment.size()) output << commentSeparatorForEntries << escape(event.comment, EscapingProcessor::TextType::EntryComment);
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   252
		output << std::endl;
2
e753a7f967c8 implement --style standard
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   253
		hasContent = true;
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   254
	}
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   255
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   256
	void comment(const CommentEvent& event) {
3
ae8775e0bc7a configurable/modular dialects and escaping
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   257
		output << commentSeparatorStandalone << escape(event.comment, EscapingProcessor::TextType::StandaloneComment);
2
e753a7f967c8 implement --style standard
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   258
		output << std::endl;
e753a7f967c8 implement --style standard
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   259
		hasContent = true;
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   260
	}
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   261
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   262
	void whitespace(const WhitespaceEvent& event) {
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   263
		for (wchar_t ch : event.whitespace) {
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   264
			if (ch == L' ') output << " ";
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   265
			else if (ch == L'\t') output << "\t";
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   266
			else if (ch == L'\n') output << "\n";
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   267
			else if (ch == L'\r'); // TODO: keep CR?
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   268
			else; // TODO: throw exception if whitespace contains unexpected data? (should not happen)
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   269
		}
2
e753a7f967c8 implement --style standard
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
   270
		hasContent = true;
0
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   271
	}
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   272
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   273
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   274
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   275
};
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   276
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   277
}
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   278
}
1bb084f84eb9 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   279
}