@@ -66,6 +66,7 @@ public static enum Option {
66
66
final Logger logger ;
67
67
68
68
final ClassLoader loader ;
69
+ final String humanClasspath ;
69
70
final java .lang .reflect .Method method_Class_getModule , method_Module_getName ;
70
71
final EnumSet <Option > options ;
71
72
@@ -79,13 +80,14 @@ public static enum Option {
79
80
/** descriptors (not internal names) of all annotations that suppress */
80
81
final Set <String > suppressAnnotations = new LinkedHashSet <>();
81
82
82
- public Checker (Logger logger , ClassLoader loader , Option ... options ) {
83
- this (logger , loader , (options .length == 0 ) ? EnumSet .noneOf (Option .class ) : EnumSet .copyOf (Arrays .asList (options )));
83
+ public Checker (Logger logger , ClassLoader loader , String humanClasspath , Option ... options ) {
84
+ this (logger , loader , humanClasspath , (options .length == 0 ) ? EnumSet .noneOf (Option .class ) : EnumSet .copyOf (Arrays .asList (options )));
84
85
}
85
86
86
- public Checker (Logger logger , ClassLoader loader , EnumSet <Option > options ) {
87
+ public Checker (Logger logger , ClassLoader loader , String humanClasspath , EnumSet <Option > options ) {
87
88
this .logger = logger ;
88
89
this .loader = loader ;
90
+ this .humanClasspath = (humanClasspath == null || humanClasspath .isEmpty ()) ? null : humanClasspath ;
89
91
this .options = options ;
90
92
this .start = System .currentTimeMillis ();
91
93
@@ -101,6 +103,7 @@ public Checker(Logger logger, ClassLoader loader, EnumSet<Option> options) {
101
103
method_Module_getName = method_Class_getModule
102
104
.getReturnType ().getMethod ("getName" );
103
105
isSupportedJDK = true ;
106
+ logger .debug ("Detected Java 9 or later with module system." );
104
107
} catch (NoSuchMethodException e ) {
105
108
method_Class_getModule = method_Module_getName = null ;
106
109
}
@@ -116,6 +119,7 @@ public Checker(Logger logger, ClassLoader loader, EnumSet<Option> options) {
116
119
if (objectClassURL != null && "jrt" .equalsIgnoreCase (objectClassURL .getProtocol ())) {
117
120
// this is Java 9+ allowing direct access to .class file resources - we do not need to deal with modules!
118
121
isSupportedJDK = true ;
122
+ logger .debug ("Detected Java 9 or later with JRT file system." );
119
123
} else {
120
124
String javaHome = System .getProperty ("java.home" );
121
125
if (javaHome != null ) {
@@ -146,7 +150,9 @@ public Checker(Logger logger, ClassLoader loader, EnumSet<Option> options) {
146
150
}
147
151
}
148
152
isSupportedJDK = !runtimePaths .isEmpty ();
149
- if (!isSupportedJDK ) {
153
+ if (isSupportedJDK ) {
154
+ logger .debug ("Detected classical classpath-based JDK @ " + runtimePaths );
155
+ } else {
150
156
logger .warn ("Boot classpath appears to be empty or ${java.home} not defined; marking runtime as not suppported." );
151
157
}
152
158
}
@@ -317,6 +323,11 @@ public ClassMetadata lookupRelatedClass(String internalName, String internalName
317
323
}
318
324
}
319
325
326
+ @ Override
327
+ public String getHumanClasspath () {
328
+ return humanClasspath ;
329
+ }
330
+
320
331
/** Reads a list of bundled API signatures from classpath. */
321
332
public void addBundledSignatures (String name , String jdkTargetVersion ) throws IOException ,ParseException {
322
333
forbiddenSignatures .addBundledSignatures (name , jdkTargetVersion );
0 commit comments