org.jboss.weld.injection.spi.helpers.AbstractResourceServices Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weld-servlet-shaded Show documentation
Show all versions of weld-servlet-shaded Show documentation
This jar bundles all the bits of Weld and CDI required for running in a Servlet container.
/*
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* 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.jboss.weld.injection.spi.helpers;
import java.beans.Introspector;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import javax.annotation.Resource;
import javax.enterprise.inject.spi.Annotated;
import javax.enterprise.inject.spi.AnnotatedParameter;
import javax.enterprise.inject.spi.InjectionPoint;
import javax.naming.Context;
import javax.naming.NamingException;
import org.jboss.weld.bootstrap.api.Service;
import org.jboss.weld.injection.spi.ResourceInjectionServices;
import org.jboss.weld.injection.spi.ResourceReference;
import org.jboss.weld.injection.spi.ResourceReferenceFactory;
public abstract class AbstractResourceServices implements Service, ResourceInjectionServices {
private static final String RESOURCE_LOOKUP_PREFIX = "java:comp/env";
// because checkstyle magic numbers
private static final int GET_PREFIX_LENGTH = "get".length();
public Object resolveResource(InjectionPoint injectionPoint) {
if (getResourceAnnotation(injectionPoint) == null) {
throw new IllegalArgumentException("No @Resource annotation found on injection point " + injectionPoint);
}
if (injectionPoint.getMember() instanceof Method
&& ((Method) injectionPoint.getMember()).getParameterTypes().length != 1) {
throw new IllegalArgumentException(
"Injection point represents a method which doesn't follow JavaBean conventions (must have exactly one parameter) "
+ injectionPoint);
}
String name = getResourceName(injectionPoint);
try {
return getContext().lookup(name);
} catch (NamingException e) {
return handleNamingException(e, name);
}
}
public Object resolveResource(String jndiName, String mappedName) {
String name = getResourceName(jndiName, mappedName);
try {
return getContext().lookup(name);
} catch (NamingException e) {
return handleNamingException(e, name);
}
}
private Object handleNamingException(NamingException e, String name) {
throw new RuntimeException("Error looking up " + name + " in JNDI", e);
}
protected String getResourceName(String jndiName, String mappedName) {
if (mappedName != null) {
return mappedName;
} else if (jndiName != null) {
return jndiName;
} else {
throw new IllegalArgumentException("Both jndiName and mappedName are null");
}
}
protected abstract Context getContext();
protected String getResourceName(InjectionPoint injectionPoint) {
Resource resource = getResourceAnnotation(injectionPoint);
String mappedName = resource.mappedName();
if (!mappedName.equals("")) {
return mappedName;
}
String name = resource.name();
if (!name.equals("")) {
return RESOURCE_LOOKUP_PREFIX + "/" + name;
}
String propertyName;
if (injectionPoint.getMember() instanceof Field) {
propertyName = injectionPoint.getMember().getName();
} else if (injectionPoint.getMember() instanceof Method) {
propertyName = getPropertyName((Method) injectionPoint.getMember());
if (propertyName == null) {
throw new IllegalArgumentException("Injection point represents a method which doesn't follow "
+ "JavaBean conventions (unable to determine property name) " + injectionPoint);
}
} else {
throw new AssertionError("Unable to inject into " + injectionPoint);
}
String className = injectionPoint.getMember().getDeclaringClass().getName();
return RESOURCE_LOOKUP_PREFIX + "/" + className + "/" + propertyName;
}
public static String getPropertyName(Method method) {
String methodName = method.getName();
if (methodName.matches("^(get).*") && method.getParameterTypes().length == 0) {
return Introspector.decapitalize(methodName.substring(GET_PREFIX_LENGTH));
} else if (methodName.matches("^(is).*") && method.getParameterTypes().length == 0) {
return Introspector.decapitalize(methodName.substring(2));
} else {
return null;
}
}
/*
* Trivial implementation that does *not* leverage bootstrap validation nor caching
*/
@Override
public ResourceReferenceFactory