Package org.apache.derby.impl.sql.execute

Source Code of org.apache.derby.impl.sql.execute.DropAliasConstantAction

/*

   Derby - Class org.apache.derby.impl.sql.execute.DropAliasConstantAction

   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.

*/

package org.apache.derby.impl.sql.execute;

import org.apache.derby.iapi.error.StandardException;
import org.apache.derby.iapi.reference.SQLState;
import org.apache.derby.iapi.sql.Activation;
import org.apache.derby.iapi.sql.conn.LanguageConnectionContext;
import org.apache.derby.iapi.sql.dictionary.AliasDescriptor;
import org.apache.derby.iapi.sql.dictionary.DataDictionary;
import org.apache.derby.iapi.sql.dictionary.SchemaDescriptor;
import org.apache.derby.iapi.sql.execute.ConstantAction;

/**
*  This class performs actions that are ALWAYS performed for a
*  DROP FUNCTION/PROCEDURE/SYNONYM statement at execution time.
*  All of these SQL objects are represented by an AliasDescriptor.
*
*/

class DropAliasConstantAction extends DDLConstantAction
{

  private SchemaDescriptor  sd;
  private final String        aliasName;
  private final char        nameSpace;

  // CONSTRUCTORS


  /**
   *  Make the ConstantAction for a DROP  ALIAS statement.
   *
   *
   *  @param  aliasName      Alias name.
   *  @param  nameSpace      Alias name space.
   *
   */
  DropAliasConstantAction(SchemaDescriptor sd, String aliasName, char nameSpace)
  {
    this.sd = sd;
    this.aliasName = aliasName;
    this.nameSpace = nameSpace;
  }

  // OBJECT SHADOWS

  public  String  toString()
  {
    // Do not put this under SanityManager.DEBUG - it is needed for
    // error reporting.
    return  "DROP ALIAS " + aliasName;
  }

  // INTERFACE METHODS


  /**
   *  This is the guts of the Execution-time logic for DROP ALIAS.
   *
   *  @see ConstantAction#executeConstantAction
   *
   * @exception StandardException    Thrown on failure
   */
  public void  executeConstantAction( Activation activation )
            throws StandardException
  {
    LanguageConnectionContext lcc = activation.getLanguageConnectionContext();
    DataDictionary dd = lcc.getDataDictionary();

    /*
    ** Inform the data dictionary that we are about to write to it.
    ** There are several calls to data dictionary "get" methods here
    ** that might be done in "read" mode in the data dictionary, but
    ** it seemed safer to do this whole operation in "write" mode.
    **
    ** We tell the data dictionary we're done writing at the end of
    ** the transaction.
    */
    dd.startWriting(lcc);

    /* Get the alias descriptor.  We're responsible for raising
     * the error if it isn't found
     */
    AliasDescriptor ad = dd.getAliasDescriptor(sd.getUUID().toString(), aliasName, nameSpace);

    // RESOLVE - fix error message
    if (ad == null)
    {
      throw StandardException.newException(SQLState.LANG_OBJECT_NOT_FOUND, AliasDescriptor.getAliasType(nameSpace),  aliasName);
    }

        adjustUDTDependencies( lcc, dd, ad, false );
       
        ad.drop(lcc);

  }
}
TOP

Related Classes of org.apache.derby.impl.sql.execute.DropAliasConstantAction

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.