mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
172 lines
5.3 KiB
C++
172 lines
5.3 KiB
C++
#include <Processors/Formats/IRowInputFormat.h>
|
|
#include <IO/WriteHelpers.h> // toString
|
|
#include <common/logger_useful.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int NOT_IMPLEMENTED;
|
|
extern const int CANNOT_PARSE_INPUT_ASSERTION_FAILED;
|
|
extern const int CANNOT_PARSE_QUOTED_STRING;
|
|
extern const int CANNOT_PARSE_DATE;
|
|
extern const int CANNOT_PARSE_DATETIME;
|
|
extern const int CANNOT_READ_ARRAY_FROM_TEXT;
|
|
extern const int CANNOT_PARSE_NUMBER;
|
|
extern const int CANNOT_PARSE_UUID;
|
|
extern const int TOO_LARGE_STRING_SIZE;
|
|
extern const int INCORRECT_NUMBER_OF_COLUMNS;
|
|
}
|
|
|
|
|
|
bool isParseError(int code)
|
|
{
|
|
return code == ErrorCodes::CANNOT_PARSE_INPUT_ASSERTION_FAILED
|
|
|| code == ErrorCodes::CANNOT_PARSE_QUOTED_STRING
|
|
|| code == ErrorCodes::CANNOT_PARSE_DATE
|
|
|| code == ErrorCodes::CANNOT_PARSE_DATETIME
|
|
|| code == ErrorCodes::CANNOT_READ_ARRAY_FROM_TEXT
|
|
|| code == ErrorCodes::CANNOT_PARSE_NUMBER
|
|
|| code == ErrorCodes::CANNOT_PARSE_UUID
|
|
|| code == ErrorCodes::TOO_LARGE_STRING_SIZE;
|
|
}
|
|
|
|
|
|
Chunk IRowInputFormat::generate()
|
|
{
|
|
if (total_rows == 0)
|
|
readPrefix();
|
|
|
|
const Block & header = getPort().getHeader();
|
|
|
|
size_t num_columns = header.columns();
|
|
MutableColumns columns = header.cloneEmptyColumns();
|
|
|
|
///auto chunk_missing_values = std::make_unique<ChunkMissingValues>();
|
|
block_missing_values.clear();
|
|
|
|
try
|
|
{
|
|
for (size_t rows = 0; rows < params.max_block_size; ++rows)
|
|
{
|
|
try
|
|
{
|
|
++total_rows;
|
|
|
|
RowReadExtension info;
|
|
if (!readRow(columns, info))
|
|
break;
|
|
if (params.callback)
|
|
params.callback();
|
|
|
|
for (size_t column_idx = 0; column_idx < info.read_columns.size(); ++column_idx)
|
|
{
|
|
if (!info.read_columns[column_idx])
|
|
{
|
|
size_t column_size = columns[column_idx]->size();
|
|
if (column_size == 0)
|
|
throw Exception("Unexpected empty column", ErrorCodes::INCORRECT_NUMBER_OF_COLUMNS);
|
|
block_missing_values.setBit(column_idx, column_size - 1);
|
|
}
|
|
}
|
|
}
|
|
catch (Exception & e)
|
|
{
|
|
/// Logic for possible skipping of errors.
|
|
|
|
if (!isParseError(e.code()))
|
|
throw;
|
|
|
|
if (params.allow_errors_num == 0 && params.allow_errors_ratio == 0)
|
|
throw;
|
|
|
|
++num_errors;
|
|
Float64 current_error_ratio = static_cast<Float64>(num_errors) / total_rows;
|
|
|
|
if (num_errors > params.allow_errors_num
|
|
&& current_error_ratio > params.allow_errors_ratio)
|
|
{
|
|
e.addMessage("(Already have " + toString(num_errors) + " errors"
|
|
" out of " + toString(total_rows) + " rows"
|
|
", which is " + toString(current_error_ratio) + " of all rows)");
|
|
throw;
|
|
}
|
|
|
|
if (!allowSyncAfterError())
|
|
{
|
|
e.addMessage("(Input format doesn't allow to skip errors)");
|
|
throw;
|
|
}
|
|
|
|
syncAfterError();
|
|
|
|
/// Truncate all columns in block to minimal size (remove values, that was appended to only part of columns).
|
|
|
|
size_t min_size = std::numeric_limits<size_t>::max();
|
|
for (size_t column_idx = 0; column_idx < num_columns; ++column_idx)
|
|
min_size = std::min(min_size, columns[column_idx]->size());
|
|
|
|
for (size_t column_idx = 0; column_idx < num_columns; ++column_idx)
|
|
{
|
|
auto & column = columns[column_idx];
|
|
if (column->size() > min_size)
|
|
column->popBack(column->size() - min_size);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch (Exception & e)
|
|
{
|
|
if (!isParseError(e.code()))
|
|
throw;
|
|
|
|
String verbose_diagnostic;
|
|
try
|
|
{
|
|
verbose_diagnostic = getDiagnosticInfo();
|
|
}
|
|
catch (...)
|
|
{
|
|
/// Error while trying to obtain verbose diagnostic. Ok to ignore.
|
|
}
|
|
|
|
e.addMessage("(at row " + toString(total_rows) + ")\n" + verbose_diagnostic);
|
|
throw;
|
|
}
|
|
|
|
if (columns.empty() || columns[0]->empty())
|
|
{
|
|
if (params.allow_errors_num > 0 || params.allow_errors_ratio > 0)
|
|
{
|
|
Logger * log = &Logger::get("IRowInputFormat");
|
|
LOG_TRACE(log, "Skipped " << num_errors << " rows with errors while reading the input stream");
|
|
}
|
|
|
|
readSuffix();
|
|
return {};
|
|
}
|
|
|
|
auto num_rows = columns.front()->size();
|
|
Chunk chunk(std::move(columns), num_rows);
|
|
//chunk.setChunkInfo(std::move(chunk_missing_values));
|
|
return chunk;
|
|
}
|
|
|
|
void IRowInputFormat::syncAfterError()
|
|
{
|
|
throw Exception("Method syncAfterError is not implemented for input format", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
void IRowInputFormat::resetParser()
|
|
{
|
|
IInputFormat::resetParser();
|
|
total_rows = 0;
|
|
num_errors = 0;
|
|
block_missing_values.clear();
|
|
}
|
|
|
|
|
|
}
|