blob: cd8a4763ac6e3692faa44dddc535a3fe7806062a [file] [log] [blame]
/*
Derby - Class org.apache.derby.impl.sql.compile.CoalesceFunctionNode
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 java.lang.reflect.Modifier;
import java.util.List;
import org.apache.derby.iapi.error.StandardException;
import org.apache.derby.iapi.reference.ClassName;
import org.apache.derby.iapi.reference.SQLState;
import org.apache.derby.iapi.services.classfile.VMOpcode;
import org.apache.derby.iapi.services.compiler.LocalField;
import org.apache.derby.iapi.services.compiler.MethodBuilder;
import org.apache.derby.iapi.services.context.ContextManager;
import org.apache.derby.shared.common.sanity.SanityManager;
import org.apache.derby.iapi.sql.compile.Visitor;
import org.apache.derby.iapi.util.JBitSet;
/**
* This node represents coalesce/value function which returns the first argument that is not null.
* The arguments are evaluated in the order in which they are specified, and the result of the
* function is the first argument that is not null. The result can be null only if all the arguments
* can be null. The selected argument is converted, if necessary, to the attributes of the result.
*
*
* SQL Reference Guide for DB2 has section titled "Rules for result data types" at the following url
* http://publib.boulder.ibm.com/infocenter/db2help/index.jsp?topic=/com.ibm.db2.udb.doc/admin/r0008480.htm
* I have constructed following table based on various tables and information under "Rules for result data types"
* This table has FOR BIT DATA TYPES broken out into separate columns for clarity
*
* Note that are few differences between Derby and DB2
* 1)there are few differences between what data types are considered compatible
* In DB2, CHAR FOR BIT DATA data types are compatible with CHAR data types
* ie in addition to following table, CHAR is compatible with CHAR FOR BIT DATA, VARCHAR FOR BIT DATA and LONG VARCHAR FOR BIT DATA
* ie in addition to following table, VARCHAR is compatible with CHAR FOR BIT DATA, VARCHAR FOR BIT DATA and LONG VARCHAR FOR BIT DATA
* ie in addition to following table, LONG VARCHAR is compatible with CHAR FOR BIT DATA, VARCHAR FOR BIT DATA and LONG VARCHAR FOR BIT DATA
* ie in addition to following table, CHAR FOR BIT DATA is compatible with DATE, TIME, TIMESTAMP
* ie in addition to following table, VARCHAR FOR BIT DATA is compatible with DATE, TIME, TIMESTAMP
*
* 2)few data types do not have matching precision in Derby and DB2
* In DB2, precision of TIME is 8. In Derby, precision of TIME is 0.
* In DB2, precision,scale of TIMESTAMP is 26,6. In Derby, precision of TIMESTAMP is 0,0.
* In DB2, precision of DOUBLE is 15. In Derby, precision of DOUBLE is 52.
* In DB2, precision of REAL is 23. In Derby, precision of REAL is 7.
* In DB2, precision calculation equation is incorrect when we have int and decimal arguments.
* The equation should be p=x+max(w-x,10) since precision of integer is 10 in both DB2 and Derby. Instead, DB2 has p=x+max(w-x,11)
*
* Types. S I B D R D C V L C V L C D T T B
* M N I E E O H A O H A O L A I I L
* A T G C A U A R N A R N O T M M O
* L E I I L B R C G R C G B E E E B
* L G N M L H V . H V S
* I E T A E A A B A A T
* N R L R R I R R A
* T C T . . M
* H B B P
* A I I
* R T T
* SMALLINT { "SMALLINT", "INTEGER", "BIGINT", "DECIMAL", "DOUBLE", "DOUBLE", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR" },
* INTEGER { "INTEGER", "INTEGER", "BIGINT", "DECIMAL", "DOUBLE", "DOUBLE", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR" },
* BIGINT { "BIGINT", "BIGINT", "BIGINT", "DECIMAL", "DOUBLE", "DOUBLE", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR" },
* DECIMAL { "DECIMAL", "DECIMAL", "DECIMAL", "DECIMAL", "DOUBLE", "DOUBLE", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR" },
* REAL { "DOUBLE", "DOUBLE", "DOUBLE", "DOUBLE", "REAL", "DOUBLE", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR" },
* DOUBLE { "DOUBLE", "DOUBLE", "DOUBLE", "DOUBLE", "DOUBLE", "DOUBLE", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR" },
* CHAR { "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "CHAR", "VARCHAR", "LONG VARCHAR", "ERROR", "ERROR", "ERROR", "CLOB", "DATE", "TIME", "TIMESTAMP", "ERROR" },
* VARCHAR { "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "VARCHAR", "VARCHAR","LONG VARCHAR", "ERROR", "ERROR", "ERROR", "CLOB", "DATE", "TIME", "TIMESTAMP", "ERROR" },
* LONGVARCHAR { "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "LONG VARCHAR", "LONG VARCHAR", "LONG VARCHAR", "ERROR", "ERROR", "ERROR", "CLOB", "ERROR", "ERROR", "ERROR", "ERROR" },
* CHAR FOR BIT { "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "BIT", "BIT VARYING", "LONG BIT VARYING", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR" },
* VARCH. BIT { "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "BIT VARYING", "BIT VARYING", "LONG BIT VARYING", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR" },
* LONGVAR. BIT { "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "LONG BIT VARYING", "LONG BIT VARYING", "LONG BIT VARYING", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR" },
* CLOB { "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "CLOB", "CLOB", "CLOB", "ERROR", "ERROR", "ERROR", "CLOB", "ERROR", "ERROR", "ERROR", "ERROR" },
* DATE { "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "DATE", "DATE", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "DATE", "ERROR", "ERROR", "ERROR" },
* TIME { "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "TIME", "TIME", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "TIME", "ERROR", "ERROR" },
* TIMESTAMP { "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "TIMESTAMP", "TIMESTAMP", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "TIMESTAMP", "ERROR" },
* BLOB { "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "ERROR", "BLOB" }
*/
class CoalesceFunctionNode extends ValueNode
{
String functionName; //Are we here because of COALESCE function or VALUE function
ValueNodeList argumentsList; //this is the list of arguments to the function. We are interested in the first not-null argument
/**
* The generated method will generate code to call coalesce on
* this non-parameter argument.
*/
private int firstNonParameterNodeIdx = -1;
/**
* Constructor for a CoalesceFunctionNode
*
* @param functionName Tells if the function was called with name COALESCE or with name VALUE
* @param argumentsList The list of arguments to the coalesce/value function
* @param cm The context manager
*/
CoalesceFunctionNode(
String functionName,
ValueNodeList argumentsList,
ContextManager cm)
{
super(cm);
this.functionName = functionName;
this.argumentsList = argumentsList;
}
/**
* Binding this expression means setting the result DataTypeServices.
* In this case, the result type is based on the rules in the table listed earlier.
*
* @param fromList The FROM list for the statement.
* @param subqueryList The subquery list being built as we find SubqueryNodes.
* @param aggregates The aggregate list being built as we find AggregateNodes.
*
* @return The new top of the expression tree.
*
* @exception StandardException Thrown on error
*/
@Override
ValueNode bindExpression(FromList fromList, SubqueryList subqueryList, List<AggregateNode> aggregates)
throws StandardException
{
//bind all the arguments
argumentsList.bindExpression(fromList, subqueryList, aggregates);
//There should be more than one argument
if (argumentsList.size() < 2)
throw StandardException.newException(SQLState.LANG_DB2_NUMBER_OF_ARGS_INVALID, functionName);
//check if all the arguments are parameters. If yes, then throw an exception
if (argumentsList.containsAllParameterNodes())
throw StandardException.newException(SQLState.LANG_DB2_COALESCE_FUNCTION_ALL_PARAMS);
int argumentsListSize = argumentsList.size();
//find the first non-param argument. The generated method will generate code to call coalesce on this argument
for (int index = 0; index < argumentsListSize; index++)
{
if (!argumentsList.elementAt(index).requiresTypeFromContext())
{
firstNonParameterNodeIdx = index;
break;
}
}
// Make sure these arguments are compatible to each other before
// coalesce can be allowed.
for (ValueNode vn : argumentsList) {
if (vn.requiresTypeFromContext()) {
// Since we don't know the type of param, can't check for
// compatibility.
continue;
}
argumentsList.compatible(vn);
}
// Set the result type to the most dominant datatype in the arguments
// list and based on the table listed above.
setType(argumentsList.getDominantTypeServices());
// Set all the parameter types to the type of the result type.
for (ValueNode vn : argumentsList)
{
if (vn.requiresTypeFromContext())
{
vn.setType(getTypeServices());
}
}
return this;
}
/**
* Do code generation for coalesce/value
*
* @param acb The ExpressionClassBuilder for the class we're generating
* @param mb The method the expression will go into
*
* @exception StandardException Thrown on error
*/
@Override
void generateExpression(ExpressionClassBuilder acb, MethodBuilder mb)
throws StandardException
{
int argumentsListSize = argumentsList.size();
String receiverType = ClassName.DataValueDescriptor;
String argumentsListInterfaceType = ClassName.DataValueDescriptor + "[]";
// Generate the code to build the array
LocalField arrayField =
acb.newFieldDeclaration(Modifier.PRIVATE, argumentsListInterfaceType);
/* The array gets created in the constructor.
* All constant elements in the array are initialized
* in the constructor.
*/
/* Assign the initializer to the DataValueDescriptor[] field */
MethodBuilder cb = acb.getConstructor();
cb.pushNewArray(ClassName.DataValueDescriptor, argumentsListSize);
cb.setField(arrayField);
/* Set the array elements that are constant */
int numConstants = 0;
MethodBuilder nonConstantMethod = null;
MethodBuilder currentConstMethod = cb;
for (int index = 0; index < argumentsListSize; index++)
{
MethodBuilder setArrayMethod;
if (argumentsList.elementAt(index) instanceof ConstantNode)
{
numConstants++;
/*if too many statements are added to a method,
*size of method can hit 65k limit, which will
*lead to the class format errors at load time.
*To avoid this problem, when number of statements added
*to a method is > 2048, remaing statements are added to a new function
*and called from the function which created the function.
*See Beetle 5135 or 4293 for further details on this type of problem.
*/
if(currentConstMethod.statementNumHitLimit(1))
{
MethodBuilder genConstantMethod = acb.newGeneratedFun("void", Modifier.PRIVATE);
currentConstMethod.pushThis();
currentConstMethod.callMethod(VMOpcode.INVOKEVIRTUAL,
(String) null,
genConstantMethod.getName(),
"void", 0);
//if it is a generate function, close the metod.
if(currentConstMethod != cb){
currentConstMethod.methodReturn();
currentConstMethod.complete();
}
currentConstMethod = genConstantMethod;
}
setArrayMethod = currentConstMethod;
} else {
if (nonConstantMethod == null)
nonConstantMethod = acb.newGeneratedFun("void", Modifier.PROTECTED);
setArrayMethod = nonConstantMethod;
}
setArrayMethod.getField(arrayField);
argumentsList.elementAt(index).generateExpression(acb, setArrayMethod);
setArrayMethod.upCast(receiverType);
setArrayMethod.setArrayElement(index);
}
//if a generated function was created to reduce the size of the methods close the functions.
if(currentConstMethod != cb){
currentConstMethod.methodReturn();
currentConstMethod.complete();
}
if (nonConstantMethod != null) {
nonConstantMethod.methodReturn();
nonConstantMethod.complete();
mb.pushThis();
mb.callMethod(VMOpcode.INVOKEVIRTUAL, (String) null, nonConstantMethod.getName(), "void", 0);
}
/*
** Call the method for coalesce/value function.
** First generate following
** <first non-param argument in the list>.method(<all the arguments>, <resultType>)
** Next, if we are dealing with result type that is variable length, then generate a call to setWidth.
*/
// coalesce will be called on this non-parameter argument
argumentsList.elementAt(firstNonParameterNodeIdx).
generateExpression(acb, mb);
mb.upCast(ClassName.DataValueDescriptor);
mb.getField(arrayField); // first arg to the coalesce function
//Following is for the second arg. This arg will be used to pass the return value.
//COALESCE method expects this to be initialized to NULL SQLxxx type object.
LocalField field = acb.newFieldDeclaration(Modifier.PRIVATE, receiverType);
acb.generateNull(mb, getTypeCompiler(), getTypeServices().getCollationType());
mb.upCast(ClassName.DataValueDescriptor);
mb.putField(field);
mb.callMethod(VMOpcode.INVOKEINTERFACE, receiverType, "coalesce", receiverType, 2);
if (getTypeId().variableLength())//since result type is variable length, generate setWidth code.
{
boolean isNumber = getTypeId().isNumericTypeId();
// to leave the DataValueDescriptor value on the stack, since setWidth is void
mb.dup();
mb.push(isNumber ? getTypeServices().getPrecision() : getTypeServices().getMaximumWidth());
mb.push(getTypeServices().getScale());
mb.push(true);
mb.callMethod(VMOpcode.INVOKEINTERFACE, ClassName.VariableSizeDataValue, "setWidth", "void", 3);
}
}
/*
print the non-node subfields
*/
@Override
public String toString()
{
if (SanityManager.DEBUG)
{
return
"functionName: " + functionName + "\n" +
"firstNonParameterNodeIdx: " + firstNonParameterNodeIdx + "\n" +
super.toString();
}
else
{
return "";
}
}
/**
* Prints the sub-nodes of this object. See QueryTreeNode.java for
* how tree printing is supposed to work.
*
* @param depth The depth of this node in the tree
*/
@Override
void printSubNodes(int depth)
{
if (SanityManager.DEBUG)
{
super.printSubNodes(depth);
printLabel(depth, "argumentsList: ");
argumentsList.treePrint(depth + 1);
}
}
/**
* {@inheritDoc}
*/
boolean isEquivalent(ValueNode o) throws StandardException
{
if (! isSameNodeKind(o)) {
return false;
}
CoalesceFunctionNode other = (CoalesceFunctionNode)o;
if (!argumentsList.isEquivalent(other.argumentsList))
{
return false;
}
return true;
}
/**
* Accept the visitor for all visitable children of this node.
*
* @param v the visitor
* @throws StandardException on error in the visitor
*/
@Override
void acceptChildren(Visitor v) throws StandardException
{
super.acceptChildren(v);
argumentsList = (ValueNodeList) argumentsList.accept(v);
}
/**
* Categorize this predicate.
*
* @see ValueNode#categorize(JBitSet, boolean)
*/
@Override
public boolean categorize(JBitSet referencedTabs, boolean simplePredsOnly)
throws StandardException
{
return argumentsList.categorize(referencedTabs, simplePredsOnly);
}
/**
* Preprocess an expression tree. We do a number of transformations
* here (including subqueries, IN lists, LIKE and BETWEEN) plus
* subquery flattening.
* NOTE: This is done before the outer ResultSetNode is preprocessed.
*
* @param numTables Number of tables in the DML Statement
* @param outerFromList FromList from outer query block
* @param outerSubqueryList SubqueryList from outer query block
* @param outerPredicateList PredicateList from outer query block
*
* @return The modified expression
*
* @exception StandardException Thrown on error
*/
@Override
ValueNode preprocess(int numTables,
FromList outerFromList,
SubqueryList outerSubqueryList,
PredicateList outerPredicateList)
throws StandardException
{
argumentsList.preprocess(
numTables,
outerFromList,
outerSubqueryList,
outerPredicateList);
return this;
}
/**
* Remap all the {@code ColumnReference}s in this tree to be clones of
* the underlying expression.
*
* @return the remapped tree
* @throws StandardException if an error occurs
*/
@Override
public ValueNode remapColumnReferencesToExpressions()
throws StandardException
{
argumentsList = argumentsList.remapColumnReferencesToExpressions();
return this;
}
}