org.apache.cassandra.cql3.functions.GenericFunctionRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-all Show documentation
Show all versions of cassandra-all Show documentation
A fork of the Apache Cassandra Project ready to embed Elasticsearch.
package org.apache.cassandra.cql3.functions;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.ServiceConfigurationError;
import java.util.ServiceLoader;
import org.apache.cassandra.db.marshal.AbstractType;
import org.apache.cassandra.exceptions.InvalidRequestException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Registry for generic CQL functions.
*
*/
public class GenericFunctionRegistry
{
private static final Logger logger = LoggerFactory.getLogger(GenericFunctionRegistry.class);
private static GenericFunctionRegistry instance = new GenericFunctionRegistry();
// Register generic functions available in the classpath and declared in META-INF/service/org.apache.cassandra.cql3.functions.IGenericFunction$Loader
static {
try
{
for(Iterator loaderIt = ServiceLoader.load(IGenericFunction.Loader.class).iterator(); loaderIt.hasNext(); )
{
IGenericFunction.Loader functionLoader = loaderIt.next();
functionLoader.register( functionLoader.getGenericFunctionClass() );
}
} catch (ServiceConfigurationError | IllegalAccessException e)
{
logger.error("Failed to load generic functions:"+e.getMessage(), e);
}
}
Map> registry;
private GenericFunctionRegistry()
{
this.registry = new HashMap>()
{{
put(ToJsonFct.NAME.name(), ToJsonFct.class);
}};
}
public static IGenericFunction getInstance(FunctionName functionName, List> argTypes) throws InvalidRequestException
{
Class extends IGenericFunction> clazz = instance.registry.get(functionName.name());
if (clazz != null)
{
try
{
Method m = clazz.getDeclaredMethod("getInstance", List.class);
return (IGenericFunction) m.invoke(null, argTypes);
} catch (NoSuchMethodException | SecurityException | IllegalAccessException | IllegalArgumentException | InvocationTargetException e)
{
throw new InvalidRequestException(String.format("Failed to instanciate function '%s':"+e.getMessage(), functionName));
}
}
return null;
}
public static boolean isGenericFunction(FunctionName functionName)
{
return instance.registry.containsKey(functionName.name());
}
public static void registerFunction(FunctionName functionName, Class extends IGenericFunction> functionClass)
{
instance.registry.put(functionName.name(), functionClass);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy