Skip to content

Commit

Permalink
Merge branch 'master' into support_virtual_threads
Browse files Browse the repository at this point in the history
  • Loading branch information
致节 committed Dec 8, 2023
2 parents 013e5bc + 6d44d41 commit 62ac71b
Show file tree
Hide file tree
Showing 2 changed files with 278 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,270 @@
/*
* 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 com.alipay.sofa.runtime.spring.bean;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.asm.ClassReader;
import org.springframework.asm.ClassVisitor;
import org.springframework.asm.Label;
import org.springframework.asm.MethodVisitor;
import org.springframework.asm.Opcodes;
import org.springframework.asm.SpringAsmInfo;
import org.springframework.asm.Type;
import org.springframework.core.BridgeMethodResolver;
import org.springframework.core.ParameterNameDiscoverer;
import org.springframework.lang.Nullable;
import org.springframework.util.ClassUtils;

import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.Constructor;
import java.lang.reflect.Executable;
import java.lang.reflect.Method;
import java.util.Collections;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

/**
* Deprecate in spring, fork codes for compatible
*/
@Deprecated
public class LocalVariableTableParameterNameDiscoverer implements ParameterNameDiscoverer {

private static final Log logger = LogFactory
.getLog(LocalVariableTableParameterNameDiscoverer.class);

// marker object for classes that do not have any debug info
private static final Map<Executable, String[]> NO_DEBUG_INFO_MAP = Collections
.emptyMap();

// the cache uses a nested index (value is a map) to keep the top level cache relatively small in size
private final Map<Class<?>, Map<Executable, String[]>> parameterNamesCache = new ConcurrentHashMap<>(
32);

@Override
@Nullable
public String[] getParameterNames(Method method) {
Method originalMethod = BridgeMethodResolver.findBridgedMethod(method);
return doGetParameterNames(originalMethod);
}

@Override
@Nullable
public String[] getParameterNames(Constructor<?> ctor) {
return doGetParameterNames(ctor);
}

@Nullable
private String[] doGetParameterNames(Executable executable) {
Class<?> declaringClass = executable.getDeclaringClass();
Map<Executable, String[]> map = this.parameterNamesCache.computeIfAbsent(declaringClass, this::inspectClass);
return (map != NO_DEBUG_INFO_MAP ? map.get(executable) : null);
}

/**
* Inspects the target class.
* <p>Exceptions will be logged, and a marker map returned to indicate the
* lack of debug information.
*/
private Map<Executable, String[]> inspectClass(Class<?> clazz) {
InputStream is = clazz.getResourceAsStream(ClassUtils.getClassFileName(clazz));
if (is == null) {
// We couldn't load the class file, which is not fatal as it
// simply means this method of discovering parameter names won't work.
if (logger.isDebugEnabled()) {
logger.debug("Cannot find '.class' file for class [" + clazz
+ "] - unable to determine constructor/method parameter names");
}
return NO_DEBUG_INFO_MAP;
}
// We cannot use try-with-resources here for the InputStream, since we have
// custom handling of the close() method in a finally-block.
try {
ClassReader classReader = new ClassReader(is);
Map<Executable, String[]> map = new ConcurrentHashMap<>(32);
classReader.accept(new ParameterNameDiscoveringVisitor(clazz, map), 0);
if (logger.isWarnEnabled()) {
logger
.warn("Using deprecated '-debug' fallback for parameter name resolution. Compile the "
+ "affected code with '-parameters' instead or avoid its introspection: "
+ clazz.getName());
}
return map;
} catch (IOException ex) {
if (logger.isDebugEnabled()) {
logger.debug("Exception thrown while reading '.class' file for class [" + clazz
+ "] - unable to determine constructor/method parameter names", ex);
}
} catch (IllegalArgumentException ex) {
if (logger.isDebugEnabled()) {
logger
.debug(
"ASM ClassReader failed to parse class file ["
+ clazz
+ "], probably due to a new Java class file version that isn't supported yet "
+ "- unable to determine constructor/method parameter names", ex);
}
} finally {
try {
is.close();
} catch (IOException ex) {
// ignore
}
}
return NO_DEBUG_INFO_MAP;
}

/**
* Helper class that inspects all methods and constructors and then
* attempts to find the parameter names for the given {@link Executable}.
*/
private static class ParameterNameDiscoveringVisitor extends ClassVisitor {

private static final String STATIC_CLASS_INIT = "<clinit>";

private final Class<?> clazz;

private final Map<Executable, String[]> executableMap;

public ParameterNameDiscoveringVisitor(Class<?> clazz,
Map<Executable, String[]> executableMap) {
super(SpringAsmInfo.ASM_VERSION);
this.clazz = clazz;
this.executableMap = executableMap;
}

@Override
@Nullable
public MethodVisitor visitMethod(int access, String name, String desc, String signature,
String[] exceptions) {
// exclude synthetic + bridged && static class initialization
if (!isSyntheticOrBridged(access) && !STATIC_CLASS_INIT.equals(name)) {
return new LocalVariableTableVisitor(this.clazz, this.executableMap, name, desc,
isStatic(access));
}
return null;
}

private static boolean isSyntheticOrBridged(int access) {
return (((access & Opcodes.ACC_SYNTHETIC) | (access & Opcodes.ACC_BRIDGE)) > 0);
}

private static boolean isStatic(int access) {
return ((access & Opcodes.ACC_STATIC) > 0);
}
}

private static class LocalVariableTableVisitor extends MethodVisitor {

private static final String CONSTRUCTOR = "<init>";

private final Class<?> clazz;

private final Map<Executable, String[]> executableMap;

private final String name;

private final Type[] args;

private final String[] parameterNames;

private final boolean isStatic;

private boolean hasLvtInfo = false;

/*
* The nth entry contains the slot index of the LVT table entry holding the
* argument name for the nth parameter.
*/
private final int[] lvtSlotIndex;

public LocalVariableTableVisitor(Class<?> clazz, Map<Executable, String[]> map,
String name, String desc, boolean isStatic) {
super(SpringAsmInfo.ASM_VERSION);
this.clazz = clazz;
this.executableMap = map;
this.name = name;
this.args = Type.getArgumentTypes(desc);
this.parameterNames = new String[this.args.length];
this.isStatic = isStatic;
this.lvtSlotIndex = computeLvtSlotIndices(isStatic, this.args);
}

@Override
public void visitLocalVariable(String name, String description, String signature,
Label start, Label end, int index) {
this.hasLvtInfo = true;
for (int i = 0; i < this.lvtSlotIndex.length; i++) {
if (this.lvtSlotIndex[i] == index) {
this.parameterNames[i] = name;
}
}
}

@Override
public void visitEnd() {
if (this.hasLvtInfo || (this.isStatic && this.parameterNames.length == 0)) {
// visitLocalVariable will never be called for static no args methods
// which doesn't use any local variables.
// This means that hasLvtInfo could be false for that kind of methods
// even if the class has local variable info.
this.executableMap.put(resolveExecutable(), this.parameterNames);
}
}

private Executable resolveExecutable() {
ClassLoader loader = this.clazz.getClassLoader();
Class<?>[] argTypes = new Class<?>[this.args.length];
for (int i = 0; i < this.args.length; i++) {
argTypes[i] = ClassUtils.resolveClassName(this.args[i].getClassName(), loader);
}
try {
if (CONSTRUCTOR.equals(this.name)) {
return this.clazz.getDeclaredConstructor(argTypes);
}
return this.clazz.getDeclaredMethod(this.name, argTypes);
} catch (NoSuchMethodException ex) {
throw new IllegalStateException(
"Method ["
+ this.name
+ "] was discovered in the .class file but cannot be resolved in the class object",
ex);
}
}

private static int[] computeLvtSlotIndices(boolean isStatic, Type[] paramTypes) {
int[] lvtIndex = new int[paramTypes.length];
int nextIndex = (isStatic ? 0 : 1);
for (int i = 0; i < paramTypes.length; i++) {
lvtIndex[i] = nextIndex;
if (isWideType(paramTypes[i])) {
nextIndex += 2;
} else {
nextIndex++;
}
}
return lvtIndex;
}

private static boolean isWideType(Type aType) {
// float is not a wide type
return (aType == Type.LONG_TYPE || aType == Type.DOUBLE_TYPE);
}
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ public class StartupReporter {

public static final String SPRING_CONTEXT_BEAN_FACTORY_POST_PROCESSOR = "spring.context.bean-factory.post-process";

public static final String SPRING_CONFIG_CLASSES_ENHANCE = "spring.context.config-classes.enhance";

public static final Collection<String> SPRING_BEAN_INSTANTIATE_TYPES = Set
.of(SPRING_BEANS_INSTANTIATE,
SPRING_BEANS_SMART_INSTANTIATE);
Expand All @@ -61,6 +63,9 @@ public class StartupReporter {
.of(SPRING_CONTEXT_BEANDEF_REGISTRY_POST_PROCESSOR,
SPRING_CONTEXT_BEAN_FACTORY_POST_PROCESSOR);

public static final Collection<String> SPRING_CONFIG_CLASSES_ENHANCE_TYPES = Set
.of(SPRING_CONFIG_CLASSES_ENHANCE);

private final StartupStaticsModel startupStaticsModel;

private final List<BeanStatCustomizer> beanStatCustomizers;
Expand Down Expand Up @@ -216,7 +221,9 @@ public List<BeanStat> generateBeanStats(ConfigurableApplicationContext context)

private boolean filterBeanInitializeByCost(BeanStat beanStat) {
String name = beanStat.getType();
if (SPRING_BEAN_INSTANTIATE_TYPES.contains(name)) {
if (SPRING_BEAN_INSTANTIATE_TYPES.contains(name)
|| SPRING_CONTEXT_POST_PROCESSOR_TYPES.contains(name)
|| SPRING_CONFIG_CLASSES_ENHANCE_TYPES.contains(name)) {
return beanStat.getCost() >= costThreshold;
} else {
return true;
Expand Down

0 comments on commit 62ac71b

Please sign in to comment.