Java tutorial
/* * 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.util; import java.lang.annotation.Annotation; import java.util.Collection; import java.util.HashSet; import java.util.Set; import javax.enterprise.inject.spi.AnnotatedType; import javax.interceptor.InterceptorBinding; import org.jboss.weld.annotated.enhanced.EnhancedAnnotatedType; import org.jboss.weld.logging.BeanManagerLogger; import org.jboss.weld.manager.BeanManagerImpl; import org.jboss.weld.metadata.cache.MetaAnnotationStore; import com.google.common.collect.HashMultimap; import com.google.common.collect.Multimap; /** * Helper class for working with interceptors and interceptor bindings. * @author Jozef Hartinger * */ public class Interceptors { private Interceptors() { } /** * Extracts a set of interceptor bindings from a collection of annotations. * @param beanManager * @param annotations * @return */ public static Set<Annotation> filterInterceptorBindings(BeanManagerImpl beanManager, Collection<Annotation> annotations) { Set<Annotation> interceptorBindings = new InterceptorBindingSet(beanManager); for (Annotation annotation : annotations) { if (beanManager.isInterceptorBinding(annotation.annotationType())) { interceptorBindings.add(annotation); } } return interceptorBindings; } /** * Extracts a flat set of interception bindings from a given set of interceptor bindings. * * @param addTopLevelInterceptorBindings add top level interceptor bindings to the result set. * @param addInheritedInterceptorBindings add inherited level interceptor bindings to the result set. * @return */ public static Set<Annotation> flattenInterceptorBindings(BeanManagerImpl beanManager, Collection<Annotation> annotations, boolean addTopLevelInterceptorBindings, boolean addInheritedInterceptorBindings) { Set<Annotation> flattenInterceptorBindings = new InterceptorBindingSet(beanManager); if (addTopLevelInterceptorBindings) { for (Annotation annotation : annotations) { boolean added = flattenInterceptorBindings.add(annotation); if (!added) { throw BeanManagerLogger.LOG.duplicateInterceptorBinding(annotations); } } } if (addInheritedInterceptorBindings) { for (Annotation annotation : annotations) { addInheritedInterceptorBindings(annotation.annotationType(), beanManager.getServices().get(MetaAnnotationStore.class), flattenInterceptorBindings); } } return flattenInterceptorBindings; } private static void addInheritedInterceptorBindings(Class<? extends Annotation> bindingType, MetaAnnotationStore store, Set<Annotation> inheritedBindings) { Set<Annotation> metaBindings = store.getInterceptorBindingModel(bindingType) .getInheritedInterceptionBindingTypes(); inheritedBindings.addAll(metaBindings); for (Annotation metaBinding : metaBindings) { addInheritedInterceptorBindings(metaBinding.annotationType(), store, inheritedBindings); } } /** * Merge class-level interceptor bindings with interceptor bindings inherited from interceptor bindings and stereotypes. */ public static Multimap<Class<? extends Annotation>, Annotation> mergeBeanInterceptorBindings( BeanManagerImpl beanManager, EnhancedAnnotatedType<?> clazz, Collection<Class<? extends Annotation>> stereotypes) { Set<Annotation> rawBindings = clazz.getMetaAnnotations(InterceptorBinding.class); Set<Annotation> classBindingAnnotations = flattenInterceptorBindings(beanManager, filterInterceptorBindings(beanManager, rawBindings), true, false); Set<Annotation> inheritedBindingAnnotations = new HashSet<Annotation>(); inheritedBindingAnnotations.addAll(flattenInterceptorBindings(beanManager, filterInterceptorBindings(beanManager, rawBindings), false, true)); for (Class<? extends Annotation> annotation : stereotypes) { inheritedBindingAnnotations.addAll(flattenInterceptorBindings(beanManager, filterInterceptorBindings(beanManager, beanManager.getStereotypeDefinition(annotation)), true, true)); } return mergeBeanInterceptorBindings(beanManager, clazz, classBindingAnnotations, inheritedBindingAnnotations); } /** * Merge class-level interceptor bindings with interceptor bindings inherited from interceptor bindings and stereotypes. */ public static Multimap<Class<? extends Annotation>, Annotation> mergeBeanInterceptorBindings( BeanManagerImpl beanManager, AnnotatedType<?> clazz, Collection<Annotation> classBindingAnnotations, Collection<Annotation> inheritedBindingAnnotations) { Multimap<Class<? extends Annotation>, Annotation> mergedBeanBindings = HashMultimap.create(); Set<Annotation> acceptedInheritedBindings = new HashSet<Annotation>(); // add all class-level interceptor bindings (these have precedence) for (Annotation bindingAnnotation : classBindingAnnotations) { mergedBeanBindings.put(bindingAnnotation.annotationType(), bindingAnnotation); } // add inherited interceptor bindings for (Annotation bindingAnnotation : inheritedBindingAnnotations) { Class<? extends Annotation> bindingAnnotationType = bindingAnnotation.annotationType(); // replace the previous interceptor binding with current binding if (!mergedBeanBindings.containsKey(bindingAnnotationType)) { acceptedInheritedBindings.add(bindingAnnotation); } } for (Annotation bindingAnnotation : acceptedInheritedBindings) { mergedBeanBindings.put(bindingAnnotation.annotationType(), bindingAnnotation); } return mergedBeanBindings; } }