org.jboss.weld.interceptor.builder.InterceptionModelBuilder Maven / Gradle / Ivy
/*
* 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.builder;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.EnumMap;
import org.jboss.weld.interceptor.reader.TargetClassInterceptorMetadata;
import org.jboss.weld.interceptor.spi.metadata.InterceptorClassMetadata;
import org.jboss.weld.interceptor.spi.model.InterceptionModel;
import org.jboss.weld.interceptor.spi.model.InterceptionType;
/**
* This builder shouldn't be reused.
*
* @author Marius Bogoevici
* @author Marko Luksa
* @author Martin Kouba
*
*/
public class InterceptionModelBuilder {
private boolean isModelBuilt = false;
private boolean hasExternalNonConstructorInterceptors;
private final Set methodsIgnoringGlobalInterceptors = new HashSet();
private final Set> allInterceptors = new LinkedHashSet>();
private final Map>> globalInterceptors = new EnumMap>>(InterceptionType.class);
private final Map>>> methodBoundInterceptors = new EnumMap>>>(InterceptionType.class);
private TargetClassInterceptorMetadata targetClassInterceptorMetadata;
/**
* @return an immutable {@link InterceptionModel} instance
*/
public InterceptionModel build() {
checkModelNotBuilt();
isModelBuilt = true;
return new InterceptionModelImpl(this);
}
public void intercept(javax.enterprise.inject.spi.InterceptionType interceptionType, Method method, Collection> interceptors) {
checkModelNotBuilt();
InterceptionType weldInterceptionType = InterceptionType.valueOf(interceptionType);
if (weldInterceptionType.isLifecycleCallback()) {
throw new IllegalArgumentException("Illegal interception type: " + interceptionType);
}
if (null == methodBoundInterceptors.get(weldInterceptionType)) {
methodBoundInterceptors.put(weldInterceptionType, new HashMap>>());
}
List> interceptorsList = methodBoundInterceptors.get(weldInterceptionType).get(method);
if (interceptorsList == null) {
interceptorsList = new ArrayList>();
methodBoundInterceptors.get(weldInterceptionType).put(method, interceptorsList);
}
interceptorsList.addAll(interceptors);
intercept(weldInterceptionType, interceptorsList);
}
public void intercept(javax.enterprise.inject.spi.InterceptionType interceptionType, Collection> interceptors) {
checkModelNotBuilt();
InterceptionType weldInterceptionType = InterceptionType.valueOf(interceptionType);
List> interceptorsList = globalInterceptors.get(weldInterceptionType);
if (interceptorsList == null) {
interceptorsList = new ArrayList>();
globalInterceptors.put(weldInterceptionType, interceptorsList);
}
interceptorsList.addAll(interceptors);
intercept(weldInterceptionType, interceptorsList);
}
private void intercept(InterceptionType interceptionType, Collection> interceptors) {
if (interceptionType != InterceptionType.AROUND_CONSTRUCT) {
hasExternalNonConstructorInterceptors = true;
}
allInterceptors.addAll(interceptors);
}
public void addMethodIgnoringGlobalInterceptors(Method method) {
checkModelNotBuilt();
this.methodsIgnoringGlobalInterceptors.add(method);
}
boolean isHasExternalNonConstructorInterceptors() {
return hasExternalNonConstructorInterceptors;
}
Set getMethodsIgnoringGlobalInterceptors() {
return methodsIgnoringGlobalInterceptors;
}
Set> getAllInterceptors() {
return allInterceptors;
}
Map>> getGlobalInterceptors() {
return globalInterceptors;
}
Map>>> getMethodBoundInterceptors() {
return methodBoundInterceptors;
}
private void checkModelNotBuilt() {
if(isModelBuilt) {
throw new IllegalStateException("InterceptionModelBuilder cannot be reused");
}
}
TargetClassInterceptorMetadata getTargetClassInterceptorMetadata() {
return targetClassInterceptorMetadata;
}
public void setTargetClassInterceptorMetadata(TargetClassInterceptorMetadata targetClassInterceptorMetadata) {
this.targetClassInterceptorMetadata = targetClassInterceptorMetadata;
}
}