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

bboss.org.apache.velocity.util.introspection.IntrospectorCache Maven / Gradle / Ivy

Go to download

bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com

The newest version!
package bboss.org.apache.velocity.util.introspection;

/*
 * 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.
 */

import org.apache.commons.lang3.Validate;

import org.slf4j.Logger;

import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

/**
 * This is the internal introspector cache implementation.
 *
 * @author Henning P. Schmiedehausen
 * @author Candid Dauth
 * @version $Id$
 * @since 1.5
 */
public final class IntrospectorCache
{
    /**
     * define a public string so that it can be looked for if interested
     */
    public final static String CACHEDUMP_MSG =
            "IntrospectorCache detected classloader change. Dumping cache.";

    /** Class logger */
    private final Logger log;

    /**
     * Holds the method maps for the classes we know about. Map: Class --> ClassMap object.
     */
    private final Map, ClassMap> classMapCache = new HashMap<>();

    /**
     * Holds the field maps for the classes we know about. Map: Class --> ClassFieldMap object.
     */
    private final Map, ClassFieldMap> classFieldMapCache = new HashMap<>();

    /**
     * Keep the names of the classes in another map. This is needed for a multi-classloader environment where it is possible
     * to have Class 'Foo' loaded by a classloader and then get asked to introspect on 'Foo' from another class loader. While these
     * two Class objects have the same name, a classMethodMaps.get(Foo.class) will return null. For that case, we
     * keep a set of class names to recognize this case.
     */
    private final Set classNameCache = new HashSet<>();

    /**
     * Conversion handler
     */
    private final TypeConversionHandler conversionHandler;

    /**
     * C'tor
     * @param log logger.
     * @param conversionHandler conversion handler
     */
    public IntrospectorCache(final Logger log, final TypeConversionHandler conversionHandler)
    {
        this.log = log;
        this.conversionHandler = conversionHandler;
    }

    /**
     * Clears the internal cache.
     */
    public void clear()
    {
        synchronized (classMapCache)
        {
            classMapCache.clear();
            classFieldMapCache.clear();
            classNameCache.clear();
            log.debug(CACHEDUMP_MSG);
        }
    }

    /**
     * Lookup a given Class object in the cache. If it does not exist,
     * check whether this is due to a class change and purge the caches
     * eventually.
     *
     * @param c The class to look up.
     * @return A ClassMap object or null if it does not exist in the cache.
     */
    public ClassMap get(final Class c)
    {
        ClassMap classMap = classMapCache.get(Validate.notNull(c));
        if (classMap == null)
        {
            /*
             * check to see if we have it by name.
             * if so, then we have an object with the same
             * name but loaded through a different class loader.
             * In that case, we will just dump the cache to be sure.
             */
            synchronized (classMapCache)
            {
                if (classNameCache.contains(c.getName()))
                {
                    clear();
                }
            }
        }
        return classMap;
    }

    /**
     * Lookup a given Class object in the cache. If it does not exist,
     * check whether this is due to a class change and purge the caches
     * eventually.
     *
     * @param c The class to look up.
     * @return A ClassFieldMap object or null if it does not exist in the cache.
     */
    public ClassFieldMap getFieldMap(final Class c)
    {
        ClassFieldMap classFieldMap = classFieldMapCache.get(Validate.notNull(c));
        if (classFieldMap == null)
        {
            /*
             * check to see if we have it by name.
             * if so, then we have an object with the same
             * name but loaded through a different class loader.
             * In that case, we will just dump the cache to be sure.
             */
            synchronized (classMapCache)
            {
                if (classNameCache.contains(c.getName()))
                {
                    clear();
                }
            }
        }
        return classFieldMap;
    }

    /**
     * Creates a class map for specific class and registers it in the
     * cache.  Also adds the qualified name to the name->class map
     * for later Classloader change detection.
     *
     * @param c The class for which the class map gets generated.
     * @return A ClassMap object.
     */
    public ClassMap put(final Class c)
    {
        final ClassMap classMap = new ClassMap(c, log, conversionHandler);
        final ClassFieldMap classFieldMap = new ClassFieldMap(c, log);
        synchronized (classMapCache)
        {
            classMapCache.put(c, classMap);
            classFieldMapCache.put(c, classFieldMap);
            classNameCache.add(c.getName());
        }
        return classMap;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy