Files
doris/be/src/vec/utils/util.hpp
yiguolei 8d7a9fd21b [refactor](exceptionsafe) add factory creator to some class (#18978)
make vexprecontext,vexpr,function,query context,runtimestate thread safe.


---------

Co-authored-by: yiguolei <yiguolei@gmail.com>
2023-04-24 10:32:11 +08:00

141 lines
5.3 KiB
C++

// 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.
#pragma once
#include <thrift/protocol/TJSONProtocol.h>
#include <boost/shared_ptr.hpp>
#include "runtime/descriptors.h"
#include "vec/columns/column_nullable.h"
#include "vec/core/block.h"
#include "vec/exprs/vexpr.h"
#include "vec/exprs/vexpr_context.h"
namespace doris::vectorized {
class VectorizedUtils {
public:
static Block create_empty_columnswithtypename(const RowDescriptor& row_desc) {
// Block block;
return create_columns_with_type_and_name(row_desc);
}
static ColumnsWithTypeAndName create_columns_with_type_and_name(
const RowDescriptor& row_desc, bool ignore_trivial_slot = true) {
ColumnsWithTypeAndName columns_with_type_and_name;
for (const auto& tuple_desc : row_desc.tuple_descriptors()) {
for (const auto& slot_desc : tuple_desc->slots()) {
if (ignore_trivial_slot && !slot_desc->need_materialize()) {
continue;
}
columns_with_type_and_name.emplace_back(nullptr, slot_desc->get_data_type_ptr(),
slot_desc->col_name());
}
}
return columns_with_type_and_name;
}
static ColumnsWithTypeAndName create_empty_block(const RowDescriptor& row_desc,
bool ignore_trivial_slot = true) {
ColumnsWithTypeAndName columns_with_type_and_name;
for (const auto& tuple_desc : row_desc.tuple_descriptors()) {
for (const auto& slot_desc : tuple_desc->slots()) {
if (ignore_trivial_slot && !slot_desc->need_materialize()) {
continue;
}
columns_with_type_and_name.emplace_back(
slot_desc->get_data_type_ptr()->create_column(),
slot_desc->get_data_type_ptr(), slot_desc->col_name());
}
}
return columns_with_type_and_name;
}
// is_single: whether src is null map of a ColumnConst
static void update_null_map(NullMap& dst, const NullMap& src, bool is_single = false) {
size_t size = dst.size();
auto* __restrict l = dst.data();
auto* __restrict r = src.data();
if (is_single && r[0]) {
for (size_t i = 0; i < size; ++i) {
l[i] = 1;
}
} else {
for (size_t i = 0; i < size; ++i) {
l[i] |= r[i];
}
}
}
static DataTypes get_data_types(const RowDescriptor& row_desc) {
DataTypes data_types;
for (const auto& tuple_desc : row_desc.tuple_descriptors()) {
for (const auto& slot_desc : tuple_desc->slots()) {
data_types.push_back(slot_desc->get_data_type_ptr());
}
}
return data_types;
}
static VExpr* dfs_peel_conjunct(RuntimeState* state, VExprContext* context, VExpr* expr,
int& leaf_index, std::function<bool(int)> checker) {
static constexpr auto is_leaf = [](VExpr* expr) { return !expr->is_and_expr(); };
if (is_leaf(expr)) {
if (checker(leaf_index++)) {
expr->close(state, context, context->get_function_state_scope());
return nullptr;
}
return expr;
} else {
VExpr* left_child =
dfs_peel_conjunct(state, context, expr->children()[0], leaf_index, checker);
VExpr* right_child =
dfs_peel_conjunct(state, context, expr->children()[1], leaf_index, checker);
if (left_child != nullptr && right_child != nullptr) {
expr->set_children({left_child, right_child});
return expr;
} else {
// here only close the and expr self, do not close the child
expr->set_children({});
expr->close(state, context, context->get_function_state_scope());
}
return left_child != nullptr ? left_child : right_child;
}
}
};
} // namespace doris::vectorized
namespace apache::thrift {
template <typename ThriftStruct>
ThriftStruct from_json_string(const std::string& json_val) {
using namespace apache::thrift::transport;
using namespace apache::thrift::protocol;
ThriftStruct ts;
std::shared_ptr<TTransport> trans =
std::make_shared<TMemoryBuffer>((uint8_t*)json_val.c_str(), (uint32_t)json_val.size());
TJSONProtocol protocol(trans);
ts.read(&protocol);
return ts;
}
} // namespace apache::thrift