blob: a11df90314c88dc4990631b40cca5633f80792ef [file] [log] [blame]
#ifndef STMTDDLREGISTERUSER_H
#define STMTDDLREGISTERUSER_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: StmtDDLRegisterUser.h
* Description: class for parse nodes representing register and unregister
* user statements
*
* Created: February 2, 2011
* Language: C++
*
*****************************************************************************
*/
#include "ComLocationNames.h"
#include "ElemDDLLocation.h"
#include "ComSmallDefs.h"
#include "StmtDDLNode.h"
#include "ElemDDLAuthSchema.h"
// -----------------------------------------------------------------------
// contents of this file
// -----------------------------------------------------------------------
class StmtDDLRegisterUser;
class StmtDDLRegisterUserArray;
// -----------------------------------------------------------------------
// forward references
// -----------------------------------------------------------------------
// None
// -----------------------------------------------------------------------
// Register and unregister user statements
// -----------------------------------------------------------------------
class StmtDDLRegisterUser : public StmtDDLNode
{
public:
enum RegisterUserType { REGISTER_USER, UNREGISTER_USER };
// constructors
// register user
StmtDDLRegisterUser(const NAString & externalUserName,
const NAString * pDbUserName,
ElemDDLNode * authSchema,
CollHeap * heap);
// unregister user
StmtDDLRegisterUser(const NAString & dbUserName,
ComDropBehavior dropBehavior,
CollHeap * heap);
// virtual destructor
virtual ~StmtDDLRegisterUser();
// cast
virtual StmtDDLRegisterUser * castToStmtDDLRegisterUser();
// for binding
ExprNode * bindNode(BindWA *bindWAPtr);
// accessors
inline const NAString & getExternalUserName() const;
inline const NAString & getDbUserName() const ;
inline const RegisterUserType getRegisterUserType() const;
inline const ComDropBehavior getDropBehavior() const;
inline const NABoolean isSchemaSpecified() const;
inline const SchemaName * getSchemaName() const;
inline const ComSchemaClass getSchemaClass() const;
// for tracing
private:
// ---------------------------------------------------------------------
// private data members
// ---------------------------------------------------------------------
NAString externalUserName_;
NAString dbUserName_;
RegisterUserType registerUserType_;
ComDropBehavior dropBehavior_;
ElemDDLAuthSchema *authSchema_;
}; // class StmtDDLRegisterUser
// -----------------------------------------------------------------------
// definitions of inline methods for class StmtDDLRegisterUser
// -----------------------------------------------------------------------
//
// accessors
//
inline const NAString &
StmtDDLRegisterUser::getExternalUserName() const
{
return externalUserName_;
}
inline const NAString &
StmtDDLRegisterUser::getDbUserName() const
{
return dbUserName_;
}
inline const StmtDDLRegisterUser::RegisterUserType
StmtDDLRegisterUser::getRegisterUserType() const
{
return registerUserType_;
}
inline const NABoolean
StmtDDLRegisterUser::isSchemaSpecified() const
{
return authSchema_ ? TRUE : FALSE;
}
inline const ComDropBehavior
StmtDDLRegisterUser::getDropBehavior() const
{
return dropBehavior_;
}
inline const ComSchemaClass
StmtDDLRegisterUser::getSchemaClass() const
{
if (authSchema_)
return authSchema_->getSchemaClass();
return COM_SCHEMA_CLASS_DEFAULT;
}
inline const SchemaName *
StmtDDLRegisterUser::getSchemaName() const
{
if (authSchema_ && authSchema_->isSchemaNameSpecified())
return &authSchema_->getSchemaName();
return NULL;
}
// -----------------------------------------------------------------------
// Definition of class StmtDDLRegisterUserArray
// -----------------------------------------------------------------------
class StmtDDLRegisterUserArray : public LIST(StmtDDLRegisterUser *)
{
public:
// constructor
StmtDDLRegisterUserArray(CollHeap *heap)
: LIST(StmtDDLRegisterUser *)(heap)
{ }
// virtual destructor
virtual ~StmtDDLRegisterUserArray();
private:
}; // class StmtDDLRegisterUserArray
#endif // STMTDDLREGISTERUSER_H