ClickHouse/src/Processors/Formats/Impl/JSONAsStringRowInputFormat.h

39 lines
1.0 KiB
C++
Raw Normal View History

2020-04-30 19:54:38 +00:00
#pragma once
#include <Processors/Formats/IRowInputFormat.h>
#include <Formats/FormatFactory.h>
#include <IO/PeekableReadBuffer.h>
namespace DB
{
class ReadBuffer;
/// This format parses a sequence of JSON objects separated by newlines, spaces and/or comma.
/// Each JSON object is parsed as a whole to string.
/// This format can only parse a table with single field of type String.
class JSONAsStringRowInputFormat : public IRowInputFormat
{
public:
JSONAsStringRowInputFormat(const Block & header_, ReadBuffer & in_, Params params_);
bool readRow(MutableColumns & columns, RowReadExtension & ext) override;
String getName() const override { return "JSONAsStringRowInputFormat"; }
void resetParser() override;
2020-04-30 19:54:38 +00:00
void readPrefix() override;
void readSuffix() override;
2020-04-30 19:54:38 +00:00
private:
void readJSONObject(IColumn & column);
PeekableReadBuffer buf;
/// This flag is needed to know if data is in square brackets.
bool data_in_square_brackets = false;
bool allow_new_rows = true;
2020-04-30 19:54:38 +00:00
};
}