Fix timings task name generation for extreme cases - Fixes #3499
I'm going make a class, and in that class i'm going to make a method. And in that method, I'm going to make a local class. And then in that local class, I'm going to make another inner class. I heard you like complex class trees.
This commit is contained in:
@@ -81,13 +81,13 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
+
|
+
|
||||||
+ final String taskname = taskNameCache.computeIfAbsent(taskClass, clazz -> {
|
+ final String taskname = taskNameCache.computeIfAbsent(taskClass, clazz -> {
|
||||||
+ try {
|
+ try {
|
||||||
+ String clsName = clazz.isAnonymousClass() || clazz.isLocalClass()
|
+ String clsName = !clazz.isMemberClass()
|
||||||
+ ? clazz.getName()
|
+ ? clazz.getName()
|
||||||
+ : clazz.getCanonicalName();
|
+ : clazz.getCanonicalName();
|
||||||
+ if (clsName.contains("$Lambda$")) {
|
+ if (clsName != null && clsName.contains("$Lambda$")) {
|
||||||
+ clsName = clsName.replaceAll("(Lambda\\$.*?)/.*", "$1");
|
+ clsName = clsName.replaceAll("(Lambda\\$.*?)/.*", "$1");
|
||||||
+ }
|
+ }
|
||||||
+ return clsName;
|
+ return clsName != null ? clsName : "UnknownTask";
|
||||||
+ } catch (Throwable ex) {
|
+ } catch (Throwable ex) {
|
||||||
+ new Exception("Error occurred detecting class name", ex).printStackTrace();
|
+ new Exception("Error occurred detecting class name", ex).printStackTrace();
|
||||||
+ return "MangledClassFile";
|
+ return "MangledClassFile";
|
||||||
|
|||||||
Reference in New Issue
Block a user