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

#include <ParserNode.h>

+ Inheritance diagram for Parser::RegexpExpr:
+ Collaboration diagram for Parser::RegexpExpr:

Public Member Functions

 RegexpExpr (bool n, Expr *a, Expr *p, Expr *e)
 
bool get_is_not () const
 
const Exprget_arg () const
 
const Exprget_pattern_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 > pattern_expr, std::shared_ptr< Analyzer::Expr > escape_expr, const bool is_not)
 

Static Private Member Functions

static void check_pattern_expr (const std::string &pattern_str, char escape_char)
 
static bool translate_to_like_pattern (std::string &pattern_str, char escape_char)
 

Private Attributes

bool is_not_
 
std::unique_ptr< Exprarg_
 
std::unique_ptr< Exprpattern_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 527 of file ParserNode.h.

Constructor & Destructor Documentation

Parser::RegexpExpr::RegexpExpr ( bool  n,
Expr a,
Expr p,
Expr e 
)
inline

Definition at line 529 of file ParserNode.h.

530  : is_not_(n), arg_(a), pattern_string_(p), escape_string_(e) {}
constexpr double a
Definition: Utm.h:32
std::unique_ptr< Expr > pattern_string_
Definition: ParserNode.h:548
std::unique_ptr< Expr > arg_
Definition: ParserNode.h:547
std::unique_ptr< Expr > escape_string_
Definition: ParserNode.h:549
constexpr double n
Definition: Utm.h:38

Member Function Documentation

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

Implements Parser::Expr.

Definition at line 784 of file ParserNode.cpp.

787  {
788  auto arg_expr = arg_->analyze(catalog, query, allow_tlist_ref);
789  auto pattern_expr = pattern_string_->analyze(catalog, query, allow_tlist_ref);
790  auto escape_expr = escape_string_ == nullptr
791  ? nullptr
792  : escape_string_->analyze(catalog, query, allow_tlist_ref);
793  return RegexpExpr::get(arg_expr, pattern_expr, escape_expr, is_not_);
794 }
static std::shared_ptr< Analyzer::Expr > get(std::shared_ptr< Analyzer::Expr > arg_expr, std::shared_ptr< Analyzer::Expr > pattern_expr, std::shared_ptr< Analyzer::Expr > escape_expr, const bool is_not)
Definition: ParserNode.cpp:796
std::unique_ptr< Expr > pattern_string_
Definition: ParserNode.h:548
std::unique_ptr< Expr > arg_
Definition: ParserNode.h:547
std::unique_ptr< Expr > escape_string_
Definition: ParserNode.h:549
void Parser::RegexpExpr::check_pattern_expr ( const std::string &  pattern_str,
char  escape_char 
)
staticprivate

Definition at line 747 of file ParserNode.cpp.

747  {
748  if (pattern_str.back() == escape_char) {
749  throw std::runtime_error("REGEXP pattern must not end with escape character.");
750  }
751 }
std::shared_ptr< Analyzer::Expr > Parser::RegexpExpr::get ( std::shared_ptr< Analyzer::Expr arg_expr,
std::shared_ptr< Analyzer::Expr pattern_expr,
std::shared_ptr< Analyzer::Expr escape_expr,
const bool  is_not 
)
static

Definition at line 796 of file ParserNode.cpp.

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

Referenced by RelAlgTranslator::translateRegexp().

800  {
801  if (!arg_expr->get_type_info().is_string()) {
802  throw std::runtime_error("expression before REGEXP must be of a string type.");
803  }
804  if (!pattern_expr->get_type_info().is_string()) {
805  throw std::runtime_error("expression after REGEXP must be of a string type.");
806  }
807  char escape_char = '\\';
808  if (escape_expr != nullptr) {
809  if (!escape_expr->get_type_info().is_string()) {
810  throw std::runtime_error("expression after ESCAPE must be of a string type.");
811  }
812  if (!escape_expr->get_type_info().is_string()) {
813  throw std::runtime_error("expression after ESCAPE must be of a string type.");
814  }
815  auto c = std::dynamic_pointer_cast<Analyzer::Constant>(escape_expr);
816  if (c != nullptr && c->get_constval().stringval->length() > 1) {
817  throw std::runtime_error("String after ESCAPE must have a single character.");
818  }
819  escape_char = (*c->get_constval().stringval)[0];
820  if (escape_char != '\\') {
821  throw std::runtime_error("Only supporting '\\' escape character.");
822  }
823  }
824  auto c = std::dynamic_pointer_cast<Analyzer::Constant>(pattern_expr);
825  if (c != nullptr) {
826  std::string& pattern = *c->get_constval().stringval;
827  if (translate_to_like_pattern(pattern, escape_char)) {
828  return LikeExpr::get(arg_expr, pattern_expr, escape_expr, false, is_not);
829  }
830  }
831  std::shared_ptr<Analyzer::Expr> result =
832  makeExpr<Analyzer::RegexpExpr>(arg_expr->decompress(), pattern_expr, escape_expr);
833  if (is_not) {
834  result = makeExpr<Analyzer::UOper>(kBOOLEAN, kNOT, result);
835  }
836  return result;
837 }
static bool translate_to_like_pattern(std::string &pattern_str, char escape_char)
Definition: ParserNode.cpp:753
std::string * stringval
Definition: Datum.h:81
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
Datum get_constval() const
Definition: Analyzer.h:348
Definition: sqldefs.h:41

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

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

Definition at line 532 of file ParserNode.h.

References arg_.

532 { return arg_.get(); }
std::unique_ptr< Expr > arg_
Definition: ParserNode.h:547
const Expr* Parser::RegexpExpr::get_escape_string ( ) const
inline

Definition at line 534 of file ParserNode.h.

References escape_string_.

534 { return escape_string_.get(); }
std::unique_ptr< Expr > escape_string_
Definition: ParserNode.h:549
bool Parser::RegexpExpr::get_is_not ( ) const
inline

Definition at line 531 of file ParserNode.h.

References is_not_.

531 { return is_not_; }
const Expr* Parser::RegexpExpr::get_pattern_string ( ) const
inline

Definition at line 533 of file ParserNode.h.

References pattern_string_.

533 { return pattern_string_.get(); }
std::unique_ptr< Expr > pattern_string_
Definition: ParserNode.h:548
std::string Parser::RegexpExpr::to_string ( ) const
overridevirtual

Implements Parser::Expr.

Definition at line 2268 of file ParserNode.cpp.

2268  {
2269  std::string str = arg_->to_string();
2270  if (is_not_) {
2271  str += " NOT REGEXP ";
2272  } else {
2273  str += " REGEXP ";
2274  }
2275  str += pattern_string_->to_string();
2276  if (escape_string_ != nullptr) {
2277  str += " ESCAPE " + escape_string_->to_string();
2278  }
2279  return str;
2280 }
std::unique_ptr< Expr > pattern_string_
Definition: ParserNode.h:548
std::unique_ptr< Expr > arg_
Definition: ParserNode.h:547
std::unique_ptr< Expr > escape_string_
Definition: ParserNode.h:549
bool Parser::RegexpExpr::translate_to_like_pattern ( std::string &  pattern_str,
char  escape_char 
)
staticprivate

Definition at line 753 of file ParserNode.cpp.

753  {
754  char prev_char = '\0';
755  char prev_prev_char = '\0';
756  std::string like_str;
757  for (char& cur_char : pattern_str) {
758  if (prev_char == escape_char || isalnum(cur_char) || cur_char == ' ' ||
759  cur_char == '.') {
760  like_str.push_back((cur_char == '.') ? '_' : cur_char);
761  prev_prev_char = prev_char;
762  prev_char = cur_char;
763  continue;
764  }
765  if (prev_char == '.' && prev_prev_char != escape_char) {
766  if (cur_char == '*' || cur_char == '+') {
767  if (cur_char == '*') {
768  like_str.pop_back();
769  }
770  // .* --> %
771  // .+ --> _%
772  like_str.push_back('%');
773  prev_prev_char = prev_char;
774  prev_char = cur_char;
775  continue;
776  }
777  }
778  return false;
779  }
780  pattern_str = like_str;
781  return true;
782 }

Member Data Documentation

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

Definition at line 547 of file ParserNode.h.

Referenced by get_arg().

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

Definition at line 549 of file ParserNode.h.

Referenced by get_escape_string().

bool Parser::RegexpExpr::is_not_
private

Definition at line 546 of file ParserNode.h.

Referenced by get_is_not().

std::unique_ptr<Expr> Parser::RegexpExpr::pattern_string_
private

Definition at line 548 of file ParserNode.h.

Referenced by get_pattern_string().


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