OmniSciDB  a5dc49c757
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
WindowProjectNodeContext Class Reference

#include <WindowContext.h>

Public Member Functions

void addWindowFunctionContext (std::unique_ptr< WindowFunctionContext > window_function_context, const size_t target_index)
 
const WindowFunctionContextactivateWindowFunctionContext (Executor *executor, const size_t target_index) const
 

Static Public Member Functions

static void resetWindowFunctionContext (Executor *executor)
 
static WindowFunctionContextgetActiveWindowFunctionContext (Executor *executor)
 
static WindowProjectNodeContextcreate (Executor *executor)
 
static const
WindowProjectNodeContext
get (Executor *executor)
 
static void reset (Executor *executor)
 

Private Attributes

std::unordered_map< size_t,
std::unique_ptr
< WindowFunctionContext > > 
window_contexts_
 

Detailed Description

Definition at line 349 of file WindowContext.h.

Member Function Documentation

const WindowFunctionContext * WindowProjectNodeContext::activateWindowFunctionContext ( Executor executor,
const size_t  target_index 
) const

Definition at line 1838 of file WindowContext.cpp.

References CHECK.

Referenced by Executor::codegenWindowFunction().

1840  {
1841  const auto it = window_contexts_.find(target_index);
1842  CHECK(it != window_contexts_.end());
1843  executor->active_window_function_ = it->second.get();
1844  return executor->active_window_function_;
1845 }
std::unordered_map< size_t, std::unique_ptr< WindowFunctionContext > > window_contexts_
#define CHECK(condition)
Definition: Logger.h:291

+ Here is the caller graph for this function:

void WindowProjectNodeContext::addWindowFunctionContext ( std::unique_ptr< WindowFunctionContext window_function_context,
const size_t  target_index 
)

Definition at line 1830 of file WindowContext.cpp.

References CHECK.

1832  {
1833  const auto it_ok = window_contexts_.emplace(
1834  std::make_pair(target_index, std::move(window_function_context)));
1835  CHECK(it_ok.second);
1836 }
std::unordered_map< size_t, std::unique_ptr< WindowFunctionContext > > window_contexts_
#define CHECK(condition)
Definition: Logger.h:291
WindowProjectNodeContext * WindowProjectNodeContext::create ( Executor executor)
static

Definition at line 1856 of file WindowContext.cpp.

References get().

Referenced by RelAlgExecutor::computeWindow().

1856  {
1857  executor->window_project_node_context_owned_ =
1858  std::make_unique<WindowProjectNodeContext>();
1859  return executor->window_project_node_context_owned_.get();
1860 }

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

const WindowProjectNodeContext * WindowProjectNodeContext::get ( Executor executor)
static

Definition at line 1862 of file WindowContext.cpp.

References get().

Referenced by Executor::codegenWindowFunction(), Executor::codegenWindowFunctionAggregate(), create(), and get().

1862  {
1863  return executor->window_project_node_context_owned_.get();
1864 }

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

WindowFunctionContext * WindowProjectNodeContext::getActiveWindowFunctionContext ( Executor executor)
static
void WindowProjectNodeContext::reset ( Executor executor)
static

Definition at line 1866 of file WindowContext.cpp.

Referenced by RelAlgExecutor::executeWorkUnit().

1866  {
1867  executor->window_project_node_context_owned_ = nullptr;
1868  executor->active_window_function_ = nullptr;
1869 }

+ Here is the caller graph for this function:

void WindowProjectNodeContext::resetWindowFunctionContext ( Executor executor)
static

Definition at line 1847 of file WindowContext.cpp.

Referenced by TargetExprCodegen::codegen().

1847  {
1848  executor->active_window_function_ = nullptr;
1849 }

+ Here is the caller graph for this function:

Member Data Documentation

std::unordered_map<size_t, std::unique_ptr<WindowFunctionContext> > WindowProjectNodeContext::window_contexts_
private

Definition at line 382 of file WindowContext.h.


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