All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.bval.jsr303.xml.AnnotationIgnores Maven / Gradle / Ivy

/*
 * 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.bval.jsr303.xml;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.lang.reflect.Field;
import java.lang.reflect.Member;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * Description: This class instantiated during the parsing of the XML configuration
 * data and keeps track of the annotations which should be ignored.
*/ public final class AnnotationIgnores { private static final Logger log = LoggerFactory.getLogger(AnnotationIgnores.class); /** * Keeps track whether the 'ignore-annotations' flag is set on bean level in the * xml configuration. * If 'ignore-annotations' is not specified: default = true */ private final Map, Boolean> ignoreAnnotationDefaults = new HashMap, Boolean>(); /** * Keeps track of explicitly excluded members (fields and properties) for a given class. * If a member appears in * the list mapped to a given class 'ignore-annotations' was explicitly set to * true in the configuration * for this class. */ private final Map, List> ignoreAnnotationOnMember = new HashMap, List>(); private final Map, Boolean> ignoreAnnotationOnClass = new HashMap, Boolean>(); /** * Record the ignore state for a particular annotation type. * @param clazz * @param b, default true if null */ public void setDefaultIgnoreAnnotation(Class clazz, Boolean b) { ignoreAnnotationDefaults.put(clazz, b == null || b.booleanValue()); } /** * Learn whether the specified annotation type should be ignored. * @param clazz * @return boolean */ public boolean getDefaultIgnoreAnnotation(Class clazz) { return ignoreAnnotationDefaults.containsKey(clazz) && ignoreAnnotationDefaults.get(clazz); } /** * Ignore annotations on a particular {@link Member} of a class. * @param member */ public void setIgnoreAnnotationsOnMember(Member member) { Class beanClass = member.getDeclaringClass(); List memberList = ignoreAnnotationOnMember.get(beanClass); if (memberList == null) { memberList = new ArrayList(); ignoreAnnotationOnMember.put(beanClass, memberList); } memberList.add(member); } /** * Learn whether annotations should be ignored on a particular {@link Member} of a class. * @param member * @return boolean */ public boolean isIgnoreAnnotations(Member member) { boolean ignoreAnnotation; Class clazz = member.getDeclaringClass(); List ignoreAnnotationForMembers = ignoreAnnotationOnMember.get(clazz); if (ignoreAnnotationForMembers == null || !ignoreAnnotationForMembers.contains(member)) { ignoreAnnotation = getDefaultIgnoreAnnotation(clazz); } else { ignoreAnnotation = ignoreAnnotationForMembers.contains(member); } if (ignoreAnnotation) { logMessage(member, clazz); } return ignoreAnnotation; } private void logMessage(Member member, Class clazz) { String type; if (member instanceof Field) { type = "Field"; } else { type = "Property"; } log.debug("{} level annotations are getting ignored for {}.{}", new Object[]{type, clazz.getName(), member.getName()}); } /** * Record the ignore state of a particular class. * @param clazz * @param b */ public void setIgnoreAnnotationsOnClass(Class clazz, boolean b) { ignoreAnnotationOnClass.put(clazz, b); } /** * Learn whether annotations should be ignored for a given class. * @param clazz to check * @return boolean */ public boolean isIgnoreAnnotations(Class clazz) { boolean ignoreAnnotation; if (ignoreAnnotationOnClass.containsKey(clazz)) { ignoreAnnotation = ignoreAnnotationOnClass.get(clazz); } else { ignoreAnnotation = getDefaultIgnoreAnnotation(clazz); } if (ignoreAnnotation) { log.debug("Class level annotation are getting ignored for {}", clazz.getName()); } return ignoreAnnotation; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy