2018-06-10 19:22:49 +00:00
|
|
|
#include <Common/Exception.h>
|
|
|
|
#include <Interpreters/Context.h>
|
2019-03-22 12:08:30 +00:00
|
|
|
#include <Core/Settings.h>
|
2018-06-10 19:22:49 +00:00
|
|
|
#include <DataStreams/MaterializingBlockOutputStream.h>
|
|
|
|
#include <Formats/FormatSettings.h>
|
|
|
|
#include <Formats/FormatFactory.h>
|
2019-02-19 18:41:18 +00:00
|
|
|
#include <Processors/Formats/IRowInputFormat.h>
|
2019-07-24 18:00:09 +00:00
|
|
|
#include <Processors/Formats/InputStreamFromInputFormat.h>
|
|
|
|
#include <Processors/Formats/OutputStreamToOutputFormat.h>
|
2019-07-31 10:28:54 +00:00
|
|
|
#include <DataStreams/SquashingBlockOutputStream.h>
|
2019-07-31 13:26:08 +00:00
|
|
|
#include <DataStreams/NativeBlockInputStream.h>
|
2018-06-10 19:22:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int UNKNOWN_FORMAT;
|
|
|
|
extern const int LOGICAL_ERROR;
|
|
|
|
extern const int FORMAT_IS_NOT_SUITABLE_FOR_INPUT;
|
|
|
|
extern const int FORMAT_IS_NOT_SUITABLE_FOR_OUTPUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
const FormatFactory::Creators & FormatFactory::getCreators(const String & name) const
|
|
|
|
{
|
|
|
|
auto it = dict.find(name);
|
|
|
|
if (dict.end() != it)
|
|
|
|
return it->second;
|
|
|
|
throw Exception("Unknown format " + name, ErrorCodes::UNKNOWN_FORMAT);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-02-19 18:41:18 +00:00
|
|
|
static FormatSettings getInputFormatSetting(const Settings & settings)
|
|
|
|
{
|
2018-06-10 19:22:49 +00:00
|
|
|
FormatSettings format_settings;
|
|
|
|
format_settings.csv.delimiter = settings.format_csv_delimiter;
|
2018-07-04 21:00:50 +00:00
|
|
|
format_settings.csv.allow_single_quotes = settings.format_csv_allow_single_quotes;
|
|
|
|
format_settings.csv.allow_double_quotes = settings.format_csv_allow_double_quotes;
|
2019-07-22 20:13:27 +00:00
|
|
|
format_settings.csv.unquoted_null_literal_as_null = settings.input_format_csv_unquoted_null_literal_as_null;
|
2019-06-20 12:46:36 +00:00
|
|
|
format_settings.csv.empty_as_default = settings.input_format_defaults_for_omitted_fields;
|
2019-07-18 13:43:20 +00:00
|
|
|
format_settings.csv.null_as_default = settings.input_format_null_as_default;
|
2018-06-10 19:22:49 +00:00
|
|
|
format_settings.values.interpret_expressions = settings.input_format_values_interpret_expressions;
|
2019-04-22 13:31:17 +00:00
|
|
|
format_settings.with_names_use_header = settings.input_format_with_names_use_header;
|
2018-06-10 19:22:49 +00:00
|
|
|
format_settings.skip_unknown_fields = settings.input_format_skip_unknown_fields;
|
2018-09-14 13:43:57 +00:00
|
|
|
format_settings.import_nested_json = settings.input_format_import_nested_json;
|
2018-06-10 19:22:49 +00:00
|
|
|
format_settings.date_time_input_format = settings.date_time_input_format;
|
|
|
|
format_settings.input_allow_errors_num = settings.input_format_allow_errors_num;
|
|
|
|
format_settings.input_allow_errors_ratio = settings.input_format_allow_errors_ratio;
|
2019-04-07 21:30:54 +00:00
|
|
|
format_settings.template_settings.format = settings.format_schema;
|
|
|
|
format_settings.template_settings.row_format = settings.format_schema_rows;
|
|
|
|
format_settings.template_settings.row_between_delimiter = settings.format_schema_rows_between_delimiter;
|
2018-06-10 19:22:49 +00:00
|
|
|
|
2019-02-19 18:41:18 +00:00
|
|
|
return format_settings;
|
2018-06-10 19:22:49 +00:00
|
|
|
}
|
|
|
|
|
2019-02-19 18:41:18 +00:00
|
|
|
static FormatSettings getOutputFormatSetting(const Settings & settings)
|
2018-06-10 19:22:49 +00:00
|
|
|
{
|
|
|
|
FormatSettings format_settings;
|
|
|
|
format_settings.json.quote_64bit_integers = settings.output_format_json_quote_64bit_integers;
|
|
|
|
format_settings.json.quote_denormals = settings.output_format_json_quote_denormals;
|
2018-08-06 14:11:45 +00:00
|
|
|
format_settings.json.escape_forward_slashes = settings.output_format_json_escape_forward_slashes;
|
2018-06-10 19:22:49 +00:00
|
|
|
format_settings.csv.delimiter = settings.format_csv_delimiter;
|
2018-07-04 21:00:50 +00:00
|
|
|
format_settings.csv.allow_single_quotes = settings.format_csv_allow_single_quotes;
|
|
|
|
format_settings.csv.allow_double_quotes = settings.format_csv_allow_double_quotes;
|
2018-06-10 19:22:49 +00:00
|
|
|
format_settings.pretty.max_rows = settings.output_format_pretty_max_rows;
|
2018-08-30 23:34:12 +00:00
|
|
|
format_settings.pretty.max_column_pad_width = settings.output_format_pretty_max_column_pad_width;
|
2018-06-10 19:22:49 +00:00
|
|
|
format_settings.pretty.color = settings.output_format_pretty_color;
|
2019-02-17 21:23:44 +00:00
|
|
|
format_settings.template_settings.format = settings.format_schema;
|
|
|
|
format_settings.template_settings.row_format = settings.format_schema_rows;
|
|
|
|
format_settings.template_settings.row_between_delimiter = settings.format_schema_rows_between_delimiter;
|
2018-06-10 19:22:49 +00:00
|
|
|
format_settings.write_statistics = settings.output_format_write_statistics;
|
2019-02-19 20:51:44 +00:00
|
|
|
format_settings.parquet.row_group_size = settings.output_format_parquet_row_group_size;
|
2018-06-10 19:22:49 +00:00
|
|
|
|
2019-02-19 18:41:18 +00:00
|
|
|
return format_settings;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-08 13:00:54 +00:00
|
|
|
BlockInputStreamPtr FormatFactory::getInput(
|
|
|
|
const String & name,
|
|
|
|
ReadBuffer & buf,
|
|
|
|
const Block & sample,
|
|
|
|
const Context & context,
|
|
|
|
UInt64 max_block_size,
|
|
|
|
UInt64 rows_portion_size,
|
|
|
|
ReadCallback callback) const
|
2019-02-19 18:41:18 +00:00
|
|
|
{
|
2019-07-31 13:26:08 +00:00
|
|
|
if (name == "Native")
|
|
|
|
return std::make_shared<NativeBlockInputStream>(buf, sample, 0);
|
2019-02-19 18:41:18 +00:00
|
|
|
|
2019-08-02 14:41:19 +00:00
|
|
|
if (!getCreators(name).input_processor_creator)
|
2019-08-14 15:54:51 +00:00
|
|
|
{
|
|
|
|
const auto & input_getter = getCreators(name).inout_creator;
|
|
|
|
if (!input_getter)
|
|
|
|
throw Exception("Format " + name + " is not suitable for input", ErrorCodes::FORMAT_IS_NOT_SUITABLE_FOR_INPUT);
|
2019-02-19 18:41:18 +00:00
|
|
|
|
2019-08-14 15:54:51 +00:00
|
|
|
const Settings & settings = context.getSettingsRef();
|
|
|
|
FormatSettings format_settings = getInputFormatSetting(settings);
|
2019-02-19 18:41:18 +00:00
|
|
|
|
2019-08-14 15:54:51 +00:00
|
|
|
return input_getter(
|
|
|
|
buf, sample, context, max_block_size, rows_portion_size, callback ? callback : ReadCallback(), format_settings);
|
|
|
|
}
|
2019-02-19 18:41:18 +00:00
|
|
|
|
2019-07-24 18:00:09 +00:00
|
|
|
auto format = getInputFormat(name, buf, sample, context, max_block_size, rows_portion_size, std::move(callback));
|
|
|
|
return std::make_shared<InputStreamFromInputFormat>(std::move(format));
|
2019-02-19 18:41:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-08-20 11:17:57 +00:00
|
|
|
BlockOutputStreamPtr FormatFactory::getOutput(
|
|
|
|
const String & name, WriteBuffer & buf, const Block & sample, const Context & context, WriteCallback callback) const
|
2019-02-19 18:41:18 +00:00
|
|
|
{
|
2019-08-04 10:06:42 +00:00
|
|
|
if (name == "PrettyCompactMonoBlock")
|
|
|
|
{
|
|
|
|
/// TODO: rewrite
|
|
|
|
auto format = getOutputFormat("PrettyCompact", buf, sample, context);
|
|
|
|
auto res = std::make_shared<SquashingBlockOutputStream>(
|
|
|
|
std::make_shared<OutputStreamToOutputFormat>(format),
|
|
|
|
sample, context.getSettingsRef().output_format_pretty_max_rows, 0);
|
|
|
|
|
|
|
|
res->disableFlush();
|
|
|
|
|
|
|
|
return std::make_shared<MaterializingBlockOutputStream>(res, sample);
|
|
|
|
}
|
2019-07-31 10:54:50 +00:00
|
|
|
|
2019-08-02 14:41:19 +00:00
|
|
|
if (!getCreators(name).output_processor_creator)
|
2019-08-14 15:54:51 +00:00
|
|
|
{
|
|
|
|
const auto & output_getter = getCreators(name).output_creator;
|
|
|
|
if (!output_getter)
|
|
|
|
throw Exception("Format " + name + " is not suitable for output", ErrorCodes::FORMAT_IS_NOT_SUITABLE_FOR_OUTPUT);
|
|
|
|
|
|
|
|
const Settings & settings = context.getSettingsRef();
|
|
|
|
FormatSettings format_settings = getOutputFormatSetting(settings);
|
|
|
|
|
2019-08-20 11:17:57 +00:00
|
|
|
/** Materialization is needed, because formats can use the functions `IDataType`,
|
2019-08-14 15:54:51 +00:00
|
|
|
* which only work with full columns.
|
|
|
|
*/
|
|
|
|
return std::make_shared<MaterializingBlockOutputStream>(
|
2019-08-20 11:17:57 +00:00
|
|
|
output_getter(buf, sample, context, callback, format_settings), sample);
|
2019-08-14 15:54:51 +00:00
|
|
|
}
|
2019-07-31 10:28:54 +00:00
|
|
|
|
2019-08-20 11:17:57 +00:00
|
|
|
auto format = getOutputFormat(name, buf, sample, context, callback);
|
2019-07-25 08:37:21 +00:00
|
|
|
return std::make_shared<MaterializingBlockOutputStream>(std::make_shared<OutputStreamToOutputFormat>(format), sample);
|
2018-06-10 19:22:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-24 18:00:09 +00:00
|
|
|
InputFormatPtr FormatFactory::getInputFormat(
|
|
|
|
const String & name,
|
|
|
|
ReadBuffer & buf,
|
|
|
|
const Block & sample,
|
|
|
|
const Context & context,
|
|
|
|
UInt64 max_block_size,
|
|
|
|
UInt64 rows_portion_size,
|
|
|
|
ReadCallback callback) const
|
2019-02-19 18:41:18 +00:00
|
|
|
{
|
2019-08-02 14:41:19 +00:00
|
|
|
const auto & input_getter = getCreators(name).input_processor_creator;
|
2019-02-19 18:41:18 +00:00
|
|
|
if (!input_getter)
|
|
|
|
throw Exception("Format " + name + " is not suitable for input", ErrorCodes::FORMAT_IS_NOT_SUITABLE_FOR_INPUT);
|
|
|
|
|
|
|
|
const Settings & settings = context.getSettingsRef();
|
|
|
|
FormatSettings format_settings = getInputFormatSetting(settings);
|
|
|
|
|
|
|
|
RowInputFormatParams params;
|
|
|
|
params.max_block_size = max_block_size;
|
|
|
|
params.allow_errors_num = format_settings.input_allow_errors_num;
|
|
|
|
params.allow_errors_ratio = format_settings.input_allow_errors_ratio;
|
2019-07-24 18:00:09 +00:00
|
|
|
params.rows_portion_size = rows_portion_size;
|
|
|
|
params.callback = std::move(callback);
|
2019-08-01 14:25:41 +00:00
|
|
|
params.max_execution_time = settings.max_execution_time;
|
|
|
|
params.timeout_overflow_mode = settings.timeout_overflow_mode;
|
2019-02-19 18:41:18 +00:00
|
|
|
|
|
|
|
return input_getter(buf, sample, context, params, format_settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-08-20 11:17:57 +00:00
|
|
|
OutputFormatPtr FormatFactory::getOutputFormat(
|
|
|
|
const String & name, WriteBuffer & buf, const Block & sample, const Context & context, WriteCallback callback) const
|
2019-02-19 18:41:18 +00:00
|
|
|
{
|
2019-08-02 14:41:19 +00:00
|
|
|
const auto & output_getter = getCreators(name).output_processor_creator;
|
2019-02-19 18:41:18 +00:00
|
|
|
if (!output_getter)
|
|
|
|
throw Exception("Format " + name + " is not suitable for output", ErrorCodes::FORMAT_IS_NOT_SUITABLE_FOR_OUTPUT);
|
|
|
|
|
|
|
|
const Settings & settings = context.getSettingsRef();
|
|
|
|
FormatSettings format_settings = getOutputFormatSetting(settings);
|
|
|
|
|
|
|
|
/** TODO: Materialization is needed, because formats can use the functions `IDataType`,
|
|
|
|
* which only work with full columns.
|
|
|
|
*/
|
2019-08-20 11:17:57 +00:00
|
|
|
return output_getter(buf, sample, context, callback, format_settings);
|
2019-02-19 18:41:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-10 19:22:49 +00:00
|
|
|
void FormatFactory::registerInputFormat(const String & name, InputCreator input_creator)
|
|
|
|
{
|
2019-08-02 14:41:19 +00:00
|
|
|
auto & target = dict[name].inout_creator;
|
2018-06-10 19:22:49 +00:00
|
|
|
if (target)
|
|
|
|
throw Exception("FormatFactory: Input format " + name + " is already registered", ErrorCodes::LOGICAL_ERROR);
|
2019-02-19 18:41:18 +00:00
|
|
|
target = std::move(input_creator);
|
2018-06-10 19:22:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FormatFactory::registerOutputFormat(const String & name, OutputCreator output_creator)
|
|
|
|
{
|
2019-08-02 14:41:19 +00:00
|
|
|
auto & target = dict[name].output_creator;
|
2018-06-10 19:22:49 +00:00
|
|
|
if (target)
|
|
|
|
throw Exception("FormatFactory: Output format " + name + " is already registered", ErrorCodes::LOGICAL_ERROR);
|
2019-02-19 18:41:18 +00:00
|
|
|
target = std::move(output_creator);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FormatFactory::registerInputFormatProcessor(const String & name, InputProcessorCreator input_creator)
|
|
|
|
{
|
2019-08-02 14:41:19 +00:00
|
|
|
auto & target = dict[name].input_processor_creator;
|
2019-02-19 18:41:18 +00:00
|
|
|
if (target)
|
|
|
|
throw Exception("FormatFactory: Input format " + name + " is already registered", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
target = std::move(input_creator);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FormatFactory::registerOutputFormatProcessor(const String & name, OutputProcessorCreator output_creator)
|
|
|
|
{
|
2019-08-02 14:41:19 +00:00
|
|
|
auto & target = dict[name].output_processor_creator;
|
2019-02-19 18:41:18 +00:00
|
|
|
if (target)
|
|
|
|
throw Exception("FormatFactory: Output format " + name + " is already registered", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
target = std::move(output_creator);
|
2018-06-10 19:22:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Formats for both input/output.
|
|
|
|
|
|
|
|
void registerInputFormatNative(FormatFactory & factory);
|
|
|
|
void registerOutputFormatNative(FormatFactory & factory);
|
|
|
|
|
2019-02-19 18:41:18 +00:00
|
|
|
void registerInputFormatProcessorNative(FormatFactory & factory);
|
|
|
|
void registerOutputFormatProcessorNative(FormatFactory & factory);
|
|
|
|
void registerInputFormatProcessorRowBinary(FormatFactory & factory);
|
|
|
|
void registerOutputFormatProcessorRowBinary(FormatFactory & factory);
|
|
|
|
void registerInputFormatProcessorTabSeparated(FormatFactory & factory);
|
|
|
|
void registerOutputFormatProcessorTabSeparated(FormatFactory & factory);
|
|
|
|
void registerInputFormatProcessorValues(FormatFactory & factory);
|
|
|
|
void registerOutputFormatProcessorValues(FormatFactory & factory);
|
|
|
|
void registerInputFormatProcessorCSV(FormatFactory & factory);
|
|
|
|
void registerOutputFormatProcessorCSV(FormatFactory & factory);
|
|
|
|
void registerInputFormatProcessorTSKV(FormatFactory & factory);
|
|
|
|
void registerOutputFormatProcessorTSKV(FormatFactory & factory);
|
|
|
|
void registerInputFormatProcessorJSONEachRow(FormatFactory & factory);
|
|
|
|
void registerOutputFormatProcessorJSONEachRow(FormatFactory & factory);
|
2019-02-21 18:36:46 +00:00
|
|
|
void registerInputFormatProcessorParquet(FormatFactory & factory);
|
2019-08-21 14:19:47 +00:00
|
|
|
void registerInputFormatProcessorORC(FormatFactory & factory);
|
2019-02-21 18:36:46 +00:00
|
|
|
void registerOutputFormatProcessorParquet(FormatFactory & factory);
|
|
|
|
void registerInputFormatProcessorProtobuf(FormatFactory & factory);
|
2019-02-19 18:41:18 +00:00
|
|
|
void registerOutputFormatProcessorProtobuf(FormatFactory & factory);
|
2019-08-23 19:47:22 +00:00
|
|
|
void registerInputFormatProcessorTemplate(FormatFactory & factory);
|
|
|
|
void registerOutputFormatProcessorTemplate(FormatFactory &factory);
|
2019-02-19 18:41:18 +00:00
|
|
|
|
2018-06-10 19:22:49 +00:00
|
|
|
/// Output only (presentational) formats.
|
|
|
|
|
|
|
|
void registerOutputFormatNull(FormatFactory & factory);
|
|
|
|
|
2019-02-19 18:41:18 +00:00
|
|
|
void registerOutputFormatProcessorPretty(FormatFactory & factory);
|
|
|
|
void registerOutputFormatProcessorPrettyCompact(FormatFactory & factory);
|
|
|
|
void registerOutputFormatProcessorPrettySpace(FormatFactory & factory);
|
|
|
|
void registerOutputFormatProcessorVertical(FormatFactory & factory);
|
|
|
|
void registerOutputFormatProcessorJSON(FormatFactory & factory);
|
|
|
|
void registerOutputFormatProcessorJSONCompact(FormatFactory & factory);
|
2019-08-09 16:10:47 +00:00
|
|
|
void registerOutputFormatProcessorJSONEachRowWithProgress(FormatFactory & factory);
|
2019-02-19 18:41:18 +00:00
|
|
|
void registerOutputFormatProcessorXML(FormatFactory & factory);
|
|
|
|
void registerOutputFormatProcessorODBCDriver(FormatFactory & factory);
|
|
|
|
void registerOutputFormatProcessorODBCDriver2(FormatFactory & factory);
|
|
|
|
void registerOutputFormatProcessorNull(FormatFactory & factory);
|
2019-07-04 18:55:20 +00:00
|
|
|
void registerOutputFormatProcessorMySQLWrite(FormatFactory & factory);
|
2019-02-19 18:41:18 +00:00
|
|
|
|
2018-06-10 19:22:49 +00:00
|
|
|
/// Input only formats.
|
2019-02-19 18:41:18 +00:00
|
|
|
void registerInputFormatProcessorCapnProto(FormatFactory & factory);
|
2018-06-10 19:22:49 +00:00
|
|
|
|
|
|
|
FormatFactory::FormatFactory()
|
|
|
|
{
|
|
|
|
registerInputFormatNative(*this);
|
|
|
|
registerOutputFormatNative(*this);
|
|
|
|
|
2019-08-09 16:10:47 +00:00
|
|
|
registerOutputFormatProcessorJSONEachRowWithProgress(*this);
|
2019-06-25 17:00:54 +00:00
|
|
|
|
2019-02-19 18:41:18 +00:00
|
|
|
registerInputFormatProcessorNative(*this);
|
|
|
|
registerOutputFormatProcessorNative(*this);
|
|
|
|
registerInputFormatProcessorRowBinary(*this);
|
|
|
|
registerOutputFormatProcessorRowBinary(*this);
|
|
|
|
registerInputFormatProcessorTabSeparated(*this);
|
|
|
|
registerOutputFormatProcessorTabSeparated(*this);
|
|
|
|
registerInputFormatProcessorValues(*this);
|
|
|
|
registerOutputFormatProcessorValues(*this);
|
|
|
|
registerInputFormatProcessorCSV(*this);
|
|
|
|
registerOutputFormatProcessorCSV(*this);
|
|
|
|
registerInputFormatProcessorTSKV(*this);
|
|
|
|
registerOutputFormatProcessorTSKV(*this);
|
|
|
|
registerInputFormatProcessorJSONEachRow(*this);
|
|
|
|
registerOutputFormatProcessorJSONEachRow(*this);
|
2019-02-21 18:36:46 +00:00
|
|
|
registerInputFormatProcessorProtobuf(*this);
|
2019-02-19 18:41:18 +00:00
|
|
|
registerOutputFormatProcessorProtobuf(*this);
|
|
|
|
registerInputFormatProcessorCapnProto(*this);
|
2019-08-21 14:19:47 +00:00
|
|
|
registerInputFormatProcessorORC(*this);
|
2019-02-21 18:36:46 +00:00
|
|
|
registerInputFormatProcessorParquet(*this);
|
|
|
|
registerOutputFormatProcessorParquet(*this);
|
2019-08-23 19:47:22 +00:00
|
|
|
registerInputFormatProcessorTemplate(*this);
|
|
|
|
registerOutputFormatProcessorTemplate(*this);
|
2019-02-19 18:41:18 +00:00
|
|
|
|
2019-08-02 16:20:25 +00:00
|
|
|
|
2018-06-10 19:22:49 +00:00
|
|
|
registerOutputFormatNull(*this);
|
2019-02-19 18:41:18 +00:00
|
|
|
|
|
|
|
registerOutputFormatProcessorPretty(*this);
|
|
|
|
registerOutputFormatProcessorPrettyCompact(*this);
|
|
|
|
registerOutputFormatProcessorPrettySpace(*this);
|
|
|
|
registerOutputFormatProcessorVertical(*this);
|
|
|
|
registerOutputFormatProcessorJSON(*this);
|
|
|
|
registerOutputFormatProcessorJSONCompact(*this);
|
|
|
|
registerOutputFormatProcessorXML(*this);
|
|
|
|
registerOutputFormatProcessorODBCDriver(*this);
|
|
|
|
registerOutputFormatProcessorODBCDriver2(*this);
|
|
|
|
registerOutputFormatProcessorNull(*this);
|
2019-07-04 18:55:20 +00:00
|
|
|
registerOutputFormatProcessorMySQLWrite(*this);
|
2018-06-10 19:22:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|