/**
* Copyright 2011-2013 Akiban Technologies, Inc.
*
* Licensed 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 com.akiban.sql.parser;
import com.akiban.sql.StandardException;
/**
* List of IndexColumns. Also notes application of up to one function to
* a consecutive list of IndexColumns.
*/
public class IndexColumnList extends QueryTreeNodeList<IndexColumn>
{
private FunctionApplication functionApplication;
public static enum FunctionType
{
Z_ORDER_LAT_LON, FULL_TEXT
// ADD MORE AS NEEDED
}
private static class FunctionApplication
{
public FunctionApplication(FunctionType functionType,
int firstArgumentPosition,
int nArguments)
{
this.functionType = functionType;
this.firstArgumentPosition = firstArgumentPosition;
this.lastArgumentPosition = firstArgumentPosition + nArguments - 1;
this.nArguments = nArguments;
}
public final FunctionType functionType;
public final int firstArgumentPosition;
public final int lastArgumentPosition;
public final int nArguments;
}
public void applyFunction(Object functionType,
int firstArgumentPosition,
int nArguments) throws StandardException
{
if (functionApplication != null) {
throw new StandardException("Cannot use multiple functions in one index definition");
}
functionApplication = new FunctionApplication((FunctionType) functionType,
firstArgumentPosition,
nArguments);
}
public int firstFunctionArg()
{
return
functionApplication == null
? Integer.MAX_VALUE
: functionApplication.firstArgumentPosition;
}
public int lastFunctionArg()
{
return
functionApplication == null
? Integer.MIN_VALUE
: functionApplication.lastArgumentPosition;
}
public FunctionType functionType()
{
return functionApplication == null ? null : functionApplication.functionType;
}
@Override
public void copyFrom(QueryTreeNode node) throws StandardException
{
super.copyFrom(node);
IndexColumnList that = (IndexColumnList) node;
this.functionApplication = that.functionApplication;
}
@Override
public String toString()
{
return
functionApplication != null
? String.format("\nmethodName: %s\nfirstArg: %s\nlastArg: %s\n",
functionApplication.functionType, functionApplication.firstArgumentPosition, functionApplication.lastArgumentPosition)
: super.toString();
}
}