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

#include <ParserNode.h>

+ Inheritance diagram for Parser::ArrayLiteral:
+ Collaboration diagram for Parser::ArrayLiteral:

Public Member Functions

 ArrayLiteral ()
 
 ArrayLiteral (std::list< Expr * > *v)
 
const std::list
< std::unique_ptr< Expr > > & 
get_value_list () 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 ()
 

Private Attributes

std::list< std::unique_ptr
< Expr > > 
value_list_
 

Additional Inherited Members

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

Detailed Description

Definition at line 272 of file ParserNode.h.

Constructor & Destructor Documentation

Parser::ArrayLiteral::ArrayLiteral ( )
inline

Definition at line 274 of file ParserNode.h.

274 {}
Parser::ArrayLiteral::ArrayLiteral ( std::list< Expr * > *  v)
inline

Definition at line 275 of file ParserNode.h.

References CHECK, and value_list_.

275  {
276  CHECK(v);
277  for (const auto e : *v) {
278  value_list_.emplace_back(e);
279  }
280  delete v;
281  }
std::list< std::unique_ptr< Expr > > value_list_
Definition: ParserNode.h:290
#define CHECK(condition)
Definition: Logger.h:291

Member Function Documentation

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

Implements Parser::Literal.

Definition at line 246 of file ParserNode.cpp.

References CHECK, SQLTypeInfo::get_type(), Analyzer::Expr::get_type_info(), kARRAY, kNULLT, run_benchmark_import::result, and SQLTypeInfo::set_subtype().

249  {
250  SQLTypeInfo ti = SQLTypeInfo(kARRAY, true);
251  bool set_subtype = true;
252  std::list<std::shared_ptr<Analyzer::Expr>> value_exprs;
253  for (auto& p : value_list_) {
254  auto e = p->analyze(catalog, query, allow_tlist_ref);
255  CHECK(e);
256  auto c = std::dynamic_pointer_cast<Analyzer::Constant>(e);
257  if (c != nullptr && c->get_is_null()) {
258  value_exprs.push_back(c);
259  continue;
260  }
261  auto subtype = e->get_type_info().get_type();
262  if (subtype == kNULLT) {
263  // NULL element
264  } else if (set_subtype) {
265  ti.set_subtype(subtype);
266  set_subtype = false;
267  }
268  value_exprs.push_back(e);
269  }
270  std::shared_ptr<Analyzer::Expr> result =
271  makeExpr<Analyzer::Constant>(ti, false, value_exprs);
272  return result;
273 }
HOST DEVICE void set_subtype(SQLTypes st)
Definition: sqltypes.h:469
HOST DEVICE SQLTypes get_type() const
Definition: sqltypes.h:391
std::list< std::unique_ptr< Expr > > value_list_
Definition: ParserNode.h:290
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79
#define CHECK(condition)
Definition: Logger.h:291

+ Here is the call graph for this function:

const std::list<std::unique_ptr<Expr> >& Parser::ArrayLiteral::get_value_list ( ) const
inline

Definition at line 282 of file ParserNode.h.

References value_list_.

282 { return value_list_; }
std::list< std::unique_ptr< Expr > > value_list_
Definition: ParserNode.h:290
std::string Parser::ArrayLiteral::to_string ( ) const
overridevirtual

Implements Parser::Literal.

Definition at line 275 of file ParserNode.cpp.

275  {
276  std::string str = "{";
277  bool notfirst = false;
278  for (auto& p : value_list_) {
279  if (notfirst) {
280  str += ", ";
281  } else {
282  notfirst = true;
283  }
284  str += p->to_string();
285  }
286  str += "}";
287  return str;
288 }
std::list< std::unique_ptr< Expr > > value_list_
Definition: ParserNode.h:290

Member Data Documentation

std::list<std::unique_ptr<Expr> > Parser::ArrayLiteral::value_list_
private

Definition at line 290 of file ParserNode.h.

Referenced by ArrayLiteral(), and get_value_list().


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