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

61 lines
1.6 KiB
C++

#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 JSONAsRowInputFormat : public IRowInputFormat
{
public:
JSONAsRowInputFormat(const Block & header_, ReadBuffer & in_, Params params_);
void resetParser() override;
private:
bool readRow(MutableColumns & columns, RowReadExtension & ext) override;
void readPrefix() override;
void readSuffix() override;
protected:
virtual void readJSONObject(IColumn & column) = 0;
PeekableReadBuffer buf;
private:
/// This flag is needed to know if data is in square brackets.
bool data_in_square_brackets = false;
bool allow_new_rows = true;
};
class JSONAsStringRowInputFormat final : public JSONAsRowInputFormat
{
public:
JSONAsStringRowInputFormat(const Block & header_, ReadBuffer & in_, Params params_);
String getName() const override { return "JSONAsStringRowInputFormat"; }
private:
void readJSONObject(IColumn & column) override;
};
class JSONAsObjectRowInputFormat final : public JSONAsRowInputFormat
{
public:
JSONAsObjectRowInputFormat(const Block & header_, ReadBuffer & in_, Params params_, const FormatSettings & format_settings_);
String getName() const override { return "JSONAsObjectRowInputFormat"; }
private:
void readJSONObject(IColumn & column) override;
const FormatSettings format_settings;
};
}