/* Copyright (c) 2021 OceanBase and/or its affiliates. All rights reserved. miniob is licensed under Mulan PSL v2. You can use this software according to the terms and conditions of the Mulan PSL v2. You may obtain a copy of Mulan PSL v2 at: http://license.coscl.org.cn/MulanPSL2 THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. See the Mulan PSL v2 for more details. */ // // Created by WangYunlai on 2022/12/27. // #include #include "sql/operator/explain_physical_operator.h" #include "common/log/log.h" using namespace std; RC ExplainPhysicalOperator::open(Trx *) { ASSERT(children_.size() == 1, "explain must has 1 child"); return RC::SUCCESS; } RC ExplainPhysicalOperator::close() { for (std::unique_ptr &child_oper : children_) { child_oper->close(); } return RC::SUCCESS; } RC ExplainPhysicalOperator::next() { if (!physical_plan_.empty()) { return RC::RECORD_EOF; } stringstream ss; ss << "OPERATOR(NAME)\n"; int level = 0; std::vector ends; ends.push_back(true); const auto children_size = static_cast(children_.size()); for (int i = 0; i < children_size - 1; i++) { to_string(ss, children_[i].get(), level, false /*last_child*/, ends); } if (children_size > 0) { to_string(ss, children_[children_size - 1].get(), level, true /*last_child*/, ends); } physical_plan_ = ss.str(); vector cells; TupleCell cell; cell.set_string(physical_plan_.c_str()); cells.emplace_back(cell); tuple_.set_cells(cells); return RC::SUCCESS; } Tuple *ExplainPhysicalOperator::current_tuple() { return &tuple_; } /** * 递归打印某个算子 * @param os 结果输出到这里 * @param oper 将要打印的算子 * @param level 当前算子在第几层 * @param last_child 当前算子是否是当前兄弟节点中最后一个节点 * @param ends 表示当前某个层级上的算子,是否已经没有其它的节点,以判断使用什么打印符号 */ void ExplainPhysicalOperator::to_string( std::ostream &os, PhysicalOperator *oper, int level, bool last_child, std::vector &ends) { for (int i = 0; i < level - 1; i++) { if (ends[i]) { os << " "; } else { os << "│ "; } } if (level > 0) { if (last_child) { os << "└─"; ends[level - 1] = true; } else { os << "├─"; } } os << oper->name(); std::string param = oper->param(); if (!param.empty()) { os << "(" << param << ")"; } os << '\n'; if (static_cast(ends.size()) < level + 2) { ends.resize(level + 2); } ends[level + 1] = false; vector> &children = oper->children(); const auto size = static_cast(children.size()); for (auto i = 0; i < size - 1; i++) { to_string(os, children[i].get(), level + 1, false /*last_child*/, ends); } if (size > 0) { to_string(os, children[size - 1].get(), level + 1, true /*last_child*/, ends); } }