OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
anonymous_namespace{RelAlgDag.cpp}::RexWindowFuncReplacementVisitor Class Reference
+ Inheritance diagram for anonymous_namespace{RelAlgDag.cpp}::RexWindowFuncReplacementVisitor:
+ Collaboration diagram for anonymous_namespace{RelAlgDag.cpp}::RexWindowFuncReplacementVisitor:

Public Member Functions

 RexWindowFuncReplacementVisitor (std::unordered_set< size_t > &collected_window_func_hash, std::vector< std::unique_ptr< const RexScalar >> &new_rex_input_for_window_func, std::unordered_map< size_t, size_t > &window_func_to_new_rex_input_idx_map, RelProject *new_project, std::unordered_map< size_t, std::unique_ptr< const RexInput >> &new_rex_input_from_child_node)
 
- Public Member Functions inherited from RexVisitorBase< std::unique_ptr< const RexScalar > >
virtual std::unique_ptr< const
RexScalar
visit (const RexScalar *rex_scalar) const
 

Protected Member Functions

RetType visitInput (const RexInput *rex_input) const final
 
RetType visitOperator (const RexOperator *rex_operator) const final
 
RetType visitCase (const RexCase *rex_case) const final
 
- Protected Member Functions inherited from RexDeepCopyVisitor
RetType visitInput (const RexInput *input) const override
 
RetType visitLiteral (const RexLiteral *literal) const override
 
RetType visitSubQuery (const RexSubQuery *subquery) const override
 
RetType visitRef (const RexRef *ref) const override
 
RetType visitOperator (const RexOperator *rex_operator) const override
 
RetType visitWindowFunctionOperator (const RexWindowFunctionOperator *rex_window_function_operator) const
 
RetType visitCase (const RexCase *rex_case) const override
 

Private Member Functions

std::optional< size_t > is_collected_window_function (size_t rex_hash) const
 
std::unique_ptr< const RexScalarget_new_rex_input (size_t rex_idx) const
 

Private Attributes

std::unordered_set< size_t > & collected_window_func_hash_
 
std::vector< std::unique_ptr
< const RexScalar > > & 
new_rex_input_for_window_func_
 
std::unordered_map< size_t,
size_t > & 
window_func_to_new_rex_input_idx_map_
 
RelProjectnew_project_
 
std::unordered_map< size_t,
std::unique_ptr< const
RexInput > > & 
new_rex_input_from_child_node_
 
RexDeepCopyVisitor copier_
 

Additional Inherited Members

- Public Types inherited from RexDeepCopyVisitor
using RowValues = std::vector< std::unique_ptr< const RexScalar >>
 
- Static Public Member Functions inherited from RexDeepCopyVisitor
static std::vector< RowValuescopy (std::vector< RowValues > const &rhs)
 
- Protected Types inherited from RexDeepCopyVisitor
using RetType = std::unique_ptr< const RexScalar >
 

Detailed Description

Definition at line 2277 of file RelAlgDag.cpp.

Constructor & Destructor Documentation

anonymous_namespace{RelAlgDag.cpp}::RexWindowFuncReplacementVisitor::RexWindowFuncReplacementVisitor ( std::unordered_set< size_t > &  collected_window_func_hash,
std::vector< std::unique_ptr< const RexScalar >> &  new_rex_input_for_window_func,
std::unordered_map< size_t, size_t > &  window_func_to_new_rex_input_idx_map,
RelProject new_project,
std::unordered_map< size_t, std::unique_ptr< const RexInput >> &  new_rex_input_from_child_node 
)
inline

Definition at line 2279 of file RelAlgDag.cpp.

References CHECK, CHECK_EQ, and CHECK_LT.

2286  : collected_window_func_hash_(collected_window_func_hash)
2287  , new_rex_input_for_window_func_(new_rex_input_for_window_func)
2288  , window_func_to_new_rex_input_idx_map_(window_func_to_new_rex_input_idx_map)
2289  , new_project_(new_project)
2290  , new_rex_input_from_child_node_(new_rex_input_from_child_node) {
2293  for (auto hash : collected_window_func_hash_) {
2294  auto rex_it = window_func_to_new_rex_input_idx_map_.find(hash);
2296  CHECK_LT(rex_it->second, new_rex_input_for_window_func_.size());
2297  }
2299  }
#define CHECK_EQ(x, y)
Definition: Logger.h:301
std::vector< std::unique_ptr< const RexScalar > > & new_rex_input_for_window_func_
Definition: RelAlgDag.cpp:2403
std::unordered_map< size_t, std::unique_ptr< const RexInput > > & new_rex_input_from_child_node_
Definition: RelAlgDag.cpp:2408
#define CHECK_LT(x, y)
Definition: Logger.h:303
#define CHECK(condition)
Definition: Logger.h:291
std::unordered_map< size_t, size_t > & window_func_to_new_rex_input_idx_map_
Definition: RelAlgDag.cpp:2405

Member Function Documentation

std::unique_ptr<const RexScalar> anonymous_namespace{RelAlgDag.cpp}::RexWindowFuncReplacementVisitor::get_new_rex_input ( size_t  rex_idx) const
inlineprivate

Definition at line 2392 of file RelAlgDag.cpp.

References CHECK, CHECK_GE, and CHECK_LT.

2392  {
2393  CHECK_GE(rex_idx, 0UL);
2394  CHECK_LT(rex_idx, new_rex_input_for_window_func_.size());
2395  auto& new_rex_input = new_rex_input_for_window_func_.at(rex_idx);
2396  CHECK(new_rex_input);
2397  auto copied_rex_input = copier_.visit(new_rex_input.get());
2398  return copied_rex_input;
2399  }
#define CHECK_GE(x, y)
Definition: Logger.h:306
std::vector< std::unique_ptr< const RexScalar > > & new_rex_input_for_window_func_
Definition: RelAlgDag.cpp:2403
virtual T visit(const RexScalar *rex_scalar) const
Definition: RexVisitor.h:27
#define CHECK_LT(x, y)
Definition: Logger.h:303
#define CHECK(condition)
Definition: Logger.h:291
std::optional<size_t> anonymous_namespace{RelAlgDag.cpp}::RexWindowFuncReplacementVisitor::is_collected_window_function ( size_t  rex_hash) const
inlineprivate

Definition at line 2384 of file RelAlgDag.cpp.

2384  {
2385  auto rex_it = window_func_to_new_rex_input_idx_map_.find(rex_hash);
2386  if (rex_it != window_func_to_new_rex_input_idx_map_.end()) {
2387  return rex_it->second;
2388  }
2389  return std::nullopt;
2390  }
std::unordered_map< size_t, size_t > & window_func_to_new_rex_input_idx_map_
Definition: RelAlgDag.cpp:2405
RetType anonymous_namespace{RelAlgDag.cpp}::RexWindowFuncReplacementVisitor::visitCase ( const RexCase rex_case) const
inlinefinalprotectedvirtual

Implements RexVisitorBase< std::unique_ptr< const RexScalar > >.

Definition at line 2353 of file RelAlgDag.cpp.

References RexCase::branchCount(), RexCase::getElse(), RexCase::getThen(), RexCase::getWhen(), Rex::toHash(), and RexCase::toHash().

2353  {
2354  auto new_rex_idx = is_collected_window_function(rex_case->toHash());
2355  if (new_rex_idx) {
2356  return get_new_rex_input(*new_rex_idx);
2357  }
2358 
2359  std::vector<std::pair<RetType, RetType>> new_pair_list;
2360  for (size_t i = 0; i < rex_case->branchCount(); ++i) {
2361  auto when_operand = rex_case->getWhen(i);
2362  auto new_rex_idx_for_when_operand =
2363  is_collected_window_function(when_operand->toHash());
2364 
2365  auto then_operand = rex_case->getThen(i);
2366  auto new_rex_idx_for_then_operand =
2367  is_collected_window_function(then_operand->toHash());
2368 
2369  new_pair_list.emplace_back(
2370  new_rex_idx_for_when_operand ? get_new_rex_input(*new_rex_idx_for_when_operand)
2371  : visit(when_operand),
2372  new_rex_idx_for_then_operand ? get_new_rex_input(*new_rex_idx_for_then_operand)
2373  : visit(then_operand));
2374  }
2375  auto new_rex_idx_for_else_operand =
2377  auto new_else = new_rex_idx_for_else_operand
2378  ? get_new_rex_input(*new_rex_idx_for_else_operand)
2379  : visit(rex_case->getElse());
2380  return std::make_unique<RexCase>(new_pair_list, new_else);
2381  }
std::optional< size_t > is_collected_window_function(size_t rex_hash) const
Definition: RelAlgDag.cpp:2384
const RexScalar * getThen(const size_t idx) const
Definition: RelAlgDag.h:440
const RexScalar * getElse() const
Definition: RelAlgDag.h:445
std::unique_ptr< const RexScalar > get_new_rex_input(size_t rex_idx) const
Definition: RelAlgDag.cpp:2392
const RexScalar * getWhen(const size_t idx) const
Definition: RelAlgDag.h:435
virtual std::unique_ptr< const RexScalar > visit(const RexScalar *rex_scalar) const
Definition: RexVisitor.h:27
virtual size_t toHash() const override
Definition: RelAlgDag.h:461
size_t branchCount() const
Definition: RelAlgDag.h:433
virtual size_t toHash() const =0

+ Here is the call graph for this function:

RetType anonymous_namespace{RelAlgDag.cpp}::RexWindowFuncReplacementVisitor::visitInput ( const RexInput rex_input) const
inlinefinalprotectedvirtual

Implements RexVisitorBase< std::unique_ptr< const RexScalar > >.

Definition at line 2302 of file RelAlgDag.cpp.

2302  {
2303  if (rex_input->getSourceNode() != new_project_) {
2304  const auto cur_index = rex_input->getIndex();
2305  auto cur_source_node = rex_input->getSourceNode();
2306  std::string field_name = "";
2307  if (auto cur_project_node = dynamic_cast<const RelProject*>(cur_source_node)) {
2308  field_name = cur_project_node->getFieldName(cur_index);
2309  }
2310  auto rex_input_hash = rex_input->toHash();
2311  auto rex_input_it = new_rex_input_from_child_node_.find(rex_input_hash);
2312  if (rex_input_it == new_rex_input_from_child_node_.end()) {
2313  auto new_rex_input =
2314  std::make_unique<RexInput>(new_project_, new_project_->size());
2315  new_project_->appendInput(field_name, rex_input->deepCopy());
2316  new_rex_input_from_child_node_.emplace(rex_input_hash, new_rex_input->deepCopy());
2317  return new_rex_input;
2318  } else {
2319  return rex_input_it->second->deepCopy();
2320  }
2321  } else {
2322  return rex_input->deepCopy();
2323  }
2324  }
size_t size() const override
Definition: RelAlgDag.h:1320
unsigned getIndex() const
Definition: RelAlgDag.h:174
std::unordered_map< size_t, std::unique_ptr< const RexInput > > & new_rex_input_from_child_node_
Definition: RelAlgDag.cpp:2408
std::unique_ptr< RexInput > deepCopy() const
Definition: RelAlgDag.h:1070
const RelAlgNode * getSourceNode() const
Definition: RelAlgDag.h:1056
virtual size_t toHash() const override
Definition: RelAlgDag.h:1074
RetType anonymous_namespace{RelAlgDag.cpp}::RexWindowFuncReplacementVisitor::visitOperator ( const RexOperator rex_operator) const
inlinefinalprotectedvirtual

Implements RexVisitorBase< std::unique_ptr< const RexScalar > >.

Definition at line 2326 of file RelAlgDag.cpp.

2326  {
2327  auto new_rex_idx = is_collected_window_function(rex_operator->toHash());
2328  if (new_rex_idx) {
2329  return get_new_rex_input(*new_rex_idx);
2330  }
2331 
2332  const auto rex_window_function_operator =
2333  dynamic_cast<const RexWindowFunctionOperator*>(rex_operator);
2334  if (rex_window_function_operator) {
2335  // Deep copy the embedded window function operator
2336  return visitWindowFunctionOperator(rex_window_function_operator);
2337  }
2338 
2339  const size_t operand_count = rex_operator->size();
2340  std::vector<RetType> new_opnds;
2341  for (size_t i = 0; i < operand_count; ++i) {
2342  const auto operand = rex_operator->getOperand(i);
2343  auto new_rex_idx_for_operand = is_collected_window_function(operand->toHash());
2344  if (new_rex_idx_for_operand) {
2345  new_opnds.push_back(get_new_rex_input(*new_rex_idx_for_operand));
2346  } else {
2347  new_opnds.emplace_back(visit(rex_operator->getOperand(i)));
2348  }
2349  }
2350  return rex_operator->getDisambiguated(new_opnds);
2351  }
std::optional< size_t > is_collected_window_function(size_t rex_hash) const
Definition: RelAlgDag.cpp:2384
std::unique_ptr< const RexScalar > get_new_rex_input(size_t rex_idx) const
Definition: RelAlgDag.cpp:2392
size_t size() const
Definition: RelAlgDag.h:364
const RexScalar * getOperand(const size_t idx) const
Definition: RelAlgDag.h:366
RetType visitWindowFunctionOperator(const RexWindowFunctionOperator *rex_window_function_operator) const
Definition: RexVisitor.h:169
virtual std::unique_ptr< const RexOperator > getDisambiguated(std::vector< std::unique_ptr< const RexScalar >> &operands) const
Definition: RelAlgDag.h:359
virtual std::unique_ptr< const RexScalar > visit(const RexScalar *rex_scalar) const
Definition: RexVisitor.h:27
virtual size_t toHash() const override
Definition: RelAlgDag.h:394

Member Data Documentation

std::unordered_set<size_t>& anonymous_namespace{RelAlgDag.cpp}::RexWindowFuncReplacementVisitor::collected_window_func_hash_
private

Definition at line 2401 of file RelAlgDag.cpp.

RexDeepCopyVisitor anonymous_namespace{RelAlgDag.cpp}::RexWindowFuncReplacementVisitor::copier_
private

Definition at line 2409 of file RelAlgDag.cpp.

RelProject* anonymous_namespace{RelAlgDag.cpp}::RexWindowFuncReplacementVisitor::new_project_
private

Definition at line 2406 of file RelAlgDag.cpp.

std::vector<std::unique_ptr<const RexScalar> >& anonymous_namespace{RelAlgDag.cpp}::RexWindowFuncReplacementVisitor::new_rex_input_for_window_func_
private

Definition at line 2403 of file RelAlgDag.cpp.

std::unordered_map<size_t, std::unique_ptr<const RexInput> >& anonymous_namespace{RelAlgDag.cpp}::RexWindowFuncReplacementVisitor::new_rex_input_from_child_node_
private

Definition at line 2408 of file RelAlgDag.cpp.

std::unordered_map<size_t, size_t>& anonymous_namespace{RelAlgDag.cpp}::RexWindowFuncReplacementVisitor::window_func_to_new_rex_input_idx_map_
private

Definition at line 2405 of file RelAlgDag.cpp.


The documentation for this class was generated from the following file: