aboutsummaryrefslogtreecommitdiff
path: root/velocity-engine-core/src/main/java/org/apache/velocity/util/introspection/IntrospectorCache.java
diff options
context:
space:
mode:
Diffstat (limited to 'velocity-engine-core/src/main/java/org/apache/velocity/util/introspection/IntrospectorCache.java')
-rw-r--r--velocity-engine-core/src/main/java/org/apache/velocity/util/introspection/IntrospectorCache.java179
1 files changed, 179 insertions, 0 deletions
diff --git a/velocity-engine-core/src/main/java/org/apache/velocity/util/introspection/IntrospectorCache.java b/velocity-engine-core/src/main/java/org/apache/velocity/util/introspection/IntrospectorCache.java
new file mode 100644
index 00000000..daa463ef
--- /dev/null
+++ b/velocity-engine-core/src/main/java/org/apache/velocity/util/introspection/IntrospectorCache.java
@@ -0,0 +1,179 @@
+package 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 <a href="mailto:henning@apache.org">Henning P. Schmiedehausen</a>
+ * @author <a href="mailto:cdauth@cdauth.eu">Candid Dauth</a>
+ * @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 --&gt; ClassMap object.
+ */
+ private final Map<Class<?>, ClassMap> classMapCache = new HashMap<>();
+
+ /**
+ * Holds the field maps for the classes we know about. Map: Class --&gt; ClassFieldMap object.
+ */
+ private final Map<Class<?>, 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 <code>classMethodMaps.get(Foo.class)</code> will return null. For that case, we
+ * keep a set of class names to recognize this case.
+ */
+ private final Set<String> 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-&gt;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;
+ }
+
+}