aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Processors/Formats/Impl/JSONObjectEachRowRowInputFormat.cpp
blob: b3d5eb6cb0cd583a016941a40cd43d78a8f1d40b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#include <Processors/Formats/Impl/JSONObjectEachRowRowInputFormat.h>
#include <Formats/JSONUtils.h>
#include <Formats/FormatFactory.h>
#include <Formats/EscapingRuleUtils.h>
#include <Formats/SchemaInferenceUtils.h>
#include <DataTypes/DataTypeString.h>

namespace DB
{

namespace ErrorCodes
{
    extern const int BAD_ARGUMENTS;
}

std::optional<size_t> getColumnIndexForJSONObjectEachRowObjectName(const Block & header, const FormatSettings & format_settings)
{
    if (format_settings.json_object_each_row.column_for_object_name.empty())
        return std::nullopt;

    if (!header.has(format_settings.json_object_each_row.column_for_object_name))
        throw Exception(
            ErrorCodes::BAD_ARGUMENTS,
            "Column name '{}' from setting format_json_object_each_row_column_for_object_name doesn't exists in header",
            format_settings.json_object_each_row.column_for_object_name);

    size_t index = header.getPositionByName(format_settings.json_object_each_row.column_for_object_name);
    if (!isStringOrFixedString(header.getDataTypes()[index]))
        throw Exception(
            ErrorCodes::BAD_ARGUMENTS,
            "Column '{}' from setting json_object_each_row_column_for_object_name must have String type",
            format_settings.json_object_each_row.column_for_object_name);

    return index;
}

JSONObjectEachRowInputFormat::JSONObjectEachRowInputFormat(ReadBuffer & in_, const Block & header_, Params params_, const FormatSettings & format_settings_)
    : JSONEachRowRowInputFormat(in_, header_, params_, format_settings_, false), field_index_for_object_name(getColumnIndexForJSONObjectEachRowObjectName(header_, format_settings_))
{
}

void JSONObjectEachRowInputFormat::readPrefix()
{
    JSONUtils::skipObjectStart(*in);
}

void JSONObjectEachRowInputFormat::readRowStart(MutableColumns & columns)
{
    auto object_name = JSONUtils::readFieldName(*in);
    if (field_index_for_object_name)
    {
        columns[*field_index_for_object_name]->insertData(object_name.data(), object_name.size());
        seen_columns[*field_index_for_object_name] = true;
        read_columns[*field_index_for_object_name] = true;
    }
}

void JSONObjectEachRowInputFormat::skipRowStart()
{
    JSONUtils::readFieldName(*in);
}

bool JSONObjectEachRowInputFormat::checkEndOfData(bool is_first_row)
{
    if (in->eof() || JSONUtils::checkAndSkipObjectEnd(*in))
        return true;
    if (!is_first_row)
        JSONUtils::skipComma(*in);
    return false;
}

JSONObjectEachRowSchemaReader::JSONObjectEachRowSchemaReader(ReadBuffer & in_, const FormatSettings & format_settings_)
    : IRowWithNamesSchemaReader(in_, format_settings_)
{
}

NamesAndTypesList JSONObjectEachRowSchemaReader::readRowAndGetNamesAndDataTypes(bool & eof)
{
    if (first_row)
        JSONUtils::skipObjectStart(in);

    if (in.eof() || JSONUtils::checkAndSkipObjectEnd(in))
    {
        eof = true;
        return {};
    }

    if (first_row)
        first_row = false;
    else
        JSONUtils::skipComma(in);

    JSONUtils::readFieldName(in);
    return JSONUtils::readRowAndGetNamesAndDataTypesForJSONEachRow(in, format_settings, &inference_info);
}

NamesAndTypesList JSONObjectEachRowSchemaReader::getStaticNamesAndTypes()
{
    if (!format_settings.json_object_each_row.column_for_object_name.empty())
        return {{format_settings.json_object_each_row.column_for_object_name, std::make_shared<DataTypeString>()}};

    return {};
}

void JSONObjectEachRowSchemaReader::transformTypesIfNeeded(DataTypePtr & type, DataTypePtr & new_type)
{
    transformInferredJSONTypesIfNeeded(type, new_type, format_settings, &inference_info);
}

void JSONObjectEachRowSchemaReader::transformFinalTypeIfNeeded(DataTypePtr & type)
{
    transformJSONTupleToArrayIfPossible(type, format_settings, &inference_info);
}

void registerInputFormatJSONObjectEachRow(FormatFactory & factory)
{
    factory.registerInputFormat("JSONObjectEachRow", [](
                ReadBuffer & buf,
                const Block & sample,
                IRowInputFormat::Params params,
                const FormatSettings & settings)
    {
        return std::make_shared<JSONObjectEachRowInputFormat>(buf, sample, std::move(params), settings);
    });

    factory.markFormatSupportsSubsetOfColumns("JSONObjectEachRow");
}

void registerJSONObjectEachRowSchemaReader(FormatFactory & factory)
{
    factory.registerSchemaReader("JSONObjectEachRow", [](ReadBuffer & buf, const FormatSettings & settings)
    {
        return std::make_unique<JSONObjectEachRowSchemaReader>(buf, settings);
    });
    factory.registerAdditionalInfoForSchemaCacheGetter("JSONObjectEachRow", [](const FormatSettings & settings)
    {
            return getAdditionalFormatInfoByEscapingRule(settings, FormatSettings::EscapingRule::JSON)
                + fmt::format(", format_json_object_each_row_column_for_object_name={}", settings.json_object_each_row.column_for_object_name);
    });
}

}