Package org.apache.derby.impl.sql.compile

Source Code of org.apache.derby.impl.sql.compile.UserDefinedTypeCompiler

/*

   Derby - Class org.apache.derby.impl.sql.compile.UserDefinedTypeCompiler

   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.compile;

import org.apache.derby.iapi.services.loader.ClassFactory;

import org.apache.derby.iapi.error.StandardException;

import org.apache.derby.iapi.types.DataTypeDescriptor;
import org.apache.derby.iapi.types.DataValueFactory;
import org.apache.derby.iapi.types.TypeId;

import org.apache.derby.iapi.sql.compile.TypeCompiler;
import org.apache.derby.catalog.types.UserDefinedTypeIdImpl;

import org.apache.derby.iapi.services.sanity.SanityManager;
import org.apache.derby.iapi.services.compiler.LocalField;
import org.apache.derby.iapi.services.compiler.MethodBuilder;

import org.apache.derby.iapi.reference.ClassName;

public class UserDefinedTypeCompiler extends BaseTypeCompiler
{
  /* TypeCompiler methods */

  /**
   * Right now, casting is not allowed from one user defined type
     * to another.
   *
   * @param otherType
   * @param forDataTypeFunction
   * @return true if otherType is convertible to this type, else false.
   *
   *@see TypeCompiler#convertible
   */
  public boolean convertible(TypeId otherType, boolean forDataTypeFunction)
  {
        if ( getTypeId().getBaseTypeId().isAnsiUDT() )
        {
            if ( !otherType.getBaseTypeId().isAnsiUDT() ) { return false; }
           
            UserDefinedTypeIdImpl thisTypeID = (UserDefinedTypeIdImpl) getTypeId().getBaseTypeId();
            UserDefinedTypeIdImpl thatTypeID = (UserDefinedTypeIdImpl) otherType.getBaseTypeId();
           
            return thisTypeID.getSQLTypeName().equals( thatTypeID.getSQLTypeName() );
        }
       
    /*
    ** We are a non-ANSI user defined type, we are
    ** going to have to let the client find out
    ** the hard way.
    */
    return true;
  }

   /** @see TypeCompiler#compatible */
  public boolean compatible(TypeId otherType)
  {
    return convertible(otherType, false);
  }

  /**
     * ANSI UDTs can only be stored into values of exactly their own
     * type. This restriction can be lifted when we implement the
     * ANSI subclassing clauses.
     *
   * Old-style User types are storable into other user types that they
   * are assignable to. The other type must be a subclass of
   * this type, or implement this type as one of its interfaces.
   *
   * @param otherType the type of the instance to store into this type.
   * @param cf    A ClassFactory
   * @return true if otherType is storable into this type, else false.
   */
  public boolean storable(TypeId otherType, ClassFactory cf)
  {
        if ( !otherType.isUserDefinedTypeId() ) { return false; }

        UserDefinedTypeIdImpl thisTypeID = (UserDefinedTypeIdImpl) getTypeId().getBaseTypeId();
        UserDefinedTypeIdImpl thatTypeID = (UserDefinedTypeIdImpl) otherType.getBaseTypeId();

        if ( thisTypeID.isAnsiUDT() != thatTypeID.isAnsiUDT() ) { return false; }

        if ( thisTypeID.isAnsiUDT() )
        {
            return thisTypeID.getSQLTypeName().equals( thatTypeID.getSQLTypeName() );
        }
       
    return cf.getClassInspector().assignableTo(
         otherType.getCorrespondingJavaTypeName(),
         getTypeId().getCorrespondingJavaTypeName());
  }

  /** @see TypeCompiler#interfaceName */
  public String interfaceName()
  {
    return ClassName.UserDataValue;
  }
     
  /**
   * @see TypeCompiler#getCorrespondingPrimitiveTypeName
   */

  public String getCorrespondingPrimitiveTypeName()
  {
    return getTypeId().getCorrespondingJavaTypeName();
  }

  /**
   * @see TypeCompiler#getCastToCharWidth
   */
  public int getCastToCharWidth(DataTypeDescriptor dts)
  {
    // This is the maximum maximum width for user types
    return -1;
  }

  String nullMethodName()
  {
    return "getNullObject";
  }

  public void generateDataValue(MethodBuilder mb, int collationType,
      LocalField field)
  {
    // cast the value to an object for method resolution
    mb.upCast("java.lang.Object");

    super.generateDataValue(mb, collationType, field);
  }

   

}
TOP

Related Classes of org.apache.derby.impl.sql.compile.UserDefinedTypeCompiler

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.