Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* JBoss, Home of Professional Open Source
* Copyright 2012, 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.resources;
import static org.jboss.weld.util.cache.LoadingCacheUtils.getCacheValue;
import java.lang.annotation.Annotation;
import java.lang.reflect.AnnotatedElement;
import java.lang.reflect.Constructor;
import java.lang.reflect.Member;
import java.lang.reflect.Method;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
import javax.enterprise.context.NormalScope;
import javax.inject.Scope;
import org.jboss.weld.annotated.slim.backed.BackedAnnotatedParameter;
import org.jboss.weld.bootstrap.api.helpers.AbstractBootstrapService;
import org.jboss.weld.metadata.TypeStore;
import org.jboss.weld.util.collections.Arrays2;
import com.google.common.cache.CacheBuilder;
import com.google.common.cache.CacheLoader;
import com.google.common.cache.LoadingCache;
import com.google.common.collect.ImmutableSet;
public class DefaultReflectionCache extends AbstractBootstrapService implements ReflectionCache {
private final TypeStore store;
protected Annotation[] internalGetAnnotations(AnnotatedElement element) {
return element.getAnnotations();
}
protected Annotation[] internalGetDeclaredAnnotations(AnnotatedElement element) {
return element.getDeclaredAnnotations();
}
private static class Annotations {
private final Annotation[] annotations;
private final Set annotationSet;
public Annotations(Annotation[] annotations) {
if (annotations.length == 0) {
this.annotations = Arrays2.EMPTY_ANNOTATION_ARRAY;
this.annotationSet = Collections.emptySet();
} else {
this.annotations = annotations;
this.annotationSet = ImmutableSet.copyOf(annotations);
}
}
}
private final LoadingCache annotations;
private final LoadingCache declaredAnnotations;
private final LoadingCache, Annotation[][]> constructorParameterAnnotations;
private final LoadingCache methodParameterAnnotations;
private final LoadingCache, Set> parameterAnnotationSet;
private final LoadingCache, Set> backedAnnotatedTypeAnnotations;
private final LoadingCache, Boolean> isScopeAnnotation;
public DefaultReflectionCache(TypeStore store) {
this.store = store;
CacheBuilder