Skip to content

Commit 8ebebbc

Browse files
committedOct 5, 2022
8294368: Java incremental builds broken on Windows after JDK-8293116
Reviewed-by: erikj, djelinski, jlahoda
1 parent 4bdd1c9 commit 8ebebbc

File tree

4 files changed

+47
-8
lines changed

4 files changed

+47
-8
lines changed
 

‎make/common/JavaCompilation.gmk

+9-2
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,7 @@ define SetupJavaCompilationBody
403403
$1_COMPILE_TARGET := $$($1_BIN)$$($1_MODULE_SUBDIR)/_the.$1_batch
404404
$1_FILELIST := $$($1_BIN)$$($1_MODULE_SUBDIR)/_the.$1_batch.filelist
405405
$1_MODFILELIST := $$($1_BIN)$$($1_MODULE_SUBDIR)/_the.$1_batch.modfiles
406+
$1_MODFILELIST_FIXED := $$($1_MODFILELIST).fixed
406407

407408
$1_API_TARGET := $$($1_BIN)$$($1_MODULE_SUBDIR)/_the.$1_pubapi
408409
$1_API_INTERNAL := $$($1_BIN)$$($1_MODULE_SUBDIR)/_the.$1_internalapi
@@ -469,15 +470,21 @@ define SetupJavaCompilationBody
469470
$$(eval $1_MODFILES := $$?)
470471
$$(eval $$(call ListPathsSafely, $1_MODFILES, $$($1_MODFILELIST)))
471472

473+
# Convert the paths in the MODFILELIST file to Windows-style paths
474+
# on Windows. This is needed because javac operates on Windows-style paths
475+
# when running on Windows. On other platforms this just copies the MODFILELIST file.
476+
$$($1_MODFILELIST_FIXED): $$($1_MODFILELIST)
477+
$$(call FixPathFile, $$($1_MODFILELIST), $$($1_MODFILELIST_FIXED))
478+
472479
# Do the actual compilation
473480
$$($1_COMPILE_TARGET): $$($1_SRCS) $$($1_FILELIST) $$($1_DEPENDS) \
474481
$$($1_VARDEPS_FILE) $$($1_EXTRA_DEPS) $$($1_JAVAC_SERVER_CONFIG) \
475-
$$($1_MODFILELIST)
482+
$$($1_MODFILELIST_FIXED)
476483
$$(call MakeDir, $$(@D))
477484
$$(call ExecuteWithLog, $$($1_BIN)$$($1_MODULE_SUBDIR)/_the.$$($1_SAFE_NAME)_batch, \
478485
$$($1_JAVAC_CMD) $$($1_FLAGS) \
479486
$$($1_API_DIGEST_FLAGS) \
480-
-XDmodifiedInputs=$$($1_MODFILELIST) \
487+
-XDmodifiedInputs=$$($1_MODFILELIST_FIXED) \
481488
-d $$($1_BIN) $$($1_HEADERS_ARG) @$$($1_FILELIST)) && \
482489
$(TOUCH) $$@
483490

‎make/common/MakeBase.gmk

+11
Original file line numberDiff line numberDiff line change
@@ -442,12 +442,23 @@ endif
442442
# list.
443443
# This is normally not needed since we use the FIXPATH prefix for command lines,
444444
# but might be needed in certain circumstances.
445+
#
446+
# FixPathFile is the file version of FixPath. It instead takes a file with paths in $1
447+
# and outputs the 'fixed' paths into the file in $2. If the file in $2 already exists
448+
# it is overwritten.
449+
# On non-Windows platforms this instead does a copy, so that $2 can still be used
450+
# as a depenendency of a make rule, instead of having to conditionally depend on
451+
# $1 instead, based on the target platform.
445452
ifeq ($(call isTargetOs, windows), true)
446453
FixPath = \
447454
$(strip $(subst \,\\, $(shell $(FIXPATH_BASE) print $(patsubst $(FIXPATH), , $1))))
455+
FixPathFile = \
456+
$(shell $(FIXPATH_BASE) convert $1 $2)
448457
else
449458
FixPath = \
450459
$1
460+
FixPathFile = \
461+
$(shell $(CP) $1 $2)
451462
endif
452463

453464
################################################################################

‎make/jdk/src/classes/build/tools/depend/Depend.java

+10-6
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,9 @@ public void init(JavacTask jt, String... args) {
154154
if (internalAPIPath == null) {
155155
throw new IllegalStateException("Expected internalAPIPath to be set using -XDinternalAPIPath=<internal-API-path>");
156156
}
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());
158160
Path internalAPIDigestFile = Paths.get(internalAPIPath);
159161
JavaCompiler compiler = JavaCompiler.instance(context);
160162
Class<?> initialFileParserIntf = Class.forName("com.sun.tools.javac.main.JavaCompiler$InitialFileParserIntf");
@@ -255,7 +257,7 @@ public ClassLoader getClassLoader(JavaFileManager.Location location) {
255257
}
256258

257259
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,
259261
Path internalAPIDigestFile, AtomicBoolean noApiChange,
260262
boolean debug) {
261263
Map<String, String> internalAPI = new LinkedHashMap<>();
@@ -272,10 +274,11 @@ private com.sun.tools.javac.util.List<JCCompilationUnit> doFilteredParse(
272274
}
273275
Map<JavaFileObject, JCCompilationUnit> files2CUT = new IdentityHashMap<>();
274276
boolean fullRecompile = modified.stream()
277+
.map(Path::toString)
275278
.anyMatch(f -> !StringUtils.toLowerCase(f).endsWith(".java"));
276279
ListBuffer<JCCompilationUnit> result = new ListBuffer<>();
277280
for (JavaFileObject jfo : fileObjects) {
278-
if (modified.contains(jfo.getName())) {
281+
if (modified.contains(Path.of(jfo.getName()))) {
279282
JCCompilationUnit parsed = compiler.parse(jfo);
280283
files2CUT.put(jfo, parsed);
281284
String currentSignature = treeDigest(parsed);
@@ -289,7 +292,7 @@ private com.sun.tools.javac.util.List<JCCompilationUnit> doFilteredParse(
289292

290293
if (fullRecompile) {
291294
for (JavaFileObject jfo : fileObjects) {
292-
if (!modified.contains(jfo.getName())) {
295+
if (!modified.contains(Path.of(jfo.getName()))) {
293296
JCCompilationUnit parsed = files2CUT.get(jfo);
294297
if (parsed == null) {
295298
parsed = compiler.parse(jfo);
@@ -320,6 +323,7 @@ private com.sun.tools.javac.util.List<JCCompilationUnit> doFilteredParse(
320323
.findAny()
321324
.orElseGet(() -> "unknown");
322325
String nonJavaModifiedFiles = modified.stream()
326+
.map(Path::toString)
323327
.filter(f -> !StringUtils.toLowerCase(f)
324328
.endsWith(".java"))
325329
.collect(Collectors.joining(", "));
@@ -879,13 +883,13 @@ public Void visitModifiers(ModifiersTree node, Void p) {
879883
private class FilteredInitialFileParser implements InvocationHandler {
880884

881885
private final JavaCompiler compiler;
882-
private final Set<String> modified;
886+
private final Set<Path> modified;
883887
private final Path internalAPIDigestFile;
884888
private final AtomicBoolean noApiChange;
885889
private final boolean debug;
886890

887891
public FilteredInitialFileParser(JavaCompiler compiler,
888-
Set<String> modified,
892+
Set<Path> modified,
889893
Path internalAPIDigestFile,
890894
AtomicBoolean noApiChange,
891895
boolean debug) {

‎make/scripts/fixpath.sh

+17
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,21 @@ function convert_path() {
352352
fi
353353
}
354354
355+
# Treat $1 as name of a file containing paths. Convert those paths to Windows style,
356+
# and output them to the file specified by $2.
357+
# If the output file already exists, it is overwritten.
358+
function convert_file() {
359+
infile="$1"
360+
outfile="$2"
361+
if [[ -e $outfile ]] ; then
362+
rm $outfile
363+
fi
364+
while read line; do
365+
convert_path "$line"
366+
echo "$result" >> $outfile
367+
done < $infile
368+
}
369+
355370
# Treat $1 as name of a file containing paths. Convert those paths to Windows style,
356371
# in a new temporary file, and return a string "@<temp file>" pointing to that
357372
# new file.
@@ -498,6 +513,8 @@ if [[ "$ACTION" == "import" ]] ; then
498513
elif [[ "$ACTION" == "print" ]] ; then
499514
print_command_line "$@"
500515
echo "$result"
516+
elif [[ "$ACTION" == "convert" ]] ; then
517+
convert_file "$@"
501518
elif [[ "$ACTION" == "exec" ]] ; then
502519
exec_command_line "$@"
503520
# Propagate exit code

0 commit comments

Comments
 (0)
Please sign in to comment.