Skip to content

Commit 9247630

Browse files
committedJun 2, 2021
8265270: Type.getEnclosingType() may fail with CompletionFailure
Reviewed-by: vromero
1 parent 2d494bf commit 9247630

File tree

2 files changed

+61
-2
lines changed

2 files changed

+61
-2
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ Type classSigToType() {
568568
public Type getEnclosingType() {
569569
if (!completed) {
570570
completed = true;
571-
tsym.complete();
571+
tsym.apiComplete();
572572
Type enclosingType = tsym.type.getEnclosingType();
573573
if (enclosingType != Type.noType) {
574574
List<Type> typeArgs =

‎test/langtools/tools/javac/processing/model/completionfailure/MissingClassFile.java

+60-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -459,6 +459,64 @@ public Variant(String code, String fqn) {
459459
}
460460
}
461461

462+
void testGetEnclosingOnMissingType() throws Exception {
463+
Path base = Paths.get(".", "testGetEnclosingOnMissingType");
464+
Path libClasses = compileLib(base,
465+
"package pkg;\n" +
466+
"public class A<E> {\n" +
467+
" public static class N<E> {}\n" +
468+
"}\n",
469+
"package pkg;\n" +
470+
"public class T<E> {\n" +
471+
" T<A<T>> n;\n" +
472+
"}\n");
473+
try (OutputStream out = Files.newOutputStream(libClasses.resolve("pkg/A.class"))) {
474+
out.write(0);
475+
}
476+
477+
Path testSrc = base.resolve("test-src");
478+
tb.createDirectories(testSrc);
479+
Path testClasses = base.resolve("test-classes");
480+
tb.createDirectories(testClasses);
481+
482+
tb.writeJavaFiles(testSrc, "class Test { }");
483+
tb.cleanDirectory(testClasses);
484+
485+
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
486+
487+
List<Consumer<DeclaredType>> validators = Arrays.asList(
488+
dt -> { if (dt.getEnclosingType().getKind() != TypeKind.NONE)
489+
throw new AssertionError("Unexpected enclosing type: " +
490+
dt.getEnclosingType());
491+
},
492+
dt -> { if (!"pkg.T<pkg.A<pkg.T>>".equals(dt.toString()))
493+
throw new AssertionError("Unexpected toString: " +
494+
dt.toString());
495+
}
496+
);
497+
498+
try (StandardJavaFileManager fm = compiler.getStandardFileManager(null, null, null)) {
499+
for (Consumer<DeclaredType> validator : validators) {
500+
com.sun.source.util.JavacTask task = (com.sun.source.util.JavacTask)
501+
compiler.getTask(null,
502+
null,
503+
null,
504+
Arrays.asList("-XDrawDiagnostics",
505+
"-classpath",
506+
libClasses.toString()),
507+
null,
508+
fm.getJavaFileObjects(tb.findJavaFiles(testSrc)));
509+
task.analyze();
510+
TypeElement a = task.getElements()
511+
.getTypeElement(task.getElements()
512+
.getModuleElement(""),
513+
"pkg.T");
514+
DeclaredType type = (DeclaredType) a.getEnclosedElements().get(0).asType();
515+
validator.accept(type);
516+
}
517+
}
518+
}
519+
462520
private Path compileLib(Path base, String... sources) throws Exception {
463521
Path libSrc = base.resolve("lib-src");
464522
tb.createDirectories(libSrc);
@@ -625,6 +683,7 @@ public static void main(String... args) throws Exception {
625683
t.testAnnotationProcessing();
626684
t.testGetTypeElement();
627685
t.testScope();
686+
t.testGetEnclosingOnMissingType();
628687
}
629688

630689
static class TestVariant {

0 commit comments

Comments
 (0)
Please sign in to comment.