blob: d279b717624d48fa00a4f6ed2e1c8cd8f594c013 [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.openejb.config.rules;
import java.lang.reflect.Method;
import org.apache.openejb.OpenEJBException;
import org.apache.openejb.config.AppModule;
import org.apache.openejb.config.ClientModule;
import org.apache.openejb.config.DeploymentModule;
import org.apache.openejb.config.EjbModule;
import org.apache.openejb.config.ValidationContext;
import org.apache.openejb.config.ValidationRule;
import org.apache.openejb.jee.EnterpriseBean;
import org.apache.openejb.jee.EntityBean;
import org.apache.openejb.jee.MethodParams;
import org.apache.openejb.jee.PersistenceType;
import org.apache.openejb.util.Classes;
import org.apache.openejb.util.Join;
import org.apache.openejb.util.SafeToolkit;
/**
* @version $Rev: 1416371 $ $Date: 2012-12-03 07:57:08 +0000 (Mon, 03 Dec 2012) $
*/
public abstract class ValidationBase implements ValidationRule {
DeploymentModule module;
public void validate(AppModule appModule) {
final ClassLoader loader = Thread.currentThread().getContextClassLoader();
try {
for (EjbModule ejbModule : appModule.getEjbModules()) {
Thread.currentThread().setContextClassLoader(ejbModule.getClassLoader());
module = ejbModule;
validate(ejbModule);
}
for (ClientModule clientModule : appModule.getClientModules()) {
Thread.currentThread().setContextClassLoader(clientModule.getClassLoader());
module = clientModule;
validate(clientModule);
}
} finally {
Thread.currentThread().setContextClassLoader(loader);
}
}
public void validate(ClientModule appModule) {
}
public void validate(EjbModule appModule) {
}
public void error(EnterpriseBean bean, String key, Object... details) {
error(bean.getEjbName(), key, details);
}
private void error(String componentName, String key, Object... details) {
module.getValidation().error(componentName, key, details);
}
public void fail(EnterpriseBean bean, String key, Object... details) {
fail(bean.getEjbName(), key, details);
}
public void fail(String component, String key, Object... details) {
module.getValidation().fail(component, key, details);
}
public void warn(EnterpriseBean bean, String key, Object... details) {
warn(bean.getEjbName(), key, details);
}
protected void warn(String componentName, String key, Object... details) {
module.getValidation().warn(componentName, key, details);
}
public void missingMethod(ValidationContext set, EnterpriseBean bean, String key, String methodName, Class returnType, Class... paramTypes){
fail(bean, key, methodName, returnType.getName(), getParameters(paramTypes));
}
public void ignoredMethodAnnotation(String annotationType, EnterpriseBean bean, String className, String methodName, String beanType) {
warn(bean, "ignoredMethodAnnotation", annotationType, beanType, className, methodName);
}
public void ignoredClassAnnotation(String annotationType, EnterpriseBean bean, String className, String beanType) {
warn(bean, "ignoredClassAnnotation", annotationType, beanType, className);
}
public static boolean paramsMatch(Method methodA, Method methodB) {
if (methodA.getParameterTypes().length != methodB.getParameterTypes().length){
return false;
}
for (int i = 0; i < methodA.getParameterTypes().length; i++) {
Class<?> a = methodA.getParameterTypes()[i];
Class<?> b = methodB.getParameterTypes()[i];
if (!a.equals(b)) return false;
}
return true;
}
public String getParameters(Method method) {
Class[] params = method.getParameterTypes();
return getParameters(params);
}
public String getParameters(Class... params) {
StringBuilder paramString = new StringBuilder(512);
if (params.length > 0) {
paramString.append(params[0].getName());
}
for (int i = 1; i < params.length; i++) {
paramString.append(", ");
paramString.append(params[i]);
}
return paramString.toString();
}
public String getParameters(MethodParams methodParams) {
if(methodParams == null) {
return "";
} else {
return Join.join(",", methodParams.getMethodParam());
}
}
protected Class loadClass(String clazz) throws OpenEJBException {
ClassLoader cl = module.getClassLoader();
try {
return Classes.forName(clazz, cl);
} catch (ClassNotFoundException cnfe) {
throw new OpenEJBException(SafeToolkit.messages.format("cl0007", clazz, module.getJarLocation()), cnfe);
}
}
public boolean isCmp(EnterpriseBean b) {
if (b instanceof EntityBean) {
EntityBean entityBean = (EntityBean) b;
PersistenceType persistenceType = entityBean.getPersistenceType();
return persistenceType == PersistenceType.CONTAINER;
}
return false;
}
}