Skip to content

Commit e339e18

Browse files
archiecobbsVicente Romero
authored and
Vicente Romero
committedMar 18, 2023
7016187: javac -h could generate conflict .h for inner class and class name with '_'
Reviewed-by: vromero
1 parent 033c0b1 commit e339e18

File tree

2 files changed

+42
-4
lines changed

2 files changed

+42
-4
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/JNIWriter.java

+15-3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import java.io.PrintWriter;
3030
import java.util.ArrayList;
3131
import java.util.Collections;
32+
import java.util.HashMap;
3233
import java.util.List;
3334

3435
import javax.tools.FileObject;
@@ -84,6 +85,12 @@ public class JNIWriter {
8485
*/
8586
private boolean checkAll;
8687

88+
/**
89+
* Mapping from output file name to class name, for all classes we've written.
90+
* This is used to detect when two classes generate the same output file.
91+
*/
92+
private final HashMap<String, String> filesWritten = new HashMap<>();
93+
8794
/**
8895
* If true, class files will be written in module-specific subdirectories
8996
* of the NATIVE_HEADER_OUTPUT location.
@@ -183,9 +190,14 @@ public FileObject write(ClassSymbol c) throws IOException {
183190
} else {
184191
outLocn = StandardLocation.NATIVE_HEADER_OUTPUT;
185192
}
186-
FileObject outFile
187-
= fileManager.getFileForOutput(outLocn,
188-
"", className.replaceAll("[.$]", "_") + ".h", null);
193+
String fileName = className.replaceAll("[.$]", "_") + ".h";
194+
String prevName = filesWritten.put(fileName, className);
195+
if (prevName != null) {
196+
throw new IOException(String.format(
197+
"native header file collision between %s and %s (both generate %s)",
198+
prevName, className, fileName));
199+
}
200+
FileObject outFile = fileManager.getFileForOutput(outLocn, "", fileName, null);
189201
PrintWriter out = new PrintWriter(outFile.openWriter());
190202
try {
191203
write(out, c);

‎test/langtools/tools/javac/nativeHeaders/NativeHeaderTest.java

+27-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/*
2525
* @test
26-
* @bug 7150368 8003412 8000407
26+
* @bug 7150368 8003412 8000407 7016187
2727
* @summary javac should include basic ability to generate native headers
2828
* @modules jdk.compiler/com.sun.tools.javac.api
2929
* jdk.compiler/com.sun.tools.javac.file
@@ -149,6 +149,32 @@ void annoNestedClassTest(RunKind rk, GenKind gk) throws Exception {
149149
test(rk, gk, files, expect);
150150
}
151151

152+
@Test
153+
void conflictTest(RunKind rk, GenKind gk) throws Exception {
154+
155+
// These two classes will generate the same header file "Foo_Bar.h"
156+
List<File> files = new ArrayList<File>();
157+
files.add(createFile("p/Foo.java", """
158+
public class Foo {
159+
public static class Bar {
160+
public static native void method1();
161+
}
162+
}
163+
"""));
164+
files.add(createFile("p/Foo_Bar.java", """
165+
public class Foo_Bar {
166+
public static native void method2();
167+
}
168+
"""));
169+
170+
try {
171+
test(rk, gk, files, null);
172+
throw new AssertionError("expected failure");
173+
} catch (Exception e) {
174+
// expected
175+
}
176+
}
177+
152178
/**
153179
* The worker method for each test case.
154180
* Compile the files and verify that exactly the expected set of header files

0 commit comments

Comments
 (0)
Please sign in to comment.