OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Parser::LikeExpr Class Reference

#include <ParserNode.h>

+ Inheritance diagram for Parser::LikeExpr:
+ Collaboration diagram for Parser::LikeExpr:

Public Member Functions

 LikeExpr (bool n, bool i, Expr *a, Expr *l, Expr *e)
 
bool get_is_not () const
 
const Exprget_arg () const
 
const Exprget_like_string () const
 
const Exprget_escape_string () const
 
std::shared_ptr< Analyzer::Expranalyze (const Catalog_Namespace::Catalog &catalog, Analyzer::Query &query, TlistRefType allow_tlist_ref=TLIST_NONE) const override
 
std::string to_string () const override
 
- Public Member Functions inherited from Parser::Node
virtual ~Node ()
 

Static Public Member Functions

static std::shared_ptr
< Analyzer::Expr
get (std::shared_ptr< Analyzer::Expr > arg_expr, std::shared_ptr< Analyzer::Expr > like_expr, std::shared_ptr< Analyzer::Expr > escape_expr, const bool is_ilike, const bool is_not)
 

Static Private Member Functions

static void check_like_expr (const std::string &like_str, char escape_char)
 
static bool test_is_simple_expr (const std::string &like_str, char escape_char)
 
static void erase_cntl_chars (std::string &like_str, char escape_char)
 

Private Attributes

bool is_not_
 
bool is_ilike_
 
std::unique_ptr< Exprarg_
 
std::unique_ptr< Exprlike_string_
 
std::unique_ptr< Exprescape_string_
 

Additional Inherited Members

- Public Types inherited from Parser::Expr
enum  TlistRefType { TLIST_NONE, TLIST_REF, TLIST_COPY }
 

Detailed Description

Definition at line 492 of file ParserNode.h.

Constructor & Destructor Documentation

Parser::LikeExpr::LikeExpr ( bool  n,
bool  i,
Expr a,
Expr l,
Expr e 
)
inline

Definition at line 494 of file ParserNode.h.

495  : is_not_(n), is_ilike_(i), arg_(a), like_string_(l), escape_string_(e) {}
std::unique_ptr< Expr > arg_
Definition: ParserNode.h:514
std::unique_ptr< Expr > escape_string_
Definition: ParserNode.h:516
constexpr double a
Definition: Utm.h:32
std::unique_ptr< Expr > like_string_
Definition: ParserNode.h:515
constexpr double n
Definition: Utm.h:38

Member Function Documentation

std::shared_ptr< Analyzer::Expr > Parser::LikeExpr::analyze ( const Catalog_Namespace::Catalog catalog,
Analyzer::Query query,
TlistRefType  allow_tlist_ref = TLIST_NONE 
) const
overridevirtual

Implements Parser::Expr.

Definition at line 688 of file ParserNode.cpp.

691  {
692  auto arg_expr = arg_->analyze(catalog, query, allow_tlist_ref);
693  auto like_expr = like_string_->analyze(catalog, query, allow_tlist_ref);
694  auto escape_expr = escape_string_ == nullptr
695  ? nullptr
696  : escape_string_->analyze(catalog, query, allow_tlist_ref);
697  return LikeExpr::get(arg_expr, like_expr, escape_expr, is_ilike_, is_not_);
698 }
std::unique_ptr< Expr > arg_
Definition: ParserNode.h:514
std::unique_ptr< Expr > escape_string_
Definition: ParserNode.h:516
static std::shared_ptr< Analyzer::Expr > get(std::shared_ptr< Analyzer::Expr > arg_expr, std::shared_ptr< Analyzer::Expr > like_expr, std::shared_ptr< Analyzer::Expr > escape_expr, const bool is_ilike, const bool is_not)
Definition: ParserNode.cpp:700
std::unique_ptr< Expr > like_string_
Definition: ParserNode.h:515
void Parser::LikeExpr::check_like_expr ( const std::string &  like_str,
char  escape_char 
)
staticprivate

Definition at line 642 of file ParserNode.cpp.

642  {
643  if (like_str.back() == escape_char) {
644  throw std::runtime_error("LIKE pattern must not end with escape character.");
645  }
646 }
void Parser::LikeExpr::erase_cntl_chars ( std::string &  like_str,
char  escape_char 
)
staticprivate

Definition at line 669 of file ParserNode.cpp.

669  {
670  char prev_char = '\0';
671  // easier to create new string of allowable chars
672  // rather than erase chars from
673  // existing string
674  std::string new_str;
675  for (char& cur_char : like_str) {
676  if (cur_char == '%' || cur_char == escape_char) {
677  if (prev_char != escape_char) {
678  prev_char = cur_char;
679  continue;
680  }
681  }
682  new_str.push_back(cur_char);
683  prev_char = cur_char;
684  }
685  like_str = new_str;
686 }
std::shared_ptr< Analyzer::Expr > Parser::LikeExpr::get ( std::shared_ptr< Analyzer::Expr arg_expr,
std::shared_ptr< Analyzer::Expr like_expr,
std::shared_ptr< Analyzer::Expr escape_expr,
const bool  is_ilike,
const bool  is_not 
)
static

Definition at line 700 of file ParserNode.cpp.

References Analyzer::Constant::get_constval(), kBOOLEAN, kNOT, run_benchmark_import::result, Datum::stringval, and shared::transform().

Referenced by RelAlgTranslator::translateLike().

704  {
705  if (!arg_expr->get_type_info().is_string()) {
706  throw std::runtime_error("expression before LIKE must be of a string type.");
707  }
708  if (!like_expr->get_type_info().is_string()) {
709  throw std::runtime_error("expression after LIKE must be of a string type.");
710  }
711  char escape_char = '\\';
712  if (escape_expr != nullptr) {
713  if (!escape_expr->get_type_info().is_string()) {
714  throw std::runtime_error("expression after ESCAPE must be of a string type.");
715  }
716  if (!escape_expr->get_type_info().is_string()) {
717  throw std::runtime_error("expression after ESCAPE must be of a string type.");
718  }
719  auto c = std::dynamic_pointer_cast<Analyzer::Constant>(escape_expr);
720  if (c != nullptr && c->get_constval().stringval->length() > 1) {
721  throw std::runtime_error("String after ESCAPE must have a single character.");
722  }
723  escape_char = (*c->get_constval().stringval)[0];
724  }
725  auto c = std::dynamic_pointer_cast<Analyzer::Constant>(like_expr);
726  bool is_simple = false;
727  if (c != nullptr) {
728  std::string& pattern = *c->get_constval().stringval;
729  if (is_ilike) {
730  std::transform(pattern.begin(), pattern.end(), pattern.begin(), ::tolower);
731  }
732  check_like_expr(pattern, escape_char);
733  is_simple = test_is_simple_expr(pattern, escape_char);
734  if (is_simple) {
735  erase_cntl_chars(pattern, escape_char);
736  }
737  }
738  std::shared_ptr<Analyzer::Expr> result = makeExpr<Analyzer::LikeExpr>(
739  arg_expr->decompress(), like_expr, escape_expr, is_ilike, is_simple);
740  if (is_not) {
741  result = makeExpr<Analyzer::UOper>(kBOOLEAN, kNOT, result);
742  }
743  return result;
744 }
OUTPUT transform(INPUT const &input, FUNC const &func)
Definition: misc.h:320
static void erase_cntl_chars(std::string &like_str, char escape_char)
Definition: ParserNode.cpp:669
std::string * stringval
Definition: Datum.h:79
Datum get_constval() const
Definition: Analyzer.h:348
static bool test_is_simple_expr(const std::string &like_str, char escape_char)
Definition: ParserNode.cpp:648
Definition: sqldefs.h:38
static void check_like_expr(const std::string &like_str, char escape_char)
Definition: ParserNode.cpp:642

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

const Expr* Parser::LikeExpr::get_arg ( ) const
inline

Definition at line 497 of file ParserNode.h.

References arg_.

497 { return arg_.get(); }
std::unique_ptr< Expr > arg_
Definition: ParserNode.h:514
const Expr* Parser::LikeExpr::get_escape_string ( ) const
inline

Definition at line 499 of file ParserNode.h.

References escape_string_.

499 { return escape_string_.get(); }
std::unique_ptr< Expr > escape_string_
Definition: ParserNode.h:516
bool Parser::LikeExpr::get_is_not ( ) const
inline

Definition at line 496 of file ParserNode.h.

References is_not_.

496 { return is_not_; }
const Expr* Parser::LikeExpr::get_like_string ( ) const
inline

Definition at line 498 of file ParserNode.h.

References like_string_.

498 { return like_string_.get(); }
std::unique_ptr< Expr > like_string_
Definition: ParserNode.h:515
bool Parser::LikeExpr::test_is_simple_expr ( const std::string &  like_str,
char  escape_char 
)
staticprivate

Definition at line 648 of file ParserNode.cpp.

648  {
649  // if not bounded by '%' then not a simple string
650  if (like_str.size() < 2 || like_str[0] != '%' || like_str[like_str.size() - 1] != '%') {
651  return false;
652  }
653  // if the last '%' is escaped then not a simple string
654  if (like_str[like_str.size() - 2] == escape_char &&
655  like_str[like_str.size() - 3] != escape_char) {
656  return false;
657  }
658  for (size_t i = 1; i < like_str.size() - 1; i++) {
659  if (like_str[i] == '%' || like_str[i] == '_' || like_str[i] == '[' ||
660  like_str[i] == ']') {
661  if (like_str[i - 1] != escape_char) {
662  return false;
663  }
664  }
665  }
666  return true;
667 }
std::string Parser::LikeExpr::to_string ( ) const
overridevirtual

Implements Parser::Expr.

Definition at line 2244 of file ParserNode.cpp.

2244  {
2245  std::string str = arg_->to_string();
2246  if (is_not_) {
2247  str += " NOT LIKE ";
2248  } else {
2249  str += " LIKE ";
2250  }
2251  str += like_string_->to_string();
2252  if (escape_string_ != nullptr) {
2253  str += " ESCAPE " + escape_string_->to_string();
2254  }
2255  return str;
2256 }
std::unique_ptr< Expr > arg_
Definition: ParserNode.h:514
std::unique_ptr< Expr > escape_string_
Definition: ParserNode.h:516
std::unique_ptr< Expr > like_string_
Definition: ParserNode.h:515

Member Data Documentation

std::unique_ptr<Expr> Parser::LikeExpr::arg_
private

Definition at line 514 of file ParserNode.h.

Referenced by get_arg().

std::unique_ptr<Expr> Parser::LikeExpr::escape_string_
private

Definition at line 516 of file ParserNode.h.

Referenced by get_escape_string().

bool Parser::LikeExpr::is_ilike_
private

Definition at line 513 of file ParserNode.h.

bool Parser::LikeExpr::is_not_
private

Definition at line 512 of file ParserNode.h.

Referenced by get_is_not().

std::unique_ptr<Expr> Parser::LikeExpr::like_string_
private

Definition at line 515 of file ParserNode.h.

Referenced by get_like_string().


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