Skip to content

Commit

Permalink
Add shrinker-test examples with never-referenced constructors (google…
Browse files Browse the repository at this point in the history
…#2478)

* Add shrinker-test examples with never-referenced constructors

R8 can do some optimizations that assume values of types whose
constructors are never referenced are `null`. (A bit confused why
the rules here are sufficient to avoid that optimization in the
case of a class whose sole constructor has arguments and is
unreferenced, since the keep rule only refers to `<init>()` instead
of `<init>(...)`. Does R8 have special behavior for `<init>()` where
attempting to keep that makes it assume a class is constructable even
if it doesn't have a no-args constructor?)

Also rename some test classes/names to refer to `NoArgs` instead of
`Default` constructors. The examples here care about whether a
no-argument constructor is present. While a no-argument
constructor (explicitly defined or not) is used by default in some
circumstances, the Java documentation consistently uses "default
constructor" to refer only to constructors whose implementation is
implicitly provided by the complier (all default constructors are
no-argument constructors, but not vice versa).

* Update shrinker-test/src/main/java/com/example/ClassWithNoArgsConstructor.java

Accept review suggestion

Co-authored-by: Marcono1234 <[email protected]>

* Update shrinker-test/src/main/java/com/example/NoSerializedNameMain.java

Accept review suggestion

Co-authored-by: Marcono1234 <[email protected]>

* Further adjust test class/method names for consistency

* Update shrinker-test/src/main/java/com/example/NoSerializedNameMain.java

Co-authored-by: Marcono1234 <[email protected]>

---------

Co-authored-by: Marcono1234 <[email protected]>
  • Loading branch information
2 people authored and tibor-universe committed Aug 17, 2024
1 parent a6ca873 commit 553e71c
Show file tree
Hide file tree
Showing 10 changed files with 151 additions and 39 deletions.
4 changes: 2 additions & 2 deletions shrinker-test/common.pro
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
public static void runTests(...);
}
-keep class com.example.NoSerializedNameMain {
public static java.lang.String runTest();
public static java.lang.String runTestNoArgsConstructor();
public static java.lang.String runTestNoJdkUnsafe();
public static java.lang.String runTestNoDefaultConstructor();
public static java.lang.String runTestHasArgsConstructor();
}


Expand Down
4 changes: 2 additions & 2 deletions shrinker-test/proguard.pro
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
# Unlike R8, ProGuard does not perform aggressive optimization which makes classes abstract,
# therefore for ProGuard can successfully perform deserialization, and for that need to
# preserve the field names
-keepclassmembernames class com.example.NoSerializedNameMain$TestClass {
-keepclassmembernames class com.example.NoSerializedNameMain$TestClassNoArgsConstructor {
<fields>;
}
-keepclassmembernames class com.example.NoSerializedNameMain$TestClassNotAbstract {
<fields>;
}
-keepclassmembernames class com.example.NoSerializedNameMain$TestClassWithoutDefaultConstructor {
-keepclassmembernames class com.example.NoSerializedNameMain$TestClassHasArgsConstructor {
<fields>;
}
4 changes: 2 additions & 2 deletions shrinker-test/r8.pro
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
-keep,allowshrinking,allowoptimization,allowobfuscation,allowaccessmodification class com.example.GenericClasses$GenericUsingGenericClass

# Don't obfuscate class name, to check it in exception message
-keep,allowshrinking,allowoptimization class com.example.NoSerializedNameMain$TestClass
-keep,allowshrinking,allowoptimization class com.example.NoSerializedNameMain$TestClassWithoutDefaultConstructor
-keep,allowshrinking,allowoptimization class com.example.NoSerializedNameMain$TestClassNoArgsConstructor
-keep,allowshrinking,allowoptimization class com.example.NoSerializedNameMain$TestClassHasArgsConstructor

# This rule has the side-effect that R8 still removes the no-args constructor, but does not make the class abstract
-keep class com.example.NoSerializedNameMain$TestClassNotAbstract {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
import com.google.gson.annotations.SerializedName;

/**
* Class without no-args default constructor, but with field annotated with
* Class without no-args constructor, but with field annotated with
* {@link SerializedName}.
*/
public class ClassWithoutDefaultConstructor {
public class ClassWithHasArgsConstructor {
@SerializedName("myField")
public int i;

// Specify explicit constructor with args to remove implicit no-args default constructor
public ClassWithoutDefaultConstructor(int i) {
public ClassWithHasArgsConstructor(int i) {
this.i = i;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
import com.google.gson.annotations.SerializedName;

/**
* Class with no-args default constructor and with field annotated with
* Class with no-args constructor and with field annotated with
* {@link SerializedName}.
*/
public class ClassWithDefaultConstructor {
public class ClassWithNoArgsConstructor {
@SerializedName("myField")
public int i;

public ClassWithDefaultConstructor() {
public ClassWithNoArgsConstructor() {
i = -3;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package com.example;

import com.google.gson.annotations.SerializedName;

/**
* Class without no-args constructor, but with field annotated with
* {@link SerializedName}. The constructor should not actually be used in the
* code, but this shouldn't lead to R8 concluding that values of the type are
* not constructible and therefore must be null.
*/
public class ClassWithUnreferencedHasArgsConstructor {
@SerializedName("myField")
public int i;

// Specify explicit constructor with args to remove implicit no-args default constructor
public ClassWithUnreferencedHasArgsConstructor(int i) {
this.i = i;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package com.example;

import com.google.gson.annotations.SerializedName;

/**
* Class with no-args constructor and with field annotated with
* {@link SerializedName}. The constructor should not actually be used in the
* code, but this shouldn't lead to R8 concluding that values of the type are
* not constructible and therefore must be null.
*/
public class ClassWithUnreferencedNoArgsConstructor {
@SerializedName("myField")
public int i;

public ClassWithUnreferencedNoArgsConstructor() {
i = -3;
}
}
65 changes: 58 additions & 7 deletions shrinker-test/src/main/java/com/example/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ public static void runTests(BiConsumer<String, String> outputConsumer) {
testNamedFields(outputConsumer);
testSerializedName(outputConsumer);

testNoDefaultConstructor(outputConsumer);
testConstructorNoArgs(outputConsumer);
testConstructorHasArgs(outputConsumer);
testUnreferencedConstructorNoArgs(outputConsumer);
testUnreferencedConstructorHasArgs(outputConsumer);

testNoJdkUnsafe(outputConsumer);

testEnum(outputConsumer);
Expand Down Expand Up @@ -90,24 +94,71 @@ private static void testSerializedName(BiConsumer<String, String> outputConsumer
});
}

private static void testNoDefaultConstructor(BiConsumer<String, String> outputConsumer) {
private static void testConstructorNoArgs(BiConsumer<String, String> outputConsumer) {
Gson gson = new GsonBuilder().setPrettyPrinting().create();
TestExecutor.run(outputConsumer, "Write: No args constructor", () -> toJson(
gson, new ClassWithNoArgsConstructor()));
TestExecutor.run(outputConsumer, "Read: No args constructor; initial constructor value", () -> {
ClassWithNoArgsConstructor deserialized = fromJson(gson, "{}", ClassWithNoArgsConstructor.class);
return Integer.toString(deserialized.i);
});
TestExecutor.run(outputConsumer, "Read: No args constructor; custom value", () -> {
ClassWithNoArgsConstructor deserialized = fromJson(gson, "{\"myField\": 3}", ClassWithNoArgsConstructor.class);
return Integer.toString(deserialized.i);
});
}

private static void testConstructorHasArgs(BiConsumer<String, String> outputConsumer) {
Gson gson = new GsonBuilder().setPrettyPrinting().create();
TestExecutor.run(outputConsumer, "Write: No default constructor", () -> toJson(gson, new ClassWithoutDefaultConstructor(2)));
TestExecutor.run(outputConsumer, "Write: Constructor with args", () -> toJson(
gson, new ClassWithHasArgsConstructor(2)));
// This most likely relies on JDK Unsafe (unless the shrinker rewrites the constructor in some way)
TestExecutor.run(outputConsumer, "Read: Constructor with args", () -> {
ClassWithHasArgsConstructor deserialized = fromJson(
gson, "{\"myField\": 3}", ClassWithHasArgsConstructor.class);
return Integer.toString(deserialized.i);
});
}

private static void testUnreferencedConstructorNoArgs(BiConsumer<String, String> outputConsumer) {
Gson gson = new GsonBuilder().setPrettyPrinting().create();
// No write because we're not referencing this class's constructor.

// This runs the no-args constructor.
TestExecutor.run(outputConsumer, "Read: Unreferenced no args constructor; initial constructor value", () -> {
ClassWithUnreferencedNoArgsConstructor deserialized = fromJson(
gson, "{}", ClassWithUnreferencedNoArgsConstructor.class);
return Integer.toString(deserialized.i);
});
TestExecutor.run(outputConsumer, "Read: Unreferenced no args constructor; custom value", () -> {
ClassWithUnreferencedNoArgsConstructor deserialized = fromJson(
gson, "{\"myField\": 3}", ClassWithUnreferencedNoArgsConstructor.class);
return Integer.toString(deserialized.i);
});
}

private static void testUnreferencedConstructorHasArgs(BiConsumer<String, String> outputConsumer) {
Gson gson = new GsonBuilder().setPrettyPrinting().create();
// No write because we're not referencing this class's constructor.

// This most likely relies on JDK Unsafe (unless the shrinker rewrites the constructor in some way)
TestExecutor.run(outputConsumer, "Read: No default constructor", () -> {
ClassWithoutDefaultConstructor deserialized = fromJson(gson, "{\"myField\": 3}", ClassWithoutDefaultConstructor.class);
TestExecutor.run(outputConsumer, "Read: Unreferenced constructor with args", () -> {
ClassWithUnreferencedHasArgsConstructor deserialized = fromJson(
gson, "{\"myField\": 3}", ClassWithUnreferencedHasArgsConstructor.class);
return Integer.toString(deserialized.i);
});
}

private static void testNoJdkUnsafe(BiConsumer<String, String> outputConsumer) {
Gson gson = new GsonBuilder().disableJdkUnsafe().create();
TestExecutor.run(outputConsumer, "Read: No JDK Unsafe; initial constructor value", () -> {
ClassWithDefaultConstructor deserialized = fromJson(gson, "{}", ClassWithDefaultConstructor.class);
ClassWithNoArgsConstructor deserialized = fromJson(
gson, "{}", ClassWithNoArgsConstructor.class);
return Integer.toString(deserialized.i);
});
TestExecutor.run(outputConsumer, "Read: No JDK Unsafe; custom value", () -> {
ClassWithDefaultConstructor deserialized = fromJson(gson, "{\"myField\": 3}", ClassWithDefaultConstructor.class);
ClassWithNoArgsConstructor deserialized = fromJson(
gson, "{\"myField\": 3}", ClassWithNoArgsConstructor.class);
return Integer.toString(deserialized.i);
});
}
Expand Down
26 changes: 15 additions & 11 deletions shrinker-test/src/main/java/com/example/NoSerializedNameMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
* therefore not matched by the default {@code gson.pro} rules.
*/
public class NoSerializedNameMain {
static class TestClass {
static class TestClassNoArgsConstructor {
// Has a no-args default constructor.
public String s;
}

Expand All @@ -19,37 +20,40 @@ static class TestClassNotAbstract {
public String s;
}

static class TestClassWithoutDefaultConstructor {
static class TestClassHasArgsConstructor {
public String s;

// Specify explicit constructor with args to remove implicit no-args default constructor
public TestClassWithoutDefaultConstructor(String s) {
public TestClassHasArgsConstructor(String s) {
this.s = s;
}
}

/**
* Main entrypoint, called by {@code ShrinkingIT.testNoSerializedName_DefaultConstructor()}.
* Main entrypoint, called by {@code ShrinkingIT.testNoSerializedName_NoArgsConstructor()}.
*/
public static String runTest() {
TestClass deserialized = new Gson().fromJson("{\"s\":\"value\"}", same(TestClass.class));
public static String runTestNoArgsConstructor() {
TestClassNoArgsConstructor deserialized = new Gson().fromJson(
"{\"s\":\"value\"}", same(TestClassNoArgsConstructor.class));
return deserialized.s;
}

/**
* Main entrypoint, called by {@code ShrinkingIT.testNoSerializedName_DefaultConstructorNoJdkUnsafe()}.
* Main entrypoint, called by {@code ShrinkingIT.testNoSerializedName_NoArgsConstructorNoJdkUnsafe()}.
*/
public static String runTestNoJdkUnsafe() {
Gson gson = new GsonBuilder().disableJdkUnsafe().create();
TestClassNotAbstract deserialized = gson.fromJson("{\"s\": \"value\"}", same(TestClassNotAbstract.class));
TestClassNotAbstract deserialized = gson.fromJson(
"{\"s\": \"value\"}", same(TestClassNotAbstract.class));
return deserialized.s;
}

/**
* Main entrypoint, called by {@code ShrinkingIT.testNoSerializedName_NoDefaultConstructor()}.
* Main entrypoint, called by {@code ShrinkingIT.testNoSerializedName_HasArgsConstructor()}.
*/
public static String runTestNoDefaultConstructor() {
TestClassWithoutDefaultConstructor deserialized = new Gson().fromJson("{\"s\":\"value\"}", same(TestClassWithoutDefaultConstructor.class));
public static String runTestHasArgsConstructor() {
TestClassHasArgsConstructor deserialized = new Gson().fromJson(
"{\"s\":\"value\"}", same(TestClassHasArgsConstructor.class));
return deserialized.s;
}
}
38 changes: 29 additions & 9 deletions shrinker-test/src/test/java/com/google/gson/it/ShrinkingIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,32 @@ public void test() throws Exception {
"Read: SerializedName",
"3",
"===",
"Write: No default constructor",
"Write: No args constructor",
"{",
" \"myField\": -3",
"}",
"===",
"Read: No args constructor; initial constructor value",
"-3",
"===",
"Read: No args constructor; custom value",
"3",
"===",
"Write: Constructor with args",
"{",
" \"myField\": 2",
"}",
"===",
"Read: No default constructor",
"Read: Constructor with args",
"3",
"===",
"Read: Unreferenced no args constructor; initial constructor value",
"-3",
"===",
"Read: Unreferenced no args constructor; custom value",
"3",
"===",
"Read: Unreferenced constructor with args",
"3",
"===",
"Read: No JDK Unsafe; initial constructor value",
Expand Down Expand Up @@ -191,9 +211,9 @@ public void test() throws Exception {
}

@Test
public void testNoSerializedName_DefaultConstructor() throws Exception {
public void testNoSerializedName_NoArgsConstructor() throws Exception {
runTest("com.example.NoSerializedNameMain", c -> {
Method m = c.getMethod("runTest");
Method m = c.getMethod("runTestNoArgsConstructor");

if (jarToTest.equals(PROGUARD_RESULT_PATH)) {
Object result = m.invoke(null);
Expand All @@ -203,15 +223,15 @@ public void testNoSerializedName_DefaultConstructor() throws Exception {
Exception e = assertThrows(InvocationTargetException.class, () -> m.invoke(null));
assertThat(e).hasCauseThat().hasMessageThat().isEqualTo(
"Abstract classes can't be instantiated! Adjust the R8 configuration or register an InstanceCreator"
+ " or a TypeAdapter for this type. Class name: com.example.NoSerializedNameMain$TestClass"
+ " or a TypeAdapter for this type. Class name: com.example.NoSerializedNameMain$TestClassNoArgsConstructor"
+ "\nSee https://github.com/google/gson/blob/main/Troubleshooting.md#r8-abstract-class"
);
}
});
}

@Test
public void testNoSerializedName_DefaultConstructorNoJdkUnsafe() throws Exception {
public void testNoSerializedName_NoArgsConstructorNoJdkUnsafe() throws Exception {
runTest("com.example.NoSerializedNameMain", c -> {
Method m = c.getMethod("runTestNoJdkUnsafe");

Expand All @@ -232,9 +252,9 @@ public void testNoSerializedName_DefaultConstructorNoJdkUnsafe() throws Exceptio
}

@Test
public void testNoSerializedName_NoDefaultConstructor() throws Exception {
public void testNoSerializedName_HasArgsConstructor() throws Exception {
runTest("com.example.NoSerializedNameMain", c -> {
Method m = c.getMethod("runTestNoDefaultConstructor");
Method m = c.getMethod("runTestHasArgsConstructor");

if (jarToTest.equals(PROGUARD_RESULT_PATH)) {
Object result = m.invoke(null);
Expand All @@ -244,7 +264,7 @@ public void testNoSerializedName_NoDefaultConstructor() throws Exception {
Exception e = assertThrows(InvocationTargetException.class, () -> m.invoke(null));
assertThat(e).hasCauseThat().hasMessageThat().isEqualTo(
"Abstract classes can't be instantiated! Adjust the R8 configuration or register an InstanceCreator"
+ " or a TypeAdapter for this type. Class name: com.example.NoSerializedNameMain$TestClassWithoutDefaultConstructor"
+ " or a TypeAdapter for this type. Class name: com.example.NoSerializedNameMain$TestClassHasArgsConstructor"
+ "\nSee https://github.com/google/gson/blob/main/Troubleshooting.md#r8-abstract-class"
);
}
Expand Down

0 comments on commit 553e71c

Please sign in to comment.