
com.orientechnologies.lucene.functions.OLuceneFunctionsFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orientdb-lucene Show documentation
Show all versions of orientdb-lucene Show documentation
Lucene plugin for OrientDB NoSQL document graph dbms
/*
* Copyright 2014 Orient Technologies.
*
* 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.orientechnologies.lucene.functions;
import com.orientechnologies.common.exception.OException;
import com.orientechnologies.orient.core.exception.OCommandExecutionException;
import com.orientechnologies.orient.core.sql.functions.OSQLFunction;
import com.orientechnologies.orient.core.sql.functions.OSQLFunctionFactory;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
public class OLuceneFunctionsFactory implements OSQLFunctionFactory {
public static final Map FUNCTIONS = new HashMap();
static {
}
public static void register(final String iName, final Object iImplementation) {
FUNCTIONS.put(iName.toLowerCase(), iImplementation);
}
@Override
public boolean hasFunction(String iName) {
return FUNCTIONS.containsKey(iName);
}
@Override
public Set getFunctionNames() {
return FUNCTIONS.keySet();
}
@Override
public OSQLFunction createFunction(String name) throws OCommandExecutionException {
final Object obj = FUNCTIONS.get(name);
if (obj == null)
throw new OCommandExecutionException("Unknown function name :" + name);
if (obj instanceof OSQLFunction)
return (OSQLFunction) obj;
else {
// it's a class
final Class> clazz = (Class>) obj;
try {
return (OSQLFunction) clazz.newInstance();
} catch (Exception e) {
throw OException.wrapException(new OCommandExecutionException("Error in creation of function " + name
+ "(). Probably there is not an empty constructor or the constructor generates errors"), e);
}
}
}
public Map getFunctions() {
return FUNCTIONS;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy