2017-04-01 09:19:00 +00:00
|
|
|
#include <IO/ReadHelpers.h>
|
2018-06-10 19:22:49 +00:00
|
|
|
|
|
|
|
#include <Formats/JSONEachRowRowInputStream.h>
|
|
|
|
#include <Formats/FormatFactory.h>
|
|
|
|
#include <Formats/BlockInputStreamFromRowInputStream.h>
|
2018-09-14 12:15:32 +00:00
|
|
|
#include <DataTypes/NestedUtils.h>
|
2016-02-18 11:44:50 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int INCORRECT_DATA;
|
|
|
|
extern const int CANNOT_READ_ALL_DATA;
|
2018-10-09 19:46:35 +00:00
|
|
|
extern const int LOGICAL_ERROR;
|
2016-02-18 11:44:50 +00:00
|
|
|
}
|
|
|
|
|
2018-09-14 12:15:32 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
UNKNOWN_FIELD = size_t(-1),
|
|
|
|
NESTED_FIELD = size_t(-2)
|
|
|
|
};
|
|
|
|
|
2016-02-18 11:44:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-08 01:51:55 +00:00
|
|
|
JSONEachRowRowInputStream::JSONEachRowRowInputStream(ReadBuffer & istr_, const Block & header_, const FormatSettings & format_settings)
|
|
|
|
: istr(istr_), header(header_), format_settings(format_settings), name_map(header.columns())
|
2016-02-18 11:44:50 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
/// In this format, BOM at beginning of stream cannot be confused with value, so it is safe to skip it.
|
|
|
|
skipBOMIfExists(istr);
|
2016-06-23 19:39:20 +00:00
|
|
|
|
2017-12-14 20:58:18 +00:00
|
|
|
size_t num_columns = header.columns();
|
|
|
|
for (size_t i = 0; i < num_columns; ++i)
|
2018-09-14 12:15:32 +00:00
|
|
|
{
|
2018-10-09 18:14:30 +00:00
|
|
|
const String & colname = columnName(i);
|
2018-09-14 12:15:32 +00:00
|
|
|
name_map[colname] = i; /// NOTE You could place names more cache-locally.
|
2018-09-17 20:35:21 +00:00
|
|
|
if (format_settings.import_nested_json)
|
2018-09-14 12:15:32 +00:00
|
|
|
{
|
2018-09-14 13:43:57 +00:00
|
|
|
const auto splitted = Nested::splitName(colname);
|
2018-09-17 20:35:21 +00:00
|
|
|
if (!splitted.second.empty())
|
2018-09-14 13:43:57 +00:00
|
|
|
{
|
|
|
|
const StringRef table_name(colname.data(), splitted.first.size());
|
|
|
|
name_map[table_name] = NESTED_FIELD;
|
|
|
|
}
|
2018-09-14 12:15:32 +00:00
|
|
|
}
|
|
|
|
}
|
2018-10-09 21:09:48 +00:00
|
|
|
|
|
|
|
prev_positions.assign(num_columns, name_map.end());
|
2016-02-18 11:44:50 +00:00
|
|
|
}
|
|
|
|
|
2018-10-09 18:14:30 +00:00
|
|
|
const String & JSONEachRowRowInputStream::columnName(size_t i) const
|
2018-09-14 07:28:49 +00:00
|
|
|
{
|
2018-10-09 18:14:30 +00:00
|
|
|
return header.getByPosition(i).name;
|
2016-02-18 11:44:50 +00:00
|
|
|
}
|
|
|
|
|
2018-10-09 21:38:06 +00:00
|
|
|
inline size_t JSONEachRowRowInputStream::columnIndex(const StringRef & name, size_t key_index)
|
2018-09-14 08:27:49 +00:00
|
|
|
{
|
2018-10-09 21:09:48 +00:00
|
|
|
/// Optimization by caching the order of fields (which is almost always the same)
|
2018-09-14 08:27:49 +00:00
|
|
|
/// and a quick check to match the next expected field, instead of searching the hash table.
|
|
|
|
|
2018-10-09 21:09:48 +00:00
|
|
|
if (prev_positions.size() > key_index
|
|
|
|
&& prev_positions[key_index] != name_map.end()
|
|
|
|
&& name == prev_positions[key_index]->first)
|
|
|
|
{
|
|
|
|
return prev_positions[key_index]->second;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const auto it = name_map.find(name);
|
|
|
|
|
|
|
|
if (name_map.end() != it)
|
|
|
|
{
|
|
|
|
if (key_index < prev_positions.size())
|
|
|
|
prev_positions[key_index] = it;
|
|
|
|
|
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return UNKNOWN_FIELD;
|
|
|
|
}
|
2018-09-14 08:27:49 +00:00
|
|
|
}
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2018-09-14 12:15:32 +00:00
|
|
|
/** Read the field name and convert it to column name
|
2018-09-17 20:35:21 +00:00
|
|
|
* (taking into account the current nested name prefix)
|
2018-10-09 19:46:35 +00:00
|
|
|
* Resulting StringRef is valid only before next read from buf.
|
2016-02-18 11:44:50 +00:00
|
|
|
*/
|
2018-09-14 12:15:32 +00:00
|
|
|
StringRef JSONEachRowRowInputStream::readColumnName(ReadBuffer & buf)
|
2016-02-18 11:44:50 +00:00
|
|
|
{
|
2018-10-09 19:46:35 +00:00
|
|
|
// This is just an optimization: try to avoid copying the name into current_column_name
|
2018-09-26 11:27:04 +00:00
|
|
|
|
2018-09-14 12:15:32 +00:00
|
|
|
if (nested_prefix_length == 0 && buf.position() + 1 < buf.buffer().end())
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-10-09 21:21:52 +00:00
|
|
|
char * next_pos = find_first_symbols<'\\', '"'>(buf.position() + 1, buf.buffer().end());
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
if (next_pos != buf.buffer().end() && *next_pos != '\\')
|
|
|
|
{
|
|
|
|
/// The most likely option is that there is no escape sequence in the key name, and the entire name is placed in the buffer.
|
|
|
|
assertChar('"', buf);
|
|
|
|
StringRef res(buf.position(), next_pos - buf.position());
|
2018-10-09 21:21:52 +00:00
|
|
|
buf.position() = next_pos + 1;
|
2017-04-01 07:20:54 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-14 12:15:32 +00:00
|
|
|
current_column_name.resize(nested_prefix_length);
|
|
|
|
readJSONStringInto(current_column_name, buf);
|
|
|
|
return current_column_name;
|
2016-02-18 11:44:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-09 21:38:06 +00:00
|
|
|
static inline void skipColonDelimeter(ReadBuffer & istr)
|
2016-09-20 19:11:25 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
skipWhitespaceIfAny(istr);
|
|
|
|
assertChar(':', istr);
|
|
|
|
skipWhitespaceIfAny(istr);
|
2016-09-20 19:11:25 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 20:35:21 +00:00
|
|
|
void JSONEachRowRowInputStream::skipUnknownField(const StringRef & name_ref)
|
2018-07-04 17:02:47 +00:00
|
|
|
{
|
2018-09-14 07:28:49 +00:00
|
|
|
if (!format_settings.skip_unknown_fields)
|
|
|
|
throw Exception("Unknown field found while parsing JSONEachRow format: " + name_ref.toString(), ErrorCodes::INCORRECT_DATA);
|
|
|
|
|
|
|
|
skipJSONField(istr, name_ref);
|
2018-07-04 17:02:47 +00:00
|
|
|
}
|
|
|
|
|
2018-09-14 07:28:49 +00:00
|
|
|
void JSONEachRowRowInputStream::readField(size_t index, MutableColumns & columns)
|
2016-02-18 11:44:50 +00:00
|
|
|
{
|
2018-09-14 07:28:49 +00:00
|
|
|
if (read_columns[index])
|
2018-09-14 10:47:26 +00:00
|
|
|
throw Exception("Duplicate field found while parsing JSONEachRow format: " + columnName(index), ErrorCodes::INCORRECT_DATA);
|
2017-12-14 20:58:18 +00:00
|
|
|
|
2018-09-14 07:28:49 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
header.getByPosition(index).type->deserializeTextJSON(*columns[index], istr, format_settings);
|
|
|
|
}
|
|
|
|
catch (Exception & e)
|
|
|
|
{
|
2018-09-14 10:47:26 +00:00
|
|
|
e.addMessage("(while read the value of key " + columnName(index) + ")");
|
2018-09-14 07:28:49 +00:00
|
|
|
throw;
|
|
|
|
}
|
2017-12-14 20:58:18 +00:00
|
|
|
|
2018-09-17 20:35:21 +00:00
|
|
|
read_columns[index] = true;
|
2018-09-14 07:28:49 +00:00
|
|
|
}
|
2017-10-04 00:08:38 +00:00
|
|
|
|
2018-10-09 21:38:06 +00:00
|
|
|
inline bool JSONEachRowRowInputStream::advanceToNextKey(size_t key_index)
|
2018-09-14 08:27:49 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
skipWhitespaceIfAny(istr);
|
2018-09-14 08:27:49 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (istr.eof())
|
2018-09-14 08:27:49 +00:00
|
|
|
throw Exception("Unexpected end of stream while parsing JSONEachRow format", ErrorCodes::CANNOT_READ_ALL_DATA);
|
|
|
|
else if (*istr.position() == '}')
|
|
|
|
{
|
|
|
|
++istr.position();
|
2017-04-01 07:20:54 +00:00
|
|
|
return false;
|
2018-09-14 08:27:49 +00:00
|
|
|
}
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2018-09-14 08:27:49 +00:00
|
|
|
if (key_index > 0)
|
|
|
|
{
|
|
|
|
assertChar(',', istr);
|
|
|
|
skipWhitespaceIfAny(istr);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2018-09-14 10:47:26 +00:00
|
|
|
void JSONEachRowRowInputStream::readJSONObject(MutableColumns & columns)
|
|
|
|
{
|
|
|
|
assertChar('{', istr);
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2018-09-17 20:35:21 +00:00
|
|
|
for (size_t key_index = 0; advanceToNextKey(key_index); ++key_index)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-09-14 12:15:32 +00:00
|
|
|
StringRef name_ref = readColumnName(istr);
|
2018-10-09 21:09:48 +00:00
|
|
|
const size_t column_index = columnIndex(name_ref, key_index);
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2018-10-09 19:46:35 +00:00
|
|
|
if (unlikely(ssize_t(column_index) < 0))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-10-09 19:46:35 +00:00
|
|
|
/// name_ref may point directly to the input buffer
|
|
|
|
/// and input buffer may be filled with new data on next read
|
|
|
|
/// If we want to use name_ref after another reads from buffer, we must copy it to temporary string.
|
|
|
|
|
|
|
|
current_column_name.assign(name_ref.data, name_ref.size);
|
|
|
|
name_ref = StringRef(current_column_name);
|
|
|
|
|
|
|
|
skipColonDelimeter(istr);
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2018-10-09 19:46:35 +00:00
|
|
|
if (column_index == UNKNOWN_FIELD)
|
|
|
|
skipUnknownField(name_ref);
|
|
|
|
else if (column_index == NESTED_FIELD)
|
|
|
|
readNestedData(name_ref.toString(), columns);
|
|
|
|
else
|
|
|
|
throw Exception("Logical error: illegal value of column_index", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
else
|
|
|
|
{
|
2018-10-09 19:46:35 +00:00
|
|
|
skipColonDelimeter(istr);
|
2018-09-14 10:47:26 +00:00
|
|
|
readField(column_index, columns);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2018-09-14 10:47:26 +00:00
|
|
|
}
|
|
|
|
}
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2018-09-17 20:35:21 +00:00
|
|
|
void JSONEachRowRowInputStream::readNestedData(const String & name, MutableColumns & columns)
|
2018-09-14 12:15:32 +00:00
|
|
|
{
|
|
|
|
current_column_name = name;
|
|
|
|
current_column_name.push_back('.');
|
|
|
|
nested_prefix_length = current_column_name.size();
|
|
|
|
readJSONObject(columns);
|
|
|
|
nested_prefix_length = 0;
|
|
|
|
}
|
2016-02-18 11:44:50 +00:00
|
|
|
|
|
|
|
|
2018-12-04 14:09:47 +00:00
|
|
|
bool JSONEachRowRowInputStream::read(MutableColumns & columns, RowReadExtension & ext)
|
2016-02-18 11:44:50 +00:00
|
|
|
{
|
2017-10-04 00:08:38 +00:00
|
|
|
skipWhitespaceIfAny(istr);
|
2016-09-20 19:11:25 +00:00
|
|
|
|
2017-10-23 17:43:46 +00:00
|
|
|
/// We consume ;, or \n before scanning a new row, instead scanning to next row at the end.
|
2017-12-14 20:58:18 +00:00
|
|
|
/// The reason is that if we want an exact number of rows read with LIMIT x
|
2017-10-23 17:43:46 +00:00
|
|
|
/// from a streaming table engine with text data format, like File or Kafka
|
|
|
|
/// then seeking to next ;, or \n would trigger reading of an extra row at the end.
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2017-10-23 17:43:46 +00:00
|
|
|
/// Semicolon is added for convenience as it could be used at end of INSERT query.
|
|
|
|
if (!istr.eof() && (*istr.position() == ',' || *istr.position() == ';'))
|
2017-10-04 00:08:38 +00:00
|
|
|
++istr.position();
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
skipWhitespaceIfAny(istr);
|
|
|
|
if (istr.eof())
|
|
|
|
return false;
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2017-12-14 20:58:18 +00:00
|
|
|
size_t num_columns = columns.size();
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// Set of columns for which the values were read. The rest will be filled with default values.
|
2018-09-14 07:28:49 +00:00
|
|
|
read_columns.assign(num_columns, false);
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2018-09-14 12:15:32 +00:00
|
|
|
nested_prefix_length = 0;
|
2018-09-14 10:47:26 +00:00
|
|
|
readJSONObject(columns);
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// Fill non-visited columns with the default values.
|
2017-12-14 20:58:18 +00:00
|
|
|
for (size_t i = 0; i < num_columns; ++i)
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!read_columns[i])
|
2017-12-14 20:58:18 +00:00
|
|
|
header.getByPosition(i).type->insertDefaultInto(*columns[i]);
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2018-11-08 15:51:31 +00:00
|
|
|
/// return info about defaults set
|
|
|
|
ext.read_columns = read_columns;
|
2017-04-01 07:20:54 +00:00
|
|
|
return true;
|
2016-02-18 11:44:50 +00:00
|
|
|
}
|
|
|
|
|
2017-01-27 04:29:47 +00:00
|
|
|
|
|
|
|
void JSONEachRowRowInputStream::syncAfterError()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
skipToUnescapedNextLineOrEOF(istr);
|
2017-01-27 04:29:47 +00:00
|
|
|
}
|
|
|
|
|
2018-06-10 19:22:49 +00:00
|
|
|
|
|
|
|
void registerInputFormatJSONEachRow(FormatFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerInputFormat("JSONEachRow", [](
|
|
|
|
ReadBuffer & buf,
|
|
|
|
const Block & sample,
|
|
|
|
const Context &,
|
|
|
|
size_t max_block_size,
|
|
|
|
const FormatSettings & settings)
|
|
|
|
{
|
|
|
|
return std::make_shared<BlockInputStreamFromRowInputStream>(
|
|
|
|
std::make_shared<JSONEachRowRowInputStream>(buf, sample, settings),
|
|
|
|
sample, max_block_size, settings);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-02-18 11:44:50 +00:00
|
|
|
}
|