mirror of
https://github.com/alibaba/arthas.git
synced 2024-04-21 10:21:39 +00:00
Upgrade async-profiler to 1.7 and support arm arch. close #1089
This commit is contained in:
Executable
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -9,8 +9,13 @@ import java.util.Locale;
|
||||
*/
|
||||
public class OSUtils {
|
||||
private static final String OPERATING_SYSTEM_NAME = System.getProperty("os.name").toLowerCase(Locale.ENGLISH);
|
||||
private static final String OPERATING_SYSTEM_ARCH = System.getProperty("os.arch").toLowerCase(Locale.ENGLISH);
|
||||
private static final String UNKNOWN = "unknown";
|
||||
|
||||
static PlatformEnum platform;
|
||||
|
||||
static String arch;
|
||||
|
||||
static {
|
||||
if (OPERATING_SYSTEM_NAME.startsWith("linux")) {
|
||||
platform = PlatformEnum.LINUX;
|
||||
@@ -21,6 +26,8 @@ public class OSUtils {
|
||||
} else {
|
||||
platform = PlatformEnum.UNKNOWN;
|
||||
}
|
||||
|
||||
arch = normalizeArch(OPERATING_SYSTEM_ARCH);
|
||||
}
|
||||
|
||||
private OSUtils() {
|
||||
@@ -48,4 +55,78 @@ public class OSUtils {
|
||||
return false;
|
||||
}
|
||||
|
||||
public static String arch() {
|
||||
return arch;
|
||||
}
|
||||
|
||||
public static boolean isArm() {
|
||||
return "arm_32".equals(arch);
|
||||
}
|
||||
|
||||
private static String normalizeArch(String value) {
|
||||
value = normalize(value);
|
||||
if (value.matches("^(x8664|amd64|ia32e|em64t|x64)$")) {
|
||||
return "x86_64";
|
||||
}
|
||||
if (value.matches("^(x8632|x86|i[3-6]86|ia32|x32)$")) {
|
||||
return "x86_32";
|
||||
}
|
||||
if (value.matches("^(ia64w?|itanium64)$")) {
|
||||
return "itanium_64";
|
||||
}
|
||||
if ("ia64n".equals(value)) {
|
||||
return "itanium_32";
|
||||
}
|
||||
if (value.matches("^(sparc|sparc32)$")) {
|
||||
return "sparc_32";
|
||||
}
|
||||
if (value.matches("^(sparcv9|sparc64)$")) {
|
||||
return "sparc_64";
|
||||
}
|
||||
if (value.matches("^(arm|arm32)$")) {
|
||||
return "arm_32";
|
||||
}
|
||||
if ("aarch64".equals(value)) {
|
||||
return "aarch_64";
|
||||
}
|
||||
if (value.matches("^(mips|mips32)$")) {
|
||||
return "mips_32";
|
||||
}
|
||||
if (value.matches("^(mipsel|mips32el)$")) {
|
||||
return "mipsel_32";
|
||||
}
|
||||
if ("mips64".equals(value)) {
|
||||
return "mips_64";
|
||||
}
|
||||
if ("mips64el".equals(value)) {
|
||||
return "mipsel_64";
|
||||
}
|
||||
if (value.matches("^(ppc|ppc32)$")) {
|
||||
return "ppc_32";
|
||||
}
|
||||
if (value.matches("^(ppcle|ppc32le)$")) {
|
||||
return "ppcle_32";
|
||||
}
|
||||
if ("ppc64".equals(value)) {
|
||||
return "ppc_64";
|
||||
}
|
||||
if ("ppc64le".equals(value)) {
|
||||
return "ppcle_64";
|
||||
}
|
||||
if ("s390".equals(value)) {
|
||||
return "s390_32";
|
||||
}
|
||||
if ("s390x".equals(value)) {
|
||||
return "s390_64";
|
||||
}
|
||||
|
||||
return UNKNOWN;
|
||||
}
|
||||
|
||||
private static String normalize(String value) {
|
||||
if (value == null) {
|
||||
return "";
|
||||
}
|
||||
return value.toLowerCase(Locale.US).replaceAll("[^a-z0-9]+", "");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -101,6 +101,9 @@ public class ProfilerCommand extends AnnotatedCommand {
|
||||
}
|
||||
if (OSUtils.isLinux()) {
|
||||
profierSoPath = "async-profiler/libasyncProfiler-linux-x64.so";
|
||||
if (OSUtils.isArm()) {
|
||||
profierSoPath = "async-profiler/libasyncProfiler-linux-arm.so";
|
||||
}
|
||||
}
|
||||
|
||||
if (profierSoPath != null) {
|
||||
|
||||
Reference in New Issue
Block a user