blob: fc8db1d94568840d668933834d4873be51c5a1e3 [file] [log] [blame]
/* Copyright 2004 The Apache Software Foundation
*
* 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 org.apache.xmlbeans.impl.store;
import java.util.List;
import java.util.Map;
import java.util.HashMap;
import java.lang.reflect.Constructor;
public final class QueryDelegate
{
private static HashMap _constructors = new HashMap();
private QueryDelegate()
{}
private static synchronized void init(String implClassName)
{
// default to Saxon
if (implClassName == null)
implClassName = "org.apache.xmlbeans.impl.xquery.saxon.XBeansXQuery";
Class queryInterfaceImpl = null;
boolean engineAvailable = true;
try
{
queryInterfaceImpl = Class.forName(implClassName);
}
catch (ClassNotFoundException e)
{
engineAvailable = false;
}
catch (NoClassDefFoundError e)
{
engineAvailable = false;
}
if (engineAvailable)
{
try
{
Constructor constructor = queryInterfaceImpl.getConstructor(
new Class[] {String.class, String.class, Integer.class});
_constructors.put(implClassName, constructor);
}
catch (Exception e)
{
throw new RuntimeException(e);
}
}
}
public static synchronized QueryInterface createInstance(String implClassName,
String query, String contextVar, int boundary)
{
if (_constructors.get(implClassName) == null)
init(implClassName);
if (_constructors.get(implClassName) == null)
return null;
Constructor constructor = (Constructor)_constructors.get(implClassName);
try
{
return (QueryInterface)constructor.newInstance(
new Object[] {query, contextVar, new Integer(boundary)});
}
catch (Exception e)
{
throw new RuntimeException(e);
}
}
public static interface QueryInterface
{
public List execQuery(Object node, Map variableBindings);
}
}