mirror of
https://github.com/openjdk/jdk.git
synced 2026-05-12 06:29:37 +00:00
109 lines
3.4 KiB
Java
109 lines
3.4 KiB
Java
/*
|
|
* Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
* published by the Free Software Foundation. Oracle designates this
|
|
* particular file as subject to the "Classpath" exception as provided
|
|
* by Oracle in the LICENSE file that accompanied this code.
|
|
*
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
* accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU General Public License version
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*/
|
|
|
|
package com.sun.beans.introspect;
|
|
|
|
import java.lang.reflect.Method;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import com.sun.beans.util.Cache;
|
|
|
|
import static sun.reflect.misc.ReflectUtil.checkPackageAccess;
|
|
|
|
public final class ClassInfo {
|
|
private static final ClassInfo DEFAULT = new ClassInfo(null);
|
|
private static final Cache<Class<?>,ClassInfo> CACHE
|
|
= new Cache<Class<?>,ClassInfo>(Cache.Kind.SOFT, Cache.Kind.SOFT) {
|
|
@Override
|
|
public ClassInfo create(Class<?> type) {
|
|
return new ClassInfo(type);
|
|
}
|
|
};
|
|
|
|
public static ClassInfo get(Class<?> type) {
|
|
if (type == null) {
|
|
return DEFAULT;
|
|
}
|
|
try {
|
|
checkPackageAccess(type);
|
|
return CACHE.get(type);
|
|
} catch (SecurityException exception) {
|
|
return DEFAULT;
|
|
}
|
|
}
|
|
|
|
public static void clear() {
|
|
CACHE.clear();
|
|
}
|
|
|
|
public static void remove(Class<?> clz) {
|
|
CACHE.remove(clz);
|
|
}
|
|
|
|
private final Object mutex = new Object();
|
|
private final Class<?> type;
|
|
private List<Method> methods;
|
|
private Map<String,PropertyInfo> properties;
|
|
private Map<String,EventSetInfo> eventSets;
|
|
|
|
private ClassInfo(Class<?> type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public List<Method> getMethods() {
|
|
if (this.methods == null) {
|
|
synchronized (this.mutex) {
|
|
if (this.methods == null) {
|
|
this.methods = MethodInfo.get(this.type);
|
|
}
|
|
}
|
|
}
|
|
return this.methods;
|
|
}
|
|
|
|
public Map<String,PropertyInfo> getProperties() {
|
|
if (this.properties == null) {
|
|
synchronized (this.mutex) {
|
|
if (this.properties == null) {
|
|
this.properties = PropertyInfo.get(this.type);
|
|
}
|
|
}
|
|
}
|
|
return this.properties;
|
|
}
|
|
|
|
public Map<String,EventSetInfo> getEventSets() {
|
|
if (this.eventSets == null) {
|
|
synchronized (this.mutex) {
|
|
if (this.eventSets == null) {
|
|
this.eventSets = EventSetInfo.get(this.type);
|
|
}
|
|
}
|
|
}
|
|
return this.eventSets;
|
|
}
|
|
}
|