blob: 0820fa36a4999174b6884f0133208dcc31599b19 [file] [log] [blame]
/**
* 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.
**/
#ifndef QUICKSTEP_QUERY_OPTIMIZER_EXPRESSIONS_SIMPLE_CASE_HPP_
#define QUICKSTEP_QUERY_OPTIMIZER_EXPRESSIONS_SIMPLE_CASE_HPP_
#include <cstddef>
#include <memory>
#include <string>
#include <unordered_map>
#include <vector>
#include "expressions/scalar/Scalar.hpp"
#include "query_optimizer/OptimizerTree.hpp"
#include "query_optimizer/expressions/AttributeReference.hpp"
#include "query_optimizer/expressions/ExprId.hpp"
#include "query_optimizer/expressions/Expression.hpp"
#include "query_optimizer/expressions/ExpressionType.hpp"
#include "query_optimizer/expressions/Scalar.hpp"
#include "utility/Macros.hpp"
namespace quickstep {
class CatalogAttribute;
class Type;
namespace optimizer {
namespace expressions {
/** \addtogroup OptimizerExpressions
* @{
*/
class SimpleCase;
typedef std::shared_ptr<const SimpleCase> SimpleCasePtr;
/**
* @brief A simple CASE expression. It searches the first expression in
* <condition_operands_> with a value equal to <case_operand_>, and
* returns the value of the expression in <conditional_result_expressions_>
* at the same position; if none of <condition_operands_> meet the
* condition, returns the value of <else_result_expression_> when
* <else_result_expression_> is not NULL, otherwise returns NULL.
*/
class SimpleCase : public Scalar {
public:
ExpressionType getExpressionType() const override {
return ExpressionType::kSimpleCase;
}
std::string getName() const override {
return "SimpleCase";
}
const Type& getValueType() const override {
return value_type_;
}
/**
* @return The CASE operand.
*/
const ScalarPtr& case_operand() const {
return case_operand_;
}
/**
* @return The vector of condition operands.
*/
const std::vector<ScalarPtr>& condition_operands() const {
return condition_operands_;
}
/**
* @return The vector of conditional result expressions, one for each
* condition operand.
*/
const std::vector<ScalarPtr>& conditional_result_expressions() const {
return conditional_result_expressions_;
}
/**
* @return The ELSE result expression.
*/
const ScalarPtr& else_result_expression() const {
return else_result_expression_;
}
bool isConstant() const override;
std::vector<AttributeReferencePtr> getReferencedAttributes() const override;
ExpressionPtr copyWithNewChildren(
const std::vector<ExpressionPtr> &new_children) const override;
::quickstep::Scalar* concretize(
const std::unordered_map<ExprId, const CatalogAttribute*>& substitution_map) const override;
bool equals(const ScalarPtr &other) const override;
/**
* @brief Creates an immutable SimpleCase.
*
* @param case_operand The CASE operand.
* @param condition_operands A vector of expressions to be compared with
* the \p case_operand.
* @param conditional_result_expressions A vector of result expressions, one
* per expression of \p condition_operands.
* @param else_result_expression The optional ELSE expression.
* @param value_type The data type of this expression which should be the
* unified type of all result expressions.
* @return An immutable SimpleCase.
*/
static SimpleCasePtr Create(const ScalarPtr &case_operand,
const std::vector<ScalarPtr> &condition_operands,
const std::vector<ScalarPtr> &conditional_result_expressions,
const ScalarPtr &else_result_expression,
const Type &value_type) {
return SimpleCasePtr(new SimpleCase(case_operand,
condition_operands,
conditional_result_expressions,
else_result_expression,
value_type));
}
protected:
std::size_t computeHash() const override;
void getFieldStringItems(std::vector<std::string> *inline_field_names,
std::vector<std::string> *inline_field_values,
std::vector<std::string> *non_container_child_field_names,
std::vector<OptimizerTreeBaseNodePtr> *non_container_child_fields,
std::vector<std::string> *container_child_field_names,
std::vector<std::vector<OptimizerTreeBaseNodePtr>> *container_child_fields) const override;
private:
SimpleCase(const ScalarPtr &case_operand,
const std::vector<ScalarPtr> &condition_operands,
const std::vector<ScalarPtr> &conditional_result_expressions,
const ScalarPtr &else_result_expression,
const Type &value_type)
: case_operand_(case_operand),
condition_operands_(condition_operands),
conditional_result_expressions_(conditional_result_expressions),
else_result_expression_(else_result_expression),
value_type_(value_type) {
addChild(case_operand_);
for (const ScalarPtr &condition_operand : condition_operands_) {
addChild(condition_operand);
}
for (const ScalarPtr &conditional_result_expression : conditional_result_expressions_) {
addChild(conditional_result_expression);
}
if (else_result_expression_ != nullptr) {
addChild(else_result_expression);
}
}
ScalarPtr case_operand_;
std::vector<ScalarPtr> condition_operands_;
std::vector<ScalarPtr> conditional_result_expressions_;
// May be NULL.
ScalarPtr else_result_expression_;
const Type &value_type_;
DISALLOW_COPY_AND_ASSIGN(SimpleCase);
};
/** @} */
} // namespace expressions
} // namespace optimizer
} // namespace quickstep
#endif /* QUICKSTEP_QUERY_OPTIMIZER_EXPRESSIONS_SIMPLE_CASE_HPP_ */