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

#include <ParserNode.h>

+ Inheritance diagram for Parser::CreateDataframeStmt:
+ Collaboration diagram for Parser::CreateDataframeStmt:

Public Member Functions

 CreateDataframeStmt (std::string *tab, std::list< TableElement * > *table_elems, std::string *filename, std::list< NameValueAssign * > *s)
 
 CreateDataframeStmt (const rapidjson::Value &payload)
 
const std::string * get_table () const override
 
const std::list
< std::unique_ptr
< TableElement > > & 
get_table_element_list () const override
 
void execute (const Catalog_Namespace::SessionInfo &session, bool read_only_mode) override
 
- Public Member Functions inherited from Parser::DDLStmt
void setColumnDescriptor (ColumnDescriptor &cd, const ColumnDef *coldef)
 
- Public Member Functions inherited from Parser::Node
virtual ~Node ()
 

Private Attributes

std::unique_ptr< std::string > table_
 
std::list< std::unique_ptr
< TableElement > > 
table_element_list_
 
std::unique_ptr< std::string > filename_
 
std::list< std::unique_ptr
< NameValueAssign > > 
storage_options_
 

Detailed Description

Definition at line 1086 of file ParserNode.h.

Constructor & Destructor Documentation

Parser::CreateDataframeStmt::CreateDataframeStmt ( std::string *  tab,
std::list< TableElement * > *  table_elems,
std::string *  filename,
std::list< NameValueAssign * > *  s 
)
inline

Definition at line 1088 of file ParserNode.h.

References CHECK, storage_options_, and table_element_list_.

1092  : table_(tab), filename_(filename) {
1093  CHECK(table_elems);
1094  for (const auto e : *table_elems) {
1095  table_element_list_.emplace_back(e);
1096  }
1097  delete table_elems;
1098  if (s) {
1099  for (const auto e : *s) {
1100  storage_options_.emplace_back(e);
1101  }
1102  delete s;
1103  }
1104  }
std::list< std::unique_ptr< NameValueAssign > > storage_options_
Definition: ParserNode.h:1120
std::unique_ptr< std::string > table_
Definition: ParserNode.h:1117
#define CHECK(condition)
Definition: Logger.h:291
std::list< std::unique_ptr< TableElement > > table_element_list_
Definition: ParserNode.h:1118
std::unique_ptr< std::string > filename_
Definition: ParserNode.h:1119
Parser::CreateDataframeStmt::CreateDataframeStmt ( const rapidjson::Value &  payload)

Definition at line 3350 of file ParserNode.cpp.

References CHECK, filename_, json_str(), Parser::anonymous_namespace{ParserNode.cpp}::parse_elements(), Parser::anonymous_namespace{ParserNode.cpp}::parse_options(), storage_options_, table_, and table_element_list_.

3350  {
3351  CHECK(payload.HasMember("name"));
3352  table_ = std::make_unique<std::string>(json_str(payload["name"]));
3353 
3354  CHECK(payload.HasMember("elementList"));
3355  parse_elements(payload, "elementList", *table_, table_element_list_);
3356 
3357  CHECK(payload.HasMember("filePath"));
3358  std::string fs = json_str(payload["filePath"]);
3359  // strip leading/trailing spaces/quotes/single quotes
3360  boost::algorithm::trim_if(fs, boost::is_any_of(" \"'`"));
3361  filename_ = std::make_unique<std::string>(fs);
3362 
3363  parse_options(payload, storage_options_);
3364 }
std::list< std::unique_ptr< NameValueAssign > > storage_options_
Definition: ParserNode.h:1120
const std::string json_str(const rapidjson::Value &obj) noexcept
Definition: JsonAccessors.h:46
std::unique_ptr< std::string > table_
Definition: ParserNode.h:1117
void parse_elements(const rapidjson::Value &payload, std::string element_name, std::string &table_name, std::list< std::unique_ptr< TableElement >> &table_element_list)
void parse_options(const rapidjson::Value &payload, std::list< std::unique_ptr< NameValueAssign >> &nameValueList, bool stringToNull=false, bool stringToInteger=false)
#define CHECK(condition)
Definition: Logger.h:291
std::list< std::unique_ptr< TableElement > > table_element_list_
Definition: ParserNode.h:1118
std::unique_ptr< std::string > filename_
Definition: ParserNode.h:1119

+ Here is the call graph for this function:

Member Function Documentation

void Parser::CreateDataframeStmt::execute ( const Catalog_Namespace::SessionInfo session,
bool  read_only_mode 
)
overridevirtual

Implements Parser::DDLStmt.

Definition at line 3366 of file ParserNode.cpp.

References Catalog_Namespace::SessionInfo::checkDBAccessPrivileges(), ColumnDescriptor::columnName, Data_Namespace::CPU_LEVEL, AccessPrivileges::CREATE_TABLE, DEFAULT_FRAGMENT_ROWS, DEFAULT_MAX_CHUNK_SIZE, DEFAULT_MAX_ROWS, DEFAULT_PAGE_SIZE, filename_, TableDescriptor::fragmenter, TableDescriptor::fragPageSize, TableDescriptor::fragType, Parser::ColumnDef::get_column_name(), Catalog_Namespace::SessionInfo::get_currentUser(), Parser::anonymous_namespace{ParserNode.cpp}::get_dataframe_definitions(), Catalog_Namespace::SessionInfo::getCatalog(), legacylockmgr::getExecuteWriteLock(), Fragmenter_Namespace::INSERT_ORDER, TableDescriptor::isView, TableDescriptor::keyMetainfo, TableDescriptor::maxChunkSize, TableDescriptor::maxFragRows, TableDescriptor::maxRows, TableDescriptor::nColumns, TableDescriptor::persistenceLevel, Parser::anonymous_namespace{ParserNode.cpp}::serialize_key_metainfo(), Parser::DDLStmt::setColumnDescriptor(), storage_options_, TableDescriptor::storageType, table_, table_element_list_, TableDBObjectType, TableDescriptor::tableName, TableDescriptor::userId, Catalog_Namespace::UserMetadata::userId, and validate_shared_dictionary().

Referenced by heavydb.cursor.Cursor::executemany().

3367  {
3368  if (read_only_mode) {
3369  throw std::runtime_error("CREATE DATAFRAME invalid in read only mode.");
3370  }
3371  auto& catalog = session.getCatalog();
3372 
3373  const auto execute_write_lock = legacylockmgr::getExecuteWriteLock();
3374 
3375  // check access privileges
3378  throw std::runtime_error("Table " + *table_ +
3379  " will not be created. User has no create privileges.");
3380  }
3381 
3382  if (catalog.getMetadataForTable(*table_) != nullptr) {
3383  throw std::runtime_error("Table " + *table_ + " already exists.");
3384  }
3386  std::list<ColumnDescriptor> columns;
3387  std::vector<SharedDictionaryDef> shared_dict_defs;
3388 
3389  std::unordered_set<std::string> uc_col_names;
3390  for (auto& e : table_element_list_) {
3391  if (dynamic_cast<SharedDictionaryDef*>(e.get())) {
3392  auto shared_dict_def = static_cast<SharedDictionaryDef*>(e.get());
3394  this, shared_dict_def, columns, shared_dict_defs, catalog);
3395  shared_dict_defs.push_back(*shared_dict_def);
3396  continue;
3397  }
3398  if (!dynamic_cast<ColumnDef*>(e.get())) {
3399  throw std::runtime_error("Table constraints are not supported yet.");
3400  }
3401  ColumnDef* coldef = static_cast<ColumnDef*>(e.get());
3402  ColumnDescriptor cd;
3403  cd.columnName = *coldef->get_column_name();
3404  const auto uc_col_name = boost::to_upper_copy<std::string>(cd.columnName);
3405  const auto it_ok = uc_col_names.insert(uc_col_name);
3406  if (!it_ok.second) {
3407  throw std::runtime_error("Column '" + cd.columnName + "' defined more than once");
3408  }
3409  setColumnDescriptor(cd, coldef);
3410  columns.push_back(cd);
3411  }
3412 
3413  df_td.tableName = *table_;
3414  df_td.nColumns = columns.size();
3415  df_td.isView = false;
3416  df_td.fragmenter = nullptr;
3421  df_td.maxRows = DEFAULT_MAX_ROWS;
3423  if (!storage_options_.empty()) {
3424  for (auto& p : storage_options_) {
3425  get_dataframe_definitions(df_td, p, columns);
3426  }
3427  }
3428  df_td.keyMetainfo = serialize_key_metainfo(nullptr, shared_dict_defs);
3429  df_td.userId = session.get_currentUser().userId;
3430  df_td.storageType = *filename_;
3431 
3432  catalog.createShardedTable(df_td, columns, shared_dict_defs);
3433  // TODO (max): It's transactionally unsafe, should be fixed: we may create object w/o
3434  // privileges
3435  SysCatalog::instance().createDBObject(
3436  session.get_currentUser(), df_td.tableName, TableDBObjectType, catalog);
3437 }
std::list< std::unique_ptr< NameValueAssign > > storage_options_
Definition: ParserNode.h:1120
void setColumnDescriptor(ColumnDescriptor &cd, const ColumnDef *coldef)
std::string tableName
std::string storageType
#define DEFAULT_MAX_CHUNK_SIZE
std::unique_ptr< std::string > table_
Definition: ParserNode.h:1117
#define DEFAULT_MAX_ROWS
void get_dataframe_definitions(DataframeTableDescriptor &df_td, const std::unique_ptr< NameValueAssign > &p, const std::list< ColumnDescriptor > &columns)
specifies the content in-memory of a row in the column metadata table
static const AccessPrivileges CREATE_TABLE
Definition: DBObject.h:158
std::string keyMetainfo
std::shared_ptr< Fragmenter_Namespace::AbstractFragmenter > fragmenter
#define DEFAULT_PAGE_SIZE
Catalog & getCatalog() const
Definition: SessionInfo.h:75
#define DEFAULT_FRAGMENT_ROWS
Fragmenter_Namespace::FragmenterType fragType
Data_Namespace::MemoryLevel persistenceLevel
void validate_shared_dictionary(const Parser::CreateTableBaseStmt *stmt, const Parser::SharedDictionaryDef *shared_dict_def, const std::list< ColumnDescriptor > &columns, const std::vector< Parser::SharedDictionaryDef > &shared_dict_defs_so_far, const Catalog_Namespace::Catalog &catalog)
auto getExecuteWriteLock()
bool checkDBAccessPrivileges(const DBObjectType &permissionType, const AccessPrivileges &privs, const std::string &objectName="") const
Definition: SessionInfo.cpp:24
std::list< std::unique_ptr< TableElement > > table_element_list_
Definition: ParserNode.h:1118
std::string columnName
const UserMetadata & get_currentUser() const
Definition: SessionInfo.h:88
std::unique_ptr< std::string > filename_
Definition: ParserNode.h:1119
std::string serialize_key_metainfo(const ShardKeyDef *shard_key_def, const std::vector< SharedDictionaryDef > &shared_dict_defs)
specifies the content in-memory of a row in the table metadata table

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

const std::string* Parser::CreateDataframeStmt::get_table ( ) const
inlineoverridevirtual

Implements Parser::CreateTableBaseStmt.

Definition at line 1107 of file ParserNode.h.

References table_.

1107 { return table_.get(); }
std::unique_ptr< std::string > table_
Definition: ParserNode.h:1117
const std::list<std::unique_ptr<TableElement> >& Parser::CreateDataframeStmt::get_table_element_list ( ) const
inlineoverridevirtual

Implements Parser::CreateTableBaseStmt.

Definition at line 1108 of file ParserNode.h.

References table_element_list_.

1109  {
1110  return table_element_list_;
1111  }
std::list< std::unique_ptr< TableElement > > table_element_list_
Definition: ParserNode.h:1118

Member Data Documentation

std::unique_ptr<std::string> Parser::CreateDataframeStmt::filename_
private

Definition at line 1119 of file ParserNode.h.

Referenced by CreateDataframeStmt(), and execute().

std::list<std::unique_ptr<NameValueAssign> > Parser::CreateDataframeStmt::storage_options_
private

Definition at line 1120 of file ParserNode.h.

Referenced by CreateDataframeStmt(), and execute().

std::unique_ptr<std::string> Parser::CreateDataframeStmt::table_
private

Definition at line 1117 of file ParserNode.h.

Referenced by CreateDataframeStmt(), execute(), and get_table().

std::list<std::unique_ptr<TableElement> > Parser::CreateDataframeStmt::table_element_list_
private

Definition at line 1118 of file ParserNode.h.

Referenced by CreateDataframeStmt(), execute(), and get_table_element_list().


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