@@ -154,7 +154,9 @@ public void init(JavacTask jt, String... args) {
154
154
if (internalAPIPath == null ) {
155
155
throw new IllegalStateException ("Expected internalAPIPath to be set using -XDinternalAPIPath=<internal-API-path>" );
156
156
}
157
- Set <String > modified = new HashSet <>(Files .readAllLines (Paths .get (modifiedInputs )));
157
+ Set <Path > modified = Files .readAllLines (Paths .get (modifiedInputs )).stream ()
158
+ .map (Paths ::get )
159
+ .collect (Collectors .toSet ());
158
160
Path internalAPIDigestFile = Paths .get (internalAPIPath );
159
161
JavaCompiler compiler = JavaCompiler .instance (context );
160
162
Class <?> initialFileParserIntf = Class .forName ("com.sun.tools.javac.main.JavaCompiler$InitialFileParserIntf" );
@@ -255,7 +257,7 @@ public ClassLoader getClassLoader(JavaFileManager.Location location) {
255
257
}
256
258
257
259
private com .sun .tools .javac .util .List <JCCompilationUnit > doFilteredParse (
258
- JavaCompiler compiler , Iterable <JavaFileObject > fileObjects , Set <String > modified ,
260
+ JavaCompiler compiler , Iterable <JavaFileObject > fileObjects , Set <Path > modified ,
259
261
Path internalAPIDigestFile , AtomicBoolean noApiChange ,
260
262
boolean debug ) {
261
263
Map <String , String > internalAPI = new LinkedHashMap <>();
@@ -272,10 +274,11 @@ private com.sun.tools.javac.util.List<JCCompilationUnit> doFilteredParse(
272
274
}
273
275
Map <JavaFileObject , JCCompilationUnit > files2CUT = new IdentityHashMap <>();
274
276
boolean fullRecompile = modified .stream ()
277
+ .map (Path ::toString )
275
278
.anyMatch (f -> !StringUtils .toLowerCase (f ).endsWith (".java" ));
276
279
ListBuffer <JCCompilationUnit > result = new ListBuffer <>();
277
280
for (JavaFileObject jfo : fileObjects ) {
278
- if (modified .contains (jfo .getName ())) {
281
+ if (modified .contains (Path . of ( jfo .getName () ))) {
279
282
JCCompilationUnit parsed = compiler .parse (jfo );
280
283
files2CUT .put (jfo , parsed );
281
284
String currentSignature = treeDigest (parsed );
@@ -289,7 +292,7 @@ private com.sun.tools.javac.util.List<JCCompilationUnit> doFilteredParse(
289
292
290
293
if (fullRecompile ) {
291
294
for (JavaFileObject jfo : fileObjects ) {
292
- if (!modified .contains (jfo .getName ())) {
295
+ if (!modified .contains (Path . of ( jfo .getName () ))) {
293
296
JCCompilationUnit parsed = files2CUT .get (jfo );
294
297
if (parsed == null ) {
295
298
parsed = compiler .parse (jfo );
@@ -320,6 +323,7 @@ private com.sun.tools.javac.util.List<JCCompilationUnit> doFilteredParse(
320
323
.findAny ()
321
324
.orElseGet (() -> "unknown" );
322
325
String nonJavaModifiedFiles = modified .stream ()
326
+ .map (Path ::toString )
323
327
.filter (f -> !StringUtils .toLowerCase (f )
324
328
.endsWith (".java" ))
325
329
.collect (Collectors .joining (", " ));
@@ -879,13 +883,13 @@ public Void visitModifiers(ModifiersTree node, Void p) {
879
883
private class FilteredInitialFileParser implements InvocationHandler {
880
884
881
885
private final JavaCompiler compiler ;
882
- private final Set <String > modified ;
886
+ private final Set <Path > modified ;
883
887
private final Path internalAPIDigestFile ;
884
888
private final AtomicBoolean noApiChange ;
885
889
private final boolean debug ;
886
890
887
891
public FilteredInitialFileParser (JavaCompiler compiler ,
888
- Set <String > modified ,
892
+ Set <Path > modified ,
889
893
Path internalAPIDigestFile ,
890
894
AtomicBoolean noApiChange ,
891
895
boolean debug ) {
0 commit comments