Skip to content

Commit 7d3aa66

Browse files
ZacSweersGoogle Java Core Libraries
authored and
Google Java Core Libraries
committed
Implicitly exclude Kotlin @Metadata annotations from @CopyAnnotations
Resolves #1087 Fixes #1099 COPYBARA_INTEGRATE_REVIEW=#1099 from ZacSweers:z/metadata eb0328e PiperOrigin-RevId: 376238198
1 parent 2b77e44 commit 7d3aa66

File tree

3 files changed

+54
-1
lines changed

3 files changed

+54
-1
lines changed

value/src/main/java/com/google/auto/value/processor/AutoValueishProcessor.java

+19-1
Original file line numberDiff line numberDiff line change
@@ -935,7 +935,25 @@ ImmutableList<String> copiedClassAnnotations(TypeElement type) {
935935
// Only copy annotations from a class if it has @AutoValue.CopyAnnotations.
936936
if (hasAnnotationMirror(type, COPY_ANNOTATIONS_NAME)) {
937937
Set<String> excludedAnnotations =
938-
union(getExcludedAnnotationClassNames(type), getAnnotationsMarkedWithInherited(type));
938+
ImmutableSet.<String>builder()
939+
.addAll(getExcludedAnnotationClassNames(type))
940+
.addAll(getAnnotationsMarkedWithInherited(type))
941+
//
942+
// Kotlin classes have an intrinsic @Metadata annotation generated
943+
// onto them by kotlinc. This annotation is specific to the annotated
944+
// class and should not be implicitly copied. Doing so can mislead
945+
// static analysis or metaprogramming tooling that reads the data
946+
// contained in these annotations.
947+
//
948+
// It may be surprising to see AutoValue classes written in Kotlin
949+
// when they could be written as Kotlin data classes, but this can
950+
// come up in cases where consumers rely on AutoValue features or
951+
// extensions that are not available in data classes.
952+
//
953+
// See: https://github.com/google/auto/issues/1087
954+
//
955+
.add(ClassNames.KOTLIN_METADATA_NAME)
956+
.build();
939957

940958
return copyAnnotations(type, type, excludedAnnotations);
941959
} else {

value/src/main/java/com/google/auto/value/processor/ClassNames.java

+1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,5 @@ private ClassNames() {}
3030
static final String AUTO_VALUE_BUILDER_NAME = AUTO_VALUE_NAME + ".Builder";
3131
static final String AUTO_BUILDER_NAME = AUTO_VALUE_PACKAGE_NAME + "AutoBuilder";
3232
static final String COPY_ANNOTATIONS_NAME = AUTO_VALUE_NAME + ".CopyAnnotations";
33+
static final String KOTLIN_METADATA_NAME = "kotlin.Metadata";
3334
}

value/src/test/java/com/google/auto/value/processor/AutoValueCompilationTest.java

+34
Original file line numberDiff line numberDiff line change
@@ -3382,6 +3382,40 @@ public SourceVersion getSupportedSourceVersion() {
33823382
}
33833383
}
33843384

3385+
// This is a regression test for the problem described in
3386+
// https://github.com/google/auto/issues/1087.
3387+
@Test
3388+
public void kotlinMetadataAnnotationsAreImplicitlyExcludedFromCopying() {
3389+
JavaFileObject metadata =
3390+
JavaFileObjects.forSourceLines(
3391+
"kotlin.Metadata", "package kotlin;", "", "public @interface Metadata {", "}");
3392+
JavaFileObject test =
3393+
JavaFileObjects.forSourceLines(
3394+
"foo.bar.Test",
3395+
"package foo.bar;",
3396+
"",
3397+
"import com.google.auto.value.AutoValue;",
3398+
"import kotlin.Metadata;",
3399+
"",
3400+
"@AutoValue.CopyAnnotations",
3401+
"@Metadata",
3402+
"@AutoValue",
3403+
"public abstract class Test {",
3404+
" public abstract String string();",
3405+
"}");
3406+
AutoValueProcessor autoValueProcessor = new AutoValueProcessor();
3407+
Compilation compilation =
3408+
javac()
3409+
.withProcessors(autoValueProcessor)
3410+
.withOptions("-Xlint:-processing", "-implicit:none")
3411+
.compile(test, metadata);
3412+
assertThat(compilation).succeededWithoutWarnings();
3413+
assertThat(compilation)
3414+
.generatedSourceFile("foo.bar.AutoValue_Test")
3415+
.contentsAsUtf8String()
3416+
.doesNotContain("kotlin.Metadata");
3417+
}
3418+
33853419
private String sorted(String... imports) {
33863420
return Arrays.stream(imports).sorted().collect(joining("\n"));
33873421
}

0 commit comments

Comments
 (0)