blob: 1164705612e3d6db7ace5a69e007a471fb5eeaa4 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.uima.impl;
import java.util.Map;
import org.apache.uima.Constants;
import org.apache.uima.ResourceFactory;
import org.apache.uima.analysis_engine.impl.UimacppAnalysisEngineImpl;
import org.apache.uima.collection.CasConsumer;
import org.apache.uima.collection.CasConsumerDescription;
import org.apache.uima.collection.base_cpm.CasDataConsumer;
import org.apache.uima.resource.Resource;
import org.apache.uima.resource.ResourceInitializationException;
import org.apache.uima.resource.ResourceManager;
import org.apache.uima.resource.ResourceSpecifier;
import org.apache.uima.uimacpp.UimacppAnalysisComponent;
/**
* Specialized Resource Factory for producing CasConsumers.
*
*
*/
public class CasConsumerFactory_impl implements ResourceFactory {
/**
* @see org.apache.uima.ResourceFactory#produceResource(java.lang.Class,
* org.apache.uima.resource.ResourceSpecifier, java.util.Map)
*/
public Resource produceResource(Class<? extends Resource> aResourceClass, ResourceSpecifier aSpecifier,
Map<String, Object> aAdditionalParams) throws ResourceInitializationException {
if (aSpecifier instanceof CasConsumerDescription) {
CasConsumerDescription desc = (CasConsumerDescription) aSpecifier;
final String frameworkImpl = desc.getFrameworkImplementation();
if (frameworkImpl == null || frameworkImpl.length() == 0) {
throw new ResourceInitializationException(
ResourceInitializationException.MISSING_FRAMEWORK_IMPLEMENTATION,
new Object[] { aSpecifier.getSourceUrlString() });
}
if (frameworkImpl.startsWith(Constants.JAVA_FRAMEWORK_NAME)) {
String className = desc.getImplementationName();
if (className == null || className.length() == 0) {
throw new ResourceInitializationException(
ResourceInitializationException.MISSING_IMPLEMENTATION_CLASS_NAME,
new Object[] { aSpecifier.getSourceUrlString() });
}
// load class using UIMA Extension ClassLoader if there is one
ClassLoader cl = null;
Class<?> implClass = null;
ResourceManager resourceManager = null;
if (aAdditionalParams != null) {
resourceManager = (ResourceManager) aAdditionalParams
.get(Resource.PARAM_RESOURCE_MANAGER);
}
if (resourceManager != null) {
cl = resourceManager.getExtensionClassLoader();
}
if (cl == null) {
cl = this.getClass().getClassLoader();
}
try {
implClass = Class.forName(className, true, cl);
} catch (ClassNotFoundException e) {
throw new ResourceInitializationException(
ResourceInitializationException.CLASS_NOT_FOUND, new Object[] { className,
aSpecifier.getSourceUrlString() }, e);
}
// check to see if this is a subclass of Cas[Data]Consumer and of aResourceClass
if (!CasConsumer.class.isAssignableFrom(implClass)
&& !CasDataConsumer.class.isAssignableFrom(implClass)) {
throw new ResourceInitializationException(
ResourceInitializationException.NOT_A_CAS_CONSUMER, new Object[] { className,
aSpecifier.getSourceUrlString() });
}
if (!aResourceClass.isAssignableFrom(implClass)) {
throw new ResourceInitializationException(
ResourceInitializationException.RESOURCE_DOES_NOT_IMPLEMENT_INTERFACE,
new Object[] { className, aResourceClass.getName(),
aSpecifier.getSourceUrlString() });
}
// instantiate this Resource Class
Resource resource;
try {
resource = (Resource) implClass.newInstance();
} catch (InstantiationException e) {
throw new ResourceInitializationException(
ResourceInitializationException.COULD_NOT_INSTANTIATE, new Object[] { className,
aSpecifier.getSourceUrlString() }, e);
} catch (IllegalAccessException e) {
throw new ResourceInitializationException(
ResourceInitializationException.COULD_NOT_INSTANTIATE, new Object[] { className,
aSpecifier.getSourceUrlString() }, e);
}
// attempt to initialize it
if (resource.initialize(aSpecifier, aAdditionalParams)) {
// success!
return resource;
} else
// failure, for some unknown reason :( This isn't likely to happen
{
throw new ResourceInitializationException(
ResourceInitializationException.ERROR_INITIALIZING_FROM_DESCRIPTOR, new Object[] {
className, aSpecifier.getSourceUrlString() });
}
} else if (frameworkImpl.startsWith(Constants.CPP_FRAMEWORK_NAME)) {
Resource resource = new UimacppAnalysisEngineImpl();
if (resource.initialize(aSpecifier, aAdditionalParams)) {
// success!
return resource;
} else
// failure, for some unknown reason :( This isn't likely to happen
{
throw new ResourceInitializationException(
ResourceInitializationException.ERROR_INITIALIZING_FROM_DESCRIPTOR, new Object[] {
UimacppAnalysisComponent.class.getName(), aSpecifier.getSourceUrlString() });
}
} else {
throw new ResourceInitializationException(
ResourceInitializationException.UNSUPPORTED_FRAMEWORK_IMPLEMENTATION, new Object[] {
desc.getFrameworkImplementation(), aSpecifier.getSourceUrlString() });
}
} else {
return null;
}
}
}