OmniSciDB  a5dc49c757
 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 689 of file ParserNode.cpp.

692  {
693  auto arg_expr = arg_->analyze(catalog, query, allow_tlist_ref);
694  auto like_expr = like_string_->analyze(catalog, query, allow_tlist_ref);
695  auto escape_expr = escape_string_ == nullptr
696  ? nullptr
697  : escape_string_->analyze(catalog, query, allow_tlist_ref);
698  return LikeExpr::get(arg_expr, like_expr, escape_expr, is_ilike_, is_not_);
699 }
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:701
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 643 of file ParserNode.cpp.

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

Definition at line 670 of file ParserNode.cpp.

670  {
671  char prev_char = '\0';
672  // easier to create new string of allowable chars
673  // rather than erase chars from
674  // existing string
675  std::string new_str;
676  for (char& cur_char : like_str) {
677  if (cur_char == '%' || cur_char == escape_char) {
678  if (prev_char != escape_char) {
679  prev_char = cur_char;
680  continue;
681  }
682  }
683  new_str.push_back(cur_char);
684  prev_char = cur_char;
685  }
686  like_str = new_str;
687 }
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 701 of file ParserNode.cpp.

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

Referenced by RelAlgTranslator::translateLike().

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

+ 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 649 of file ParserNode.cpp.

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

Implements Parser::Expr.

Definition at line 2254 of file ParserNode.cpp.

2254  {
2255  std::string str = arg_->to_string();
2256  if (is_not_) {
2257  str += " NOT LIKE ";
2258  } else {
2259  str += " LIKE ";
2260  }
2261  str += like_string_->to_string();
2262  if (escape_string_ != nullptr) {
2263  str += " ESCAPE " + escape_string_->to_string();
2264  }
2265  return str;
2266 }
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: