Package adql.query.operand.function
Class DefaultUDF
- java.lang.Object
-
- adql.query.operand.function.ADQLFunction
-
- adql.query.operand.function.UserDefinedFunction
-
- adql.query.operand.function.DefaultUDF
-
- All Implemented Interfaces:
ADQLObject,ADQLOperand,UnknownType
public final class DefaultUDF extends UserDefinedFunction
It represents any function which is not managed by ADQL.- Version:
- 1.4 (06/2015)
- Author:
- Grégory Mantelet (CDS;ARI)
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class adql.query.operand.function.ADQLFunction
ADQLFunction.ParameterIterator
-
-
Field Summary
Fields Modifier and Type Field Description protected FunctionDefdefinitionDefine/Describe this user defined function.protected java.lang.StringfunctionNameParsed name of this UDF.protected ADQLList<ADQLOperand>parametersIts parsed parameters.
-
Constructor Summary
Constructors Constructor Description DefaultUDF(DefaultUDF toCopy)Builds a UserFunction by copying the given one.DefaultUDF(java.lang.String name, ADQLOperand[] params)Creates a user function.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ADQLObjectgetCopy()Gets a (deep) copy of this ADQL object.FunctionDefgetDefinition()Get the signature/definition/description of this user defined function.java.lang.StringgetName()Gets the name of this object in ADQL.intgetNbParameters()Gets the number of parameters this function has.ADQLOperandgetParameter(int index)Gets the index-th parameter.ADQLOperand[]getParameters()Gets the list of all parameters of this function.booleanisGeometry()Tell whether this operand is a geometrical region or not.booleanisNumeric()Tell whether this operand is numeric or not.booleanisString()Tell whether this operand is a string or not.voidsetDefinition(FunctionDef def)Let set the signature/definition/description of this user defined function.ADQLOperandsetParameter(int index, ADQLOperand replacer)Function to override if you want to check the parameters of this user defined function.java.lang.Stringtranslate(ADQLTranslator caller)Translate this User Defined Function into the language supported by the given translator.-
Methods inherited from class adql.query.operand.function.UserDefinedFunction
getExpectedType, setExpectedType
-
Methods inherited from class adql.query.operand.function.ADQLFunction
adqlIterator, getPosition, paramIterator, setPosition, toADQL
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface adql.query.ADQLObject
adqlIterator, getPosition, toADQL
-
-
-
-
Field Detail
-
definition
protected FunctionDef definition
Define/Describe this user defined function. This object gives the return type and the number and type of all parameters.
-
parameters
protected final ADQLList<ADQLOperand> parameters
Its parsed parameters.
-
functionName
protected final java.lang.String functionName
Parsed name of this UDF.
-
-
Constructor Detail
-
DefaultUDF
public DefaultUDF(java.lang.String name, ADQLOperand[] params) throws java.lang.NullPointerExceptionCreates a user function.- Parameters:
params- Parameters of the function.- Throws:
java.lang.NullPointerException
-
DefaultUDF
public DefaultUDF(DefaultUDF toCopy) throws java.lang.Exception
Builds a UserFunction by copying the given one.- Parameters:
toCopy- The UserFunction to copy.- Throws:
java.lang.Exception- If there is an error during the copy.
-
-
Method Detail
-
getDefinition
public final FunctionDef getDefinition()
Get the signature/definition/description of this user defined function. The returned object provides information on the return type and the number and type of parameters.- Returns:
- Definition of this function. (MAY be NULL)
-
setDefinition
public final void setDefinition(FunctionDef def) throws java.lang.IllegalArgumentException
Let set the signature/definition/description of this user defined function.
IMPORTANT: No particular checks are done here except on the function name which MUST be the same (case insensitive) as the name of the given definition. Advanced checks must have been done before calling this setter.
- Parameters:
def- The definition applying to this parsed UDF, or NULL if none has been found.- Throws:
java.lang.IllegalArgumentException- If the name in the given definition does not match the name of this parsed function.- Since:
- 1.3
-
isNumeric
public final boolean isNumeric()
Description copied from interface:ADQLOperandTell whether this operand is numeric or not.- Returns:
- true if this operand is numeric, false otherwise.
-
isString
public final boolean isString()
Description copied from interface:ADQLOperandTell whether this operand is a string or not.- Returns:
- true if this operand is a string, false otherwise.
-
isGeometry
public final boolean isGeometry()
Description copied from interface:ADQLOperandTell whether this operand is a geometrical region or not.- Returns:
- true if this operand is a geometry, false otherwise.
-
getCopy
public ADQLObject getCopy() throws java.lang.Exception
Description copied from interface:ADQLObjectGets a (deep) copy of this ADQL object.- Returns:
- The copy of this ADQL object.
- Throws:
java.lang.Exception- If there is any error during the copy.
-
getName
public final java.lang.String getName()
Description copied from interface:ADQLObjectGets the name of this object in ADQL.- Returns:
- The name of this ADQL object.
-
getParameters
public final ADQLOperand[] getParameters()
Description copied from class:ADQLFunctionGets the list of all parameters of this function.- Specified by:
getParametersin classADQLFunction- Returns:
- Its parameters list.
-
getNbParameters
public final int getNbParameters()
Description copied from class:ADQLFunctionGets the number of parameters this function has.- Specified by:
getNbParametersin classADQLFunction- Returns:
- Number of parameters.
-
getParameter
public final ADQLOperand getParameter(int index) throws java.lang.ArrayIndexOutOfBoundsException
Description copied from class:ADQLFunctionGets the index-th parameter.- Specified by:
getParameterin classADQLFunction- Parameters:
index- Parameter number.- Returns:
- The corresponding parameter.
- Throws:
java.lang.ArrayIndexOutOfBoundsException- If the index is incorrect (index < 0 || index >= getNbParameters()).
-
setParameter
public ADQLOperand setParameter(int index, ADQLOperand replacer) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.NullPointerException, java.lang.Exception
Function to override if you want to check the parameters of this user defined function.- Specified by:
setParameterin classADQLFunction- Parameters:
index- Index of the parameter to replace.replacer- The replacer.- Returns:
- The replaced parameter.
- Throws:
java.lang.ArrayIndexOutOfBoundsException- If the index is incorrect (index < 0 || index >= getNbParameters()).java.lang.NullPointerException- If a required parameter must be replaced by a NULL object.java.lang.Exception- If another error occurs.- See Also:
ADQLFunction.setParameter(int, adql.query.operand.ADQLOperand)
-
translate
public java.lang.String translate(ADQLTranslator caller) throws TranslationException
Description copied from class:UserDefinedFunctionTranslate this User Defined Function into the language supported by the given translator.
VERY IMPORTANT: This function MUST NOT use
ADQLTranslator.translate(UserDefinedFunction)to translate itself. The givenADQLTranslatormust be used ONLY to translate UDF's operands.Implementation example (extract of
translate(ADQLTranslator)):public String translate(final ADQLTranslator caller) throws TranslationException{ StringBuffer sql = new StringBuffer(functionName); sql.append('('); for(int i = 0; i < parameters.size(); i++){ if (i > 0) sql.append(',').append(' '); sql.append(caller.translate(parameters.get(i))); } sql.append(')'); return sql.toString(); }- Specified by:
translatein classUserDefinedFunction- Parameters:
caller- Translator to use in order to translate ONLY function parameters.- Returns:
- The translation of this UDF into the language supported by the given translator.
- Throws:
TranslationException- If one of the parameters can not be translated.
-
-