blob: 80b33ed6db27e3edd60636896ae44506c305a037 [file] [log] [blame]
#ifndef STMTDDLGIVECATALOG_H
#define STMTDDLGIVECATALOG_H
/**********************************************************************
// @@@ START COPYRIGHT @@@
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
//
// @@@ END COPYRIGHT @@@
**********************************************************************/
/* -*-C++-*-
*****************************************************************************
*
* File: StmtDDLGiveCatalog.h
* Description: class for parse nodes representing Give Catalog
* statements
*
*
* Created: 7/11/2006
* Language: C++
*
*****************************************************************************
*/
#include "ComLocationNames.h"
#include "ElemDDLLocation.h"
#include "StmtDDLNode.h"
// -----------------------------------------------------------------------
// contents of this file
// -----------------------------------------------------------------------
class StmtDDLGiveCatalog;
// -----------------------------------------------------------------------
// forward references
// -----------------------------------------------------------------------
// None
// -----------------------------------------------------------------------
// Give Catalog statement
// -----------------------------------------------------------------------
class StmtDDLGiveCatalog : public StmtDDLNode
{
public:
// default constructor
StmtDDLGiveCatalog(const NAString & aCatalogName,
const NAString & aUserID);
// virtual destructor
virtual ~StmtDDLGiveCatalog();
// cast
virtual StmtDDLGiveCatalog * castToStmtDDLGiveCatalog();
//
// accessors
//
virtual Int32 getArity() const;
inline const NAString & getCatalogName() const;
virtual ExprNode * getChild(Lng32 index);
inline const NAString & getUserID() const;
// mutator
virtual void setChild(Lng32 index, ExprNode * pChildNode);
// for binding
ExprNode * bindNode(BindWA *bindWAPtr);
// for tracing
virtual const NAString displayLabel1() const;
virtual const NAString displayLabel2() const;
virtual const NAString getText() const;
private:
// ---------------------------------------------------------------------
// private methods
// ---------------------------------------------------------------------
//
// mutator
//
void setAttribute(ElemDDLNode * pAttrNode);
// Get the information in the parse node pointed by parameter
// pAttrNode. Update the corresponding data member (in this
// class) accordingly. Also check for duplicate clauses.
// Get the information in the parse node pointed by parameter
// pAttrNode. Update the corresponding data member (in this
// class) accordingly. Also check for duplicate clauses.
// ---------------------------------------------------------------------
// private data members
// ---------------------------------------------------------------------
NAString catalogName_;
NAString userID_;
// The flags is...Spec_ are used to
// check for duplicate clauses
// pointer to child parse node
enum { INDEX_GIVE_CATALOG_ATTRIBUTE_LIST = 0,
MAX_STMT_DDL_GIVE_CATALOG_ARITY };
ElemDDLNode * attributeList_;
}; // class StmtDDLGiveCatalog
// -----------------------------------------------------------------------
// definitions of inline methods for class StmtDDLGiveCatalog
// -----------------------------------------------------------------------
//
// accessors
//
inline const NAString &
StmtDDLGiveCatalog::getCatalogName() const
{
return catalogName_;
}
inline const NAString &
StmtDDLGiveCatalog::getUserID() const
{
return userID_;
}
#endif // STMTDDLGIVECATALOG_H