Files
doris/be/src/vec/exprs/vexpr.cpp

452 lines
16 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.
#include "vec/exprs/vexpr.h"
#include <gen_cpp/Exprs_types.h>
#include <thrift/protocol/TDebugProtocol.h>
#include <algorithm>
#include <boost/iterator/iterator_facade.hpp>
#include <memory>
#include <stack>
#include "common/config.h"
#include "common/exception.h"
#include "common/object_pool.h"
#include "vec/columns/column_vector.h"
#include "vec/columns/columns_number.h"
#include "vec/data_types/data_type_factory.hpp"
#include "vec/data_types/data_type_number.h"
#include "vec/exprs/varray_literal.h"
#include "vec/exprs/vcase_expr.h"
#include "vec/exprs/vcast_expr.h"
#include "vec/exprs/vcolumn_ref.h"
#include "vec/exprs/vcompound_pred.h"
#include "vec/exprs/vectorized_fn_call.h"
#include "vec/exprs/vexpr_context.h"
#include "vec/exprs/vin_predicate.h"
#include "vec/exprs/vinfo_func.h"
#include "vec/exprs/vlambda_function_call_expr.h"
#include "vec/exprs/vlambda_function_expr.h"
#include "vec/exprs/vliteral.h"
#include "vec/exprs/vmap_literal.h"
#include "vec/exprs/vschema_change_expr.h"
#include "vec/exprs/vslot_ref.h"
#include "vec/exprs/vstruct_literal.h"
#include "vec/exprs/vtuple_is_null_predicate.h"
namespace doris {
class RowDescriptor;
class RuntimeState;
} // namespace doris
namespace doris::vectorized {
using doris::Status;
using doris::RuntimeState;
using doris::RowDescriptor;
using doris::TypeDescriptor;
VExpr::VExpr(const doris::TExprNode& node)
: _node_type(node.node_type),
_opcode(node.__isset.opcode ? node.opcode : TExprOpcode::INVALID_OPCODE),
_type(TypeDescriptor::from_thrift(node.type)),
_fn_context_index(-1),
_prepared(false) {
if (node.__isset.fn) {
_fn = node.fn;
}
bool is_nullable = true;
if (node.__isset.is_nullable) {
is_nullable = node.is_nullable;
}
// If we define null literal ,should make nullable data type to get correct field instead of undefined ptr
if (node.node_type == TExprNodeType::NULL_LITERAL) {
CHECK(is_nullable);
}
_data_type = DataTypeFactory::instance().create_data_type(_type, is_nullable);
}
VExpr::VExpr(const VExpr& vexpr) = default;
VExpr::VExpr(const TypeDescriptor& type, bool is_slotref, bool is_nullable)
: _opcode(TExprOpcode::INVALID_OPCODE),
_type(type),
_fn_context_index(-1),
_prepared(false) {
if (is_slotref) {
_node_type = TExprNodeType::SLOT_REF;
}
_data_type = DataTypeFactory::instance().create_data_type(_type, is_nullable);
}
Status VExpr::prepare(RuntimeState* state, const RowDescriptor& row_desc, VExprContext* context) {
++context->_depth_num;
if (context->_depth_num > config::max_depth_of_expr_tree) {
return Status::InternalError(
"The depth of the expression tree is too big, make it less than {}",
config::max_depth_of_expr_tree);
}
for (int i = 0; i < _children.size(); ++i) {
RETURN_IF_ERROR(_children[i]->prepare(state, row_desc, context));
}
--context->_depth_num;
return Status::OK();
}
Status VExpr::open(RuntimeState* state, VExprContext* context,
FunctionContext::FunctionStateScope scope) {
for (int i = 0; i < _children.size(); ++i) {
RETURN_IF_ERROR(_children[i]->open(state, context, scope));
}
return Status::OK();
}
void VExpr::close(doris::RuntimeState* state, VExprContext* context,
FunctionContext::FunctionStateScope scope) {
for (int i = 0; i < _children.size(); ++i) {
_children[i]->close(state, context, scope);
}
}
Status VExpr::create_expr(ObjectPool* pool, const doris::TExprNode& texpr_node, VExpr** expr) {
try {
switch (texpr_node.node_type) {
case TExprNodeType::BOOL_LITERAL:
case TExprNodeType::INT_LITERAL:
case TExprNodeType::LARGE_INT_LITERAL:
case TExprNodeType::FLOAT_LITERAL:
case TExprNodeType::DECIMAL_LITERAL:
case TExprNodeType::DATE_LITERAL:
case TExprNodeType::STRING_LITERAL:
case TExprNodeType::JSON_LITERAL:
case TExprNodeType::NULL_LITERAL: {
*expr = pool->add(VLiteral::create_unique(texpr_node).release());
break;
}
case TExprNodeType::ARRAY_LITERAL: {
*expr = pool->add(VArrayLiteral::create_unique(texpr_node).release());
break;
}
case TExprNodeType::MAP_LITERAL: {
*expr = pool->add(VMapLiteral::create_unique(texpr_node).release());
break;
}
case TExprNodeType::STRUCT_LITERAL: {
*expr = pool->add(VStructLiteral::create_unique(texpr_node).release());
break;
}
case doris::TExprNodeType::SLOT_REF: {
*expr = pool->add(VSlotRef::create_unique(texpr_node).release());
break;
}
case doris::TExprNodeType::COLUMN_REF: {
*expr = pool->add(VColumnRef::create_unique(texpr_node).release());
break;
}
case doris::TExprNodeType::COMPOUND_PRED: {
*expr = pool->add(VcompoundPred::create_unique(texpr_node).release());
break;
}
case doris::TExprNodeType::LAMBDA_FUNCTION_EXPR: {
*expr = pool->add(VLambdaFunctionExpr::create_unique(texpr_node).release());
break;
}
case doris::TExprNodeType::LAMBDA_FUNCTION_CALL_EXPR: {
*expr = pool->add(VLambdaFunctionCallExpr::create_unique(texpr_node).release());
break;
}
case doris::TExprNodeType::ARITHMETIC_EXPR:
case doris::TExprNodeType::BINARY_PRED:
case doris::TExprNodeType::FUNCTION_CALL:
case doris::TExprNodeType::COMPUTE_FUNCTION_CALL:
case doris::TExprNodeType::MATCH_PRED: {
*expr = pool->add(VectorizedFnCall::create_unique(texpr_node).release());
break;
}
case doris::TExprNodeType::CAST_EXPR: {
*expr = pool->add(VCastExpr::create_unique(texpr_node).release());
break;
}
case doris::TExprNodeType::IN_PRED: {
*expr = pool->add(VInPredicate::create_unique(texpr_node).release());
break;
}
case doris::TExprNodeType::CASE_EXPR: {
if (!texpr_node.__isset.case_expr) {
return Status::InternalError("Case expression not set in thrift node");
}
*expr = pool->add(VCaseExpr::create_unique(texpr_node).release());
break;
}
case TExprNodeType::INFO_FUNC: {
*expr = pool->add(VInfoFunc::create_unique(texpr_node).release());
break;
}
case TExprNodeType::TUPLE_IS_NULL_PRED: {
*expr = pool->add(VTupleIsNullPredicate::create_unique(texpr_node).release());
break;
}
case TExprNodeType::SCHEMA_CHANGE_EXPR: {
*expr = pool->add(VSchemaChangeExpr::create_unique(texpr_node).release());
break;
}
default:
return Status::InternalError("Unknown expr node type: {}", texpr_node.node_type);
}
} catch (const doris::Exception& e) {
return Status::Error(e.code(), e.to_string());
}
if (!(*expr)->data_type()) {
return Status::InvalidArgument("Unknown expr type: {}", texpr_node.node_type);
}
return Status::OK();
}
Status VExpr::create_tree_from_thrift(doris::ObjectPool* pool,
const std::vector<doris::TExprNode>& nodes, int* node_idx,
VExpr** root_expr, VExprContext** ctx) {
// propagate error case
if (*node_idx >= nodes.size()) {
return Status::InternalError("Failed to reconstruct expression tree from thrift.");
}
// create root expr
int root_children = nodes[*node_idx].num_children;
VExpr* root = nullptr;
RETURN_IF_ERROR(create_expr(pool, nodes[*node_idx], &root));
DCHECK(root != nullptr);
DCHECK(root_expr != nullptr);
DCHECK(ctx != nullptr);
*root_expr = root;
*ctx = pool->add(VExprContext::create_unique(root).release());
// short path for leaf node
if (root_children <= 0) {
return Status::OK();
}
// non-recursive traversal
std::stack<std::pair<VExpr*, int>> s;
s.push({root, root_children});
while (!s.empty()) {
auto& parent = s.top();
if (parent.second > 1) {
parent.second -= 1;
} else {
s.pop();
}
if (++*node_idx >= nodes.size()) {
return Status::InternalError("Failed to reconstruct expression tree from thrift.");
}
VExpr* expr = nullptr;
RETURN_IF_ERROR(create_expr(pool, nodes[*node_idx], &expr));
DCHECK(expr != nullptr);
parent.first->add_child(expr);
int num_children = nodes[*node_idx].num_children;
if (num_children > 0) {
s.push({expr, num_children});
}
}
return Status::OK();
}
Status VExpr::create_expr_tree(doris::ObjectPool* pool, const doris::TExpr& texpr,
VExprContext** ctx) {
if (texpr.nodes.size() == 0) {
*ctx = nullptr;
return Status::OK();
}
int node_idx = 0;
VExpr* e = nullptr;
Status status = create_tree_from_thrift(pool, texpr.nodes, &node_idx, &e, ctx);
if (status.ok() && node_idx + 1 != texpr.nodes.size()) {
status = Status::InternalError(
"Expression tree only partially reconstructed. Not all thrift nodes were "
"used.");
}
if (!status.ok()) {
LOG(ERROR) << "Could not construct expr tree.\n"
<< status << "\n"
<< apache::thrift::ThriftDebugString(texpr);
}
return status;
}
Status VExpr::create_expr_trees(ObjectPool* pool, const std::vector<doris::TExpr>& texprs,
std::vector<VExprContext*>* ctxs) {
ctxs->clear();
for (int i = 0; i < texprs.size(); ++i) {
VExprContext* ctx = nullptr;
RETURN_IF_ERROR(create_expr_tree(pool, texprs[i], &ctx));
ctxs->push_back(ctx);
}
return Status::OK();
}
Status VExpr::prepare(const std::vector<VExprContext*>& ctxs, RuntimeState* state,
const RowDescriptor& row_desc) {
for (auto ctx : ctxs) {
RETURN_IF_ERROR(ctx->prepare(state, row_desc));
}
return Status::OK();
}
void VExpr::close(const std::vector<VExprContext*>& ctxs, RuntimeState* state) {
for (auto ctx : ctxs) {
ctx->close(state);
}
}
Status VExpr::open(const std::vector<VExprContext*>& ctxs, RuntimeState* state) {
for (int i = 0; i < ctxs.size(); ++i) {
RETURN_IF_ERROR(ctxs[i]->open(state));
}
return Status::OK();
}
Status VExpr::clone_if_not_exists(const std::vector<VExprContext*>& ctxs, RuntimeState* state,
std::vector<VExprContext*>* new_ctxs) {
DCHECK(new_ctxs != nullptr);
if (!new_ctxs->empty()) {
// 'ctxs' was already cloned into '*new_ctxs', nothing to do.
DCHECK_EQ(new_ctxs->size(), ctxs.size());
for (int i = 0; i < new_ctxs->size(); ++i) {
DCHECK((*new_ctxs)[i]->_is_clone);
}
return Status::OK();
}
new_ctxs->resize(ctxs.size());
for (int i = 0; i < ctxs.size(); ++i) {
RETURN_IF_ERROR(ctxs[i]->clone(state, &(*new_ctxs)[i]));
}
return Status::OK();
}
std::string VExpr::debug_string() const {
// TODO: implement partial debug string for member vars
std::stringstream out;
out << " type=" << _type.debug_string();
if (!_children.empty()) {
out << " children=" << debug_string(_children);
}
return out.str();
}
std::string VExpr::debug_string(const std::vector<VExpr*>& exprs) {
std::stringstream out;
out << "[";
for (int i = 0; i < exprs.size(); ++i) {
out << (i == 0 ? "" : " ") << exprs[i]->debug_string();
}
out << "]";
return out.str();
}
std::string VExpr::debug_string(const std::vector<VExprContext*>& ctxs) {
std::vector<VExpr*> exprs;
for (int i = 0; i < ctxs.size(); ++i) {
exprs.push_back(ctxs[i]->root());
}
return debug_string(exprs);
}
bool VExpr::is_constant() const {
for (int i = 0; i < _children.size(); ++i) {
if (!_children[i]->is_constant()) {
return false;
}
}
return true;
}
Status VExpr::get_const_col(VExprContext* context,
std::shared_ptr<ColumnPtrWrapper>* column_wrapper) {
if (!is_constant()) {
return Status::OK();
}
if (_constant_col != nullptr) {
*column_wrapper = _constant_col;
return Status::OK();
}
int result = -1;
Block block;
// If block is empty, some functions will produce no result. So we insert a column with
// single value here.
block.insert({ColumnUInt8::create(1), std::make_shared<DataTypeUInt8>(), ""});
RETURN_IF_ERROR(execute(context, &block, &result));
DCHECK(result != -1);
const auto& column = block.get_by_position(result).column;
_constant_col = std::make_shared<ColumnPtrWrapper>(column);
*column_wrapper = _constant_col;
return Status::OK();
}
void VExpr::register_function_context(doris::RuntimeState* state, VExprContext* context) {
std::vector<TypeDescriptor> arg_types;
for (int i = 0; i < _children.size(); ++i) {
arg_types.push_back(_children[i]->type());
}
_fn_context_index = context->register_function_context(state, _type, arg_types);
}
Status VExpr::init_function_context(VExprContext* context,
FunctionContext::FunctionStateScope scope,
const FunctionBasePtr& function) const {
FunctionContext* fn_ctx = context->fn_context(_fn_context_index);
if (scope == FunctionContext::FRAGMENT_LOCAL) {
std::vector<std::shared_ptr<ColumnPtrWrapper>> constant_cols;
for (auto c : _children) {
std::shared_ptr<ColumnPtrWrapper> const_col;
RETURN_IF_ERROR(c->get_const_col(context, &const_col));
constant_cols.push_back(const_col);
}
fn_ctx->set_constant_cols(constant_cols);
}
if (scope == FunctionContext::FRAGMENT_LOCAL) {
RETURN_IF_ERROR(function->open(fn_ctx, FunctionContext::FRAGMENT_LOCAL));
}
RETURN_IF_ERROR(function->open(fn_ctx, FunctionContext::THREAD_LOCAL));
return Status::OK();
}
void VExpr::close_function_context(VExprContext* context, FunctionContext::FunctionStateScope scope,
const FunctionBasePtr& function) const {
if (_fn_context_index != -1) {
FunctionContext* fn_ctx = context->fn_context(_fn_context_index);
function->close(fn_ctx, FunctionContext::THREAD_LOCAL);
if (scope == FunctionContext::FRAGMENT_LOCAL) {
function->close(fn_ctx, FunctionContext::FRAGMENT_LOCAL);
}
}
}
} // namespace doris::vectorized