BiteTheDDDDt commented on code in PR #9311:
URL: https://github.com/apache/incubator-doris/pull/9311#discussion_r866613578


##########
be/src/vec/exec/vjson_scanner.cpp:
##########
@@ -0,0 +1,601 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
+#include "vec/exec/vjson_scanner.h"
+
+#include <algorithm>
+#include <fmt/format.h>
+
+#include "env/env.h"
+#include "exec/broker_reader.h"
+#include "exec/buffered_reader.h"
+#include "exec/local_file_reader.h"
+#include "exec/plain_text_line_reader.h"
+#include "exec/s3_reader.h"
+#include "exprs/expr.h"
+#include "exprs/json_functions.h"
+#include "gutil/strings/split.h"
+#include "runtime/exec_env.h"
+#include "runtime/runtime_state.h"
+#include "util/time.h"
+
+namespace doris::vectorized {
+
+VJsonScanner::VJsonScanner(RuntimeState* state, RuntimeProfile* profile,
+                         const TBrokerScanRangeParams& params,
+                         const std::vector<TBrokerRangeDesc>& ranges,
+                         const std::vector<TNetworkAddress>& broker_addresses,
+                         const std::vector<TExpr>& pre_filter_texprs, 
ScannerCounter* counter)
+        : JsonScanner(state, profile, params, ranges, broker_addresses, 
pre_filter_texprs, counter),
+          _cur_vjson_reader(nullptr) {
+}
+
+VJsonScanner::~VJsonScanner() {
+    close();
+}
+
+Status VJsonScanner::open() {
+    RETURN_IF_ERROR(BaseScanner::open());
+    return Status::OK();
+}
+
+void VJsonScanner::close() { 
+    BaseScanner::close();
+}
+
+Status VJsonScanner::get_next(vectorized::Block& output_block, bool* eof) {
+    SCOPED_TIMER(_read_timer);
+    const int batch_size = _state->batch_size();
+    size_t slot_num = _src_slot_descs.size();
+    std::shared_ptr<vectorized::Block> temp_block(new vectorized::Block());
+    std::vector<vectorized::MutableColumnPtr> columns(slot_num);
+    auto string_type = make_nullable(std::make_shared<DataTypeString>());
+    for (int i = 0; i < slot_num; i++) {
+        columns[i] = string_type->create_column();
+    }
+
+    // Get one line
+    while (columns[0]->size() < batch_size && !_scanner_eof) {
+        if (_cur_file_reader == nullptr || _cur_reader_eof) {
+            RETURN_IF_ERROR(open_next_reader());
+            // If there isn't any more reader, break this
+            if (_scanner_eof) {
+                break;
+            }
+        }
+        
+        if (_read_json_by_line && _skip_next_line) {
+            size_t size = 0;
+            const uint8_t* line_ptr = nullptr;
+            RETURN_IF_ERROR(_cur_line_reader->read_line(&line_ptr, &size, 
&_cur_reader_eof));
+            _skip_next_line = false;
+            continue;
+        }
+
+        bool is_empty_row = false;
+        RETURN_IF_ERROR(_cur_vjson_reader->read_json_column(columns, 
_src_slot_descs,  
+                                                        &is_empty_row, 
&_cur_reader_eof));
+        if (is_empty_row) {
+            // Read empty row, just continue
+            continue;
+        }
+        COUNTER_UPDATE(_rows_read_counter, 1);
+        SCOPED_TIMER(_materialize_timer);
+    }
+
+    if (columns[0]->size() > 0) {
+        if (!_dest_vexpr_ctx.empty()) {
+            auto n_columns = 0;
+            for (const auto slot_desc : _src_slot_descs) {
+                
temp_block->insert(ColumnWithTypeAndName(std::move(columns[n_columns++]),
+                                                        
slot_desc->get_data_type_ptr(),
+                                                        
slot_desc->col_name()));
+            }
+
+            RETURN_IF_ERROR(filter_block_and_execute_exprs(&output_block, 
temp_block.get(), slot_num));
+        } else {
+            auto n_columns = 0;
+            for (const auto slot_desc : _src_slot_descs) {
+                
output_block.insert(ColumnWithTypeAndName(std::move(columns[n_columns++]),
+                                                        
slot_desc->get_data_type_ptr(),
+                                                        
slot_desc->col_name()));
+            }
+            
+            // filter src tuple by preceding filter first
+            if (!_vpre_filter_ctxs.empty()) {
+                auto old_rows = output_block.rows();
+                for (auto _vpre_filter_ctx : _vpre_filter_ctxs) {
+                    
RETURN_IF_ERROR(VExprContext::filter_block(_vpre_filter_ctx, &output_block, 
slot_num));
+                }
+                _counter->num_rows_unselected += old_rows - 
output_block.rows();
+            }
+        }
+    }
+
+    if (_scanner_eof) {
+        *eof = true;
+    } else {
+        *eof = false;
+    }
+    return Status::OK();
+}
+
+Status VJsonScanner::open_next_reader() {
+    if (_next_range >= _ranges.size()) {
+        _scanner_eof = true;
+        return Status::OK();
+    }
+    
+    // init file reader
+    RETURN_IF_ERROR(JsonScanner::open_file_reader());
+
+    // init line reader
+    if (_read_json_by_line) {
+        RETURN_IF_ERROR(JsonScanner::open_line_reader());
+    }
+
+    RETURN_IF_ERROR(open_vjson_reader());
+    _next_range++;
+
+    return Status::OK();
+}
+
+Status VJsonScanner::open_vjson_reader() {
+    if (_cur_vjson_reader != nullptr) {
+        _cur_vjson_reader.reset();
+    }
+    std::string json_root = "";
+    std::string jsonpath = "";
+    bool strip_outer_array = false;
+    bool num_as_string = false;
+    bool fuzzy_parse = false;
+
+    const TBrokerRangeDesc& range = _ranges[_next_range];
+
+    if (range.__isset.jsonpaths) {
+        jsonpath = range.jsonpaths;
+    }
+    if (range.__isset.json_root) {
+        json_root = range.json_root;
+    }
+    if (range.__isset.strip_outer_array) {
+        strip_outer_array = range.strip_outer_array;
+    }
+    if (range.__isset.num_as_string) {
+        num_as_string = range.num_as_string;
+    }
+    if (range.__isset.fuzzy_parse) {
+        fuzzy_parse = range.fuzzy_parse;
+    }
+    
+    if (_read_json_by_line) {
+        _cur_vjson_reader.reset(new VJsonReader(_state, _counter, _profile, 
strip_outer_array, num_as_string,
+                               fuzzy_parse, &_scanner_eof, nullptr, 
_cur_line_reader));
+    } else {
+        _cur_vjson_reader.reset(new VJsonReader(_state, _counter, _profile, 
strip_outer_array, num_as_string,
+                                        fuzzy_parse, &_scanner_eof, 
_cur_file_reader));
+    }
+
+    RETURN_IF_ERROR(_cur_vjson_reader->init(jsonpath, json_root));
+    return Status::OK();
+}
+
+VJsonReader::VJsonReader(RuntimeState* state, ScannerCounter* counter, 
RuntimeProfile* profile,
+                        bool strip_outer_array, bool num_as_string,bool 
fuzzy_parse,
+                        bool* scanner_eof, FileReader* file_reader, 
LineReader* line_reader)
+               : JsonReader(state, counter, profile, strip_outer_array, 
num_as_string, fuzzy_parse,
+                            scanner_eof, file_reader, line_reader),
+                _vhandle_json_callback(nullptr) {
+}
+
+VJsonReader::~VJsonReader() {
+
+}
+
+Status VJsonReader::init(const std::string& jsonpath, const std::string& 
json_root) {
+    // parse jsonpath
+    if (!jsonpath.empty()) {
+        Status st = JsonReader::_generate_json_paths(jsonpath, 
&_parsed_jsonpaths);
+        RETURN_IF_ERROR(st);
+    }
+    if (!json_root.empty()) {
+        JsonFunctions::parse_json_paths(json_root, &_parsed_json_root);
+    }
+
+    //improve performance
+    if (_parsed_jsonpaths.empty()) { // input is a simple json-string
+        _vhandle_json_callback = &VJsonReader::_vhandle_simple_json;
+    } else { // input is a complex json-string and a json-path
+        if (_strip_outer_array) {
+            _vhandle_json_callback = 
&VJsonReader::_vhandle_flat_array_complex_json;
+        } else {
+            _vhandle_json_callback = 
&VJsonReader::_vhandle_nested_complex_json;
+        }
+    }
+    
+    return Status::OK();
+}
+
+Status VJsonReader::read_json_column(std::vector<MutableColumnPtr>& columns, 
+                                    const std::vector<SlotDescriptor*>& 
slot_descs,
+                                    bool* is_empty_row, bool* eof) {
+    return (this->*_vhandle_json_callback)(columns, slot_descs, is_empty_row, 
eof);
+}
+
+Status VJsonReader::_vhandle_simple_json(std::vector<MutableColumnPtr>& 
columns, 
+                                                    const 
std::vector<SlotDescriptor*>& slot_descs,
+                                                    bool* is_empty_row, bool* 
eof) {
+    do {
+        bool valid = false;
+        if (_next_line >= _total_lines) { // parse json and generic document
+            Status st = _parse_json(is_empty_row, eof);
+            if (st.is_data_quality_error()) {
+                continue; // continue to read next
+            }
+            RETURN_IF_ERROR(st);
+            if (*is_empty_row == true && st == Status::OK()) {
+                return Status::OK();
+            }   
+            _name_map.clear();
+            rapidjson::Value* objectValue = nullptr;
+            if (_json_doc->IsArray()) {
+                _total_lines = _json_doc->Size();
+                if (_total_lines == 0) {
+                    // may be passing an empty json, such as "[]"
+                    std::string err_msg("Empty json line");
+                    RETURN_IF_ERROR(_append_error_msg(*_json_doc, err_msg, 
nullptr));
+                    if (*_scanner_eof) {
+                        *is_empty_row = true;
+                        return Status::OK();
+                    }
+                    continue;
+                }
+                objectValue = &(*_json_doc)[0];
+            } else {
+                _total_lines = 1; // only one row
+                objectValue = _json_doc;
+            }
+            _next_line = 0;
+            if (_fuzzy_parse) {
+                for (auto v : slot_descs) {
+                    for (int i = 0; i < objectValue->MemberCount(); ++i) {
+                        auto it = objectValue->MemberBegin() + i;
+                        if (v->col_name() == it->name.GetString()) {
+                            _name_map[v->col_name()] = i;
+                            break;
+                        }
+                    }
+                }
+            }
+        }
+
+        if (_json_doc->IsArray()) { // handle case 1
+            rapidjson::Value& objectValue = (*_json_doc)[_next_line]; // json 
object
+            RETURN_IF_ERROR(_set_column_value(objectValue, columns, 
slot_descs, &valid));
+        } else { // handle case 2
+            RETURN_IF_ERROR(_set_column_value(*_json_doc, columns, slot_descs, 
&valid));
+        }
+        _next_line++;
+        if (!valid) {
+            if (*_scanner_eof) {
+                // When _scanner_eof is true and valid is false, it means that 
we have encountered
+                // unqualified data and decided to stop the scan.
+                *is_empty_row = true;
+                return Status::OK();
+            }
+            continue;
+        }
+        *is_empty_row = false;
+        break; // get a valid row, then break
+    } while (_next_line <= _total_lines);
+    return Status::OK();
+}
+
+// for simple format json
+// set valid to true and return OK if succeed.
+// set valid to false and return OK if we met an invalid row.
+// return other status if encounter other problmes.
+Status VJsonReader::_set_column_value(rapidjson::Value& objectValue, 
std::vector<MutableColumnPtr>& columns,
+                                    const std::vector<SlotDescriptor*>& 
slot_descs, bool* valid) {
+    if (!objectValue.IsObject()) {
+        // Here we expect the incoming `objectValue` to be a Json Object, such 
as {"key" : "value"},
+        // not other type of Json format.
+        std::string err_msg("Expect json object value");
+        RETURN_IF_ERROR(_append_error_msg(objectValue, err_msg, valid));
+        return Status::OK();
+    }
+
+    int nullcount = 0;
+    int ctx_idx = 0;
+    for (auto slot_desc : slot_descs) {
+        int dest_index = ctx_idx++;
+        auto* column_ptr = columns[dest_index].get();
+        rapidjson::Value::ConstMemberIterator it = objectValue.MemberEnd();
+
+        if (_fuzzy_parse) {
+            auto idx_it = _name_map.find(slot_desc->col_name());
+            if (idx_it != _name_map.end() && idx_it->second < 
objectValue.MemberCount()) {
+                it = objectValue.MemberBegin() + idx_it->second;
+            }
+        } else {
+            it = objectValue.FindMember(
+                    rapidjson::Value(slot_desc->col_name().c_str(), 
slot_desc->col_name().size()));
+        }
+
+        if (it != objectValue.MemberEnd()) {
+            const rapidjson::Value& value = it->value;
+            RETURN_IF_ERROR(_write_data_to_column(&value, slot_desc, 
column_ptr, valid));
+            if (!(*valid)) {
+                return Status::OK();
+            }
+        } else { // not found
+            if (slot_desc->is_nullable()) {
+                auto* nullable_column = 
reinterpret_cast<vectorized::ColumnNullable*>(column_ptr);
+                nullable_column->insert_data(nullptr, 0);
+                nullcount++;
+            } else {
+                fmt::memory_buffer error_msg;
+                fmt::format_to(error_msg, "The column `{}` is not nullable, 
but it's not found in jsondata.", slot_desc->col_name());
+                std::string err_msg = fmt::to_string(error_msg);
+                RETURN_IF_ERROR(_append_error_msg(objectValue, err_msg, 
valid));
+                break;
+            }
+        }
+    }
+
+    if (nullcount == slot_descs.size()) {
+        std::string err_msg("All fields is null, this is a invalid row.");
+        RETURN_IF_ERROR(_append_error_msg(objectValue, err_msg, valid));
+        return Status::OK();
+    }
+    *valid = true;
+    return Status::OK();
+}
+
+Status VJsonReader::_write_data_to_column(rapidjson::Value::ConstValueIterator 
value, SlotDescriptor* slot_desc,
+                                        vectorized::IColumn* column_ptr, bool* 
valid) {
+    const char* str_value = nullptr;
+    uint8_t tmp_buf[128] = {0};

Review Comment:
   Is 128 too big here?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to