org.jboss.weld.interceptor.util.InterceptionUtils 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 2009, Red Hat, Inc. and/or its affiliates, 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.interceptor.util;
import java.util.concurrent.Callable;
import org.jboss.weld.Container;
import org.jboss.weld.bootstrap.api.Environment;
import org.jboss.weld.bootstrap.api.Environments;
import org.jboss.weld.interceptor.proxy.InterceptorException;
import org.jboss.weld.interceptor.proxy.LifecycleMixin;
import org.jboss.weld.interceptor.spi.model.InterceptionType;
/**
* @author Marius Bogoevici
*/
public class InterceptionUtils {
public static final String POST_CONSTRUCT = "lifecycle_mixin_$$_postConstruct";
public static final String PRE_DESTROY = "lifecycle_mixin_$$_preDestroy";
private InterceptionUtils() {
}
private static void executePostConstruct(Object proxy, Callable callback) {
if (proxy instanceof LifecycleMixin) {
LifecycleMixin lifecycleMixin = (LifecycleMixin) proxy;
lifecycleMixin.lifecycle_mixin_$$_postConstruct();
}
if (callback != null) {
try {
callback.call();
} catch (Exception e) {
throw new InterceptorException(e);
}
}
}
public static void executePostConstruct(Object proxy) {
executePostConstruct(proxy, null);
}
private static void executePredestroy(Object proxy, Callable callback) {
if (proxy instanceof LifecycleMixin) {
LifecycleMixin lifecycleMixin = (LifecycleMixin) proxy;
lifecycleMixin.lifecycle_mixin_$$_preDestroy();
}
if (callback != null) {
try {
callback.call();
} catch (Exception e) {
throw new InterceptorException(e);
}
}
}
public static void executePredestroy(Object proxy) {
executePredestroy(proxy, null);
}
static boolean isAnnotationClassExpected(InterceptionType interceptionType) {
if (InterceptionType.POST_ACTIVATE.equals(interceptionType) || InterceptionType.PRE_PASSIVATE.equals(interceptionType)) {
Environment environment = Container.getEnvironment();
if (environment != null && (Environments.SE.equals(environment) || Environments.SERVLET.equals(environment))) {
return false;
}
}
return true;
}
}